
    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_fe53d4e41017f8bf9e2ab2ba.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_18570cfb4dbefa2b3409ab85.woff')format("woff");}.ff2{font-family:ff2;line-height:0.667000;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_f22bf81fad9fe8ba4a155623.woff')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_78a1adb1379c5a301c96885a.woff')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_1137df6a692ac36a9e3cd363.woff')format("woff");}.ff5{font-family:ff5;line-height:0.525000;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_312eb033b03081b8651f61d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_4d021f5f69ab1620e7a4724c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_5d28b5daaef8755960e0680d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_22c02e50bd5114527d5ee4cd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.894000;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_f35a598da45f6105cb2fc0a2.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_73654f2de7b1f92867139c2e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_5878a738c4321dafe40bae91.woff')format("woff");}.ffc{font-family:ffc;line-height:0.843000;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_b46fe0ed7321cad908b0c6c2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.932000;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_5f7c43482fb9d740e46221ce.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5f179139b7c42af72220a5c7.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_77234c0e48cfd176cf2b8c82.woff')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_9ba4d7e3f94f9e4f353911cb.woff')format("woff");}.ff11{font-family:ff11;line-height:3.009000;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_5d74118443f84fed998579db.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b1ac7466422702be6c81ed03.woff')format("woff");}.ff13{font-family:ff13;line-height:0.685000;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_da24729760c30eb2b43532e9.woff')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_dc3a851cc34409bdb29a1551.woff')format("woff");}.ff15{font-family:ff15;line-height:0.703450;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_cacba73252fa031688711fed.woff')format("woff");}.ff16{font-family:ff16;line-height:0.697000;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_fb1e76bde2126e31a81f1b14.woff')format("woff");}.ff17{font-family:ff17;line-height:0.687000;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_eeb4db6abb7108ac01874c75.woff')format("woff");}.ff18{font-family:ff18;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;}
.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);}
.v2b{vertical-align:-114.456000px;}
.v1c{vertical-align:-111.930000px;}
.v3c{vertical-align:-92.292000px;}
.v46{vertical-align:-79.740000px;}
.v1a{vertical-align:-72.660000px;}
.v42{vertical-align:-67.644000px;}
.vf{vertical-align:-55.962000px;}
.v2a{vertical-align:-39.276000px;}
.v2e{vertical-align:-26.472000px;}
.v2{vertical-align:-22.854000px;}
.v3d{vertical-align:-19.638000px;}
.v7{vertical-align:-16.458000px;}
.v5{vertical-align:-13.320000px;}
.v3{vertical-align:-9.816000px;}
.v23{vertical-align:-8.436000px;}
.v6{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v3f{vertical-align:2.622000px;}
.v1e{vertical-align:3.828000px;}
.v22{vertical-align:6.222000px;}
.v1f{vertical-align:7.818000px;}
.v18{vertical-align:9.726000px;}
.v20{vertical-align:13.320000px;}
.v33{vertical-align:15.048000px;}
.v4{vertical-align:16.542000px;}
.v17{vertical-align:19.542000px;}
.v1d{vertical-align:21.138000px;}
.v27{vertical-align:22.548000px;}
.v1{vertical-align:23.754000px;}
.v25{vertical-align:27.024000px;}
.v32{vertical-align:31.992000px;}
.vb{vertical-align:34.458000px;}
.v28{vertical-align:42.498000px;}
.v8{vertical-align:44.280000px;}
.v24{vertical-align:45.630000px;}
.v21{vertical-align:47.820000px;}
.v35{vertical-align:49.092000px;}
.v36{vertical-align:52.734000px;}
.v11{vertical-align:54.000000px;}
.v26{vertical-align:56.910000px;}
.v13{vertical-align:59.160000px;}
.v3a{vertical-align:61.530000px;}
.v2c{vertical-align:65.820000px;}
.v43{vertical-align:68.706000px;}
.v14{vertical-align:72.654000px;}
.v37{vertical-align:76.266000px;}
.ve{vertical-align:79.356000px;}
.v2d{vertical-align:82.848000px;}
.vd{vertical-align:89.178000px;}
.v19{vertical-align:92.196000px;}
.v29{vertical-align:94.908000px;}
.v34{vertical-align:98.184000px;}
.va{vertical-align:99.210000px;}
.v2f{vertical-align:100.386000px;}
.v15{vertical-align:104.058000px;}
.v16{vertical-align:111.930000px;}
.v12{vertical-align:117.552000px;}
.v39{vertical-align:120.438000px;}
.v3e{vertical-align:125.118000px;}
.v1b{vertical-align:131.466000px;}
.v38{vertical-align:134.184000px;}
.v31{vertical-align:137.454000px;}
.vc{vertical-align:144.108000px;}
.v30{vertical-align:151.206000px;}
.v9{vertical-align:156.822000px;}
.v45{vertical-align:158.262000px;}
.v10{vertical-align:165.930000px;}
.v40{vertical-align:170.748000px;}
.v44{vertical-align:173.370000px;}
.v3b{vertical-align:190.386000px;}
.v41{vertical-align:210.018000px;}
.ls2a{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000141px;}
.ls51{letter-spacing:0.000513px;}
.ls3b{letter-spacing:0.001050px;}
.ls38{letter-spacing:0.001059px;}
.ls95{letter-spacing:0.001068px;}
.ls34{letter-spacing:0.001488px;}
.ls2d{letter-spacing:0.001593px;}
.ls1a{letter-spacing:0.001610px;}
.ls5{letter-spacing:0.001739px;}
.ls9e{letter-spacing:0.002124px;}
.lsb{letter-spacing:0.002147px;}
.ls7c{letter-spacing:0.002155px;}
.lsbd{letter-spacing:0.002682px;}
.ls37{letter-spacing:0.002686px;}
.ls12{letter-spacing:0.002688px;}
.ls62{letter-spacing:0.002696px;}
.ls3c{letter-spacing:0.002698px;}
.ls5c{letter-spacing:0.002700px;}
.ls8{letter-spacing:0.002706px;}
.ls1e{letter-spacing:0.002712px;}
.ls71{letter-spacing:0.002915px;}
.ls81{letter-spacing:0.003225px;}
.lsa5{letter-spacing:0.004338px;}
.ls77{letter-spacing:0.004344px;}
.lsac{letter-spacing:0.004528px;}
.lsb0{letter-spacing:0.004869px;}
.ls6e{letter-spacing:0.005408px;}
.ls5e{letter-spacing:0.005429px;}
.ls55{letter-spacing:0.005972px;}
.ls2e{letter-spacing:0.006141px;}
.ls59{letter-spacing:0.006513px;}
.lsa8{letter-spacing:0.007593px;}
.ls94{letter-spacing:0.236692px;}
.ls4{letter-spacing:0.242692px;}
.ls50{letter-spacing:2.344878px;}
.ls49{letter-spacing:2.350878px;}
.ls1b{letter-spacing:2.984915px;}
.ls9{letter-spacing:2.985056px;}
.ls2f{letter-spacing:2.986528px;}
.ls6d{letter-spacing:2.987236px;}
.ls0{letter-spacing:2.987468px;}
.ls61{letter-spacing:2.988103px;}
.ls35{letter-spacing:2.988532px;}
.lsc{letter-spacing:2.989739px;}
.ls26{letter-spacing:2.990915px;}
.ls6{letter-spacing:2.991056px;}
.lsa6{letter-spacing:2.992528px;}
.ls72{letter-spacing:2.993236px;}
.lsb2{letter-spacing:2.994103px;}
.lsbe{letter-spacing:2.994532px;}
.ls7{letter-spacing:3.454878px;}
.ls20{letter-spacing:3.460878px;}
.ls5d{letter-spacing:3.734425px;}
.ls5b{letter-spacing:4.265644px;}
.ls6f{letter-spacing:5.134864px;}
.ls36{letter-spacing:5.976532px;}
.ls39{letter-spacing:5.982532px;}
.ls6a{letter-spacing:6.269412px;}
.ls69{letter-spacing:6.272706px;}
.ls67{letter-spacing:6.275412px;}
.ls9a{letter-spacing:6.293424px;}
.ls33{letter-spacing:6.299424px;}
.lsa0{letter-spacing:6.497412px;}
.ls41{letter-spacing:7.169412px;}
.ls8f{letter-spacing:7.172700px;}
.ls4c{letter-spacing:7.172706px;}
.ls9c{letter-spacing:7.172915px;}
.lsb8{letter-spacing:7.175400px;}
.ls47{letter-spacing:7.175412px;}
.ls70{letter-spacing:8.120915px;}
.ls87{letter-spacing:8.126915px;}
.ls66{letter-spacing:9.257236px;}
.ls9f{letter-spacing:9.482915px;}
.ls42{letter-spacing:10.160915px;}
.ls80{letter-spacing:10.901418px;}
.ls96{letter-spacing:10.903068px;}
.ls45{letter-spacing:10.903593px;}
.ls85{letter-spacing:10.904706px;}
.ls10{letter-spacing:10.904712px;}
.lsad{letter-spacing:10.907412px;}
.ls7d{letter-spacing:10.907418px;}
.ls52{letter-spacing:10.908513px;}
.ls84{letter-spacing:10.909068px;}
.ls43{letter-spacing:10.909593px;}
.ls8a{letter-spacing:10.911225px;}
.lsa7{letter-spacing:10.912338px;}
.lsba{letter-spacing:10.913982px;}
.ls5a{letter-spacing:10.914513px;}
.ls54{letter-spacing:11.150692px;}
.ls58{letter-spacing:11.156692px;}
.ls82{letter-spacing:13.892915px;}
.lsaa{letter-spacing:13.898915px;}
.ls27{letter-spacing:14.180712px;}
.ls57{letter-spacing:14.368878px;}
.ls4b{letter-spacing:14.530921px;}
.ls7f{letter-spacing:14.537418px;}
.ls46{letter-spacing:14.540700px;}
.ls21{letter-spacing:14.540706px;}
.ls8c{letter-spacing:14.542344px;}
.ls1d{letter-spacing:14.543412px;}
.ls83{letter-spacing:14.543418px;}
.ls40{letter-spacing:14.546700px;}
.ls1c{letter-spacing:14.546706px;}
.lsa1{letter-spacing:14.546712px;}
.ls7b{letter-spacing:14.548344px;}
.ls24{letter-spacing:14.549412px;}
.ls97{letter-spacing:14.549429px;}
.lsa{letter-spacing:14.644881px;}
.ls6b{letter-spacing:14.650881px;}
.ls9d{letter-spacing:15.589597px;}
.lsb9{letter-spacing:15.595597px;}
.lsa4{letter-spacing:17.313249px;}
.lsb1{letter-spacing:17.319249px;}
.ls1f{letter-spacing:17.528915px;}
.ls78{letter-spacing:17.531236px;}
.ls91{letter-spacing:17.533739px;}
.ls3{letter-spacing:17.534915px;}
.ls89{letter-spacing:17.535056px;}
.lsb5{letter-spacing:17.536528px;}
.lsae{letter-spacing:17.539739px;}
.ls3f{letter-spacing:18.080700px;}
.ls4e{letter-spacing:18.080706px;}
.ls4a{letter-spacing:18.086706px;}
.ls79{letter-spacing:18.176712px;}
.ls2{letter-spacing:18.179412px;}
.ls28{letter-spacing:18.179418px;}
.ls7e{letter-spacing:18.181068px;}
.ls64{letter-spacing:18.182696px;}
.ls53{letter-spacing:18.182706px;}
.ls8e{letter-spacing:18.182712px;}
.ls7a{letter-spacing:18.185412px;}
.lsb3{letter-spacing:18.185982px;}
.ls32{letter-spacing:18.187593px;}
.lsa3{letter-spacing:18.770706px;}
.ls6c{letter-spacing:18.770712px;}
.ls8d{letter-spacing:18.773412px;}
.ls75{letter-spacing:19.006869px;}
.ls31{letter-spacing:20.077593px;}
.ls22{letter-spacing:21.164915px;}
.ls1{letter-spacing:21.167236px;}
.ls25{letter-spacing:21.170915px;}
.ls65{letter-spacing:21.173236px;}
.ls29{letter-spacing:21.704688px;}
.ls88{letter-spacing:21.758915px;}
.ls63{letter-spacing:22.861597px;}
.ls99{letter-spacing:23.879412px;}
.ls98{letter-spacing:23.882712px;}
.lsb7{letter-spacing:24.449412px;}
.lsbb{letter-spacing:24.455412px;}
.ls18{letter-spacing:24.548706px;}
.lsab{letter-spacing:24.692915px;}
.ls44{letter-spacing:25.349412px;}
.ls3e{letter-spacing:25.355412px;}
.ls56{letter-spacing:25.446532px;}
.lsa9{letter-spacing:26.175249px;}
.lsa2{letter-spacing:26.181249px;}
.ls17{letter-spacing:27.419412px;}
.ls68{letter-spacing:27.502349px;}
.ls74{letter-spacing:29.393412px;}
.ls73{letter-spacing:29.396712px;}
.lsb6{letter-spacing:29.682513px;}
.ls60{letter-spacing:29.833593px;}
.ls16{letter-spacing:30.401236px;}
.ls86{letter-spacing:33.311412px;}
.ls90{letter-spacing:33.317412px;}
.ls30{letter-spacing:34.778706px;}
.ls19{letter-spacing:39.218706px;}
.ls93{letter-spacing:39.995424px;}
.ls92{letter-spacing:40.001424px;}
.ls2b{letter-spacing:40.111593px;}
.ls2c{letter-spacing:40.115412px;}
.ls9b{letter-spacing:41.522712px;}
.lsaf{letter-spacing:45.476915px;}
.lsb4{letter-spacing:45.482915px;}
.lse{letter-spacing:50.362344px;}
.ls15{letter-spacing:50.363412px;}
.lsf{letter-spacing:50.363418px;}
.ls11{letter-spacing:53.348915px;}
.ls14{letter-spacing:53.351236px;}
.ls13{letter-spacing:55.552349px;}
.lsbc{letter-spacing:59.621412px;}
.ls5f{letter-spacing:65.084712px;}
.ls4d{letter-spacing:94.271412px;}
.ls48{letter-spacing:94.277412px;}
.ls76{letter-spacing:95.819412px;}
.ls4f{letter-spacing:179.723412px;}
.lsd{letter-spacing:229.580712px;}
.ls23{letter-spacing:385.022712px;}
.ls3a{letter-spacing:396.308712px;}
.ls8b{letter-spacing:497.612712px;}
.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;}
}
.ws39{word-spacing:-65.454600px;}
.ws44{word-spacing:-51.820407px;}
.ws56{word-spacing:-47.294855px;}
.ws4c{word-spacing:-47.288855px;}
.ws30{word-spacing:-42.637126px;}
.wsf{word-spacing:-32.544027px;}
.ws32{word-spacing:-31.706208px;}
.ws59{word-spacing:-28.094817px;}
.ws53{word-spacing:-28.088817px;}
.ws69{word-spacing:-28.079057px;}
.ws71{word-spacing:-25.740090px;}
.ws5c{word-spacing:-24.458817px;}
.ws5b{word-spacing:-24.452817px;}
.ws4a{word-spacing:-24.428858px;}
.ws48{word-spacing:-22.413397px;}
.ws2{word-spacing:-18.540986px;}
.ws50{word-spacing:-17.554924px;}
.ws18{word-spacing:-17.096742px;}
.ws14{word-spacing:-16.638559px;}
.ws28{word-spacing:-15.853104px;}
.ws46{word-spacing:-14.596376px;}
.ws13{word-spacing:-14.347648px;}
.ws12{word-spacing:-14.085830px;}
.ws8{word-spacing:-13.981513px;}
.ws17{word-spacing:-13.954921px;}
.ws2a{word-spacing:-13.824012px;}
.ws22{word-spacing:-13.693102px;}
.ws9{word-spacing:-13.400102px;}
.ws41{word-spacing:-12.514920px;}
.ws20{word-spacing:-12.449465px;}
.ws23{word-spacing:-11.860374px;}
.ws83{word-spacing:-11.417140px;}
.ws5d{word-spacing:-11.336737px;}
.ws15{word-spacing:-10.878555px;}
.ws3b{word-spacing:-10.855257px;}
.ws68{word-spacing:-10.850296px;}
.ws25{word-spacing:-10.813100px;}
.ws45{word-spacing:-10.040736px;}
.ws0{word-spacing:-9.976548px;}
.ws81{word-spacing:-9.916772px;}
.ws7c{word-spacing:-9.079914px;}
.ws1e{word-spacing:-8.849462px;}
.ws5a{word-spacing:-8.456734px;}
.ws3e{word-spacing:-8.260371px;}
.ws88{word-spacing:-8.123504px;}
.ws36{word-spacing:-7.998552px;}
.ws6{word-spacing:-7.764850px;}
.ws24{word-spacing:-7.671279px;}
.ws61{word-spacing:-7.605825px;}
.ws27{word-spacing:-5.773096px;}
.ws73{word-spacing:-5.642187px;}
.ws1f{word-spacing:-5.576732px;}
.ws42{word-spacing:-5.445823px;}
.ws16{word-spacing:-5.314914px;}
.ws4{word-spacing:-4.662497px;}
.ws2f{word-spacing:-4.529458px;}
.ws1a{word-spacing:-3.809458px;}
.ws4b{word-spacing:-2.696730px;}
.ws11{word-spacing:-2.434911px;}
.ws35{word-spacing:-1.744451px;}
.ws34{word-spacing:-1.728001px;}
.ws2e{word-spacing:-1.060365px;}
.ws26{word-spacing:-0.864001px;}
.ws77{word-spacing:-0.591778px;}
.ws78{word-spacing:-0.537980px;}
.wsb{word-spacing:-0.351840px;}
.ws31{word-spacing:-0.065455px;}
.ws1{word-spacing:-0.059776px;}
.ws37{word-spacing:-0.047821px;}
.ws3c{word-spacing:0.000000px;}
.ws51{word-spacing:0.052364px;}
.ws2d{word-spacing:0.379637px;}
.ws89{word-spacing:0.484182px;}
.ws1c{word-spacing:1.099637px;}
.ws21{word-spacing:1.819638px;}
.ws40{word-spacing:2.212365px;}
.ws3f{word-spacing:2.277820px;}
.ws72{word-spacing:2.343275px;}
.ws66{word-spacing:2.408729px;}
.ws5{word-spacing:3.293636px;}
.ws75{word-spacing:3.325094px;}
.ws19{word-spacing:3.390548px;}
.ws52{word-spacing:3.804828px;}
.ws3{word-spacing:4.110549px;}
.ws1b{word-spacing:4.176003px;}
.ws76{word-spacing:5.746914px;}
.ws7d{word-spacing:5.983538px;}
.ws38{word-spacing:6.663278px;}
.ws7b{word-spacing:6.820396px;}
.ws74{word-spacing:7.645097px;}
.ws33{word-spacing:8.334954px;}
.ws2b{word-spacing:9.150553px;}
.ws7{word-spacing:9.271196px;}
.ws67{word-spacing:9.839958px;}
.ws6c{word-spacing:9.845958px;}
.ws60{word-spacing:10.838658px;}
.ws6e{word-spacing:10.841958px;}
.ws70{word-spacing:10.847958px;}
.ws6d{word-spacing:10.854151px;}
.ws6f{word-spacing:10.860151px;}
.ws82{word-spacing:12.379527px;}
.ws2c{word-spacing:12.488738px;}
.ws86{word-spacing:12.618629px;}
.ws7e{word-spacing:13.210408px;}
.ws65{word-spacing:13.848151px;}
.ws3a{word-spacing:14.465467px;}
.ws84{word-spacing:16.292004px;}
.ws8a{word-spacing:16.683370px;}
.ws85{word-spacing:16.922472px;}
.ws79{word-spacing:17.155597px;}
.ws5f{word-spacing:18.094291px;}
.ws47{word-spacing:18.100285px;}
.ws43{word-spacing:18.130924px;}
.wsa{word-spacing:18.345254px;}
.ws29{word-spacing:18.371030px;}
.wsd{word-spacing:18.399053px;}
.ws6b{word-spacing:18.701958px;}
.ws5e{word-spacing:18.701964px;}
.ws6a{word-spacing:18.707958px;}
.wse{word-spacing:21.634228px;}
.ws54{word-spacing:22.045109px;}
.ws63{word-spacing:22.647292px;}
.ws58{word-spacing:23.170928px;}
.ws62{word-spacing:24.152747px;}
.ws87{word-spacing:24.633525px;}
.ws55{word-spacing:24.872748px;}
.ws4f{word-spacing:26.827469px;}
.ws1d{word-spacing:30.488753px;}
.wsc{word-spacing:31.364467px;}
.ws49{word-spacing:33.355664px;}
.ws64{word-spacing:35.934575px;}
.ws57{word-spacing:45.240341px;}
.ws7a{word-spacing:74.785253px;}
.ws4e{word-spacing:79.765094px;}
.ws10{word-spacing:80.625869px;}
.ws7f{word-spacing:84.904281px;}
.ws80{word-spacing:85.604637px;}
.ws4d{word-spacing:383.645909px;}
.ws3d{word-spacing:1201.297543px;}
._14{margin-left:-32.596391px;}
._10{margin-left:-31.268801px;}
._13{margin-left:-28.153662px;}
._12{margin-left:-21.826442px;}
._b{margin-left:-14.500551px;}
._4{margin-left:-9.399608px;}
._6{margin-left:-5.140702px;}
._3{margin-left:-3.202064px;}
._0{margin-left:-1.554166px;}
._7{width:1.613941px;}
._5{width:3.098772px;}
._c{width:4.265785px;}
._15{width:7.395234px;}
._9{width:19.466770px;}
._8{width:21.196570px;}
._16{width:22.679725px;}
._1{width:26.551755px;}
._11{width:30.345494px;}
._18{width:35.865360px;}
._2{width:39.864340px;}
._19{width:44.293720px;}
._d{width:54.215583px;}
._f{width:64.971443px;}
._a{width:179.734172px;}
._17{width:564.920026px;}
._e{width:1183.582631px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y44{bottom:89.530500px;}
.yea{bottom:128.526000px;}
.y43{bottom:128.982000px;}
.y69{bottom:129.214500px;}
.y6a{bottom:129.613500px;}
.yb3{bottom:132.640500px;}
.y162{bottom:133.417500px;}
.y1a5{bottom:133.419000px;}
.y68{bottom:134.499000px;}
.y2a{bottom:138.418500px;}
.ye7{bottom:153.049500px;}
.yaf{bottom:155.689500px;}
.yeb{bottom:156.486000px;}
.yad{bottom:157.162500px;}
.yb0{bottom:160.599000px;}
.yae{bottom:166.162500px;}
.y161{bottom:168.594000px;}
.y1a4{bottom:168.595500px;}
.y42{bottom:168.712500px;}
.y67{bottom:170.656500px;}
.y160{bottom:173.503500px;}
.y15f{bottom:175.321500px;}
.ye9{bottom:175.323000px;}
.ye8{bottom:178.594500px;}
.yb2{bottom:179.436000px;}
.y29{bottom:180.324000px;}
.yb1{bottom:182.709000px;}
.yb4{bottom:186.966000px;}
.yb5{bottom:191.200500px;}
.y41{bottom:193.519500px;}
.y28{bottom:200.647500px;}
.yac{bottom:214.315500px;}
.y66{bottom:214.825500px;}
.y40{bottom:218.326500px;}
.y1a2{bottom:219.372000px;}
.y65{bottom:219.711000px;}
.y27{bottom:220.971000px;}
.y15e{bottom:222.634500px;}
.y19e{bottom:225.957000px;}
.y1a3{bottom:227.778000px;}
.ye5{bottom:228.532500px;}
.y19f{bottom:234.316500px;}
.yab{bottom:234.639000px;}
.y19d{bottom:239.002500px;}
.y26{bottom:241.294500px;}
.y15b{bottom:247.158000px;}
.y120{bottom:250.638000px;}
.y121{bottom:251.442000px;}
.ye1{bottom:251.583000px;}
.y122{bottom:251.595000px;}
.ydf{bottom:253.056000px;}
.y1a1{bottom:254.548500px;}
.y123{bottom:256.281000px;}
.ye2{bottom:256.492500px;}
.y3f{bottom:258.055500px;}
.y1a0{bottom:259.456500px;}
.y25{bottom:261.618000px;}
.ye0{bottom:262.056000px;}
.y11f{bottom:262.723500px;}
.ya8{bottom:263.890500px;}
.y15d{bottom:269.430000px;}
.y64{bottom:269.893500px;}
.y63{bottom:269.895000px;}
.y15c{bottom:272.703000px;}
.y62{bottom:274.779000px;}
.ye4{bottom:275.329500px;}
.y11e{bottom:276.604500px;}
.y3e{bottom:278.379000px;}
.ye3{bottom:278.601000px;}
.y24{bottom:281.941500px;}
.ye6{bottom:282.859500px;}
.ya4{bottom:286.939500px;}
.ya2{bottom:288.412500px;}
.ya5{bottom:291.849000px;}
.y11d{bottom:296.928000px;}
.ya3{bottom:297.412500px;}
.y198{bottom:298.260000px;}
.y3d{bottom:298.702500px;}
.y23{bottom:302.266500px;}
.y19b{bottom:303.151500px;}
.ya7{bottom:310.686000px;}
.yaa{bottom:313.957500px;}
.ya6{bottom:313.959000px;}
.ya9{bottom:318.216000px;}
.y15a{bottom:318.238500px;}
.y3c{bottom:319.027500px;}
.y22{bottom:322.590000px;}
.y195{bottom:322.782000px;}
.y157{bottom:323.130000px;}
.y61{bottom:324.963000px;}
.y19c{bottom:326.218500px;}
.y60{bottom:329.848500px;}
.ydd{bottom:332.458500px;}
.y19a{bottom:338.328000px;}
.y154{bottom:342.760500px;}
.y21{bottom:342.913500px;}
.y199{bottom:343.237500px;}
.y197{bottom:345.055500px;}
.y11c{bottom:347.737500px;}
.y196{bottom:348.328500px;}
.yd9{bottom:355.509000px;}
.ya0{bottom:355.584000px;}
.y3b{bottom:356.628000px;}
.yd7{bottom:356.982000px;}
.y156{bottom:358.306500px;}
.yda{bottom:360.418500px;}
.y155{bottom:363.216000px;}
.y20{bottom:363.237000px;}
.y159{bottom:365.034000px;}
.yd8{bottom:365.982000px;}
.y158{bottom:368.307000px;}
.y119{bottom:372.181500px;}
.y9c{bottom:378.633000px;}
.ydc{bottom:379.255500px;}
.y5f{bottom:380.032500px;}
.y9a{bottom:380.106000px;}
.y38{bottom:381.151500px;}
.ydb{bottom:382.527000px;}
.y9d{bottom:383.542500px;}
.y1f{bottom:383.560500px;}
.y5e{bottom:384.918000px;}
.y11b{bottom:385.480500px;}
.yde{bottom:386.785500px;}
.y194{bottom:387.130500px;}
.y9b{bottom:389.106000px;}
.y191{bottom:392.023500px;}
.y11a{bottom:392.659500px;}
.y116{bottom:396.705000px;}
.y18d{bottom:398.608500px;}
.y9f{bottom:402.379500px;}
.y3a{bottom:403.423500px;}
.y1e{bottom:403.885500px;}
.y9e{bottom:405.652500px;}
.y39{bottom:406.696500px;}
.y18e{bottom:406.968000px;}
.y1c7{bottom:408.168000px;}
.y1c0{bottom:409.662000px;}
.ya1{bottom:409.909500px;}
.y18c{bottom:411.654000px;}
.y153{bottom:413.841000px;}
.y118{bottom:418.978500px;}
.y117{bottom:422.250000px;}
.y37{bottom:423.300000px;}
.y1d{bottom:424.209000px;}
.y1c6{bottom:426.100500px;}
.y190{bottom:427.200000px;}
.y1bf{bottom:427.594500px;}
.y18f{bottom:432.108000px;}
.y193{bottom:433.927500px;}
.y5d{bottom:435.102000px;}
.yd5{bottom:436.386000px;}
.y192{bottom:437.199000px;}
.y150{bottom:438.364500px;}
.y5c{bottom:439.986000px;}
.y1c5{bottom:444.033000px;}
.y1c{bottom:444.532500px;}
.y1be{bottom:445.528500px;}
.y115{bottom:447.093000px;}
.y98{bottom:447.277500px;}
.y34{bottom:447.823500px;}
.yd1{bottom:459.435000px;}
.y152{bottom:460.636500px;}
.ycf{bottom:460.908000px;}
.y1c4{bottom:461.965500px;}
.y1bd{bottom:463.461000px;}
.y151{bottom:463.909500px;}
.yd2{bottom:464.344500px;}
.y1b{bottom:464.856000px;}
.yd0{bottom:469.908000px;}
.y36{bottom:470.097000px;}
.y94{bottom:470.328000px;}
.y92{bottom:471.799500px;}
.y114{bottom:472.761000px;}
.y35{bottom:473.368500px;}
.y95{bottom:475.236000px;}
.y188{bottom:475.651500px;}
.y1c3{bottom:479.899500px;}
.y18b{bottom:480.543000px;}
.y93{bottom:480.799500px;}
.y1bc{bottom:481.393500px;}
.yd4{bottom:483.181500px;}
.y1a{bottom:485.179500px;}
.yd3{bottom:486.453000px;}
.y5b{bottom:490.170000px;}
.yd6{bottom:490.711500px;}
.y97{bottom:494.073000px;}
.y5a{bottom:495.055500px;}
.y111{bottom:497.284500px;}
.y96{bottom:497.346000px;}
.y1c2{bottom:497.832000px;}
.y1bb{bottom:499.326000px;}
.y185{bottom:500.173500px;}
.y99{bottom:501.603000px;}
.y19{bottom:505.504500px;}
.y33{bottom:506.440500px;}
.y14e{bottom:507.949500px;}
.y14b{bottom:512.842500px;}
.y18a{bottom:515.719500px;}
.y1c1{bottom:515.764500px;}
.yce{bottom:517.710000px;}
.y113{bottom:519.556500px;}
.y189{bottom:520.629000px;}
.y187{bottom:522.447000px;}
.y91{bottom:522.484500px;}
.y112{bottom:522.829500px;}
.y186{bottom:525.720000px;}
.y18{bottom:525.828000px;}
.y32{bottom:526.764000px;}
.y148{bottom:532.473000px;}
.y1ba{bottom:533.697000px;}
.y59{bottom:534.448500px;}
.y14f{bottom:535.909500px;}
.y17{bottom:546.151500px;}
.y31{bottom:547.087500px;}
.y110{bottom:547.671000px;}
.y14a{bottom:548.019000px;}
.y1b9{bottom:551.629500px;}
.y149{bottom:552.927000px;}
.y14d{bottom:554.746500px;}
.y14c{bottom:558.018000px;}
.y181{bottom:564.522000px;}
.y16{bottom:566.475000px;}
.y30{bottom:567.411000px;}
.y184{bottom:569.415000px;}
.y1b8{bottom:569.563500px;}
.y10f{bottom:573.340500px;}
.y7e{bottom:579.066000px;}
.y58{bottom:579.885000px;}
.y15{bottom:586.798500px;}
.ycc{bottom:587.260500px;}
.y1b7{bottom:587.496000px;}
.y2f{bottom:587.734500px;}
.y17e{bottom:589.045500px;}
.y57{bottom:591.109500px;}
.ycd{bottom:594.439500px;}
.y10c{bottom:597.862500px;}
.ycb{bottom:598.485000px;}
.y146{bottom:602.059500px;}
.y183{bottom:604.591500px;}
.y90{bottom:606.211500px;}
.y14{bottom:607.123500px;}
.y2e{bottom:608.059500px;}
.y182{bottom:609.499500px;}
.y7d{bottom:609.906000px;}
.y8f{bottom:610.257000px;}
.y180{bottom:611.319000px;}
.y17f{bottom:614.590500px;}
.y10e{bottom:620.136000px;}
.y10d{bottom:623.409000px;}
.y147{bottom:626.581500px;}
.y13{bottom:627.447000px;}
.y2d{bottom:628.383000px;}
.y1b6{bottom:630.940500px;}
.y7a{bottom:634.428000px;}
.y79{bottom:638.565000px;}
.yca{bottom:641.214000px;}
.y12{bottom:647.770500px;}
.y2c{bottom:648.706500px;}
.y145{bottom:648.855000px;}
.y144{bottom:652.128000px;}
.y17b{bottom:653.394000px;}
.y55{bottom:655.119000px;}
.y10b{bottom:656.065500px;}
.y7c{bottom:656.701500px;}
.y8e{bottom:657.681000px;}
.y7b{bottom:659.974500px;}
.y143{bottom:660.127500px;}
.y54{bottom:666.343500px;}
.y17c{bottom:666.691500px;}
.y56{bottom:666.834000px;}
.y2b{bottom:669.030000px;}
.y17d{bottom:673.230000px;}
.y178{bottom:677.916000px;}
.y108{bottom:680.587500px;}
.y142{bottom:681.928500px;}
.y78{bottom:686.896500px;}
.y11{bottom:689.353500px;}
.yc9{bottom:692.023500px;}
.y17a{bottom:700.189500px;}
.y10a{bottom:702.861000px;}
.y179{bottom:703.462500px;}
.y109{bottom:706.134000px;}
.y8d{bottom:707.164500px;}
.y77{bottom:707.220000px;}
.y140{bottom:712.114500px;}
.y13d{bottom:717.006000px;}
.y1b0{bottom:720.954000px;}
.yc8{bottom:725.154000px;}
.y76{bottom:727.545000px;}
.yc7{bottom:729.199500px;}
.y107{bottom:730.066500px;}
.y177{bottom:730.293000px;}
.y8c{bottom:732.085500px;}
.y8b{bottom:732.387000px;}
.y1b5{bottom:736.179000px;}
.y13a{bottom:736.636500px;}
.y8a{bottom:736.771500px;}
.y53{bottom:737.374500px;}
.y141{bottom:740.073000px;}
.y10{bottom:740.667000px;}
.y1af{bottom:741.277500px;}
.y75{bottom:747.868500px;}
.y52{bottom:748.599000px;}
.y89{bottom:749.953500px;}
.y13c{bottom:752.182500px;}
.y1b4{bottom:756.502500px;}
.y13b{bottom:757.092000px;}
.y173{bottom:757.860000px;}
.y102{bottom:758.848500px;}
.y13f{bottom:758.910000px;}
.y88{bottom:759.844500px;}
.yf{bottom:760.990500px;}
.y13e{bottom:762.183000px;}
.y176{bottom:762.751500px;}
.yc6{bottom:766.375500px;}
.y1b3{bottom:776.827500px;}
.ye{bottom:777.429000px;}
.y104{bottom:781.899000px;}
.y170{bottom:782.382000px;}
.y1ae{bottom:782.860500px;}
.yfe{bottom:783.372000px;}
.y85{bottom:785.013000px;}
.yc5{bottom:786.699000px;}
.yff{bottom:786.808500px;}
.y74{bottom:789.451500px;}
.y103{bottom:792.372000px;}
.yd{bottom:793.867500px;}
.y1b2{bottom:797.151000px;}
.y175{bottom:797.928000px;}
.y87{bottom:798.195000px;}
.y86{bottom:801.468000px;}
.y174{bottom:802.837500px;}
.y172{bottom:804.655500px;}
.y101{bottom:805.644000px;}
.y105{bottom:805.645500px;}
.y139{bottom:806.223000px;}
.y171{bottom:807.928500px;}
.y100{bottom:808.917000px;}
.y73{bottom:810.373500px;}
.y106{bottom:813.175500px;}
.y51{bottom:813.580500px;}
.y1b1{bottom:817.474500px;}
.yc4{bottom:818.952000px;}
.yc{bottom:825.913500px;}
.y136{bottom:830.745000px;}
.y82{bottom:833.254500px;}
.yfd{bottom:833.589000px;}
.y1ad{bottom:837.798000px;}
.yc1{bottom:839.428500px;}
.ybf{bottom:843.474000px;}
.yb{bottom:843.847500px;}
.y84{bottom:846.436500px;}
.y16c{bottom:846.730500px;}
.yc0{bottom:846.910500px;}
.y83{bottom:849.708000px;}
.y50{bottom:849.739500px;}
.y16f{bottom:851.623500px;}
.y138{bottom:853.018500px;}
.yfa{bottom:854.031000px;}
.y137{bottom:856.291500px;}
.y81{bottom:860.193000px;}
.ya{bottom:861.780000px;}
.y72{bottom:865.311000px;}
.yc3{bottom:865.747500px;}
.yc2{bottom:869.020500px;}
.y169{bottom:871.254000px;}
.yfb{bottom:878.554500px;}
.y9{bottom:879.712500px;}
.y4f{bottom:879.973500px;}
.yf7{bottom:881.991000px;}
.y4c{bottom:884.866500px;}
.y16e{bottom:886.798500px;}
.y16d{bottom:891.708000px;}
.y16b{bottom:893.526000px;}
.y16a{bottom:896.799000px;}
.y8{bottom:897.645000px;}
.y130{bottom:900.331500px;}
.yf9{bottom:900.826500px;}
.y71{bottom:902.073000px;}
.yf8{bottom:904.099500px;}
.y49{bottom:904.497000px;}
.y80{bottom:904.989000px;}
.y134{bottom:905.224500px;}
.yfc{bottom:908.358000px;}
.y1ab{bottom:909.007500px;}
.y7f{bottom:909.675000px;}
.yf6{bottom:911.445000px;}
.ybd{bottom:914.844000px;}
.y7{bottom:915.577500px;}
.y1a8{bottom:917.413500px;}
.y4b{bottom:920.043000px;}
.y1ac{bottom:923.952000px;}
.y131{bottom:924.855000px;}
.y4a{bottom:924.951000px;}
.y4e{bottom:926.770500px;}
.y135{bottom:928.291500px;}
.y4d{bottom:930.042000px;}
.yf5{bottom:931.005000px;}
.y168{bottom:935.602500px;}
.y70{bottom:938.835000px;}
.yba{bottom:939.367500px;}
.y1a7{bottom:939.708000px;}
.y133{bottom:940.399500px;}
.ybe{bottom:942.804000px;}
.y6{bottom:944.121000px;}
.y1aa{bottom:944.184000px;}
.y132{bottom:945.309000px;}
.y12f{bottom:947.127000px;}
.y1a9{bottom:949.092000px;}
.y12e{bottom:950.400000px;}
.y12d{bottom:958.401000px;}
.y6f{bottom:959.158500px;}
.yf2{bottom:959.787000px;}
.y165{bottom:960.124500px;}
.ybc{bottom:961.639500px;}
.y5{bottom:962.053500px;}
.ybb{bottom:964.912500px;}
.y1a6{bottom:979.546500px;}
.y4{bottom:979.986000px;}
.y12c{bottom:980.200500px;}
.y167{bottom:982.398000px;}
.yee{bottom:982.837500px;}
.yec{bottom:984.310500px;}
.y166{bottom:985.671000px;}
.yef{bottom:987.747000px;}
.yed{bottom:993.310500px;}
.yf1{bottom:1006.582500px;}
.yf4{bottom:1006.584000px;}
.yf0{bottom:1009.855500px;}
.y12a{bottom:1010.386500px;}
.yb9{bottom:1010.737500px;}
.y164{bottom:1013.410500px;}
.yf3{bottom:1014.114000px;}
.y48{bottom:1014.204000px;}
.y127{bottom:1015.278000px;}
.y3{bottom:1018.990500px;}
.y6e{bottom:1028.178000px;}
.y47{bottom:1034.527500px;}
.y124{bottom:1034.908500px;}
.yb6{bottom:1035.259500px;}
.y12b{bottom:1038.345000px;}
.y6d{bottom:1041.159000px;}
.y126{bottom:1050.454500px;}
.y163{bottom:1050.976500px;}
.y2{bottom:1051.867500px;}
.y46{bottom:1054.851000px;}
.y125{bottom:1055.364000px;}
.y129{bottom:1057.182000px;}
.yb8{bottom:1057.533000px;}
.y128{bottom:1060.455000px;}
.yb7{bottom:1060.806000px;}
.y6c{bottom:1093.494000px;}
.y1{bottom:1107.154500px;}
.y45{bottom:1110.861000px;}
.y6b{bottom:1113.817500px;}
.hc{height:3.272730px;}
.h2b{height:9.393450px;}
.h9{height:16.677504px;}
.h42{height:33.119494px;}
.h3a{height:35.344950px;}
.h3c{height:35.410405px;}
.hb{height:35.865450px;}
.h6{height:37.981670px;}
.h5{height:42.859105px;}
.h27{height:44.836401px;}
.h2{height:44.891476px;}
.h2d{height:44.967310px;}
.hf{height:45.883675px;}
.h10{height:46.865494px;}
.ha{height:49.090950px;}
.h3b{height:49.149450px;}
.h7{height:49.156405px;}
.h8{height:50.283571px;}
.h4{height:50.485715px;}
.h36{height:52.757494px;}
.h23{height:53.755715px;}
.h38{height:54.982950px;}
.he{height:59.619450px;}
.h25{height:60.182730px;}
.h3d{height:62.889450px;}
.h2e{height:62.895450px;}
.h2f{height:65.272950px;}
.hd{height:65.632950px;}
.h24{height:65.638950px;}
.h1c{height:68.626950px;}
.h19{height:68.632950px;}
.h21{height:70.365450px;}
.h3{height:72.511265px;}
.h1e{height:75.926730px;}
.h1a{height:75.932730px;}
.h26{height:78.363450px;}
.h4d{height:78.548730px;}
.h3f{height:79.071450px;}
.h45{height:79.538730px;}
.h55{height:81.633450px;}
.h44{height:88.599450px;}
.h53{height:91.145494px;}
.h22{height:91.503450px;}
.h5a{height:91.763494px;}
.h4b{height:92.211450px;}
.h41{height:92.366730px;}
.h11{height:93.370950px;}
.h20{height:95.462730px;}
.h18{height:95.468730px;}
.h28{height:98.180730px;}
.h29{height:101.685450px;}
.h50{height:103.311450px;}
.h3e{height:107.787450px;}
.h43{height:109.552950px;}
.h4a{height:111.843450px;}
.h58{height:112.114950px;}
.h14{height:113.240730px;}
.h1d{height:115.196730px;}
.h17{height:115.202730px;}
.h40{height:117.735450px;}
.h2a{height:118.713450px;}
.h16{height:120.824730px;}
.h48{height:123.704730px;}
.h47{height:123.710730px;}
.h52{height:127.612950px;}
.h51{height:133.946730px;}
.h1b{height:134.738730px;}
.h1f{height:134.744730px;}
.h39{height:134.834730px;}
.h32{height:134.840730px;}
.h54{height:135.194730px;}
.h2c{height:136.251450px;}
.h4c{height:137.450730px;}
.h46{height:137.456730px;}
.h15{height:138.268950px;}
.h31{height:140.726730px;}
.h33{height:140.732730px;}
.h34{height:154.472730px;}
.h30{height:154.478730px;}
.h12{height:160.094730px;}
.h13{height:160.100730px;}
.h35{height:160.364730px;}
.h37{height:160.370730px;}
.h57{height:161.534730px;}
.h4e{height:174.020730px;}
.h56{height:176.642730px;}
.h49{height:193.658730px;}
.h4f{height:213.290730px;}
.h59{height:215.978730px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:86.740500px;}
.x2c{left:89.472000px;}
.x1{left:92.166000px;}
.xf2{left:93.564000px;}
.xf1{left:100.837500px;}
.xb1{left:108.558000px;}
.xf3{left:111.285000px;}
.xf4{left:112.654500px;}
.x147{left:117.361500px;}
.x149{left:118.656000px;}
.xb4{left:120.387000px;}
.x130{left:121.422000px;}
.x9{left:122.605500px;}
.x125{left:127.266000px;}
.xe3{left:129.870000px;}
.x4d{left:132.060000px;}
.x4c{left:136.753500px;}
.x2d{left:138.712500px;}
.xb2{left:140.176500px;}
.x2{left:142.879500px;}
.x113{left:143.892000px;}
.x6f{left:147.376500px;}
.x127{left:149.545500px;}
.x131{left:150.973500px;}
.x8{left:153.529500px;}
.x46{left:155.247000px;}
.x126{left:156.817500px;}
.xa4{left:158.152500px;}
.x114{left:159.346500px;}
.x137{left:160.719000px;}
.x4a{left:161.745000px;}
.x9e{left:162.904500px;}
.x11d{left:165.735000px;}
.x129{left:167.266500px;}
.x7{left:168.471000px;}
.xea{left:170.520000px;}
.x4e{left:172.768500px;}
.x4f{left:174.139500px;}
.x11c{left:175.161000px;}
.x128{left:176.791500px;}
.x70{left:178.285500px;}
.xe9{left:179.946000px;}
.x3{left:181.404000px;}
.x11b{left:183.802500px;}
.x12a{left:186.357000px;}
.x103{left:188.190000px;}
.x71{left:189.193500px;}
.x138{left:190.270500px;}
.x50{left:191.860500px;}
.x5{left:194.347500px;}
.x3a{left:196.183500px;}
.x142{left:199.257000px;}
.xe0{left:200.289000px;}
.x1d{left:201.336000px;}
.x73{left:203.512500px;}
.x74{left:204.882000px;}
.x33{left:205.911000px;}
.x8f{left:207.810000px;}
.x49{left:208.830000px;}
.x139{left:210.243000px;}
.xbd{left:211.470000px;}
.x72{left:213.037500px;}
.xeb{left:215.734500px;}
.xcd{left:217.467000px;}
.xce{left:218.836500px;}
.x9d{left:220.854000px;}
.x43{left:222.238500px;}
.x2e{left:223.434000px;}
.xd7{left:224.512500px;}
.xcc{left:226.992000px;}
.x101{left:228.631500px;}
.x44{left:230.698500px;}
.x90{left:232.354500px;}
.x66{left:234.525000px;}
.xcf{left:236.557500px;}
.xe4{left:238.144500px;}
.xd4{left:240.421500px;}
.xbe{left:242.379000px;}
.x121{left:243.760500px;}
.x3d{left:244.996500px;}
.x91{left:246.673500px;}
.x14b{left:247.776000px;}
.x34{left:249.033000px;}
.x82{left:250.888500px;}
.x120{left:252.403500px;}
.xa5{left:253.587000px;}
.x143{left:254.686500px;}
.x37{left:255.711000px;}
.x9f{left:258.339000px;}
.xd5{left:259.513500px;}
.x93{left:260.991000px;}
.x94{left:262.360500px;}
.xb5{left:264.358500px;}
.x13b{left:265.672500px;}
.x4b{left:266.785500px;}
.xa0{left:267.904500px;}
.xc0{left:268.977000px;}
.x92{left:270.516000px;}
.x122{left:272.376000px;}
.x13a{left:274.315500px;}
.xec{left:276.010500px;}
.xbf{left:277.131000px;}
.xb6{left:278.677500px;}
.x95{left:280.081500px;}
.x83{left:281.797500px;}
.x115{left:283.927500px;}
.x52{left:286.902000px;}
.x53{left:288.271500px;}
.x11e{left:290.316000px;}
.x13f{left:291.384000px;}
.x38{left:293.443500px;}
.xed{left:295.101000px;}
.x51{left:296.425500px;}
.xb7{left:297.768000px;}
.x104{left:300.492000px;}
.x105{left:301.861500px;}
.x116{left:303.019500px;}
.x20{left:304.987500px;}
.x54{left:305.992500px;}
.x75{left:307.047000px;}
.x85{left:308.395500px;}
.x11f{left:309.406500px;}
.x10d{left:311.140500px;}
.x1f{left:314.412000px;}
.x84{left:316.549500px;}
.x10e{left:317.964000px;}
.x106{left:319.582500px;}
.x76{left:321.366000px;}
.x1e{left:323.055000px;}
.xee{left:324.640500px;}
.x86{left:326.116500px;}
.xe6{left:328.054500px;}
.x118{left:329.076000px;}
.xaa{left:330.504000px;}
.x77{left:332.100000px;}
.x132{left:334.258500px;}
.x110{left:335.685000px;}
.x111{left:337.054500px;}
.x35{left:339.124500px;}
.x119{left:340.893000px;}
.x144{left:342.109500px;}
.xf6{left:343.242000px;}
.x10f{left:345.210000px;}
.x107{left:347.316000px;}
.x78{left:348.463500px;}
.x21{left:350.202000px;}
.x47{left:352.371000px;}
.x112{left:354.775500px;}
.x148{left:356.562000px;}
.xb3{left:358.222500px;}
.xf5{left:361.309500px;}
.x79{left:362.782500px;}
.x7a{left:364.152000px;}
.x102{left:366.720000px;}
.x145{left:369.841500px;}
.x133{left:371.070000px;}
.x6{left:372.208500px;}
.x13c{left:373.555500px;}
.x67{left:376.624500px;}
.x12e{left:379.981500px;}
.x7b{left:381.873000px;}
.x96{left:385.942500px;}
.x68{left:387.532500px;}
.x4{left:389.590500px;}
.x13d{left:391.276500px;}
.xe5{left:392.634000px;}
.x12f{left:393.717000px;}
.x3e{left:397.107000px;}
.xd0{left:399.855000px;}
.x23{left:401.835000px;}
.x24{left:403.204500px;}
.x2b{left:405.765000px;}
.x2f{left:406.941000px;}
.x97{left:408.471000px;}
.x22{left:410.478000px;}
.x3b{left:412.434000px;}
.xab{left:413.920500px;}
.xe1{left:416.482500px;}
.x14d{left:419.242500px;}
.x26{left:420.925500px;}
.x27{left:422.295000px;}
.x87{left:424.878000px;}
.xe2{left:426.048000px;}
.x14c{left:427.885500px;}
.x25{left:429.568500px;}
.x88{left:431.977500px;}
.x108{left:435.441000px;}
.xd6{left:437.130000px;}
.x14e{left:438.334500px;}
.x28{left:440.016000px;}
.x29{left:441.387000px;}
.xd8{left:443.545500px;}
.x48{left:447.849000px;}
.x1c{left:449.239500px;}
.x109{left:451.129500px;}
.xca{left:453.078000px;}
.xad{left:454.576500px;}
.xae{left:455.946000px;}
.xd2{left:456.960000px;}
.x98{left:458.067000px;}
.x2a{left:459.108000px;}
.xf8{left:460.549500px;}
.xc9{left:462.603000px;}
.xac{left:464.101500px;}
.xd1{left:465.115500px;}
.xf7{left:467.823000px;}
.xb{left:469.417500px;}
.xc1{left:471.366000px;}
.x99{left:472.386000px;}
.xaf{left:473.667000px;}
.x7c{left:475.363500px;}
.x5f{left:476.689500px;}
.xf9{left:478.270500px;}
.x64{left:479.764500px;}
.x5e{left:481.441500px;}
.xef{left:482.883000px;}
.x19{left:483.942000px;}
.x89{left:487.431000px;}
.xc2{left:489.087000px;}
.x60{left:490.326000px;}
.x9a{left:492.187500px;}
.x39{left:494.218500px;}
.xb8{left:497.667000px;}
.x36{left:499.608000px;}
.x8b{left:501.750000px;}
.x8c{left:503.119500px;}
.xc{left:505.282500px;}
.x1b{left:506.415000px;}
.x117{left:508.075500px;}
.xc7{left:509.239500px;}
.x8a{left:511.273500px;}
.x9b{left:513.603000px;}
.xda{left:514.687500px;}
.x45{left:516.120000px;}
.xb0{left:517.959000px;}
.x8d{left:520.840500px;}
.xd9{left:522.843000px;}
.x56{left:525.283500px;}
.x6a{left:526.756500px;}
.x140{left:527.782500px;}
.x3f{left:529.456500px;}
.x123{left:530.773500px;}
.xdb{left:532.408500px;}
.x69{left:534.910500px;}
.xb9{left:536.163000px;}
.x7d{left:537.214500px;}
.x3c{left:539.769000px;}
.xd{left:542.332500px;}
.x41{left:544.780500px;}
.x7e{left:546.780000px;}
.x134{left:550.239000px;}
.x141{left:552.012000px;}
.x9c{left:554.037000px;}
.x10a{left:561.024000px;}
.x63{left:564.198000px;}
.xe7{left:565.840500px;}
.x11a{left:567.388500px;}
.x124{left:570.951000px;}
.xa2{left:574.846500px;}
.xa3{left:576.217500px;}
.x12b{left:580.386000px;}
.xa1{left:584.371500px;}
.x57{left:586.144500px;}
.xa6{left:587.901000px;}
.xfb{left:589.356000px;}
.x30{left:590.448000px;}
.x12{left:594.649500px;}
.x1a{left:596.398500px;}
.xfa{left:597.999000px;}
.x58{left:599.781000px;}
.xa7{left:605.622000px;}
.xfd{left:608.446500px;}
.x14{left:610.104000px;}
.x15{left:611.473500px;}
.x8e{left:614.331000px;}
.xfc{left:617.971500px;}
.x13{left:619.629000px;}
.x6b{left:620.841000px;}
.xf{left:623.697000px;}
.x10{left:625.066500px;}
.xcb{left:626.977500px;}
.x16{left:629.194500px;}
.xe{left:633.220500px;}
.x7f{left:635.322000px;}
.x6c{left:637.968000px;}
.x146{left:640.953000px;}
.x11{left:642.787500px;}
.xc3{left:643.896000px;}
.xd3{left:646.617000px;}
.xba{left:648.925500px;}
.x61{left:650.047500px;}
.x6d{left:652.287000px;}
.xe8{left:653.805000px;}
.x40{left:657.247500px;}
.x6e{left:659.385000px;}
.xc4{left:661.023000px;}
.x42{left:662.667000px;}
.x62{left:663.684000px;}
.xa8{left:668.095500px;}
.x135{left:671.034000px;}
.xc5{left:675.340500px;}
.xc8{left:681.175500px;}
.xc6{left:682.440000px;}
.x14a{left:684.108000px;}
.x18{left:685.435500px;}
.xdc{left:687.217500px;}
.x31{left:689.232000px;}
.x10b{left:691.375500px;}
.x12c{left:693.648000px;}
.x5a{left:694.822500px;}
.x59{left:699.574500px;}
.xfe{left:700.620000px;}
.xdd{left:704.344500px;}
.x17{left:705.559500px;}
.x5b{left:708.459000px;}
.x14f{left:711.588000px;}
.x10c{left:713.875500px;}
.xde{left:718.663500px;}
.xf0{left:724.500000px;}
.xdf{left:725.761500px;}
.x80{left:729.406500px;}
.xa9{left:732.348000px;}
.x65{left:735.963000px;}
.x13e{left:739.554000px;}
.x81{left:746.533500px;}
.x55{left:747.714000px;}
.x136{left:750.037500px;}
.xbb{left:752.106000px;}
.x12d{left:753.786000px;}
.xff{left:760.759500px;}
.xbc{left:766.423500px;}
.x32{left:773.955000px;}
.x5c{left:775.420500px;}
.x5d{left:805.351500px;}
.x100{left:830.973000px;}
@media print{
.v2b{vertical-align:-101.738667pt;}
.v1c{vertical-align:-99.493333pt;}
.v3c{vertical-align:-82.037333pt;}
.v46{vertical-align:-70.880000pt;}
.v1a{vertical-align:-64.586667pt;}
.v42{vertical-align:-60.128000pt;}
.vf{vertical-align:-49.744000pt;}
.v2a{vertical-align:-34.912000pt;}
.v2e{vertical-align:-23.530667pt;}
.v2{vertical-align:-20.314667pt;}
.v3d{vertical-align:-17.456000pt;}
.v7{vertical-align:-14.629333pt;}
.v5{vertical-align:-11.840000pt;}
.v3{vertical-align:-8.725333pt;}
.v23{vertical-align:-7.498667pt;}
.v6{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v3f{vertical-align:2.330667pt;}
.v1e{vertical-align:3.402667pt;}
.v22{vertical-align:5.530667pt;}
.v1f{vertical-align:6.949333pt;}
.v18{vertical-align:8.645333pt;}
.v20{vertical-align:11.840000pt;}
.v33{vertical-align:13.376000pt;}
.v4{vertical-align:14.704000pt;}
.v17{vertical-align:17.370667pt;}
.v1d{vertical-align:18.789333pt;}
.v27{vertical-align:20.042667pt;}
.v1{vertical-align:21.114667pt;}
.v25{vertical-align:24.021333pt;}
.v32{vertical-align:28.437333pt;}
.vb{vertical-align:30.629333pt;}
.v28{vertical-align:37.776000pt;}
.v8{vertical-align:39.360000pt;}
.v24{vertical-align:40.560000pt;}
.v21{vertical-align:42.506667pt;}
.v35{vertical-align:43.637333pt;}
.v36{vertical-align:46.874667pt;}
.v11{vertical-align:48.000000pt;}
.v26{vertical-align:50.586667pt;}
.v13{vertical-align:52.586667pt;}
.v3a{vertical-align:54.693333pt;}
.v2c{vertical-align:58.506667pt;}
.v43{vertical-align:61.072000pt;}
.v14{vertical-align:64.581333pt;}
.v37{vertical-align:67.792000pt;}
.ve{vertical-align:70.538667pt;}
.v2d{vertical-align:73.642667pt;}
.vd{vertical-align:79.269333pt;}
.v19{vertical-align:81.952000pt;}
.v29{vertical-align:84.362667pt;}
.v34{vertical-align:87.274667pt;}
.va{vertical-align:88.186667pt;}
.v2f{vertical-align:89.232000pt;}
.v15{vertical-align:92.496000pt;}
.v16{vertical-align:99.493333pt;}
.v12{vertical-align:104.490667pt;}
.v39{vertical-align:107.056000pt;}
.v3e{vertical-align:111.216000pt;}
.v1b{vertical-align:116.858667pt;}
.v38{vertical-align:119.274667pt;}
.v31{vertical-align:122.181333pt;}
.vc{vertical-align:128.096000pt;}
.v30{vertical-align:134.405333pt;}
.v9{vertical-align:139.397333pt;}
.v45{vertical-align:140.677333pt;}
.v10{vertical-align:147.493333pt;}
.v40{vertical-align:151.776000pt;}
.v44{vertical-align:154.106667pt;}
.v3b{vertical-align:169.232000pt;}
.v41{vertical-align:186.682667pt;}
.ls2a{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000125pt;}
.ls51{letter-spacing:0.000456pt;}
.ls3b{letter-spacing:0.000933pt;}
.ls38{letter-spacing:0.000942pt;}
.ls95{letter-spacing:0.000949pt;}
.ls34{letter-spacing:0.001323pt;}
.ls2d{letter-spacing:0.001416pt;}
.ls1a{letter-spacing:0.001431pt;}
.ls5{letter-spacing:0.001546pt;}
.ls9e{letter-spacing:0.001888pt;}
.lsb{letter-spacing:0.001908pt;}
.ls7c{letter-spacing:0.001916pt;}
.lsbd{letter-spacing:0.002384pt;}
.ls37{letter-spacing:0.002387pt;}
.ls12{letter-spacing:0.002389pt;}
.ls62{letter-spacing:0.002397pt;}
.ls3c{letter-spacing:0.002399pt;}
.ls5c{letter-spacing:0.002400pt;}
.ls8{letter-spacing:0.002405pt;}
.ls1e{letter-spacing:0.002411pt;}
.ls71{letter-spacing:0.002591pt;}
.ls81{letter-spacing:0.002867pt;}
.lsa5{letter-spacing:0.003856pt;}
.ls77{letter-spacing:0.003861pt;}
.lsac{letter-spacing:0.004025pt;}
.lsb0{letter-spacing:0.004328pt;}
.ls6e{letter-spacing:0.004807pt;}
.ls5e{letter-spacing:0.004826pt;}
.ls55{letter-spacing:0.005308pt;}
.ls2e{letter-spacing:0.005459pt;}
.ls59{letter-spacing:0.005789pt;}
.lsa8{letter-spacing:0.006750pt;}
.ls94{letter-spacing:0.210393pt;}
.ls4{letter-spacing:0.215727pt;}
.ls50{letter-spacing:2.084336pt;}
.ls49{letter-spacing:2.089669pt;}
.ls1b{letter-spacing:2.653258pt;}
.ls9{letter-spacing:2.653383pt;}
.ls2f{letter-spacing:2.654692pt;}
.ls6d{letter-spacing:2.655321pt;}
.ls0{letter-spacing:2.655527pt;}
.ls61{letter-spacing:2.656092pt;}
.ls35{letter-spacing:2.656473pt;}
.lsc{letter-spacing:2.657546pt;}
.ls26{letter-spacing:2.658591pt;}
.ls6{letter-spacing:2.658717pt;}
.lsa6{letter-spacing:2.660025pt;}
.ls72{letter-spacing:2.660654pt;}
.lsb2{letter-spacing:2.661425pt;}
.lsbe{letter-spacing:2.661806pt;}
.ls7{letter-spacing:3.071003pt;}
.ls20{letter-spacing:3.076336pt;}
.ls5d{letter-spacing:3.319489pt;}
.ls5b{letter-spacing:3.791684pt;}
.ls6f{letter-spacing:4.564323pt;}
.ls36{letter-spacing:5.312473pt;}
.ls39{letter-spacing:5.317806pt;}
.ls6a{letter-spacing:5.572811pt;}
.ls69{letter-spacing:5.575739pt;}
.ls67{letter-spacing:5.578144pt;}
.ls9a{letter-spacing:5.594155pt;}
.ls33{letter-spacing:5.599488pt;}
.lsa0{letter-spacing:5.775477pt;}
.ls41{letter-spacing:6.372811pt;}
.ls8f{letter-spacing:6.375733pt;}
.ls4c{letter-spacing:6.375739pt;}
.ls9c{letter-spacing:6.375925pt;}
.lsb8{letter-spacing:6.378133pt;}
.ls47{letter-spacing:6.378144pt;}
.ls70{letter-spacing:7.218591pt;}
.ls87{letter-spacing:7.223925pt;}
.ls66{letter-spacing:8.228654pt;}
.ls9f{letter-spacing:8.429258pt;}
.ls42{letter-spacing:9.031925pt;}
.ls80{letter-spacing:9.690149pt;}
.ls96{letter-spacing:9.691616pt;}
.ls45{letter-spacing:9.692083pt;}
.ls85{letter-spacing:9.693072pt;}
.ls10{letter-spacing:9.693077pt;}
.lsad{letter-spacing:9.695477pt;}
.ls7d{letter-spacing:9.695483pt;}
.ls52{letter-spacing:9.696456pt;}
.ls84{letter-spacing:9.696949pt;}
.ls43{letter-spacing:9.697416pt;}
.ls8a{letter-spacing:9.698867pt;}
.lsa7{letter-spacing:9.699856pt;}
.lsba{letter-spacing:9.701317pt;}
.ls5a{letter-spacing:9.701789pt;}
.ls54{letter-spacing:9.911727pt;}
.ls58{letter-spacing:9.917060pt;}
.ls82{letter-spacing:12.349258pt;}
.lsaa{letter-spacing:12.354591pt;}
.ls27{letter-spacing:12.605077pt;}
.ls57{letter-spacing:12.772336pt;}
.ls4b{letter-spacing:12.916374pt;}
.ls7f{letter-spacing:12.922149pt;}
.ls46{letter-spacing:12.925067pt;}
.ls21{letter-spacing:12.925072pt;}
.ls8c{letter-spacing:12.926528pt;}
.ls1d{letter-spacing:12.927477pt;}
.ls83{letter-spacing:12.927483pt;}
.ls40{letter-spacing:12.930400pt;}
.ls1c{letter-spacing:12.930405pt;}
.lsa1{letter-spacing:12.930411pt;}
.ls7b{letter-spacing:12.931861pt;}
.ls24{letter-spacing:12.932811pt;}
.ls97{letter-spacing:12.932826pt;}
.lsa{letter-spacing:13.017672pt;}
.ls6b{letter-spacing:13.023005pt;}
.ls9d{letter-spacing:13.857420pt;}
.lsb9{letter-spacing:13.862753pt;}
.lsa4{letter-spacing:15.389555pt;}
.lsb1{letter-spacing:15.394888pt;}
.ls1f{letter-spacing:15.581258pt;}
.ls78{letter-spacing:15.583321pt;}
.ls91{letter-spacing:15.585546pt;}
.ls3{letter-spacing:15.586591pt;}
.ls89{letter-spacing:15.586717pt;}
.lsb5{letter-spacing:15.588025pt;}
.lsae{letter-spacing:15.590879pt;}
.ls3f{letter-spacing:16.071733pt;}
.ls4e{letter-spacing:16.071739pt;}
.ls4a{letter-spacing:16.077072pt;}
.ls79{letter-spacing:16.157077pt;}
.ls2{letter-spacing:16.159477pt;}
.ls28{letter-spacing:16.159483pt;}
.ls7e{letter-spacing:16.160949pt;}
.ls64{letter-spacing:16.162397pt;}
.ls53{letter-spacing:16.162405pt;}
.ls8e{letter-spacing:16.162411pt;}
.ls7a{letter-spacing:16.164811pt;}
.lsb3{letter-spacing:16.165317pt;}
.ls32{letter-spacing:16.166750pt;}
.lsa3{letter-spacing:16.685072pt;}
.ls6c{letter-spacing:16.685077pt;}
.ls8d{letter-spacing:16.687477pt;}
.ls75{letter-spacing:16.894995pt;}
.ls31{letter-spacing:17.846750pt;}
.ls22{letter-spacing:18.813258pt;}
.ls1{letter-spacing:18.815321pt;}
.ls25{letter-spacing:18.818591pt;}
.ls65{letter-spacing:18.820654pt;}
.ls29{letter-spacing:19.293056pt;}
.ls88{letter-spacing:19.341258pt;}
.ls63{letter-spacing:20.321420pt;}
.ls99{letter-spacing:21.226144pt;}
.ls98{letter-spacing:21.229077pt;}
.lsb7{letter-spacing:21.732811pt;}
.lsbb{letter-spacing:21.738144pt;}
.ls18{letter-spacing:21.821072pt;}
.lsab{letter-spacing:21.949258pt;}
.ls44{letter-spacing:22.532811pt;}
.ls3e{letter-spacing:22.538144pt;}
.ls56{letter-spacing:22.619139pt;}
.lsa9{letter-spacing:23.266888pt;}
.lsa2{letter-spacing:23.272221pt;}
.ls17{letter-spacing:24.372811pt;}
.ls68{letter-spacing:24.446532pt;}
.ls74{letter-spacing:26.127477pt;}
.ls73{letter-spacing:26.130411pt;}
.lsb6{letter-spacing:26.384456pt;}
.ls60{letter-spacing:26.518750pt;}
.ls16{letter-spacing:27.023321pt;}
.ls86{letter-spacing:29.610144pt;}
.ls90{letter-spacing:29.615477pt;}
.ls30{letter-spacing:30.914405pt;}
.ls19{letter-spacing:34.861072pt;}
.ls93{letter-spacing:35.551488pt;}
.ls92{letter-spacing:35.556822pt;}
.ls2b{letter-spacing:35.654750pt;}
.ls2c{letter-spacing:35.658144pt;}
.ls9b{letter-spacing:36.909077pt;}
.lsaf{letter-spacing:40.423925pt;}
.lsb4{letter-spacing:40.429258pt;}
.lse{letter-spacing:44.766528pt;}
.ls15{letter-spacing:44.767477pt;}
.lsf{letter-spacing:44.767483pt;}
.ls11{letter-spacing:47.421258pt;}
.ls14{letter-spacing:47.423321pt;}
.ls13{letter-spacing:49.379865pt;}
.lsbc{letter-spacing:52.996811pt;}
.ls5f{letter-spacing:57.853077pt;}
.ls4d{letter-spacing:83.796811pt;}
.ls48{letter-spacing:83.802144pt;}
.ls76{letter-spacing:85.172811pt;}
.ls4f{letter-spacing:159.754144pt;}
.lsd{letter-spacing:204.071744pt;}
.ls23{letter-spacing:342.242411pt;}
.ls3a{letter-spacing:352.274411pt;}
.ls8b{letter-spacing:442.322411pt;}
.ws39{word-spacing:-58.181867pt;}
.ws44{word-spacing:-46.062584pt;}
.ws56{word-spacing:-42.039871pt;}
.ws4c{word-spacing:-42.034537pt;}
.ws30{word-spacing:-37.899668pt;}
.wsf{word-spacing:-28.928024pt;}
.ws32{word-spacing:-28.183296pt;}
.ws59{word-spacing:-24.973170pt;}
.ws53{word-spacing:-24.967837pt;}
.ws69{word-spacing:-24.959162pt;}
.ws71{word-spacing:-22.880080pt;}
.ws5c{word-spacing:-21.741170pt;}
.ws5b{word-spacing:-21.735837pt;}
.ws4a{word-spacing:-21.714540pt;}
.ws48{word-spacing:-19.923020pt;}
.ws2{word-spacing:-16.480876pt;}
.ws50{word-spacing:-15.604377pt;}
.ws18{word-spacing:-15.197104pt;}
.ws14{word-spacing:-14.789831pt;}
.ws28{word-spacing:-14.091648pt;}
.ws46{word-spacing:-12.974556pt;}
.ws13{word-spacing:-12.753465pt;}
.ws12{word-spacing:-12.520738pt;}
.ws8{word-spacing:-12.428011pt;}
.ws17{word-spacing:-12.404374pt;}
.ws2a{word-spacing:-12.288010pt;}
.ws22{word-spacing:-12.171647pt;}
.ws9{word-spacing:-11.911202pt;}
.ws41{word-spacing:-11.124373pt;}
.ws20{word-spacing:-11.066191pt;}
.ws23{word-spacing:-10.542554pt;}
.ws83{word-spacing:-10.148569pt;}
.ws5d{word-spacing:-10.077099pt;}
.ws15{word-spacing:-9.669826pt;}
.ws3b{word-spacing:-9.649117pt;}
.ws68{word-spacing:-9.644708pt;}
.ws25{word-spacing:-9.611644pt;}
.ws45{word-spacing:-8.925098pt;}
.ws0{word-spacing:-8.868042pt;}
.ws81{word-spacing:-8.814908pt;}
.ws7c{word-spacing:-8.071034pt;}
.ws1e{word-spacing:-7.866188pt;}
.ws5a{word-spacing:-7.517097pt;}
.ws3e{word-spacing:-7.342552pt;}
.ws88{word-spacing:-7.220892pt;}
.ws36{word-spacing:-7.109824pt;}
.ws6{word-spacing:-6.902089pt;}
.ws24{word-spacing:-6.818915pt;}
.ws61{word-spacing:-6.760733pt;}
.ws27{word-spacing:-5.131641pt;}
.ws73{word-spacing:-5.015277pt;}
.ws1f{word-spacing:-4.957095pt;}
.ws42{word-spacing:-4.840731pt;}
.ws16{word-spacing:-4.724368pt;}
.ws4{word-spacing:-4.144442pt;}
.ws2f{word-spacing:-4.026185pt;}
.ws1a{word-spacing:-3.386185pt;}
.ws4b{word-spacing:-2.397093pt;}
.ws11{word-spacing:-2.164365pt;}
.ws35{word-spacing:-1.550623pt;}
.ws34{word-spacing:-1.536001pt;}
.ws2e{word-spacing:-0.942546pt;}
.ws26{word-spacing:-0.768001pt;}
.ws77{word-spacing:-0.526025pt;}
.ws78{word-spacing:-0.478205pt;}
.wsb{word-spacing:-0.312747pt;}
.ws31{word-spacing:-0.058182pt;}
.ws1{word-spacing:-0.053134pt;}
.ws37{word-spacing:-0.042507pt;}
.ws3c{word-spacing:0.000000pt;}
.ws51{word-spacing:0.046545pt;}
.ws2d{word-spacing:0.337455pt;}
.ws89{word-spacing:0.430384pt;}
.ws1c{word-spacing:0.977455pt;}
.ws21{word-spacing:1.617456pt;}
.ws40{word-spacing:1.966547pt;}
.ws3f{word-spacing:2.024729pt;}
.ws72{word-spacing:2.082911pt;}
.ws66{word-spacing:2.141093pt;}
.ws5{word-spacing:2.927676pt;}
.ws75{word-spacing:2.955639pt;}
.ws19{word-spacing:3.013821pt;}
.ws52{word-spacing:3.382070pt;}
.ws3{word-spacing:3.653821pt;}
.ws1b{word-spacing:3.712003pt;}
.ws76{word-spacing:5.108368pt;}
.ws7d{word-spacing:5.318700pt;}
.ws38{word-spacing:5.922914pt;}
.ws7b{word-spacing:6.062574pt;}
.ws74{word-spacing:6.795642pt;}
.ws33{word-spacing:7.408848pt;}
.ws2b{word-spacing:8.133825pt;}
.ws7{word-spacing:8.241063pt;}
.ws67{word-spacing:8.746629pt;}
.ws6c{word-spacing:8.751962pt;}
.ws60{word-spacing:9.634362pt;}
.ws6e{word-spacing:9.637296pt;}
.ws70{word-spacing:9.642629pt;}
.ws6d{word-spacing:9.648134pt;}
.ws6f{word-spacing:9.653467pt;}
.ws82{word-spacing:11.004024pt;}
.ws2c{word-spacing:11.101100pt;}
.ws86{word-spacing:11.216559pt;}
.ws7e{word-spacing:11.742585pt;}
.ws65{word-spacing:12.309467pt;}
.ws3a{word-spacing:12.858193pt;}
.ws84{word-spacing:14.481781pt;}
.ws8a{word-spacing:14.829662pt;}
.ws85{word-spacing:15.042198pt;}
.ws79{word-spacing:15.249420pt;}
.ws5f{word-spacing:16.083814pt;}
.ws47{word-spacing:16.089142pt;}
.ws43{word-spacing:16.116377pt;}
.wsa{word-spacing:16.306893pt;}
.ws29{word-spacing:16.329805pt;}
.wsd{word-spacing:16.354714pt;}
.ws6b{word-spacing:16.623962pt;}
.ws5e{word-spacing:16.623968pt;}
.ws6a{word-spacing:16.629296pt;}
.wse{word-spacing:19.230425pt;}
.ws54{word-spacing:19.595653pt;}
.ws63{word-spacing:20.130926pt;}
.ws58{word-spacing:20.596381pt;}
.ws62{word-spacing:21.469109pt;}
.ws87{word-spacing:21.896466pt;}
.ws55{word-spacing:22.109109pt;}
.ws4f{word-spacing:23.846639pt;}
.ws1d{word-spacing:27.101113pt;}
.wsc{word-spacing:27.879526pt;}
.ws49{word-spacing:29.649479pt;}
.ws64{word-spacing:31.941845pt;}
.ws57{word-spacing:40.213636pt;}
.ws7a{word-spacing:66.475781pt;}
.ws4e{word-spacing:70.902306pt;}
.ws10{word-spacing:71.667439pt;}
.ws7f{word-spacing:75.470472pt;}
.ws80{word-spacing:76.093010pt;}
.ws4d{word-spacing:341.018586pt;}
.ws3d{word-spacing:1067.820038pt;}
._14{margin-left:-28.974570pt;}
._10{margin-left:-27.794490pt;}
._13{margin-left:-25.025477pt;}
._12{margin-left:-19.401282pt;}
._b{margin-left:-12.889379pt;}
._4{margin-left:-8.355207pt;}
._6{margin-left:-4.569513pt;}
._3{margin-left:-2.846279pt;}
._0{margin-left:-1.381481pt;}
._7{width:1.434614pt;}
._5{width:2.754464pt;}
._c{width:3.791809pt;}
._15{width:6.573541pt;}
._9{width:17.303796pt;}
._8{width:18.841395pt;}
._16{width:20.159755pt;}
._1{width:23.601560pt;}
._11{width:26.973772pt;}
._18{width:31.880320pt;}
._2{width:35.434969pt;}
._19{width:39.372195pt;}
._d{width:48.191630pt;}
._f{width:57.752394pt;}
._a{width:159.763708pt;}
._17{width:502.151134pt;}
._e{width:1052.073450pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:79.582667pt;}
.yea{bottom:114.245333pt;}
.y43{bottom:114.650667pt;}
.y69{bottom:114.857333pt;}
.y6a{bottom:115.212000pt;}
.yb3{bottom:117.902667pt;}
.y162{bottom:118.593333pt;}
.y1a5{bottom:118.594667pt;}
.y68{bottom:119.554667pt;}
.y2a{bottom:123.038667pt;}
.ye7{bottom:136.044000pt;}
.yaf{bottom:138.390667pt;}
.yeb{bottom:139.098667pt;}
.yad{bottom:139.700000pt;}
.yb0{bottom:142.754667pt;}
.yae{bottom:147.700000pt;}
.y161{bottom:149.861333pt;}
.y1a4{bottom:149.862667pt;}
.y42{bottom:149.966667pt;}
.y67{bottom:151.694667pt;}
.y160{bottom:154.225333pt;}
.y15f{bottom:155.841333pt;}
.ye9{bottom:155.842667pt;}
.ye8{bottom:158.750667pt;}
.yb2{bottom:159.498667pt;}
.y29{bottom:160.288000pt;}
.yb1{bottom:162.408000pt;}
.yb4{bottom:166.192000pt;}
.yb5{bottom:169.956000pt;}
.y41{bottom:172.017333pt;}
.y28{bottom:178.353333pt;}
.yac{bottom:190.502667pt;}
.y66{bottom:190.956000pt;}
.y40{bottom:194.068000pt;}
.y1a2{bottom:194.997333pt;}
.y65{bottom:195.298667pt;}
.y27{bottom:196.418667pt;}
.y15e{bottom:197.897333pt;}
.y19e{bottom:200.850667pt;}
.y1a3{bottom:202.469333pt;}
.ye5{bottom:203.140000pt;}
.y19f{bottom:208.281333pt;}
.yab{bottom:208.568000pt;}
.y19d{bottom:212.446667pt;}
.y26{bottom:214.484000pt;}
.y15b{bottom:219.696000pt;}
.y120{bottom:222.789333pt;}
.y121{bottom:223.504000pt;}
.ye1{bottom:223.629333pt;}
.y122{bottom:223.640000pt;}
.ydf{bottom:224.938667pt;}
.y1a1{bottom:226.265333pt;}
.y123{bottom:227.805333pt;}
.ye2{bottom:227.993333pt;}
.y3f{bottom:229.382667pt;}
.y1a0{bottom:230.628000pt;}
.y25{bottom:232.549333pt;}
.ye0{bottom:232.938667pt;}
.y11f{bottom:233.532000pt;}
.ya8{bottom:234.569333pt;}
.y15d{bottom:239.493333pt;}
.y64{bottom:239.905333pt;}
.y63{bottom:239.906667pt;}
.y15c{bottom:242.402667pt;}
.y62{bottom:244.248000pt;}
.ye4{bottom:244.737333pt;}
.y11e{bottom:245.870667pt;}
.y3e{bottom:247.448000pt;}
.ye3{bottom:247.645333pt;}
.y24{bottom:250.614667pt;}
.ye6{bottom:251.430667pt;}
.ya4{bottom:255.057333pt;}
.ya2{bottom:256.366667pt;}
.ya5{bottom:259.421333pt;}
.y11d{bottom:263.936000pt;}
.ya3{bottom:264.366667pt;}
.y198{bottom:265.120000pt;}
.y3d{bottom:265.513333pt;}
.y23{bottom:268.681333pt;}
.y19b{bottom:269.468000pt;}
.ya7{bottom:276.165333pt;}
.yaa{bottom:279.073333pt;}
.ya6{bottom:279.074667pt;}
.ya9{bottom:282.858667pt;}
.y15a{bottom:282.878667pt;}
.y3c{bottom:283.580000pt;}
.y22{bottom:286.746667pt;}
.y195{bottom:286.917333pt;}
.y157{bottom:287.226667pt;}
.y61{bottom:288.856000pt;}
.y19c{bottom:289.972000pt;}
.y60{bottom:293.198667pt;}
.ydd{bottom:295.518667pt;}
.y19a{bottom:300.736000pt;}
.y154{bottom:304.676000pt;}
.y21{bottom:304.812000pt;}
.y199{bottom:305.100000pt;}
.y197{bottom:306.716000pt;}
.y11c{bottom:309.100000pt;}
.y196{bottom:309.625333pt;}
.yd9{bottom:316.008000pt;}
.ya0{bottom:316.074667pt;}
.y3b{bottom:317.002667pt;}
.yd7{bottom:317.317333pt;}
.y156{bottom:318.494667pt;}
.yda{bottom:320.372000pt;}
.y155{bottom:322.858667pt;}
.y20{bottom:322.877333pt;}
.y159{bottom:324.474667pt;}
.yd8{bottom:325.317333pt;}
.y158{bottom:327.384000pt;}
.y119{bottom:330.828000pt;}
.y9c{bottom:336.562667pt;}
.ydc{bottom:337.116000pt;}
.y5f{bottom:337.806667pt;}
.y9a{bottom:337.872000pt;}
.y38{bottom:338.801333pt;}
.ydb{bottom:340.024000pt;}
.y9d{bottom:340.926667pt;}
.y1f{bottom:340.942667pt;}
.y5e{bottom:342.149333pt;}
.y11b{bottom:342.649333pt;}
.yde{bottom:343.809333pt;}
.y194{bottom:344.116000pt;}
.y9b{bottom:345.872000pt;}
.y191{bottom:348.465333pt;}
.y11a{bottom:349.030667pt;}
.y116{bottom:352.626667pt;}
.y18d{bottom:354.318667pt;}
.y9f{bottom:357.670667pt;}
.y3a{bottom:358.598667pt;}
.y1e{bottom:359.009333pt;}
.y9e{bottom:360.580000pt;}
.y39{bottom:361.508000pt;}
.y18e{bottom:361.749333pt;}
.y1c7{bottom:362.816000pt;}
.y1c0{bottom:364.144000pt;}
.ya1{bottom:364.364000pt;}
.y18c{bottom:365.914667pt;}
.y153{bottom:367.858667pt;}
.y118{bottom:372.425333pt;}
.y117{bottom:375.333333pt;}
.y37{bottom:376.266667pt;}
.y1d{bottom:377.074667pt;}
.y1c6{bottom:378.756000pt;}
.y190{bottom:379.733333pt;}
.y1bf{bottom:380.084000pt;}
.y18f{bottom:384.096000pt;}
.y193{bottom:385.713333pt;}
.y5d{bottom:386.757333pt;}
.yd5{bottom:387.898667pt;}
.y192{bottom:388.621333pt;}
.y150{bottom:389.657333pt;}
.y5c{bottom:391.098667pt;}
.y1c5{bottom:394.696000pt;}
.y1c{bottom:395.140000pt;}
.y1be{bottom:396.025333pt;}
.y115{bottom:397.416000pt;}
.y98{bottom:397.580000pt;}
.y34{bottom:398.065333pt;}
.yd1{bottom:408.386667pt;}
.y152{bottom:409.454667pt;}
.ycf{bottom:409.696000pt;}
.y1c4{bottom:410.636000pt;}
.y1bd{bottom:411.965333pt;}
.y151{bottom:412.364000pt;}
.yd2{bottom:412.750667pt;}
.y1b{bottom:413.205333pt;}
.yd0{bottom:417.696000pt;}
.y36{bottom:417.864000pt;}
.y94{bottom:418.069333pt;}
.y92{bottom:419.377333pt;}
.y114{bottom:420.232000pt;}
.y35{bottom:420.772000pt;}
.y95{bottom:422.432000pt;}
.y188{bottom:422.801333pt;}
.y1c3{bottom:426.577333pt;}
.y18b{bottom:427.149333pt;}
.y93{bottom:427.377333pt;}
.y1bc{bottom:427.905333pt;}
.yd4{bottom:429.494667pt;}
.y1a{bottom:431.270667pt;}
.yd3{bottom:432.402667pt;}
.y5b{bottom:435.706667pt;}
.yd6{bottom:436.188000pt;}
.y97{bottom:439.176000pt;}
.y5a{bottom:440.049333pt;}
.y111{bottom:442.030667pt;}
.y96{bottom:442.085333pt;}
.y1c2{bottom:442.517333pt;}
.y1bb{bottom:443.845333pt;}
.y185{bottom:444.598667pt;}
.y99{bottom:445.869333pt;}
.y19{bottom:449.337333pt;}
.y33{bottom:450.169333pt;}
.y14e{bottom:451.510667pt;}
.y14b{bottom:455.860000pt;}
.y18a{bottom:458.417333pt;}
.y1c1{bottom:458.457333pt;}
.yce{bottom:460.186667pt;}
.y113{bottom:461.828000pt;}
.y189{bottom:462.781333pt;}
.y187{bottom:464.397333pt;}
.y91{bottom:464.430667pt;}
.y112{bottom:464.737333pt;}
.y186{bottom:467.306667pt;}
.y18{bottom:467.402667pt;}
.y32{bottom:468.234667pt;}
.y148{bottom:473.309333pt;}
.y1ba{bottom:474.397333pt;}
.y59{bottom:475.065333pt;}
.y14f{bottom:476.364000pt;}
.y17{bottom:485.468000pt;}
.y31{bottom:486.300000pt;}
.y110{bottom:486.818667pt;}
.y14a{bottom:487.128000pt;}
.y1b9{bottom:490.337333pt;}
.y149{bottom:491.490667pt;}
.y14d{bottom:493.108000pt;}
.y14c{bottom:496.016000pt;}
.y181{bottom:501.797333pt;}
.y16{bottom:503.533333pt;}
.y30{bottom:504.365333pt;}
.y184{bottom:506.146667pt;}
.y1b8{bottom:506.278667pt;}
.y10f{bottom:509.636000pt;}
.y7e{bottom:514.725333pt;}
.y58{bottom:515.453333pt;}
.y15{bottom:521.598667pt;}
.ycc{bottom:522.009333pt;}
.y1b7{bottom:522.218667pt;}
.y2f{bottom:522.430667pt;}
.y17e{bottom:523.596000pt;}
.y57{bottom:525.430667pt;}
.ycd{bottom:528.390667pt;}
.y10c{bottom:531.433333pt;}
.ycb{bottom:531.986667pt;}
.y146{bottom:535.164000pt;}
.y183{bottom:537.414667pt;}
.y90{bottom:538.854667pt;}
.y14{bottom:539.665333pt;}
.y2e{bottom:540.497333pt;}
.y182{bottom:541.777333pt;}
.y7d{bottom:542.138667pt;}
.y8f{bottom:542.450667pt;}
.y180{bottom:543.394667pt;}
.y17f{bottom:546.302667pt;}
.y10e{bottom:551.232000pt;}
.y10d{bottom:554.141333pt;}
.y147{bottom:556.961333pt;}
.y13{bottom:557.730667pt;}
.y2d{bottom:558.562667pt;}
.y1b6{bottom:560.836000pt;}
.y7a{bottom:563.936000pt;}
.y79{bottom:567.613333pt;}
.yca{bottom:569.968000pt;}
.y12{bottom:575.796000pt;}
.y2c{bottom:576.628000pt;}
.y145{bottom:576.760000pt;}
.y144{bottom:579.669333pt;}
.y17b{bottom:580.794667pt;}
.y55{bottom:582.328000pt;}
.y10b{bottom:583.169333pt;}
.y7c{bottom:583.734667pt;}
.y8e{bottom:584.605333pt;}
.y7b{bottom:586.644000pt;}
.y143{bottom:586.780000pt;}
.y54{bottom:592.305333pt;}
.y17c{bottom:592.614667pt;}
.y56{bottom:592.741333pt;}
.y2b{bottom:594.693333pt;}
.y17d{bottom:598.426667pt;}
.y178{bottom:602.592000pt;}
.y108{bottom:604.966667pt;}
.y142{bottom:606.158667pt;}
.y78{bottom:610.574667pt;}
.y11{bottom:612.758667pt;}
.yc9{bottom:615.132000pt;}
.y17a{bottom:622.390667pt;}
.y10a{bottom:624.765333pt;}
.y179{bottom:625.300000pt;}
.y109{bottom:627.674667pt;}
.y8d{bottom:628.590667pt;}
.y77{bottom:628.640000pt;}
.y140{bottom:632.990667pt;}
.y13d{bottom:637.338667pt;}
.y1b0{bottom:640.848000pt;}
.yc8{bottom:644.581333pt;}
.y76{bottom:646.706667pt;}
.yc7{bottom:648.177333pt;}
.y107{bottom:648.948000pt;}
.y177{bottom:649.149333pt;}
.y8c{bottom:650.742667pt;}
.y8b{bottom:651.010667pt;}
.y1b5{bottom:654.381333pt;}
.y13a{bottom:654.788000pt;}
.y8a{bottom:654.908000pt;}
.y53{bottom:655.444000pt;}
.y141{bottom:657.842667pt;}
.y10{bottom:658.370667pt;}
.y1af{bottom:658.913333pt;}
.y75{bottom:664.772000pt;}
.y52{bottom:665.421333pt;}
.y89{bottom:666.625333pt;}
.y13c{bottom:668.606667pt;}
.y1b4{bottom:672.446667pt;}
.y13b{bottom:672.970667pt;}
.y173{bottom:673.653333pt;}
.y102{bottom:674.532000pt;}
.y13f{bottom:674.586667pt;}
.y88{bottom:675.417333pt;}
.yf{bottom:676.436000pt;}
.y13e{bottom:677.496000pt;}
.y176{bottom:678.001333pt;}
.yc6{bottom:681.222667pt;}
.y1b3{bottom:690.513333pt;}
.ye{bottom:691.048000pt;}
.y104{bottom:695.021333pt;}
.y170{bottom:695.450667pt;}
.y1ae{bottom:695.876000pt;}
.yfe{bottom:696.330667pt;}
.y85{bottom:697.789333pt;}
.yc5{bottom:699.288000pt;}
.yff{bottom:699.385333pt;}
.y74{bottom:701.734667pt;}
.y103{bottom:704.330667pt;}
.yd{bottom:705.660000pt;}
.y1b2{bottom:708.578667pt;}
.y175{bottom:709.269333pt;}
.y87{bottom:709.506667pt;}
.y86{bottom:712.416000pt;}
.y174{bottom:713.633333pt;}
.y172{bottom:715.249333pt;}
.y101{bottom:716.128000pt;}
.y105{bottom:716.129333pt;}
.y139{bottom:716.642667pt;}
.y171{bottom:718.158667pt;}
.y100{bottom:719.037333pt;}
.y73{bottom:720.332000pt;}
.y106{bottom:722.822667pt;}
.y51{bottom:723.182667pt;}
.y1b1{bottom:726.644000pt;}
.yc4{bottom:727.957333pt;}
.yc{bottom:734.145333pt;}
.y136{bottom:738.440000pt;}
.y82{bottom:740.670667pt;}
.yfd{bottom:740.968000pt;}
.y1ad{bottom:744.709333pt;}
.yc1{bottom:746.158667pt;}
.ybf{bottom:749.754667pt;}
.yb{bottom:750.086667pt;}
.y84{bottom:752.388000pt;}
.y16c{bottom:752.649333pt;}
.yc0{bottom:752.809333pt;}
.y83{bottom:755.296000pt;}
.y50{bottom:755.324000pt;}
.y16f{bottom:756.998667pt;}
.y138{bottom:758.238667pt;}
.yfa{bottom:759.138667pt;}
.y137{bottom:761.148000pt;}
.y81{bottom:764.616000pt;}
.ya{bottom:766.026667pt;}
.y72{bottom:769.165333pt;}
.yc3{bottom:769.553333pt;}
.yc2{bottom:772.462667pt;}
.y169{bottom:774.448000pt;}
.yfb{bottom:780.937333pt;}
.y9{bottom:781.966667pt;}
.y4f{bottom:782.198667pt;}
.yf7{bottom:783.992000pt;}
.y4c{bottom:786.548000pt;}
.y16e{bottom:788.265333pt;}
.y16d{bottom:792.629333pt;}
.y16b{bottom:794.245333pt;}
.y16a{bottom:797.154667pt;}
.y8{bottom:797.906667pt;}
.y130{bottom:800.294667pt;}
.yf9{bottom:800.734667pt;}
.y71{bottom:801.842667pt;}
.yf8{bottom:803.644000pt;}
.y49{bottom:803.997333pt;}
.y80{bottom:804.434667pt;}
.y134{bottom:804.644000pt;}
.yfc{bottom:807.429333pt;}
.y1ab{bottom:808.006667pt;}
.y7f{bottom:808.600000pt;}
.yf6{bottom:810.173333pt;}
.ybd{bottom:813.194667pt;}
.y7{bottom:813.846667pt;}
.y1a8{bottom:815.478667pt;}
.y4b{bottom:817.816000pt;}
.y1ac{bottom:821.290667pt;}
.y131{bottom:822.093333pt;}
.y4a{bottom:822.178667pt;}
.y4e{bottom:823.796000pt;}
.y135{bottom:825.148000pt;}
.y4d{bottom:826.704000pt;}
.yf5{bottom:827.560000pt;}
.y168{bottom:831.646667pt;}
.y70{bottom:834.520000pt;}
.yba{bottom:834.993333pt;}
.y1a7{bottom:835.296000pt;}
.y133{bottom:835.910667pt;}
.ybe{bottom:838.048000pt;}
.y6{bottom:839.218667pt;}
.y1aa{bottom:839.274667pt;}
.y132{bottom:840.274667pt;}
.y12f{bottom:841.890667pt;}
.y1a9{bottom:843.637333pt;}
.y12e{bottom:844.800000pt;}
.y12d{bottom:851.912000pt;}
.y6f{bottom:852.585333pt;}
.yf2{bottom:853.144000pt;}
.y165{bottom:853.444000pt;}
.ybc{bottom:854.790667pt;}
.y5{bottom:855.158667pt;}
.ybb{bottom:857.700000pt;}
.y1a6{bottom:870.708000pt;}
.y4{bottom:871.098667pt;}
.y12c{bottom:871.289333pt;}
.y167{bottom:873.242667pt;}
.yee{bottom:873.633333pt;}
.yec{bottom:874.942667pt;}
.y166{bottom:876.152000pt;}
.yef{bottom:877.997333pt;}
.yed{bottom:882.942667pt;}
.yf1{bottom:894.740000pt;}
.yf4{bottom:894.741333pt;}
.yf0{bottom:897.649333pt;}
.y12a{bottom:898.121333pt;}
.yb9{bottom:898.433333pt;}
.y164{bottom:900.809333pt;}
.yf3{bottom:901.434667pt;}
.y48{bottom:901.514667pt;}
.y127{bottom:902.469333pt;}
.y3{bottom:905.769333pt;}
.y6e{bottom:913.936000pt;}
.y47{bottom:919.580000pt;}
.y124{bottom:919.918667pt;}
.yb6{bottom:920.230667pt;}
.y12b{bottom:922.973333pt;}
.y6d{bottom:925.474667pt;}
.y126{bottom:933.737333pt;}
.y163{bottom:934.201333pt;}
.y2{bottom:934.993333pt;}
.y46{bottom:937.645333pt;}
.y125{bottom:938.101333pt;}
.y129{bottom:939.717333pt;}
.yb8{bottom:940.029333pt;}
.y128{bottom:942.626667pt;}
.yb7{bottom:942.938667pt;}
.y6c{bottom:971.994667pt;}
.y1{bottom:984.137333pt;}
.y45{bottom:987.432000pt;}
.y6b{bottom:990.060000pt;}
.hc{height:2.909093pt;}
.h2b{height:8.349733pt;}
.h9{height:14.824448pt;}
.h42{height:29.439550pt;}
.h3a{height:31.417733pt;}
.h3c{height:31.475915pt;}
.hb{height:31.880400pt;}
.h6{height:33.761485pt;}
.h5{height:38.096982pt;}
.h27{height:39.854579pt;}
.h2{height:39.903534pt;}
.h2d{height:39.970942pt;}
.hf{height:40.785489pt;}
.h10{height:41.658217pt;}
.ha{height:43.636400pt;}
.h3b{height:43.688400pt;}
.h7{height:43.694582pt;}
.h8{height:44.696508pt;}
.h4{height:44.876191pt;}
.h36{height:46.895550pt;}
.h23{height:47.782858pt;}
.h38{height:48.873733pt;}
.he{height:52.995067pt;}
.h25{height:53.495760pt;}
.h3d{height:55.901733pt;}
.h2e{height:55.907067pt;}
.h2f{height:58.020400pt;}
.hd{height:58.340400pt;}
.h24{height:58.345733pt;}
.h1c{height:61.001733pt;}
.h19{height:61.007067pt;}
.h21{height:62.547067pt;}
.h3{height:64.454458pt;}
.h1e{height:67.490427pt;}
.h1a{height:67.495760pt;}
.h26{height:69.656400pt;}
.h4d{height:69.821093pt;}
.h3f{height:70.285733pt;}
.h45{height:70.701093pt;}
.h55{height:72.563067pt;}
.h44{height:78.755067pt;}
.h53{height:81.018217pt;}
.h22{height:81.336400pt;}
.h5a{height:81.567550pt;}
.h4b{height:81.965733pt;}
.h41{height:82.103760pt;}
.h11{height:82.996400pt;}
.h20{height:84.855760pt;}
.h18{height:84.861093pt;}
.h28{height:87.271760pt;}
.h29{height:90.387067pt;}
.h50{height:91.832400pt;}
.h3e{height:95.811067pt;}
.h43{height:97.380400pt;}
.h4a{height:99.416400pt;}
.h58{height:99.657733pt;}
.h14{height:100.658427pt;}
.h1d{height:102.397093pt;}
.h17{height:102.402427pt;}
.h40{height:104.653733pt;}
.h2a{height:105.523067pt;}
.h16{height:107.399760pt;}
.h48{height:109.959760pt;}
.h47{height:109.965093pt;}
.h52{height:113.433733pt;}
.h51{height:119.063760pt;}
.h1b{height:119.767760pt;}
.h1f{height:119.773093pt;}
.h39{height:119.853093pt;}
.h32{height:119.858427pt;}
.h54{height:120.173093pt;}
.h2c{height:121.112400pt;}
.h4c{height:122.178427pt;}
.h46{height:122.183760pt;}
.h15{height:122.905733pt;}
.h31{height:125.090427pt;}
.h33{height:125.095760pt;}
.h34{height:137.309093pt;}
.h30{height:137.314427pt;}
.h12{height:142.306427pt;}
.h13{height:142.311760pt;}
.h35{height:142.546427pt;}
.h37{height:142.551760pt;}
.h57{height:143.586427pt;}
.h4e{height:154.685093pt;}
.h56{height:157.015760pt;}
.h49{height:172.141093pt;}
.h4f{height:189.591760pt;}
.h59{height:191.981093pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:77.102667pt;}
.x2c{left:79.530667pt;}
.x1{left:81.925333pt;}
.xf2{left:83.168000pt;}
.xf1{left:89.633333pt;}
.xb1{left:96.496000pt;}
.xf3{left:98.920000pt;}
.xf4{left:100.137333pt;}
.x147{left:104.321333pt;}
.x149{left:105.472000pt;}
.xb4{left:107.010667pt;}
.x130{left:107.930667pt;}
.x9{left:108.982667pt;}
.x125{left:113.125333pt;}
.xe3{left:115.440000pt;}
.x4d{left:117.386667pt;}
.x4c{left:121.558667pt;}
.x2d{left:123.300000pt;}
.xb2{left:124.601333pt;}
.x2{left:127.004000pt;}
.x113{left:127.904000pt;}
.x6f{left:131.001333pt;}
.x127{left:132.929333pt;}
.x131{left:134.198667pt;}
.x8{left:136.470667pt;}
.x46{left:137.997333pt;}
.x126{left:139.393333pt;}
.xa4{left:140.580000pt;}
.x114{left:141.641333pt;}
.x137{left:142.861333pt;}
.x4a{left:143.773333pt;}
.x9e{left:144.804000pt;}
.x11d{left:147.320000pt;}
.x129{left:148.681333pt;}
.x7{left:149.752000pt;}
.xea{left:151.573333pt;}
.x4e{left:153.572000pt;}
.x4f{left:154.790667pt;}
.x11c{left:155.698667pt;}
.x128{left:157.148000pt;}
.x70{left:158.476000pt;}
.xe9{left:159.952000pt;}
.x3{left:161.248000pt;}
.x11b{left:163.380000pt;}
.x12a{left:165.650667pt;}
.x103{left:167.280000pt;}
.x71{left:168.172000pt;}
.x138{left:169.129333pt;}
.x50{left:170.542667pt;}
.x5{left:172.753333pt;}
.x3a{left:174.385333pt;}
.x142{left:177.117333pt;}
.xe0{left:178.034667pt;}
.x1d{left:178.965333pt;}
.x73{left:180.900000pt;}
.x74{left:182.117333pt;}
.x33{left:183.032000pt;}
.x8f{left:184.720000pt;}
.x49{left:185.626667pt;}
.x139{left:186.882667pt;}
.xbd{left:187.973333pt;}
.x72{left:189.366667pt;}
.xeb{left:191.764000pt;}
.xcd{left:193.304000pt;}
.xce{left:194.521333pt;}
.x9d{left:196.314667pt;}
.x43{left:197.545333pt;}
.x2e{left:198.608000pt;}
.xd7{left:199.566667pt;}
.xcc{left:201.770667pt;}
.x101{left:203.228000pt;}
.x44{left:205.065333pt;}
.x90{left:206.537333pt;}
.x66{left:208.466667pt;}
.xcf{left:210.273333pt;}
.xe4{left:211.684000pt;}
.xd4{left:213.708000pt;}
.xbe{left:215.448000pt;}
.x121{left:216.676000pt;}
.x3d{left:217.774667pt;}
.x91{left:219.265333pt;}
.x14b{left:220.245333pt;}
.x34{left:221.362667pt;}
.x82{left:223.012000pt;}
.x120{left:224.358667pt;}
.xa5{left:225.410667pt;}
.x143{left:226.388000pt;}
.x37{left:227.298667pt;}
.x9f{left:229.634667pt;}
.xd5{left:230.678667pt;}
.x93{left:231.992000pt;}
.x94{left:233.209333pt;}
.xb5{left:234.985333pt;}
.x13b{left:236.153333pt;}
.x4b{left:237.142667pt;}
.xa0{left:238.137333pt;}
.xc0{left:239.090667pt;}
.x92{left:240.458667pt;}
.x122{left:242.112000pt;}
.x13a{left:243.836000pt;}
.xec{left:245.342667pt;}
.xbf{left:246.338667pt;}
.xb6{left:247.713333pt;}
.x95{left:248.961333pt;}
.x83{left:250.486667pt;}
.x115{left:252.380000pt;}
.x52{left:255.024000pt;}
.x53{left:256.241333pt;}
.x11e{left:258.058667pt;}
.x13f{left:259.008000pt;}
.x38{left:260.838667pt;}
.xed{left:262.312000pt;}
.x51{left:263.489333pt;}
.xb7{left:264.682667pt;}
.x104{left:267.104000pt;}
.x105{left:268.321333pt;}
.x116{left:269.350667pt;}
.x20{left:271.100000pt;}
.x54{left:271.993333pt;}
.x75{left:272.930667pt;}
.x85{left:274.129333pt;}
.x11f{left:275.028000pt;}
.x10d{left:276.569333pt;}
.x1f{left:279.477333pt;}
.x84{left:281.377333pt;}
.x10e{left:282.634667pt;}
.x106{left:284.073333pt;}
.x76{left:285.658667pt;}
.x1e{left:287.160000pt;}
.xee{left:288.569333pt;}
.x86{left:289.881333pt;}
.xe6{left:291.604000pt;}
.x118{left:292.512000pt;}
.xaa{left:293.781333pt;}
.x77{left:295.200000pt;}
.x132{left:297.118667pt;}
.x110{left:298.386667pt;}
.x111{left:299.604000pt;}
.x35{left:301.444000pt;}
.x119{left:303.016000pt;}
.x144{left:304.097333pt;}
.xf6{left:305.104000pt;}
.x10f{left:306.853333pt;}
.x107{left:308.725333pt;}
.x78{left:309.745333pt;}
.x21{left:311.290667pt;}
.x47{left:313.218667pt;}
.x112{left:315.356000pt;}
.x148{left:316.944000pt;}
.xb3{left:318.420000pt;}
.xf5{left:321.164000pt;}
.x79{left:322.473333pt;}
.x7a{left:323.690667pt;}
.x102{left:325.973333pt;}
.x145{left:328.748000pt;}
.x133{left:329.840000pt;}
.x6{left:330.852000pt;}
.x13c{left:332.049333pt;}
.x67{left:334.777333pt;}
.x12e{left:337.761333pt;}
.x7b{left:339.442667pt;}
.x96{left:343.060000pt;}
.x68{left:344.473333pt;}
.x4{left:346.302667pt;}
.x13d{left:347.801333pt;}
.xe5{left:349.008000pt;}
.x12f{left:349.970667pt;}
.x3e{left:352.984000pt;}
.xd0{left:355.426667pt;}
.x23{left:357.186667pt;}
.x24{left:358.404000pt;}
.x2b{left:360.680000pt;}
.x2f{left:361.725333pt;}
.x97{left:363.085333pt;}
.x22{left:364.869333pt;}
.x3b{left:366.608000pt;}
.xab{left:367.929333pt;}
.xe1{left:370.206667pt;}
.x14d{left:372.660000pt;}
.x26{left:374.156000pt;}
.x27{left:375.373333pt;}
.x87{left:377.669333pt;}
.xe2{left:378.709333pt;}
.x14c{left:380.342667pt;}
.x25{left:381.838667pt;}
.x88{left:383.980000pt;}
.x108{left:387.058667pt;}
.xd6{left:388.560000pt;}
.x14e{left:389.630667pt;}
.x28{left:391.125333pt;}
.x29{left:392.344000pt;}
.xd8{left:394.262667pt;}
.x48{left:398.088000pt;}
.x1c{left:399.324000pt;}
.x109{left:401.004000pt;}
.xca{left:402.736000pt;}
.xad{left:404.068000pt;}
.xae{left:405.285333pt;}
.xd2{left:406.186667pt;}
.x98{left:407.170667pt;}
.x2a{left:408.096000pt;}
.xf8{left:409.377333pt;}
.xc9{left:411.202667pt;}
.xac{left:412.534667pt;}
.xd1{left:413.436000pt;}
.xf7{left:415.842667pt;}
.xb{left:417.260000pt;}
.xc1{left:418.992000pt;}
.x99{left:419.898667pt;}
.xaf{left:421.037333pt;}
.x7c{left:422.545333pt;}
.x5f{left:423.724000pt;}
.xf9{left:425.129333pt;}
.x64{left:426.457333pt;}
.x5e{left:427.948000pt;}
.xef{left:429.229333pt;}
.x19{left:430.170667pt;}
.x89{left:433.272000pt;}
.xc2{left:434.744000pt;}
.x60{left:435.845333pt;}
.x9a{left:437.500000pt;}
.x39{left:439.305333pt;}
.xb8{left:442.370667pt;}
.x36{left:444.096000pt;}
.x8b{left:446.000000pt;}
.x8c{left:447.217333pt;}
.xc{left:449.140000pt;}
.x1b{left:450.146667pt;}
.x117{left:451.622667pt;}
.xc7{left:452.657333pt;}
.x8a{left:454.465333pt;}
.x9b{left:456.536000pt;}
.xda{left:457.500000pt;}
.x45{left:458.773333pt;}
.xb0{left:460.408000pt;}
.x8d{left:462.969333pt;}
.xd9{left:464.749333pt;}
.x56{left:466.918667pt;}
.x6a{left:468.228000pt;}
.x140{left:469.140000pt;}
.x3f{left:470.628000pt;}
.x123{left:471.798667pt;}
.xdb{left:473.252000pt;}
.x69{left:475.476000pt;}
.xb9{left:476.589333pt;}
.x7d{left:477.524000pt;}
.x3c{left:479.794667pt;}
.xd{left:482.073333pt;}
.x41{left:484.249333pt;}
.x7e{left:486.026667pt;}
.x134{left:489.101333pt;}
.x141{left:490.677333pt;}
.x9c{left:492.477333pt;}
.x10a{left:498.688000pt;}
.x63{left:501.509333pt;}
.xe7{left:502.969333pt;}
.x11a{left:504.345333pt;}
.x124{left:507.512000pt;}
.xa2{left:510.974667pt;}
.xa3{left:512.193333pt;}
.x12b{left:515.898667pt;}
.xa1{left:519.441333pt;}
.x57{left:521.017333pt;}
.xa6{left:522.578667pt;}
.xfb{left:523.872000pt;}
.x30{left:524.842667pt;}
.x12{left:528.577333pt;}
.x1a{left:530.132000pt;}
.xfa{left:531.554667pt;}
.x58{left:533.138667pt;}
.xa7{left:538.330667pt;}
.xfd{left:540.841333pt;}
.x14{left:542.314667pt;}
.x15{left:543.532000pt;}
.x8e{left:546.072000pt;}
.xfc{left:549.308000pt;}
.x13{left:550.781333pt;}
.x6b{left:551.858667pt;}
.xf{left:554.397333pt;}
.x10{left:555.614667pt;}
.xcb{left:557.313333pt;}
.x16{left:559.284000pt;}
.xe{left:562.862667pt;}
.x7f{left:564.730667pt;}
.x6c{left:567.082667pt;}
.x146{left:569.736000pt;}
.x11{left:571.366667pt;}
.xc3{left:572.352000pt;}
.xd3{left:574.770667pt;}
.xba{left:576.822667pt;}
.x61{left:577.820000pt;}
.x6d{left:579.810667pt;}
.xe8{left:581.160000pt;}
.x40{left:584.220000pt;}
.x6e{left:586.120000pt;}
.xc4{left:587.576000pt;}
.x42{left:589.037333pt;}
.x62{left:589.941333pt;}
.xa8{left:593.862667pt;}
.x135{left:596.474667pt;}
.xc5{left:600.302667pt;}
.xc8{left:605.489333pt;}
.xc6{left:606.613333pt;}
.x14a{left:608.096000pt;}
.x18{left:609.276000pt;}
.xdc{left:610.860000pt;}
.x31{left:612.650667pt;}
.x10b{left:614.556000pt;}
.x12c{left:616.576000pt;}
.x5a{left:617.620000pt;}
.x59{left:621.844000pt;}
.xfe{left:622.773333pt;}
.xdd{left:626.084000pt;}
.x17{left:627.164000pt;}
.x5b{left:629.741333pt;}
.x14f{left:632.522667pt;}
.x10c{left:634.556000pt;}
.xde{left:638.812000pt;}
.xf0{left:644.000000pt;}
.xdf{left:645.121333pt;}
.x80{left:648.361333pt;}
.xa9{left:650.976000pt;}
.x65{left:654.189333pt;}
.x13e{left:657.381333pt;}
.x81{left:663.585333pt;}
.x55{left:664.634667pt;}
.x136{left:666.700000pt;}
.xbb{left:668.538667pt;}
.x12d{left:670.032000pt;}
.xff{left:676.230667pt;}
.xbc{left:681.265333pt;}
.x32{left:687.960000pt;}
.x5c{left:689.262667pt;}
.x5d{left:715.868000pt;}
.x100{left:738.642667pt;}
}




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