
    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_983a4067195f6cfa6654ea9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136000;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_045a1bf1eb68702335334bc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_2b79cd582c1f5c9d9085d880.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708000;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_78a7355d58155c40c38345ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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_504553d3f6eb76c0814c60aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984863;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_02ed5b46e50c2c5efe7e9f79.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.122000;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_9a9014bed0b4b61fe0e6a17e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000048;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_02563e3e857f7b57a6814a5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087000;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_68d10e41a07ea1aa33feb8f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984863;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_8fb897fbad23ac1424a45302.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974609;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_07d0de891e50a37b7bbe829f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.173828;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_caac7902c8b35f64cd6bea25.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933594;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_1980d390425a5cd429186edc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.132812;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_3f8ef039d725b67cddb039b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.977000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.979000px;}
.v3{vertical-align:22.977000px;}
.v1{vertical-align:25.974000px;}
.ls1c{letter-spacing:-2.070000px;}
.ls13{letter-spacing:-1.800000px;}
.ls1b{letter-spacing:-1.380000px;}
.lse{letter-spacing:-1.104000px;}
.ls10{letter-spacing:-1.035000px;}
.ls8{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.402270px;}
.ls1d{letter-spacing:-0.345000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000300px;}
.ls19{letter-spacing:0.276000px;}
.ls1a{letter-spacing:0.402270px;}
.ls18{letter-spacing:0.603405px;}
.lsf{letter-spacing:0.690000px;}
.ls1e{letter-spacing:0.855000px;}
.ls16{letter-spacing:0.899400px;}
.ls17{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.380000px;}
.ls5{letter-spacing:1.554000px;}
.ls6{letter-spacing:1.575000px;}
.ls3{letter-spacing:1.998000px;}
.ls15{letter-spacing:28.605600px;}
.lsc{letter-spacing:29.812200px;}
.ls11{letter-spacing:29.812800px;}
.lsb{letter-spacing:49.926000px;}
.ls9{letter-spacing:50.328000px;}
.ls7{letter-spacing:852.175200px;}
.ls4{letter-spacing:1348.387200px;}
.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;}
}
.ws116{word-spacing:-17.940000px;}
.ws115{word-spacing:-17.526000px;}
.ws22{word-spacing:-17.250000px;}
.wsb7{word-spacing:-16.836000px;}
.ws0{word-spacing:-16.815000px;}
.ws106{word-spacing:-16.560000px;}
.ws108{word-spacing:-15.900000px;}
.ws136{word-spacing:-15.750000px;}
.ws12{word-spacing:-15.228000px;}
.ws156{word-spacing:-15.180000px;}
.ws15e{word-spacing:-15.105000px;}
.ws8e{word-spacing:-15.000000px;}
.ws15d{word-spacing:-14.250000px;}
.wsc6{word-spacing:-13.200000px;}
.ws107{word-spacing:-10.660155px;}
.ws117{word-spacing:-10.459020px;}
.ws21{word-spacing:-10.056750px;}
.ws74{word-spacing:-9.654480px;}
.ws14c{word-spacing:-7.440000px;}
.ws3b{word-spacing:-6.417000px;}
.ws9b{word-spacing:-5.175000px;}
.ws6c{word-spacing:-4.554000px;}
.ws3d{word-spacing:-4.485000px;}
.ws96{word-spacing:-4.416000px;}
.ws12f{word-spacing:-4.347000px;}
.ws11d{word-spacing:-4.278000px;}
.ws12d{word-spacing:-4.209000px;}
.ws1b{word-spacing:-4.158000px;}
.ws147{word-spacing:-4.140000px;}
.ws91{word-spacing:-3.933000px;}
.ws5f{word-spacing:-3.864000px;}
.ws5b{word-spacing:-3.519000px;}
.ws3a{word-spacing:-3.381000px;}
.ws52{word-spacing:-3.312000px;}
.ws26{word-spacing:-3.249000px;}
.wsae{word-spacing:-3.243000px;}
.ws7c{word-spacing:-3.174000px;}
.wsc8{word-spacing:-3.105000px;}
.ws17{word-spacing:-3.087000px;}
.wsb5{word-spacing:-3.036000px;}
.wsf1{word-spacing:-2.967000px;}
.wsd0{word-spacing:-2.898000px;}
.wsf7{word-spacing:-2.880000px;}
.wsb6{word-spacing:-2.829000px;}
.ws51{word-spacing:-2.760000px;}
.wsda{word-spacing:-2.691000px;}
.ws176{word-spacing:-2.679000px;}
.ws14{word-spacing:-2.646000px;}
.ws48{word-spacing:-2.622000px;}
.wsf8{word-spacing:-2.580000px;}
.wsb2{word-spacing:-2.553000px;}
.ws126{word-spacing:-2.484000px;}
.wsa{word-spacing:-2.415000px;}
.ws150{word-spacing:-2.400000px;}
.ws60{word-spacing:-2.346000px;}
.ws134{word-spacing:-2.277000px;}
.wsef{word-spacing:-2.208000px;}
.ws175{word-spacing:-2.166000px;}
.ws63{word-spacing:-2.139000px;}
.ws8a{word-spacing:-2.100000px;}
.wse{word-spacing:-2.079000px;}
.ws6a{word-spacing:-2.070000px;}
.ws17a{word-spacing:-2.052000px;}
.wsac{word-spacing:-2.001000px;}
.ws24{word-spacing:-1.998000px;}
.ws13a{word-spacing:-1.980000px;}
.ws75{word-spacing:-1.932000px;}
.ws85{word-spacing:-1.920000px;}
.wsa5{word-spacing:-1.863000px;}
.wsc1{word-spacing:-1.794000px;}
.ws19{word-spacing:-1.764000px;}
.ws6e{word-spacing:-1.725000px;}
.ws42{word-spacing:-1.680000px;}
.ws36{word-spacing:-1.656000px;}
.ws2d{word-spacing:-1.587000px;}
.ws15{word-spacing:-1.575000px;}
.ws9{word-spacing:-1.518000px;}
.ws8b{word-spacing:-1.500000px;}
.wsf3{word-spacing:-1.449000px;}
.ws46{word-spacing:-1.380000px;}
.ws71{word-spacing:-1.311000px;}
.ws27{word-spacing:-1.254000px;}
.ws33{word-spacing:-1.242000px;}
.ws28{word-spacing:-1.197000px;}
.wsfa{word-spacing:-1.173000px;}
.ws57{word-spacing:-1.140000px;}
.ws73{word-spacing:-1.104000px;}
.ws177{word-spacing:-1.083000px;}
.wsb1{word-spacing:-1.035000px;}
.ws152{word-spacing:-1.020000px;}
.wsf4{word-spacing:-0.966000px;}
.wse5{word-spacing:-0.960000px;}
.ws29{word-spacing:-0.912000px;}
.ws10d{word-spacing:-0.900000px;}
.ws5c{word-spacing:-0.897000px;}
.ws2a{word-spacing:-0.855000px;}
.ws138{word-spacing:-0.840000px;}
.ws7a{word-spacing:-0.828000px;}
.ws3c{word-spacing:-0.759000px;}
.ws1c{word-spacing:-0.756000px;}
.wse6{word-spacing:-0.720000px;}
.ws6f{word-spacing:-0.690000px;}
.ws25{word-spacing:-0.684000px;}
.ws179{word-spacing:-0.627000px;}
.ws34{word-spacing:-0.621000px;}
.wse9{word-spacing:-0.600000px;}
.wsaa{word-spacing:-0.552000px;}
.wsa4{word-spacing:-0.483000px;}
.ws110{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.414000px;}
.ws37{word-spacing:-0.345000px;}
.ws16d{word-spacing:-0.342000px;}
.ws14d{word-spacing:-0.300000px;}
.ws162{word-spacing:-0.285000px;}
.ws3f{word-spacing:-0.276000px;}
.ws140{word-spacing:-0.207000px;}
.ws13d{word-spacing:-0.180000px;}
.wsec{word-spacing:-0.138000px;}
.ws5d{word-spacing:-0.069000px;}
.ws55{word-spacing:-0.060000px;}
.ws1f{word-spacing:-0.057000px;}
.ws20{word-spacing:-0.039900px;}
.ws3{word-spacing:0.000000px;}
.wsa3{word-spacing:0.060000px;}
.ws32{word-spacing:0.069000px;}
.ws99{word-spacing:0.138000px;}
.ws94{word-spacing:0.207000px;}
.ws7e{word-spacing:0.276000px;}
.ws16a{word-spacing:0.285000px;}
.ws173{word-spacing:0.342000px;}
.ws50{word-spacing:0.345000px;}
.ws83{word-spacing:0.414000px;}
.ws166{word-spacing:0.456000px;}
.ws7d{word-spacing:0.483000px;}
.ws4c{word-spacing:0.552000px;}
.wsc{word-spacing:0.621000px;}
.ws7f{word-spacing:0.690000px;}
.ws157{word-spacing:0.720000px;}
.ws58{word-spacing:0.780000px;}
.ws164{word-spacing:0.798000px;}
.ws4{word-spacing:0.828000px;}
.ws161{word-spacing:0.855000px;}
.wscd{word-spacing:0.897000px;}
.ws13b{word-spacing:0.960000px;}
.ws146{word-spacing:0.966000px;}
.ws47{word-spacing:1.035000px;}
.ws135{word-spacing:1.080000px;}
.ws30{word-spacing:1.104000px;}
.ws13f{word-spacing:1.173000px;}
.ws178{word-spacing:1.197000px;}
.ws7{word-spacing:1.242000px;}
.ws2c{word-spacing:1.311000px;}
.wsd5{word-spacing:1.380000px;}
.ws5a{word-spacing:1.440000px;}
.wsd2{word-spacing:1.449000px;}
.wsba{word-spacing:1.518000px;}
.wsdb{word-spacing:1.587000px;}
.ws6b{word-spacing:1.656000px;}
.wse4{word-spacing:1.680000px;}
.ws2e{word-spacing:1.725000px;}
.ws88{word-spacing:1.740000px;}
.ws16f{word-spacing:1.767000px;}
.wsed{word-spacing:1.794000px;}
.ws89{word-spacing:1.800000px;}
.ws65{word-spacing:1.863000px;}
.wsd9{word-spacing:1.932000px;}
.ws10c{word-spacing:1.980000px;}
.wsc4{word-spacing:2.001000px;}
.ws143{word-spacing:2.040000px;}
.wsbd{word-spacing:2.070000px;}
.ws1d{word-spacing:2.079000px;}
.ws133{word-spacing:2.139000px;}
.wsaf{word-spacing:2.208000px;}
.ws139{word-spacing:2.220000px;}
.wsd{word-spacing:2.277000px;}
.ws92{word-spacing:2.346000px;}
.ws169{word-spacing:2.394000px;}
.ws40{word-spacing:2.415000px;}
.wse3{word-spacing:2.460000px;}
.ws127{word-spacing:2.484000px;}
.ws123{word-spacing:2.553000px;}
.ws163{word-spacing:2.565000px;}
.wsc0{word-spacing:2.622000px;}
.wsa7{word-spacing:2.691000px;}
.ws9f{word-spacing:2.760000px;}
.ws170{word-spacing:2.793000px;}
.wsd6{word-spacing:2.829000px;}
.ws3e{word-spacing:2.898000px;}
.ws15f{word-spacing:2.907000px;}
.wsde{word-spacing:2.967000px;}
.wsb0{word-spacing:3.036000px;}
.ws70{word-spacing:3.105000px;}
.ws1a{word-spacing:3.150000px;}
.wsb{word-spacing:3.174000px;}
.ws9a{word-spacing:3.243000px;}
.wscf{word-spacing:3.312000px;}
.ws9d{word-spacing:3.381000px;}
.wsf9{word-spacing:3.420000px;}
.wsf5{word-spacing:3.450000px;}
.ws174{word-spacing:3.477000px;}
.ws151{word-spacing:3.540000px;}
.wsc7{word-spacing:3.588000px;}
.ws14b{word-spacing:3.657000px;}
.ws171{word-spacing:3.705000px;}
.ws5{word-spacing:3.726000px;}
.ws165{word-spacing:3.762000px;}
.ws18{word-spacing:3.780000px;}
.wsd4{word-spacing:3.795000px;}
.wscb{word-spacing:3.864000px;}
.wsfc{word-spacing:3.933000px;}
.ws61{word-spacing:4.002000px;}
.ws14f{word-spacing:4.020000px;}
.ws67{word-spacing:4.071000px;}
.ws109{word-spacing:4.080000px;}
.ws45{word-spacing:4.140000px;}
.wsbc{word-spacing:4.209000px;}
.ws8d{word-spacing:4.260000px;}
.ws81{word-spacing:4.278000px;}
.ws142{word-spacing:4.347000px;}
.ws118{word-spacing:4.416000px;}
.ws4e{word-spacing:4.485000px;}
.wsc2{word-spacing:4.554000px;}
.ws6{word-spacing:4.623000px;}
.ws77{word-spacing:4.692000px;}
.ws16b{word-spacing:4.731000px;}
.ws125{word-spacing:4.761000px;}
.ws16{word-spacing:4.788000px;}
.ws72{word-spacing:4.830000px;}
.ws104{word-spacing:4.860000px;}
.wsb8{word-spacing:4.899000px;}
.ws95{word-spacing:5.037000px;}
.wsdc{word-spacing:5.106000px;}
.ws8{word-spacing:5.175000px;}
.wsca{word-spacing:5.244000px;}
.ws11c{word-spacing:5.313000px;}
.ws2f{word-spacing:5.382000px;}
.wse1{word-spacing:5.451000px;}
.wsd8{word-spacing:5.589000px;}
.ws100{word-spacing:5.640000px;}
.ws16e{word-spacing:5.643000px;}
.ws97{word-spacing:5.658000px;}
.ws12a{word-spacing:5.727000px;}
.ws149{word-spacing:5.796000px;}
.ws16c{word-spacing:5.814000px;}
.wsad{word-spacing:5.865000px;}
.ws160{word-spacing:5.871000px;}
.ws31{word-spacing:5.934000px;}
.ws38{word-spacing:6.003000px;}
.wsd3{word-spacing:6.072000px;}
.ws82{word-spacing:6.141000px;}
.ws43{word-spacing:6.210000px;}
.ws14a{word-spacing:6.279000px;}
.ws66{word-spacing:6.417000px;}
.ws14e{word-spacing:6.480000px;}
.wse0{word-spacing:6.486000px;}
.wsa9{word-spacing:6.555000px;}
.wse2{word-spacing:6.624000px;}
.wsa0{word-spacing:6.693000px;}
.ws13c{word-spacing:6.720000px;}
.wsab{word-spacing:6.762000px;}
.wsbf{word-spacing:6.831000px;}
.ws113{word-spacing:6.840000px;}
.ws68{word-spacing:6.900000px;}
.ws167{word-spacing:7.011000px;}
.ws53{word-spacing:7.038000px;}
.ws98{word-spacing:7.107000px;}
.ws90{word-spacing:7.176000px;}
.ws13{word-spacing:7.182000px;}
.ws103{word-spacing:7.200000px;}
.ws130{word-spacing:7.245000px;}
.ws69{word-spacing:7.314000px;}
.ws23{word-spacing:7.350000px;}
.ws10f{word-spacing:7.380000px;}
.wsbb{word-spacing:7.383000px;}
.ws4d{word-spacing:7.452000px;}
.wsce{word-spacing:7.521000px;}
.ws87{word-spacing:7.560000px;}
.ws124{word-spacing:7.590000px;}
.ws11e{word-spacing:7.659000px;}
.ws10e{word-spacing:7.680000px;}
.wsd7{word-spacing:7.866000px;}
.ws102{word-spacing:7.920000px;}
.ws144{word-spacing:7.935000px;}
.ws12b{word-spacing:8.004000px;}
.ws5e{word-spacing:8.142000px;}
.ws62{word-spacing:8.211000px;}
.ws158{word-spacing:8.280000px;}
.ws153{word-spacing:8.340000px;}
.ws15b{word-spacing:8.349000px;}
.ws11f{word-spacing:8.418000px;}
.ws49{word-spacing:8.487000px;}
.wsf0{word-spacing:8.556000px;}
.wsa1{word-spacing:8.580000px;}
.ws54{word-spacing:8.625000px;}
.wsa8{word-spacing:8.694000px;}
.wsc5{word-spacing:8.832000px;}
.ws111{word-spacing:8.880000px;}
.ws12e{word-spacing:8.901000px;}
.ws59{word-spacing:8.940000px;}
.wscc{word-spacing:8.970000px;}
.wsee{word-spacing:9.039000px;}
.ws64{word-spacing:9.108000px;}
.ws35{word-spacing:9.177000px;}
.ws2{word-spacing:9.204000px;}
.ws131{word-spacing:9.246000px;}
.wsd1{word-spacing:9.315000px;}
.wsfb{word-spacing:9.384000px;}
.ws1{word-spacing:9.438000px;}
.ws148{word-spacing:9.453000px;}
.wsfd{word-spacing:9.522000px;}
.ws105{word-spacing:9.540000px;}
.ws121{word-spacing:9.591000px;}
.ws13e{word-spacing:9.660000px;}
.wsf2{word-spacing:9.867000px;}
.ws10a{word-spacing:9.900000px;}
.ws93{word-spacing:9.936000px;}
.ws7b{word-spacing:10.074000px;}
.wsb3{word-spacing:10.143000px;}
.ws8c{word-spacing:10.200000px;}
.wsdd{word-spacing:10.212000px;}
.ws76{word-spacing:10.281000px;}
.wsfe{word-spacing:10.350000px;}
.ws129{word-spacing:10.419000px;}
.ws9e{word-spacing:10.488000px;}
.ws17b{word-spacing:10.545000px;}
.ws154{word-spacing:10.764000px;}
.ws141{word-spacing:10.833000px;}
.ws80{word-spacing:10.902000px;}
.ws122{word-spacing:10.971000px;}
.ws79{word-spacing:11.040000px;}
.wsb4{word-spacing:11.109000px;}
.wsb9{word-spacing:11.247000px;}
.ws15c{word-spacing:11.454000px;}
.ws159{word-spacing:11.520000px;}
.wsf{word-spacing:11.640000px;}
.ws11b{word-spacing:11.730000px;}
.ws84{word-spacing:11.760000px;}
.ws155{word-spacing:11.868000px;}
.wseb{word-spacing:11.937000px;}
.wsa6{word-spacing:12.075000px;}
.ws41{word-spacing:12.213000px;}
.ws39{word-spacing:12.282000px;}
.ws86{word-spacing:12.300000px;}
.wsc9{word-spacing:12.489000px;}
.ws132{word-spacing:12.765000px;}
.ws56{word-spacing:12.960000px;}
.ws4b{word-spacing:13.041000px;}
.ws4a{word-spacing:13.248000px;}
.wse8{word-spacing:13.440000px;}
.ws172{word-spacing:13.566000px;}
.ws78{word-spacing:13.662000px;}
.wse7{word-spacing:13.740000px;}
.wsf6{word-spacing:13.800000px;}
.ws11{word-spacing:14.220000px;}
.wsea{word-spacing:14.352000px;}
.ws9c{word-spacing:14.421000px;}
.ws10{word-spacing:14.580000px;}
.ws8f{word-spacing:14.628000px;}
.ws128{word-spacing:14.835000px;}
.ws44{word-spacing:15.249000px;}
.ws137{word-spacing:15.387000px;}
.ws120{word-spacing:15.594000px;}
.wsa2{word-spacing:15.720000px;}
.ws4f{word-spacing:16.146000px;}
.ws12c{word-spacing:16.491000px;}
.ws112{word-spacing:16.620000px;}
.ws6d{word-spacing:17.733000px;}
.wsc3{word-spacing:19.182000px;}
.ws114{word-spacing:19.260000px;}
.ws11a{word-spacing:22.218000px;}
.ws101{word-spacing:22.560000px;}
.ws1e{word-spacing:24.003000px;}
.ws119{word-spacing:24.840000px;}
.wsff{word-spacing:25.020000px;}
.ws145{word-spacing:27.669000px;}
.wsdf{word-spacing:28.083000px;}
.ws10b{word-spacing:34.020000px;}
.ws168{word-spacing:42.750000px;}
.ws15a{word-spacing:69.615000px;}
.ws2b{word-spacing:80.073000px;}
._e{margin-left:-25.737000px;}
._22{margin-left:-24.633000px;}
._1b{margin-left:-22.839000px;}
._d{margin-left:-21.390000px;}
._21{margin-left:-19.734000px;}
._f{margin-left:-17.250000px;}
._10{margin-left:-15.870000px;}
._3{margin-left:-13.705200px;}
._5{margin-left:-12.157800px;}
._7{margin-left:-10.800000px;}
._9{margin-left:-9.495900px;}
._a{margin-left:-7.534200px;}
._4{margin-left:-6.285900px;}
._0{margin-left:-4.336800px;}
._2{margin-left:-2.470200px;}
._1{margin-left:-1.380000px;}
._8{width:1.084800px;}
._14{width:2.265600px;}
._23{width:3.423600px;}
._25{width:5.415000px;}
._1f{width:7.260000px;}
._16{width:8.618400px;}
._26{width:9.975000px;}
._12{width:11.355000px;}
._17{width:14.100000px;}
._20{width:20.155800px;}
._15{width:21.240000px;}
._1e{width:24.180000px;}
._1d{width:26.400000px;}
._13{width:28.080000px;}
._1a{width:29.820000px;}
._1c{width:32.700000px;}
._6{width:38.280000px;}
._18{width:44.163000px;}
._c{width:49.920000px;}
._b{width:51.600000px;}
._11{width:62.118000px;}
._19{width:67.203000px;}
._24{width:77.478000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fsd{font-size:36.729000px;}
.fsc{font-size:39.900000px;}
.fs7{font-size:40.227000px;}
.fsa{font-size:42.000000px;}
.fs1{font-size:45.474000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs9{font-size:62.400000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:69.000000px;}
.fs0{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:70.990500px;}
.y16f{bottom:127.559100px;}
.y1d{bottom:127.559250px;}
.yff{bottom:129.685200px;}
.y4f{bottom:133.303500px;}
.y2f0{bottom:133.303650px;}
.y125{bottom:135.429450px;}
.y276{bottom:145.559100px;}
.y1c{bottom:145.559250px;}
.y4e{bottom:145.559400px;}
.y16e{bottom:146.759100px;}
.y215{bottom:146.761800px;}
.yfe{bottom:148.885200px;}
.y18d{bottom:151.303500px;}
.y96{bottom:151.303650px;}
.y2ef{bottom:151.303800px;}
.y124{bottom:153.429600px;}
.y1b{bottom:163.559250px;}
.y18c{bottom:163.559400px;}
.y2ee{bottom:163.559700px;}
.y331{bottom:164.341200px;}
.y16d{bottom:165.959100px;}
.y214{bottom:165.964500px;}
.yfd{bottom:168.085200px;}
.ydb{bottom:169.303500px;}
.y4d{bottom:169.303650px;}
.y1ee{bottom:179.575050px;}
.y71{bottom:181.559250px;}
.yda{bottom:181.559400px;}
.y2ed{bottom:181.559700px;}
.y330{bottom:182.341200px;}
.y16c{bottom:185.159100px;}
.y213{bottom:185.167200px;}
.yfc{bottom:187.285200px;}
.y1a{bottom:187.303500px;}
.y2ce{bottom:187.303650px;}
.y275{bottom:197.574900px;}
.y95{bottom:197.575200px;}
.y1ed{bottom:199.009950px;}
.y70{bottom:199.559250px;}
.y1c9{bottom:199.559400px;}
.y2ec{bottom:199.559700px;}
.y123{bottom:199.701150px;}
.y32f{bottom:201.123300px;}
.y16b{bottom:204.359100px;}
.y212{bottom:204.369900px;}
.yd9{bottom:205.303650px;}
.yfb{bottom:206.485200px;}
.y4c{bottom:215.575200px;}
.y94{bottom:216.883200px;}
.y274{bottom:216.966300px;}
.y6f{bottom:217.559250px;}
.y1c8{bottom:217.559400px;}
.y1ec{bottom:218.444850px;}
.y122{bottom:219.009150px;}
.y32e{bottom:219.905400px;}
.y2eb{bottom:223.303950px;}
.y16a{bottom:223.559100px;}
.y211{bottom:223.572600px;}
.yfa{bottom:225.685200px;}
.y19{bottom:233.575050px;}
.y2cd{bottom:233.575200px;}
.y4b{bottom:234.775200px;}
.y6e{bottom:235.559250px;}
.y1c7{bottom:235.559400px;}
.y2ea{bottom:235.559850px;}
.y93{bottom:236.191350px;}
.y273{bottom:236.357700px;}
.y1eb{bottom:237.879750px;}
.y32d{bottom:237.905400px;}
.y121{bottom:238.317300px;}
.yb7{bottom:241.303500px;}
.y251{bottom:241.303650px;}
.y169{bottom:242.759100px;}
.y210{bottom:242.775300px;}
.yf9{bottom:244.885200px;}
.y18{bottom:251.575050px;}
.yd8{bottom:251.575200px;}
.y2cc{bottom:252.978150px;}
.y236{bottom:253.136550px;}
.y6d{bottom:253.559250px;}
.yb6{bottom:253.559400px;}
.y2e9{bottom:253.559850px;}
.y4a{bottom:253.975200px;}
.y92{bottom:255.499500px;}
.y272{bottom:255.749250px;}
.y32c{bottom:256.687500px;}
.y1ea{bottom:257.314650px;}
.y120{bottom:257.625450px;}
.y12e{bottom:258.499500px;}
.y14a{bottom:259.303500px;}
.y168{bottom:261.959100px;}
.y20f{bottom:261.978000px;}
.yf8{bottom:264.085200px;}
.y18b{bottom:270.930000px;}
.yd7{bottom:271.093050px;}
.y2ae{bottom:271.559250px;}
.yb5{bottom:271.559400px;}
.y2cb{bottom:272.381100px;}
.y235{bottom:272.698050px;}
.y49{bottom:273.175200px;}
.y32b{bottom:274.687500px;}
.y91{bottom:274.807650px;}
.y271{bottom:275.140650px;}
.y1e9{bottom:276.749700px;}
.y6c{bottom:277.303500px;}
.y1a8{bottom:277.303650px;}
.y2e8{bottom:277.304100px;}
.y12d{bottom:277.807650px;}
.y11f{bottom:279.933600px;}
.y167{bottom:281.159100px;}
.y20e{bottom:281.180700px;}
.y30a{bottom:282.176850px;}
.y28f{bottom:282.686100px;}
.yf7{bottom:283.285200px;}
.y250{bottom:287.575200px;}
.y2ad{bottom:289.559250px;}
.y1c6{bottom:289.559400px;}
.y1a7{bottom:289.559550px;}
.y17{bottom:289.613250px;}
.y18a{bottom:290.284950px;}
.y2ca{bottom:291.784050px;}
.y234{bottom:292.259700px;}
.y48{bottom:292.375200px;}
.y32a{bottom:293.469600px;}
.yd6{bottom:293.611050px;}
.y270{bottom:294.532050px;}
.yb4{bottom:295.303650px;}
.y1e8{bottom:296.184600px;}
.y90{bottom:297.115650px;}
.y11e{bottom:299.241600px;}
.y166{bottom:300.359100px;}
.y28e{bottom:301.886100px;}
.y20d{bottom:303.383400px;}
.y149{bottom:305.575050px;}
.y351{bottom:306.240300px;}
.y24f{bottom:306.775200px;}
.y1c5{bottom:307.559400px;}
.y189{bottom:309.639900px;}
.y2c9{bottom:311.187000px;}
.y47{bottom:311.575200px;}
.y233{bottom:311.821200px;}
.y329{bottom:312.251700px;}
.yd5{bottom:313.129050px;}
.y2ac{bottom:313.303500px;}
.yb3{bottom:313.303800px;}
.y26f{bottom:313.923600px;}
.y1e7{bottom:315.619500px;}
.y8f{bottom:316.423800px;}
.y11d{bottom:318.549750px;}
.y165{bottom:321.085650px;}
.y28d{bottom:321.086100px;}
.y309{bottom:321.596400px;}
.y20c{bottom:322.586100px;}
.yf6{bottom:322.906350px;}
.y6b{bottom:323.575050px;}
.y2e7{bottom:323.575500px;}
.y350{bottom:324.240300px;}
.y148{bottom:324.775050px;}
.y24e{bottom:325.975200px;}
.y16{bottom:328.853250px;}
.y188{bottom:328.994700px;}
.y328{bottom:330.251700px;}
.y2c8{bottom:330.589950px;}
.y46{bottom:330.775200px;}
.y1c4{bottom:331.303650px;}
.yb2{bottom:331.303950px;}
.y232{bottom:331.382700px;}
.yd4{bottom:332.646900px;}
.y26e{bottom:333.315000px;}
.y1e6{bottom:335.054400px;}
.y8e{bottom:335.731950px;}
.y11c{bottom:337.857900px;}
.y164{bottom:340.285650px;}
.y28c{bottom:340.286100px;}
.y308{bottom:340.796400px;}
.y20b{bottom:341.788800px;}
.y34f{bottom:342.240300px;}
.y6a{bottom:342.775050px;}
.y2e6{bottom:342.775500px;}
.yb1{bottom:343.559850px;}
.y147{bottom:343.975050px;}
.y24d{bottom:345.175200px;}
.y15{bottom:348.053250px;}
.y187{bottom:348.349650px;}
.y327{bottom:349.033800px;}
.y1c3{bottom:349.303800px;}
.y45{bottom:349.975200px;}
.y2c7{bottom:349.992900px;}
.y231{bottom:350.944200px;}
.yd3{bottom:352.164900px;}
.y26d{bottom:352.706550px;}
.y1e5{bottom:354.489300px;}
.y8d{bottom:355.040100px;}
.y11b{bottom:357.166050px;}
.y163{bottom:359.485650px;}
.y28b{bottom:359.486100px;}
.y2ab{bottom:359.575050px;}
.y1a6{bottom:359.575350px;}
.y307{bottom:359.996400px;}
.y34e{bottom:360.240300px;}
.y20a{bottom:360.991500px;}
.y1c2{bottom:361.559700px;}
.yb0{bottom:361.559850px;}
.y69{bottom:361.975050px;}
.y2e5{bottom:361.975500px;}
.yf5{bottom:362.529450px;}
.y146{bottom:363.175050px;}
.y326{bottom:367.033800px;}
.y14{bottom:367.253250px;}
.y186{bottom:367.704600px;}
.y44{bottom:369.175200px;}
.y2c6{bottom:369.395850px;}
.y230{bottom:370.505700px;}
.yd2{bottom:371.682750px;}
.y26c{bottom:372.097950px;}
.y1e4{bottom:373.924200px;}
.y8c{bottom:374.348100px;}
.y11a{bottom:376.474050px;}
.y34d{bottom:378.240300px;}
.y162{bottom:378.685650px;}
.y28a{bottom:378.686100px;}
.y1a5{bottom:378.775350px;}
.y2aa{bottom:378.828300px;}
.y306{bottom:379.196400px;}
.y1c1{bottom:379.559700px;}
.y209{bottom:380.194200px;}
.y2e4{bottom:381.175500px;}
.yf4{bottom:381.729450px;}
.y145{bottom:382.375050px;}
.y24c{bottom:383.613600px;}
.yaf{bottom:385.304100px;}
.y325{bottom:385.815900px;}
.y13{bottom:386.453250px;}
.y185{bottom:387.059400px;}
.y43{bottom:388.375200px;}
.y2c5{bottom:388.798950px;}
.yd1{bottom:391.200750px;}
.y26b{bottom:391.489350px;}
.y22f{bottom:393.067350px;}
.y8b{bottom:393.656250px;}
.y119{bottom:395.782200px;}
.y34c{bottom:396.240300px;}
.y1e3{bottom:396.359100px;}
.y161{bottom:397.885650px;}
.y289{bottom:397.886100px;}
.y1a4{bottom:397.975350px;}
.y2a9{bottom:398.081550px;}
.y305{bottom:398.396400px;}
.y208{bottom:399.396900px;}
.y2e3{bottom:400.375500px;}
.yf3{bottom:400.929450px;}
.y68{bottom:401.072400px;}
.y144{bottom:401.575050px;}
.y1c0{bottom:403.303950px;}
.y324{bottom:403.815900px;}
.y12{bottom:405.653250px;}
.y184{bottom:406.414350px;}
.y42{bottom:407.575200px;}
.y2c4{bottom:408.201900px;}
.yd0{bottom:410.718600px;}
.y26a{bottom:410.880900px;}
.y22e{bottom:412.628850px;}
.y8a{bottom:412.964400px;}
.y34b{bottom:414.240300px;}
.y118{bottom:415.090350px;}
.y1e2{bottom:415.794000px;}
.y160{bottom:417.085650px;}
.y288{bottom:417.086100px;}
.y1a3{bottom:417.175350px;}
.y2a8{bottom:417.334950px;}
.y304{bottom:417.596400px;}
.y207{bottom:418.599600px;}
.y2e2{bottom:419.575500px;}
.yf2{bottom:420.129450px;}
.y67{bottom:420.272400px;}
.y143{bottom:420.775050px;}
.y323{bottom:421.815900px;}
.y24b{bottom:422.054100px;}
.y11{bottom:424.853250px;}
.y183{bottom:425.769300px;}
.y41{bottom:426.775200px;}
.y2c3{bottom:427.604850px;}
.ycf{bottom:430.236600px;}
.y269{bottom:430.272300px;}
.yae{bottom:431.575650px;}
.y22d{bottom:432.190350px;}
.y89{bottom:432.272550px;}
.y117{bottom:434.398500px;}
.y1e1{bottom:435.229050px;}
.y15f{bottom:436.285650px;}
.y287{bottom:436.286100px;}
.y1a2{bottom:436.375350px;}
.y2a7{bottom:436.588200px;}
.y303{bottom:436.796400px;}
.y206{bottom:437.802300px;}
.y2e1{bottom:438.775500px;}
.yf1{bottom:439.329600px;}
.y142{bottom:439.975050px;}
.y322{bottom:440.598000px;}
.y24a{bottom:441.254100px;}
.y10{bottom:444.053250px;}
.y182{bottom:445.124100px;}
.y40{bottom:445.975200px;}
.y2c2{bottom:447.007800px;}
.y1bf{bottom:449.575500px;}
.yce{bottom:449.754600px;}
.yad{bottom:451.162800px;}
.y34a{bottom:451.440300px;}
.y88{bottom:451.580550px;}
.y22c{bottom:451.751850px;}
.y268{bottom:452.663700px;}
.y116{bottom:453.706500px;}
.y1e0{bottom:454.663950px;}
.y286{bottom:455.486100px;}
.y1a1{bottom:455.575350px;}
.y2a6{bottom:455.841450px;}
.y205{bottom:457.005000px;}
.y302{bottom:457.014150px;}
.y2e0{bottom:457.975500px;}
.yf0{bottom:458.529450px;}
.y141{bottom:459.175050px;}
.y321{bottom:459.380100px;}
.y249{bottom:460.454100px;}
.yf{bottom:463.253250px;}
.y181{bottom:464.479050px;}
.y3f{bottom:465.175200px;}
.y2c1{bottom:466.410750px;}
.y1be{bottom:469.101150px;}
.ycd{bottom:469.272450px;}
.yac{bottom:470.749950px;}
.y87{bottom:470.888700px;}
.y22b{bottom:471.313500px;}
.y267{bottom:472.055250px;}
.y115{bottom:473.014650px;}
.y1df{bottom:474.098850px;}
.y285{bottom:474.686100px;}
.y1a0{bottom:474.775350px;}
.y2a5{bottom:475.094700px;}
.y204{bottom:476.207700px;}
.y15e{bottom:476.212200px;}
.y301{bottom:476.214150px;}
.y2df{bottom:477.175500px;}
.y320{bottom:477.380100px;}
.yef{bottom:477.729450px;}
.y140{bottom:478.375050px;}
.y66{bottom:478.569750px;}
.ye{bottom:482.453250px;}
.y180{bottom:483.833850px;}
.y3e{bottom:484.375200px;}
.y2c0{bottom:485.813700px;}
.y1bd{bottom:488.626950px;}
.ycc{bottom:488.790450px;}
.y349{bottom:489.842100px;}
.y86{bottom:490.196850px;}
.yab{bottom:490.337100px;}
.y22a{bottom:490.875000px;}
.y266{bottom:491.446650px;}
.y114{bottom:492.322800px;}
.y1de{bottom:493.533750px;}
.y19f{bottom:493.975350px;}
.y2a4{bottom:494.348100px;}
.y203{bottom:495.410400px;}
.y284{bottom:495.413100px;}
.y300{bottom:495.414150px;}
.y31f{bottom:496.162200px;}
.y2de{bottom:497.421450px;}
.y13f{bottom:497.575050px;}
.y65{bottom:497.769750px;}
.y248{bottom:498.894450px;}
.yd{bottom:501.653250px;}
.y17f{bottom:503.188800px;}
.y3d{bottom:503.575200px;}
.y2bf{bottom:505.216800px;}
.y348{bottom:507.842100px;}
.y1bc{bottom:508.152600px;}
.ycb{bottom:508.308450px;}
.y85{bottom:509.505000px;}
.yaa{bottom:509.924250px;}
.y229{bottom:510.436500px;}
.y265{bottom:510.838050px;}
.y113{bottom:511.630800px;}
.y1dd{bottom:512.968650px;}
.y19e{bottom:513.175350px;}
.y2a3{bottom:513.601350px;}
.y31e{bottom:514.162200px;}
.y202{bottom:514.613100px;}
.y2ff{bottom:514.614000px;}
.y15d{bottom:516.140550px;}
.y2dd{bottom:516.621450px;}
.y13e{bottom:516.775050px;}
.y64{bottom:516.969750px;}
.yee{bottom:517.350750px;}
.y247{bottom:518.133000px;}
.yc{bottom:520.853250px;}
.y17e{bottom:522.543750px;}
.y3c{bottom:522.775200px;}
.y2be{bottom:524.619750px;}
.y347{bottom:525.842100px;}
.y1bb{bottom:527.678400px;}
.yca{bottom:527.826300px;}
.y84{bottom:528.813150px;}
.ya9{bottom:529.511400px;}
.y228{bottom:529.998000px;}
.y264{bottom:530.229600px;}
.y112{bottom:530.939100px;}
.y1dc{bottom:532.403700px;}
.y2a2{bottom:532.854600px;}
.y31d{bottom:532.944300px;}
.y283{bottom:533.813100px;}
.y2fe{bottom:533.814150px;}
.y201{bottom:533.815800px;}
.y19d{bottom:534.621300px;}
.y15c{bottom:535.340550px;}
.y2dc{bottom:535.821450px;}
.y13d{bottom:535.975050px;}
.y63{bottom:536.169750px;}
.y246{bottom:537.371400px;}
.y3b{bottom:541.975200px;}
.y346{bottom:543.842100px;}
.y2bd{bottom:544.022700px;}
.y17d{bottom:544.898550px;}
.yc9{bottom:547.344300px;}
.y83{bottom:548.121150px;}
.ya8{bottom:549.098550px;}
.y227{bottom:549.559500px;}
.y263{bottom:549.621000px;}
.y1ba{bottom:550.204050px;}
.y111{bottom:550.247100px;}
.y31c{bottom:550.944300px;}
.y1db{bottom:551.838600px;}
.y2a1{bottom:552.108000px;}
.y282{bottom:553.013100px;}
.y2fd{bottom:553.014150px;}
.y200{bottom:553.018500px;}
.y19c{bottom:553.821300px;}
.y15b{bottom:554.540700px;}
.y2db{bottom:555.021450px;}
.y13c{bottom:555.175050px;}
.y62{bottom:555.369750px;}
.y245{bottom:556.609950px;}
.yb{bottom:560.091450px;}
.y3a{bottom:561.175200px;}
.y345{bottom:561.842100px;}
.y17c{bottom:564.253500px;}
.y2bc{bottom:566.425650px;}
.yc8{bottom:566.862150px;}
.y82{bottom:567.429300px;}
.ya7{bottom:568.685700px;}
.y262{bottom:569.012400px;}
.y226{bottom:569.121150px;}
.y110{bottom:569.555250px;}
.y31b{bottom:569.726400px;}
.y1b9{bottom:569.729850px;}
.y1da{bottom:571.273500px;}
.y2a0{bottom:571.361250px;}
.y281{bottom:572.213100px;}
.y2fc{bottom:572.214150px;}
.y1ff{bottom:572.221200px;}
.y19b{bottom:573.021300px;}
.y15a{bottom:573.740700px;}
.y2da{bottom:574.221450px;}
.y61{bottom:574.569750px;}
.y13b{bottom:574.821150px;}
.y244{bottom:575.848500px;}
.yed{bottom:576.172050px;}
.y344{bottom:579.842100px;}
.y39{bottom:580.375050px;}
.y17b{bottom:583.608450px;}
.y2bb{bottom:585.828600px;}
.yc7{bottom:586.380150px;}
.y81{bottom:586.737450px;}
.y31a{bottom:587.726400px;}
.ya6{bottom:588.272850px;}
.y261{bottom:588.403950px;}
.y225{bottom:588.682650px;}
.y10f{bottom:588.863400px;}
.y1b8{bottom:589.255500px;}
.y29f{bottom:590.614500px;}
.y1d9{bottom:590.708400px;}
.y280{bottom:591.413250px;}
.y2fb{bottom:591.414150px;}
.y1fe{bottom:591.424050px;}
.y2e{bottom:591.945450px;}
.y19a{bottom:592.221150px;}
.y159{bottom:592.940700px;}
.y2d9{bottom:593.421450px;}
.y60{bottom:593.769750px;}
.y13a{bottom:594.021150px;}
.yec{bottom:595.372050px;}
.y343{bottom:597.842100px;}
.y38{bottom:599.575200px;}
.y17a{bottom:602.963250px;}
.y2ba{bottom:605.231550px;}
.yc6{bottom:605.898150px;}
.y80{bottom:606.045450px;}
.y319{bottom:606.508500px;}
.y260{bottom:607.795350px;}
.ya5{bottom:607.860000px;}
.y10e{bottom:608.171400px;}
.y224{bottom:608.244150px;}
.y1b7{bottom:608.781300px;}
.y2d{bottom:609.945450px;}
.y1d8{bottom:610.143300px;}
.y27f{bottom:610.613100px;}
.y2fa{bottom:610.614000px;}
.y1fd{bottom:610.626600px;}
.y199{bottom:611.421300px;}
.y158{bottom:612.140550px;}
.y2d8{bottom:612.621450px;}
.y29e{bottom:612.867900px;}
.y5f{bottom:612.969750px;}
.y139{bottom:613.221150px;}
.yeb{bottom:614.572050px;}
.y342{bottom:615.842100px;}
.y37{bottom:618.775200px;}
.y318{bottom:624.508500px;}
.y2b9{bottom:624.634500px;}
.y7f{bottom:625.353600px;}
.yc5{bottom:625.416000px;}
.y25f{bottom:627.186900px;}
.ya4{bottom:627.447150px;}
.y223{bottom:627.805650px;}
.ya{bottom:628.134450px;}
.y1b6{bottom:628.306950px;}
.y1d7{bottom:629.578200px;}
.y27e{bottom:629.813100px;}
.y1fc{bottom:629.829300px;}
.y10d{bottom:630.479550px;}
.y198{bottom:630.621300px;}
.y2f9{bottom:630.831750px;}
.y157{bottom:631.340550px;}
.y2d7{bottom:631.821450px;}
.y29d{bottom:632.121150px;}
.y5e{bottom:632.169750px;}
.y138{bottom:632.421150px;}
.y243{bottom:633.488850px;}
.yea{bottom:633.771900px;}
.y341{bottom:633.842100px;}
.y9{bottom:643.134450px;}
.y317{bottom:643.290600px;}
.y2b8{bottom:644.037450px;}
.y179{bottom:644.518200px;}
.y7e{bottom:644.661750px;}
.yc4{bottom:644.934000px;}
.y25e{bottom:646.578300px;}
.ya3{bottom:647.034300px;}
.y2c{bottom:647.145450px;}
.y222{bottom:647.367300px;}
.y1b5{bottom:647.832750px;}
.y1d6{bottom:649.013100px;}
.y1fb{bottom:649.032000px;}
.y10c{bottom:649.787700px;}
.y197{bottom:649.821300px;}
.y2f8{bottom:650.031750px;}
.y156{bottom:650.540700px;}
.y5d{bottom:651.369750px;}
.y29c{bottom:651.374400px;}
.y137{bottom:651.621150px;}
.y340{bottom:651.842100px;}
.y2d6{bottom:652.067250px;}
.y242{bottom:652.727400px;}
.ye9{bottom:652.971900px;}
.y36{bottom:657.832050px;}
.y8{bottom:658.134450px;}
.y316{bottom:662.072700px;}
.y2b7{bottom:663.440400px;}
.yc3{bottom:664.452000px;}
.y25d{bottom:665.969700px;}
.ya2{bottom:666.621300px;}
.y221{bottom:666.928800px;}
.y7d{bottom:666.969750px;}
.y1b4{bottom:667.358400px;}
.y27d{bottom:668.213100px;}
.y1fa{bottom:668.234700px;}
.y1d5{bottom:668.448150px;}
.y196{bottom:669.021300px;}
.y10b{bottom:669.095700px;}
.y2f7{bottom:669.231750px;}
.y155{bottom:669.740700px;}
.y33f{bottom:669.842100px;}
.y5c{bottom:670.569750px;}
.y29b{bottom:670.627650px;}
.y136{bottom:670.821150px;}
.y2d5{bottom:671.267250px;}
.y241{bottom:671.965800px;}
.ye8{bottom:672.172050px;}
.y7{bottom:673.134450px;}
.y315{bottom:680.072700px;}
.y2b6{bottom:682.843350px;}
.yc2{bottom:683.969850px;}
.y2b{bottom:685.547400px;}
.y178{bottom:686.073150px;}
.ya1{bottom:686.208600px;}
.y7c{bottom:686.277900px;}
.y220{bottom:686.490300px;}
.y1b3{bottom:686.884200px;}
.y27c{bottom:687.413250px;}
.y1f9{bottom:687.437400px;}
.y33e{bottom:687.842100px;}
.y1d4{bottom:687.883050px;}
.y195{bottom:688.221150px;}
.y25c{bottom:688.361250px;}
.y10a{bottom:688.403850px;}
.y2f6{bottom:688.431750px;}
.y154{bottom:688.940700px;}
.y6{bottom:688.972650px;}
.y5b{bottom:689.769750px;}
.y29a{bottom:689.881050px;}
.y135{bottom:690.021150px;}
.y2d4{bottom:690.467250px;}
.y240{bottom:691.204350px;}
.ye7{bottom:691.372050px;}
.y314{bottom:698.854800px;}
.y2b5{bottom:702.246450px;}
.yc1{bottom:703.487850px;}
.y2a{bottom:703.547400px;}
.y7b{bottom:705.586050px;}
.ya0{bottom:705.795750px;}
.y33d{bottom:705.842100px;}
.y21f{bottom:706.051800px;}
.y1b2{bottom:706.409850px;}
.y1f8{bottom:706.640100px;}
.y1d3{bottom:707.317950px;}
.y194{bottom:707.421300px;}
.y2f5{bottom:707.631750px;}
.y109{bottom:707.712000px;}
.y25b{bottom:707.752650px;}
.y27b{bottom:708.140100px;}
.y153{bottom:708.140550px;}
.y5a{bottom:708.969750px;}
.y299{bottom:709.134300px;}
.y134{bottom:709.221150px;}
.y2d3{bottom:709.667250px;}
.ye6{bottom:710.572050px;}
.y313{bottom:717.636900px;}
.y29{bottom:721.547400px;}
.y2b4{bottom:721.649400px;}
.y33c{bottom:723.842100px;}
.y7a{bottom:724.894200px;}
.y9f{bottom:725.382900px;}
.y21e{bottom:725.613300px;}
.y1f7{bottom:725.842950px;}
.y1b1{bottom:725.935650px;}
.yc0{bottom:726.005700px;}
.y193{bottom:726.621300px;}
.y1d2{bottom:726.752850px;}
.y2f4{bottom:726.831750px;}
.y108{bottom:727.020150px;}
.y25a{bottom:727.144050px;}
.y27a{bottom:727.340100px;}
.y152{bottom:727.340700px;}
.y59{bottom:728.169750px;}
.y298{bottom:728.387550px;}
.y133{bottom:728.421150px;}
.y2d2{bottom:728.867250px;}
.y23f{bottom:729.644700px;}
.ye5{bottom:730.993200px;}
.y312{bottom:735.636900px;}
.y28{bottom:739.547400px;}
.y33b{bottom:741.842100px;}
.y12c{bottom:744.202350px;}
.y9e{bottom:744.970050px;}
.y1f6{bottom:745.045650px;}
.y21d{bottom:745.174950px;}
.y1b0{bottom:745.461300px;}
.ybf{bottom:745.523700px;}
.y192{bottom:745.821300px;}
.y2f3{bottom:746.031750px;}
.y1d1{bottom:746.187750px;}
.y107{bottom:746.328300px;}
.y259{bottom:746.535600px;}
.y279{bottom:746.540250px;}
.y151{bottom:746.540700px;}
.y177{bottom:746.827950px;}
.y79{bottom:747.202350px;}
.y58{bottom:747.369750px;}
.y132{bottom:747.621150px;}
.y297{bottom:747.640800px;}
.y2d1{bottom:748.067250px;}
.y23e{bottom:748.883250px;}
.ye4{bottom:750.193200px;}
.y311{bottom:754.419000px;}
.y27{bottom:757.547400px;}
.y33a{bottom:759.842100px;}
.y5{bottom:762.416400px;}
.y2b3{bottom:763.252350px;}
.y12b{bottom:763.510350px;}
.y1f5{bottom:764.248200px;}
.y9d{bottom:764.557200px;}
.y21c{bottom:764.736450px;}
.y1af{bottom:764.987100px;}
.y191{bottom:765.021300px;}
.ybe{bottom:765.041550px;}
.y2f2{bottom:765.231750px;}
.y1d0{bottom:765.622800px;}
.y106{bottom:765.636300px;}
.y278{bottom:765.740100px;}
.y150{bottom:765.740700px;}
.y258{bottom:765.927000px;}
.y176{bottom:766.182900px;}
.y78{bottom:766.510350px;}
.y57{bottom:766.569750px;}
.y131{bottom:766.821150px;}
.y296{bottom:766.894200px;}
.y2d0{bottom:767.267250px;}
.y35{bottom:767.690400px;}
.y23d{bottom:768.121800px;}
.ye3{bottom:769.393200px;}
.y310{bottom:772.419000px;}
.y26{bottom:775.547400px;}
.y339{bottom:777.842250px;}
.y4{bottom:781.616400px;}
.y12a{bottom:782.818500px;}
.y1f4{bottom:783.451050px;}
.y9c{bottom:784.144350px;}
.y190{bottom:784.221150px;}
.y21b{bottom:784.297950px;}
.y1ae{bottom:784.512750px;}
.ybd{bottom:784.559550px;}
.y277{bottom:784.940250px;}
.y14f{bottom:784.940700px;}
.y105{bottom:784.944450px;}
.y1cf{bottom:785.057700px;}
.y257{bottom:785.318550px;}
.y175{bottom:785.537850px;}
.y56{bottom:785.769900px;}
.y77{bottom:785.818500px;}
.y130{bottom:786.021000px;}
.y295{bottom:786.147450px;}
.y2cf{bottom:786.467250px;}
.y34{bottom:786.890400px;}
.y23c{bottom:787.360350px;}
.ye2{bottom:788.593200px;}
.y30f{bottom:791.201100px;}
.y25{bottom:793.547400px;}
.y338{bottom:795.842250px;}
.y3{bottom:801.654600px;}
.y129{bottom:802.126650px;}
.y1f3{bottom:802.653600px;}
.y18f{bottom:803.421150px;}
.y9b{bottom:803.731500px;}
.y21a{bottom:803.859600px;}
.y1ad{bottom:804.038550px;}
.ybc{bottom:804.077400px;}
.y14e{bottom:804.140550px;}
.y104{bottom:804.252600px;}
.y1ce{bottom:804.492600px;}
.y2f1{bottom:804.649500px;}
.y256{bottom:804.709950px;}
.y174{bottom:804.892800px;}
.y76{bottom:805.126650px;}
.y12f{bottom:805.221150px;}
.y294{bottom:805.400700px;}
.y55{bottom:805.667250px;}
.y33{bottom:806.090400px;}
.y23b{bottom:806.598750px;}
.ye1{bottom:807.793200px;}
.y30e{bottom:809.201100px;}
.y24{bottom:811.547400px;}
.y337{bottom:813.842250px;}
.y128{bottom:821.434800px;}
.y1f2{bottom:821.856300px;}
.y18e{bottom:822.621300px;}
.y9a{bottom:823.318500px;}
.y14d{bottom:823.340550px;}
.y219{bottom:823.421100px;}
.y103{bottom:823.560750px;}
.y1ac{bottom:823.564200px;}
.ybb{bottom:823.595400px;}
.y1cd{bottom:823.927500px;}
.y2b2{bottom:824.055300px;}
.y255{bottom:824.101350px;}
.y173{bottom:824.247600px;}
.y75{bottom:824.434800px;}
.y293{bottom:824.653950px;}
.y54{bottom:824.867100px;}
.y32{bottom:825.290400px;}
.ye0{bottom:826.993200px;}
.y30d{bottom:827.983200px;}
.y23{bottom:829.547400px;}
.y336{bottom:831.842250px;}
.y127{bottom:840.742800px;}
.y1f1{bottom:841.059150px;}
.y14c{bottom:842.540700px;}
.y102{bottom:842.868750px;}
.y99{bottom:842.905650px;}
.y218{bottom:842.982600px;}
.y1ab{bottom:843.090000px;}
.yba{bottom:843.113400px;}
.y1cc{bottom:843.362400px;}
.y2b1{bottom:843.458250px;}
.y254{bottom:843.492900px;}
.y172{bottom:843.602550px;}
.y74{bottom:843.742800px;}
.y292{bottom:843.907350px;}
.y53{bottom:844.067100px;}
.y31{bottom:844.490550px;}
.y23a{bottom:845.039100px;}
.y30c{bottom:845.983200px;}
.ydf{bottom:846.193200px;}
.y22{bottom:847.547400px;}
.y335{bottom:849.842250px;}
.y126{bottom:860.050950px;}
.y14b{bottom:861.740700px;}
.y98{bottom:862.492800px;}
.y217{bottom:862.544100px;}
.y1aa{bottom:862.615650px;}
.yb9{bottom:862.631250px;}
.y1cb{bottom:862.797300px;}
.y2b0{bottom:862.861200px;}
.y253{bottom:862.884300px;}
.y171{bottom:862.957350px;}
.y73{bottom:863.050950px;}
.y291{bottom:863.160600px;}
.y1f0{bottom:863.261850px;}
.y52{bottom:863.267250px;}
.y30{bottom:863.690400px;}
.y239{bottom:864.277650px;}
.y30b{bottom:864.765300px;}
.y101{bottom:865.176900px;}
.yde{bottom:865.393200px;}
.y21{bottom:865.547400px;}
.y2{bottom:866.695650px;}
.y334{bottom:867.842250px;}
.y97{bottom:882.079950px;}
.y216{bottom:882.105600px;}
.y1a9{bottom:882.141450px;}
.yb8{bottom:882.149250px;}
.y1ca{bottom:882.232200px;}
.y2af{bottom:882.264150px;}
.y252{bottom:882.275700px;}
.y170{bottom:882.312300px;}
.y72{bottom:882.359100px;}
.y290{bottom:882.413850px;}
.y1ef{bottom:882.464400px;}
.y51{bottom:882.467250px;}
.y238{bottom:883.516200px;}
.y100{bottom:884.485050px;}
.ydd{bottom:884.593200px;}
.y333{bottom:885.842250px;}
.y1{bottom:898.537800px;}
.y50{bottom:901.667250px;}
.y20{bottom:902.747250px;}
.y237{bottom:902.754600px;}
.ydc{bottom:903.793050px;}
.y332{bottom:903.842250px;}
.y1e{bottom:945.383100px;}
.y2f{bottom:946.905600px;}
.he{height:27.615234px;}
.hb{height:34.313631px;}
.h6{height:36.328125px;}
.h5{height:36.768000px;}
.h7{height:36.820312px;}
.h8{height:43.662000px;}
.hf{height:46.872000px;}
.h13{height:48.621000px;}
.h4{height:49.572000px;}
.hc{height:51.180000px;}
.h12{height:52.326000px;}
.ha{height:53.739000px;}
.hd{height:54.163200px;}
.h10{height:54.495117px;}
.h11{height:57.834000px;}
.h9{height:58.857000px;}
.h3{height:63.342000px;}
.h2{height:71.604000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:106.299150px;}
.x1{left:120.550950px;}
.xd{left:127.559100px;}
.xc{left:140.314950px;}
.x2{left:174.969150px;}
.xe{left:236.472000px;}
.x3{left:250.377900px;}
.x4{left:279.694950px;}
.x5{left:289.712850px;}
.xa{left:372.885000px;}
.x8{left:391.892850px;}
.x9{left:396.176100px;}
.x6{left:510.205200px;}
.x7{left:513.791250px;}
@media print{
.v2{vertical-align:-20.424000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.648000pt;}
.v3{vertical-align:20.424000pt;}
.v1{vertical-align:23.088000pt;}
.ls1c{letter-spacing:-1.840000pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls1b{letter-spacing:-1.226667pt;}
.lse{letter-spacing:-0.981333pt;}
.ls10{letter-spacing:-0.920000pt;}
.ls8{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.357573pt;}
.ls1d{letter-spacing:-0.306667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000267pt;}
.ls19{letter-spacing:0.245333pt;}
.ls1a{letter-spacing:0.357573pt;}
.ls18{letter-spacing:0.536360pt;}
.lsf{letter-spacing:0.613333pt;}
.ls1e{letter-spacing:0.760000pt;}
.ls16{letter-spacing:0.799467pt;}
.ls17{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.832000pt;}
.ls14{letter-spacing:1.226667pt;}
.ls5{letter-spacing:1.381333pt;}
.ls6{letter-spacing:1.400000pt;}
.ls3{letter-spacing:1.776000pt;}
.ls15{letter-spacing:25.427200pt;}
.lsc{letter-spacing:26.499733pt;}
.ls11{letter-spacing:26.500267pt;}
.lsb{letter-spacing:44.378667pt;}
.ls9{letter-spacing:44.736000pt;}
.ls7{letter-spacing:757.489067pt;}
.ls4{letter-spacing:1198.566400pt;}
.ws116{word-spacing:-15.946667pt;}
.ws115{word-spacing:-15.578667pt;}
.ws22{word-spacing:-15.333333pt;}
.wsb7{word-spacing:-14.965333pt;}
.ws0{word-spacing:-14.946667pt;}
.ws106{word-spacing:-14.720000pt;}
.ws108{word-spacing:-14.133333pt;}
.ws136{word-spacing:-14.000000pt;}
.ws12{word-spacing:-13.536000pt;}
.ws156{word-spacing:-13.493333pt;}
.ws15e{word-spacing:-13.426667pt;}
.ws8e{word-spacing:-13.333333pt;}
.ws15d{word-spacing:-12.666667pt;}
.wsc6{word-spacing:-11.733333pt;}
.ws107{word-spacing:-9.475693pt;}
.ws117{word-spacing:-9.296907pt;}
.ws21{word-spacing:-8.939333pt;}
.ws74{word-spacing:-8.581760pt;}
.ws14c{word-spacing:-6.613333pt;}
.ws3b{word-spacing:-5.704000pt;}
.ws9b{word-spacing:-4.600000pt;}
.ws6c{word-spacing:-4.048000pt;}
.ws3d{word-spacing:-3.986667pt;}
.ws96{word-spacing:-3.925333pt;}
.ws12f{word-spacing:-3.864000pt;}
.ws11d{word-spacing:-3.802667pt;}
.ws12d{word-spacing:-3.741333pt;}
.ws1b{word-spacing:-3.696000pt;}
.ws147{word-spacing:-3.680000pt;}
.ws91{word-spacing:-3.496000pt;}
.ws5f{word-spacing:-3.434667pt;}
.ws5b{word-spacing:-3.128000pt;}
.ws3a{word-spacing:-3.005333pt;}
.ws52{word-spacing:-2.944000pt;}
.ws26{word-spacing:-2.888000pt;}
.wsae{word-spacing:-2.882667pt;}
.ws7c{word-spacing:-2.821333pt;}
.wsc8{word-spacing:-2.760000pt;}
.ws17{word-spacing:-2.744000pt;}
.wsb5{word-spacing:-2.698667pt;}
.wsf1{word-spacing:-2.637333pt;}
.wsd0{word-spacing:-2.576000pt;}
.wsf7{word-spacing:-2.560000pt;}
.wsb6{word-spacing:-2.514667pt;}
.ws51{word-spacing:-2.453333pt;}
.wsda{word-spacing:-2.392000pt;}
.ws176{word-spacing:-2.381333pt;}
.ws14{word-spacing:-2.352000pt;}
.ws48{word-spacing:-2.330667pt;}
.wsf8{word-spacing:-2.293333pt;}
.wsb2{word-spacing:-2.269333pt;}
.ws126{word-spacing:-2.208000pt;}
.wsa{word-spacing:-2.146667pt;}
.ws150{word-spacing:-2.133333pt;}
.ws60{word-spacing:-2.085333pt;}
.ws134{word-spacing:-2.024000pt;}
.wsef{word-spacing:-1.962667pt;}
.ws175{word-spacing:-1.925333pt;}
.ws63{word-spacing:-1.901333pt;}
.ws8a{word-spacing:-1.866667pt;}
.wse{word-spacing:-1.848000pt;}
.ws6a{word-spacing:-1.840000pt;}
.ws17a{word-spacing:-1.824000pt;}
.wsac{word-spacing:-1.778667pt;}
.ws24{word-spacing:-1.776000pt;}
.ws13a{word-spacing:-1.760000pt;}
.ws75{word-spacing:-1.717333pt;}
.ws85{word-spacing:-1.706667pt;}
.wsa5{word-spacing:-1.656000pt;}
.wsc1{word-spacing:-1.594667pt;}
.ws19{word-spacing:-1.568000pt;}
.ws6e{word-spacing:-1.533333pt;}
.ws42{word-spacing:-1.493333pt;}
.ws36{word-spacing:-1.472000pt;}
.ws2d{word-spacing:-1.410667pt;}
.ws15{word-spacing:-1.400000pt;}
.ws9{word-spacing:-1.349333pt;}
.ws8b{word-spacing:-1.333333pt;}
.wsf3{word-spacing:-1.288000pt;}
.ws46{word-spacing:-1.226667pt;}
.ws71{word-spacing:-1.165333pt;}
.ws27{word-spacing:-1.114667pt;}
.ws33{word-spacing:-1.104000pt;}
.ws28{word-spacing:-1.064000pt;}
.wsfa{word-spacing:-1.042667pt;}
.ws57{word-spacing:-1.013333pt;}
.ws73{word-spacing:-0.981333pt;}
.ws177{word-spacing:-0.962667pt;}
.wsb1{word-spacing:-0.920000pt;}
.ws152{word-spacing:-0.906667pt;}
.wsf4{word-spacing:-0.858667pt;}
.wse5{word-spacing:-0.853333pt;}
.ws29{word-spacing:-0.810667pt;}
.ws10d{word-spacing:-0.800000pt;}
.ws5c{word-spacing:-0.797333pt;}
.ws2a{word-spacing:-0.760000pt;}
.ws138{word-spacing:-0.746667pt;}
.ws7a{word-spacing:-0.736000pt;}
.ws3c{word-spacing:-0.674667pt;}
.ws1c{word-spacing:-0.672000pt;}
.wse6{word-spacing:-0.640000pt;}
.ws6f{word-spacing:-0.613333pt;}
.ws25{word-spacing:-0.608000pt;}
.ws179{word-spacing:-0.557333pt;}
.ws34{word-spacing:-0.552000pt;}
.wse9{word-spacing:-0.533333pt;}
.wsaa{word-spacing:-0.490667pt;}
.wsa4{word-spacing:-0.429333pt;}
.ws110{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.368000pt;}
.ws37{word-spacing:-0.306667pt;}
.ws16d{word-spacing:-0.304000pt;}
.ws14d{word-spacing:-0.266667pt;}
.ws162{word-spacing:-0.253333pt;}
.ws3f{word-spacing:-0.245333pt;}
.ws140{word-spacing:-0.184000pt;}
.ws13d{word-spacing:-0.160000pt;}
.wsec{word-spacing:-0.122667pt;}
.ws5d{word-spacing:-0.061333pt;}
.ws55{word-spacing:-0.053333pt;}
.ws1f{word-spacing:-0.050667pt;}
.ws20{word-spacing:-0.035467pt;}
.ws3{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.053333pt;}
.ws32{word-spacing:0.061333pt;}
.ws99{word-spacing:0.122667pt;}
.ws94{word-spacing:0.184000pt;}
.ws7e{word-spacing:0.245333pt;}
.ws16a{word-spacing:0.253333pt;}
.ws173{word-spacing:0.304000pt;}
.ws50{word-spacing:0.306667pt;}
.ws83{word-spacing:0.368000pt;}
.ws166{word-spacing:0.405333pt;}
.ws7d{word-spacing:0.429333pt;}
.ws4c{word-spacing:0.490667pt;}
.wsc{word-spacing:0.552000pt;}
.ws7f{word-spacing:0.613333pt;}
.ws157{word-spacing:0.640000pt;}
.ws58{word-spacing:0.693333pt;}
.ws164{word-spacing:0.709333pt;}
.ws4{word-spacing:0.736000pt;}
.ws161{word-spacing:0.760000pt;}
.wscd{word-spacing:0.797333pt;}
.ws13b{word-spacing:0.853333pt;}
.ws146{word-spacing:0.858667pt;}
.ws47{word-spacing:0.920000pt;}
.ws135{word-spacing:0.960000pt;}
.ws30{word-spacing:0.981333pt;}
.ws13f{word-spacing:1.042667pt;}
.ws178{word-spacing:1.064000pt;}
.ws7{word-spacing:1.104000pt;}
.ws2c{word-spacing:1.165333pt;}
.wsd5{word-spacing:1.226667pt;}
.ws5a{word-spacing:1.280000pt;}
.wsd2{word-spacing:1.288000pt;}
.wsba{word-spacing:1.349333pt;}
.wsdb{word-spacing:1.410667pt;}
.ws6b{word-spacing:1.472000pt;}
.wse4{word-spacing:1.493333pt;}
.ws2e{word-spacing:1.533333pt;}
.ws88{word-spacing:1.546667pt;}
.ws16f{word-spacing:1.570667pt;}
.wsed{word-spacing:1.594667pt;}
.ws89{word-spacing:1.600000pt;}
.ws65{word-spacing:1.656000pt;}
.wsd9{word-spacing:1.717333pt;}
.ws10c{word-spacing:1.760000pt;}
.wsc4{word-spacing:1.778667pt;}
.ws143{word-spacing:1.813333pt;}
.wsbd{word-spacing:1.840000pt;}
.ws1d{word-spacing:1.848000pt;}
.ws133{word-spacing:1.901333pt;}
.wsaf{word-spacing:1.962667pt;}
.ws139{word-spacing:1.973333pt;}
.wsd{word-spacing:2.024000pt;}
.ws92{word-spacing:2.085333pt;}
.ws169{word-spacing:2.128000pt;}
.ws40{word-spacing:2.146667pt;}
.wse3{word-spacing:2.186667pt;}
.ws127{word-spacing:2.208000pt;}
.ws123{word-spacing:2.269333pt;}
.ws163{word-spacing:2.280000pt;}
.wsc0{word-spacing:2.330667pt;}
.wsa7{word-spacing:2.392000pt;}
.ws9f{word-spacing:2.453333pt;}
.ws170{word-spacing:2.482667pt;}
.wsd6{word-spacing:2.514667pt;}
.ws3e{word-spacing:2.576000pt;}
.ws15f{word-spacing:2.584000pt;}
.wsde{word-spacing:2.637333pt;}
.wsb0{word-spacing:2.698667pt;}
.ws70{word-spacing:2.760000pt;}
.ws1a{word-spacing:2.800000pt;}
.wsb{word-spacing:2.821333pt;}
.ws9a{word-spacing:2.882667pt;}
.wscf{word-spacing:2.944000pt;}
.ws9d{word-spacing:3.005333pt;}
.wsf9{word-spacing:3.040000pt;}
.wsf5{word-spacing:3.066667pt;}
.ws174{word-spacing:3.090667pt;}
.ws151{word-spacing:3.146667pt;}
.wsc7{word-spacing:3.189333pt;}
.ws14b{word-spacing:3.250667pt;}
.ws171{word-spacing:3.293333pt;}
.ws5{word-spacing:3.312000pt;}
.ws165{word-spacing:3.344000pt;}
.ws18{word-spacing:3.360000pt;}
.wsd4{word-spacing:3.373333pt;}
.wscb{word-spacing:3.434667pt;}
.wsfc{word-spacing:3.496000pt;}
.ws61{word-spacing:3.557333pt;}
.ws14f{word-spacing:3.573333pt;}
.ws67{word-spacing:3.618667pt;}
.ws109{word-spacing:3.626667pt;}
.ws45{word-spacing:3.680000pt;}
.wsbc{word-spacing:3.741333pt;}
.ws8d{word-spacing:3.786667pt;}
.ws81{word-spacing:3.802667pt;}
.ws142{word-spacing:3.864000pt;}
.ws118{word-spacing:3.925333pt;}
.ws4e{word-spacing:3.986667pt;}
.wsc2{word-spacing:4.048000pt;}
.ws6{word-spacing:4.109333pt;}
.ws77{word-spacing:4.170667pt;}
.ws16b{word-spacing:4.205333pt;}
.ws125{word-spacing:4.232000pt;}
.ws16{word-spacing:4.256000pt;}
.ws72{word-spacing:4.293333pt;}
.ws104{word-spacing:4.320000pt;}
.wsb8{word-spacing:4.354667pt;}
.ws95{word-spacing:4.477333pt;}
.wsdc{word-spacing:4.538667pt;}
.ws8{word-spacing:4.600000pt;}
.wsca{word-spacing:4.661333pt;}
.ws11c{word-spacing:4.722667pt;}
.ws2f{word-spacing:4.784000pt;}
.wse1{word-spacing:4.845333pt;}
.wsd8{word-spacing:4.968000pt;}
.ws100{word-spacing:5.013333pt;}
.ws16e{word-spacing:5.016000pt;}
.ws97{word-spacing:5.029333pt;}
.ws12a{word-spacing:5.090667pt;}
.ws149{word-spacing:5.152000pt;}
.ws16c{word-spacing:5.168000pt;}
.wsad{word-spacing:5.213333pt;}
.ws160{word-spacing:5.218667pt;}
.ws31{word-spacing:5.274667pt;}
.ws38{word-spacing:5.336000pt;}
.wsd3{word-spacing:5.397333pt;}
.ws82{word-spacing:5.458667pt;}
.ws43{word-spacing:5.520000pt;}
.ws14a{word-spacing:5.581333pt;}
.ws66{word-spacing:5.704000pt;}
.ws14e{word-spacing:5.760000pt;}
.wse0{word-spacing:5.765333pt;}
.wsa9{word-spacing:5.826667pt;}
.wse2{word-spacing:5.888000pt;}
.wsa0{word-spacing:5.949333pt;}
.ws13c{word-spacing:5.973333pt;}
.wsab{word-spacing:6.010667pt;}
.wsbf{word-spacing:6.072000pt;}
.ws113{word-spacing:6.080000pt;}
.ws68{word-spacing:6.133333pt;}
.ws167{word-spacing:6.232000pt;}
.ws53{word-spacing:6.256000pt;}
.ws98{word-spacing:6.317333pt;}
.ws90{word-spacing:6.378667pt;}
.ws13{word-spacing:6.384000pt;}
.ws103{word-spacing:6.400000pt;}
.ws130{word-spacing:6.440000pt;}
.ws69{word-spacing:6.501333pt;}
.ws23{word-spacing:6.533333pt;}
.ws10f{word-spacing:6.560000pt;}
.wsbb{word-spacing:6.562667pt;}
.ws4d{word-spacing:6.624000pt;}
.wsce{word-spacing:6.685333pt;}
.ws87{word-spacing:6.720000pt;}
.ws124{word-spacing:6.746667pt;}
.ws11e{word-spacing:6.808000pt;}
.ws10e{word-spacing:6.826667pt;}
.wsd7{word-spacing:6.992000pt;}
.ws102{word-spacing:7.040000pt;}
.ws144{word-spacing:7.053333pt;}
.ws12b{word-spacing:7.114667pt;}
.ws5e{word-spacing:7.237333pt;}
.ws62{word-spacing:7.298667pt;}
.ws158{word-spacing:7.360000pt;}
.ws153{word-spacing:7.413333pt;}
.ws15b{word-spacing:7.421333pt;}
.ws11f{word-spacing:7.482667pt;}
.ws49{word-spacing:7.544000pt;}
.wsf0{word-spacing:7.605333pt;}
.wsa1{word-spacing:7.626667pt;}
.ws54{word-spacing:7.666667pt;}
.wsa8{word-spacing:7.728000pt;}
.wsc5{word-spacing:7.850667pt;}
.ws111{word-spacing:7.893333pt;}
.ws12e{word-spacing:7.912000pt;}
.ws59{word-spacing:7.946667pt;}
.wscc{word-spacing:7.973333pt;}
.wsee{word-spacing:8.034667pt;}
.ws64{word-spacing:8.096000pt;}
.ws35{word-spacing:8.157333pt;}
.ws2{word-spacing:8.181333pt;}
.ws131{word-spacing:8.218667pt;}
.wsd1{word-spacing:8.280000pt;}
.wsfb{word-spacing:8.341333pt;}
.ws1{word-spacing:8.389333pt;}
.ws148{word-spacing:8.402667pt;}
.wsfd{word-spacing:8.464000pt;}
.ws105{word-spacing:8.480000pt;}
.ws121{word-spacing:8.525333pt;}
.ws13e{word-spacing:8.586667pt;}
.wsf2{word-spacing:8.770667pt;}
.ws10a{word-spacing:8.800000pt;}
.ws93{word-spacing:8.832000pt;}
.ws7b{word-spacing:8.954667pt;}
.wsb3{word-spacing:9.016000pt;}
.ws8c{word-spacing:9.066667pt;}
.wsdd{word-spacing:9.077333pt;}
.ws76{word-spacing:9.138667pt;}
.wsfe{word-spacing:9.200000pt;}
.ws129{word-spacing:9.261333pt;}
.ws9e{word-spacing:9.322667pt;}
.ws17b{word-spacing:9.373333pt;}
.ws154{word-spacing:9.568000pt;}
.ws141{word-spacing:9.629333pt;}
.ws80{word-spacing:9.690667pt;}
.ws122{word-spacing:9.752000pt;}
.ws79{word-spacing:9.813333pt;}
.wsb4{word-spacing:9.874667pt;}
.wsb9{word-spacing:9.997333pt;}
.ws15c{word-spacing:10.181333pt;}
.ws159{word-spacing:10.240000pt;}
.wsf{word-spacing:10.346667pt;}
.ws11b{word-spacing:10.426667pt;}
.ws84{word-spacing:10.453333pt;}
.ws155{word-spacing:10.549333pt;}
.wseb{word-spacing:10.610667pt;}
.wsa6{word-spacing:10.733333pt;}
.ws41{word-spacing:10.856000pt;}
.ws39{word-spacing:10.917333pt;}
.ws86{word-spacing:10.933333pt;}
.wsc9{word-spacing:11.101333pt;}
.ws132{word-spacing:11.346667pt;}
.ws56{word-spacing:11.520000pt;}
.ws4b{word-spacing:11.592000pt;}
.ws4a{word-spacing:11.776000pt;}
.wse8{word-spacing:11.946667pt;}
.ws172{word-spacing:12.058667pt;}
.ws78{word-spacing:12.144000pt;}
.wse7{word-spacing:12.213333pt;}
.wsf6{word-spacing:12.266667pt;}
.ws11{word-spacing:12.640000pt;}
.wsea{word-spacing:12.757333pt;}
.ws9c{word-spacing:12.818667pt;}
.ws10{word-spacing:12.960000pt;}
.ws8f{word-spacing:13.002667pt;}
.ws128{word-spacing:13.186667pt;}
.ws44{word-spacing:13.554667pt;}
.ws137{word-spacing:13.677333pt;}
.ws120{word-spacing:13.861333pt;}
.wsa2{word-spacing:13.973333pt;}
.ws4f{word-spacing:14.352000pt;}
.ws12c{word-spacing:14.658667pt;}
.ws112{word-spacing:14.773333pt;}
.ws6d{word-spacing:15.762667pt;}
.wsc3{word-spacing:17.050667pt;}
.ws114{word-spacing:17.120000pt;}
.ws11a{word-spacing:19.749333pt;}
.ws101{word-spacing:20.053333pt;}
.ws1e{word-spacing:21.336000pt;}
.ws119{word-spacing:22.080000pt;}
.wsff{word-spacing:22.240000pt;}
.ws145{word-spacing:24.594667pt;}
.wsdf{word-spacing:24.962667pt;}
.ws10b{word-spacing:30.240000pt;}
.ws168{word-spacing:38.000000pt;}
.ws15a{word-spacing:61.880000pt;}
.ws2b{word-spacing:71.176000pt;}
._e{margin-left:-22.877333pt;}
._22{margin-left:-21.896000pt;}
._1b{margin-left:-20.301333pt;}
._d{margin-left:-19.013333pt;}
._21{margin-left:-17.541333pt;}
._f{margin-left:-15.333333pt;}
._10{margin-left:-14.106667pt;}
._3{margin-left:-12.182400pt;}
._5{margin-left:-10.806933pt;}
._7{margin-left:-9.600000pt;}
._9{margin-left:-8.440800pt;}
._a{margin-left:-6.697067pt;}
._4{margin-left:-5.587467pt;}
._0{margin-left:-3.854933pt;}
._2{margin-left:-2.195733pt;}
._1{margin-left:-1.226667pt;}
._8{width:0.964267pt;}
._14{width:2.013867pt;}
._23{width:3.043200pt;}
._25{width:4.813333pt;}
._1f{width:6.453333pt;}
._16{width:7.660800pt;}
._26{width:8.866667pt;}
._12{width:10.093333pt;}
._17{width:12.533333pt;}
._20{width:17.916267pt;}
._15{width:18.880000pt;}
._1e{width:21.493333pt;}
._1d{width:23.466667pt;}
._13{width:24.960000pt;}
._1a{width:26.506667pt;}
._1c{width:29.066667pt;}
._6{width:34.026667pt;}
._18{width:39.256000pt;}
._c{width:44.373333pt;}
._b{width:45.866667pt;}
._11{width:55.216000pt;}
._19{width:59.736000pt;}
._24{width:68.869333pt;}
.fsb{font-size:32.000000pt;}
.fsd{font-size:32.648000pt;}
.fsc{font-size:35.466667pt;}
.fs7{font-size:35.757333pt;}
.fsa{font-size:37.333333pt;}
.fs1{font-size:40.421333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs9{font-size:55.466667pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:61.333333pt;}
.fs0{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:63.102667pt;}
.y16f{bottom:113.385867pt;}
.y1d{bottom:113.386000pt;}
.yff{bottom:115.275733pt;}
.y4f{bottom:118.492000pt;}
.y2f0{bottom:118.492133pt;}
.y125{bottom:120.381733pt;}
.y276{bottom:129.385867pt;}
.y1c{bottom:129.386000pt;}
.y4e{bottom:129.386133pt;}
.y16e{bottom:130.452533pt;}
.y215{bottom:130.454933pt;}
.yfe{bottom:132.342400pt;}
.y18d{bottom:134.492000pt;}
.y96{bottom:134.492133pt;}
.y2ef{bottom:134.492267pt;}
.y124{bottom:136.381867pt;}
.y1b{bottom:145.386000pt;}
.y18c{bottom:145.386133pt;}
.y2ee{bottom:145.386400pt;}
.y331{bottom:146.081067pt;}
.y16d{bottom:147.519200pt;}
.y214{bottom:147.524000pt;}
.yfd{bottom:149.409067pt;}
.ydb{bottom:150.492000pt;}
.y4d{bottom:150.492133pt;}
.y1ee{bottom:159.622267pt;}
.y71{bottom:161.386000pt;}
.yda{bottom:161.386133pt;}
.y2ed{bottom:161.386400pt;}
.y330{bottom:162.081067pt;}
.y16c{bottom:164.585867pt;}
.y213{bottom:164.593067pt;}
.yfc{bottom:166.475733pt;}
.y1a{bottom:166.492000pt;}
.y2ce{bottom:166.492133pt;}
.y275{bottom:175.622133pt;}
.y95{bottom:175.622400pt;}
.y1ed{bottom:176.897733pt;}
.y70{bottom:177.386000pt;}
.y1c9{bottom:177.386133pt;}
.y2ec{bottom:177.386400pt;}
.y123{bottom:177.512133pt;}
.y32f{bottom:178.776267pt;}
.y16b{bottom:181.652533pt;}
.y212{bottom:181.662133pt;}
.yd9{bottom:182.492133pt;}
.yfb{bottom:183.542400pt;}
.y4c{bottom:191.622400pt;}
.y94{bottom:192.785067pt;}
.y274{bottom:192.858933pt;}
.y6f{bottom:193.386000pt;}
.y1c8{bottom:193.386133pt;}
.y1ec{bottom:194.173200pt;}
.y122{bottom:194.674800pt;}
.y32e{bottom:195.471467pt;}
.y2eb{bottom:198.492400pt;}
.y16a{bottom:198.719200pt;}
.y211{bottom:198.731200pt;}
.yfa{bottom:200.609067pt;}
.y19{bottom:207.622267pt;}
.y2cd{bottom:207.622400pt;}
.y4b{bottom:208.689067pt;}
.y6e{bottom:209.386000pt;}
.y1c7{bottom:209.386133pt;}
.y2ea{bottom:209.386533pt;}
.y93{bottom:209.947867pt;}
.y273{bottom:210.095733pt;}
.y1eb{bottom:211.448667pt;}
.y32d{bottom:211.471467pt;}
.y121{bottom:211.837600pt;}
.yb7{bottom:214.492000pt;}
.y251{bottom:214.492133pt;}
.y169{bottom:215.785867pt;}
.y210{bottom:215.800267pt;}
.yf9{bottom:217.675733pt;}
.y18{bottom:223.622267pt;}
.yd8{bottom:223.622400pt;}
.y2cc{bottom:224.869467pt;}
.y236{bottom:225.010267pt;}
.y6d{bottom:225.386000pt;}
.yb6{bottom:225.386133pt;}
.y2e9{bottom:225.386533pt;}
.y4a{bottom:225.755733pt;}
.y92{bottom:227.110667pt;}
.y272{bottom:227.332667pt;}
.y32c{bottom:228.166667pt;}
.y1ea{bottom:228.724133pt;}
.y120{bottom:229.000400pt;}
.y12e{bottom:229.777333pt;}
.y14a{bottom:230.492000pt;}
.y168{bottom:232.852533pt;}
.y20f{bottom:232.869333pt;}
.yf8{bottom:234.742400pt;}
.y18b{bottom:240.826667pt;}
.yd7{bottom:240.971600pt;}
.y2ae{bottom:241.386000pt;}
.yb5{bottom:241.386133pt;}
.y2cb{bottom:242.116533pt;}
.y235{bottom:242.398267pt;}
.y49{bottom:242.822400pt;}
.y32b{bottom:244.166667pt;}
.y91{bottom:244.273467pt;}
.y271{bottom:244.569467pt;}
.y1e9{bottom:245.999733pt;}
.y6c{bottom:246.492000pt;}
.y1a8{bottom:246.492133pt;}
.y2e8{bottom:246.492533pt;}
.y12d{bottom:246.940133pt;}
.y11f{bottom:248.829867pt;}
.y167{bottom:249.919200pt;}
.y20e{bottom:249.938400pt;}
.y30a{bottom:250.823867pt;}
.y28f{bottom:251.276533pt;}
.yf7{bottom:251.809067pt;}
.y250{bottom:255.622400pt;}
.y2ad{bottom:257.386000pt;}
.y1c6{bottom:257.386133pt;}
.y1a7{bottom:257.386267pt;}
.y17{bottom:257.434000pt;}
.y18a{bottom:258.031067pt;}
.y2ca{bottom:259.363600pt;}
.y234{bottom:259.786400pt;}
.y48{bottom:259.889067pt;}
.y32a{bottom:260.861867pt;}
.yd6{bottom:260.987600pt;}
.y270{bottom:261.806267pt;}
.yb4{bottom:262.492133pt;}
.y1e8{bottom:263.275200pt;}
.y90{bottom:264.102800pt;}
.y11e{bottom:265.992533pt;}
.y166{bottom:266.985867pt;}
.y28e{bottom:268.343200pt;}
.y20d{bottom:269.674133pt;}
.y149{bottom:271.622267pt;}
.y351{bottom:272.213600pt;}
.y24f{bottom:272.689067pt;}
.y1c5{bottom:273.386133pt;}
.y189{bottom:275.235467pt;}
.y2c9{bottom:276.610667pt;}
.y47{bottom:276.955733pt;}
.y233{bottom:277.174400pt;}
.y329{bottom:277.557067pt;}
.yd5{bottom:278.336933pt;}
.y2ac{bottom:278.492000pt;}
.yb3{bottom:278.492267pt;}
.y26f{bottom:279.043200pt;}
.y1e7{bottom:280.550667pt;}
.y8f{bottom:281.265600pt;}
.y11d{bottom:283.155333pt;}
.y165{bottom:285.409467pt;}
.y28d{bottom:285.409867pt;}
.y309{bottom:285.863467pt;}
.y20c{bottom:286.743200pt;}
.yf6{bottom:287.027867pt;}
.y6b{bottom:287.622267pt;}
.y2e7{bottom:287.622667pt;}
.y350{bottom:288.213600pt;}
.y148{bottom:288.688933pt;}
.y24e{bottom:289.755733pt;}
.y16{bottom:292.314000pt;}
.y188{bottom:292.439733pt;}
.y328{bottom:293.557067pt;}
.y2c8{bottom:293.857733pt;}
.y46{bottom:294.022400pt;}
.y1c4{bottom:294.492133pt;}
.yb2{bottom:294.492400pt;}
.y232{bottom:294.562400pt;}
.yd4{bottom:295.686133pt;}
.y26e{bottom:296.280000pt;}
.y1e6{bottom:297.826133pt;}
.y8e{bottom:298.428400pt;}
.y11c{bottom:300.318133pt;}
.y164{bottom:302.476133pt;}
.y28c{bottom:302.476533pt;}
.y308{bottom:302.930133pt;}
.y20b{bottom:303.812267pt;}
.y34f{bottom:304.213600pt;}
.y6a{bottom:304.688933pt;}
.y2e6{bottom:304.689333pt;}
.yb1{bottom:305.386533pt;}
.y147{bottom:305.755600pt;}
.y24d{bottom:306.822400pt;}
.y15{bottom:309.380667pt;}
.y187{bottom:309.644133pt;}
.y327{bottom:310.252267pt;}
.y1c3{bottom:310.492267pt;}
.y45{bottom:311.089067pt;}
.y2c7{bottom:311.104800pt;}
.y231{bottom:311.950400pt;}
.yd3{bottom:313.035467pt;}
.y26d{bottom:313.516933pt;}
.y1e5{bottom:315.101600pt;}
.y8d{bottom:315.591200pt;}
.y11b{bottom:317.480933pt;}
.y163{bottom:319.542800pt;}
.y28b{bottom:319.543200pt;}
.y2ab{bottom:319.622267pt;}
.y1a6{bottom:319.622533pt;}
.y307{bottom:319.996800pt;}
.y34e{bottom:320.213600pt;}
.y20a{bottom:320.881333pt;}
.y1c2{bottom:321.386400pt;}
.yb0{bottom:321.386533pt;}
.y69{bottom:321.755600pt;}
.y2e5{bottom:321.756000pt;}
.yf5{bottom:322.248400pt;}
.y146{bottom:322.822267pt;}
.y326{bottom:326.252267pt;}
.y14{bottom:326.447333pt;}
.y186{bottom:326.848533pt;}
.y44{bottom:328.155733pt;}
.y2c6{bottom:328.351867pt;}
.y230{bottom:329.338400pt;}
.yd2{bottom:330.384667pt;}
.y26c{bottom:330.753733pt;}
.y1e4{bottom:332.377067pt;}
.y8c{bottom:332.753867pt;}
.y11a{bottom:334.643600pt;}
.y34d{bottom:336.213600pt;}
.y162{bottom:336.609467pt;}
.y28a{bottom:336.609867pt;}
.y1a5{bottom:336.689200pt;}
.y2aa{bottom:336.736267pt;}
.y306{bottom:337.063467pt;}
.y1c1{bottom:337.386400pt;}
.y209{bottom:337.950400pt;}
.y2e4{bottom:338.822667pt;}
.yf4{bottom:339.315067pt;}
.y145{bottom:339.888933pt;}
.y24c{bottom:340.989867pt;}
.yaf{bottom:342.492533pt;}
.y325{bottom:342.947467pt;}
.y13{bottom:343.514000pt;}
.y185{bottom:344.052800pt;}
.y43{bottom:345.222400pt;}
.y2c5{bottom:345.599067pt;}
.yd1{bottom:347.734000pt;}
.y26b{bottom:347.990533pt;}
.y22f{bottom:349.393200pt;}
.y8b{bottom:349.916667pt;}
.y119{bottom:351.806400pt;}
.y34c{bottom:352.213600pt;}
.y1e3{bottom:352.319200pt;}
.y161{bottom:353.676133pt;}
.y289{bottom:353.676533pt;}
.y1a4{bottom:353.755867pt;}
.y2a9{bottom:353.850267pt;}
.y305{bottom:354.130133pt;}
.y208{bottom:355.019467pt;}
.y2e3{bottom:355.889333pt;}
.yf3{bottom:356.381733pt;}
.y68{bottom:356.508800pt;}
.y144{bottom:356.955600pt;}
.y1c0{bottom:358.492400pt;}
.y324{bottom:358.947467pt;}
.y12{bottom:360.580667pt;}
.y184{bottom:361.257200pt;}
.y42{bottom:362.289067pt;}
.y2c4{bottom:362.846133pt;}
.yd0{bottom:365.083200pt;}
.y26a{bottom:365.227467pt;}
.y22e{bottom:366.781200pt;}
.y8a{bottom:367.079467pt;}
.y34b{bottom:368.213600pt;}
.y118{bottom:368.969200pt;}
.y1e2{bottom:369.594667pt;}
.y160{bottom:370.742800pt;}
.y288{bottom:370.743200pt;}
.y1a3{bottom:370.822533pt;}
.y2a8{bottom:370.964400pt;}
.y304{bottom:371.196800pt;}
.y207{bottom:372.088533pt;}
.y2e2{bottom:372.956000pt;}
.yf2{bottom:373.448400pt;}
.y67{bottom:373.575467pt;}
.y143{bottom:374.022267pt;}
.y323{bottom:374.947467pt;}
.y24b{bottom:375.159200pt;}
.y11{bottom:377.647333pt;}
.y183{bottom:378.461600pt;}
.y41{bottom:379.355733pt;}
.y2c3{bottom:380.093200pt;}
.ycf{bottom:382.432533pt;}
.y269{bottom:382.464267pt;}
.yae{bottom:383.622800pt;}
.y22d{bottom:384.169200pt;}
.y89{bottom:384.242267pt;}
.y117{bottom:386.132000pt;}
.y1e1{bottom:386.870267pt;}
.y15f{bottom:387.809467pt;}
.y287{bottom:387.809867pt;}
.y1a2{bottom:387.889200pt;}
.y2a7{bottom:388.078400pt;}
.y303{bottom:388.263467pt;}
.y206{bottom:389.157600pt;}
.y2e1{bottom:390.022667pt;}
.yf1{bottom:390.515200pt;}
.y142{bottom:391.088933pt;}
.y322{bottom:391.642667pt;}
.y24a{bottom:392.225867pt;}
.y10{bottom:394.714000pt;}
.y182{bottom:395.665867pt;}
.y40{bottom:396.422400pt;}
.y2c2{bottom:397.340267pt;}
.y1bf{bottom:399.622667pt;}
.yce{bottom:399.781867pt;}
.yad{bottom:401.033600pt;}
.y34a{bottom:401.280267pt;}
.y88{bottom:401.404933pt;}
.y22c{bottom:401.557200pt;}
.y268{bottom:402.367733pt;}
.y116{bottom:403.294667pt;}
.y1e0{bottom:404.145733pt;}
.y286{bottom:404.876533pt;}
.y1a1{bottom:404.955867pt;}
.y2a6{bottom:405.192400pt;}
.y205{bottom:406.226667pt;}
.y302{bottom:406.234800pt;}
.y2e0{bottom:407.089333pt;}
.yf0{bottom:407.581733pt;}
.y141{bottom:408.155600pt;}
.y321{bottom:408.337867pt;}
.y249{bottom:409.292533pt;}
.yf{bottom:411.780667pt;}
.y181{bottom:412.870267pt;}
.y3f{bottom:413.489067pt;}
.y2c1{bottom:414.587333pt;}
.y1be{bottom:416.978800pt;}
.ycd{bottom:417.131067pt;}
.yac{bottom:418.444400pt;}
.y87{bottom:418.567733pt;}
.y22b{bottom:418.945333pt;}
.y267{bottom:419.604667pt;}
.y115{bottom:420.457467pt;}
.y1df{bottom:421.421200pt;}
.y285{bottom:421.943200pt;}
.y1a0{bottom:422.022533pt;}
.y2a5{bottom:422.306400pt;}
.y204{bottom:423.295733pt;}
.y15e{bottom:423.299733pt;}
.y301{bottom:423.301467pt;}
.y2df{bottom:424.156000pt;}
.y320{bottom:424.337867pt;}
.yef{bottom:424.648400pt;}
.y140{bottom:425.222267pt;}
.y66{bottom:425.395333pt;}
.ye{bottom:428.847333pt;}
.y180{bottom:430.074533pt;}
.y3e{bottom:430.555733pt;}
.y2c0{bottom:431.834400pt;}
.y1bd{bottom:434.335067pt;}
.ycc{bottom:434.480400pt;}
.y349{bottom:435.415200pt;}
.y86{bottom:435.730533pt;}
.yab{bottom:435.855200pt;}
.y22a{bottom:436.333333pt;}
.y266{bottom:436.841467pt;}
.y114{bottom:437.620267pt;}
.y1de{bottom:438.696667pt;}
.y19f{bottom:439.089200pt;}
.y2a4{bottom:439.420533pt;}
.y203{bottom:440.364800pt;}
.y284{bottom:440.367200pt;}
.y300{bottom:440.368133pt;}
.y31f{bottom:441.033067pt;}
.y2de{bottom:442.152400pt;}
.y13f{bottom:442.288933pt;}
.y65{bottom:442.462000pt;}
.y248{bottom:443.461733pt;}
.yd{bottom:445.914000pt;}
.y17f{bottom:447.278933pt;}
.y3d{bottom:447.622400pt;}
.y2bf{bottom:449.081600pt;}
.y348{bottom:451.415200pt;}
.y1bc{bottom:451.691200pt;}
.ycb{bottom:451.829733pt;}
.y85{bottom:452.893333pt;}
.yaa{bottom:453.266000pt;}
.y229{bottom:453.721333pt;}
.y265{bottom:454.078267pt;}
.y113{bottom:454.782933pt;}
.y1dd{bottom:455.972133pt;}
.y19e{bottom:456.155867pt;}
.y2a3{bottom:456.534533pt;}
.y31e{bottom:457.033067pt;}
.y202{bottom:457.433867pt;}
.y2ff{bottom:457.434667pt;}
.y15d{bottom:458.791600pt;}
.y2dd{bottom:459.219067pt;}
.y13e{bottom:459.355600pt;}
.y64{bottom:459.528667pt;}
.yee{bottom:459.867333pt;}
.y247{bottom:460.562667pt;}
.yc{bottom:462.980667pt;}
.y17e{bottom:464.483333pt;}
.y3c{bottom:464.689067pt;}
.y2be{bottom:466.328667pt;}
.y347{bottom:467.415200pt;}
.y1bb{bottom:469.047467pt;}
.yca{bottom:469.178933pt;}
.y84{bottom:470.056133pt;}
.ya9{bottom:470.676800pt;}
.y228{bottom:471.109333pt;}
.y264{bottom:471.315200pt;}
.y112{bottom:471.945867pt;}
.y1dc{bottom:473.247733pt;}
.y2a2{bottom:473.648533pt;}
.y31d{bottom:473.728267pt;}
.y283{bottom:474.500533pt;}
.y2fe{bottom:474.501467pt;}
.y201{bottom:474.502933pt;}
.y19d{bottom:475.218933pt;}
.y15c{bottom:475.858267pt;}
.y2dc{bottom:476.285733pt;}
.y13d{bottom:476.422267pt;}
.y63{bottom:476.595333pt;}
.y246{bottom:477.663467pt;}
.y3b{bottom:481.755733pt;}
.y346{bottom:483.415200pt;}
.y2bd{bottom:483.575733pt;}
.y17d{bottom:484.354267pt;}
.yc9{bottom:486.528267pt;}
.y83{bottom:487.218800pt;}
.ya8{bottom:488.087600pt;}
.y227{bottom:488.497333pt;}
.y263{bottom:488.552000pt;}
.y1ba{bottom:489.070267pt;}
.y111{bottom:489.108533pt;}
.y31c{bottom:489.728267pt;}
.y1db{bottom:490.523200pt;}
.y2a1{bottom:490.762667pt;}
.y282{bottom:491.567200pt;}
.y2fd{bottom:491.568133pt;}
.y200{bottom:491.572000pt;}
.y19c{bottom:492.285600pt;}
.y15b{bottom:492.925067pt;}
.y2db{bottom:493.352400pt;}
.y13c{bottom:493.488933pt;}
.y62{bottom:493.662000pt;}
.y245{bottom:494.764400pt;}
.yb{bottom:497.859067pt;}
.y3a{bottom:498.822400pt;}
.y345{bottom:499.415200pt;}
.y17c{bottom:501.558667pt;}
.y2bc{bottom:503.489467pt;}
.yc8{bottom:503.877467pt;}
.y82{bottom:504.381600pt;}
.ya7{bottom:505.498400pt;}
.y262{bottom:505.788800pt;}
.y226{bottom:505.885467pt;}
.y110{bottom:506.271333pt;}
.y31b{bottom:506.423467pt;}
.y1b9{bottom:506.426533pt;}
.y1da{bottom:507.798667pt;}
.y2a0{bottom:507.876667pt;}
.y281{bottom:508.633867pt;}
.y2fc{bottom:508.634800pt;}
.y1ff{bottom:508.641067pt;}
.y19b{bottom:509.352267pt;}
.y15a{bottom:509.991733pt;}
.y2da{bottom:510.419067pt;}
.y61{bottom:510.728667pt;}
.y13b{bottom:510.952133pt;}
.y244{bottom:511.865333pt;}
.yed{bottom:512.152933pt;}
.y344{bottom:515.415200pt;}
.y39{bottom:515.888933pt;}
.y17b{bottom:518.763067pt;}
.y2bb{bottom:520.736533pt;}
.yc7{bottom:521.226800pt;}
.y81{bottom:521.544400pt;}
.y31a{bottom:522.423467pt;}
.ya6{bottom:522.909200pt;}
.y261{bottom:523.025733pt;}
.y225{bottom:523.273467pt;}
.y10f{bottom:523.434133pt;}
.y1b8{bottom:523.782667pt;}
.y29f{bottom:524.990667pt;}
.y1d9{bottom:525.074133pt;}
.y280{bottom:525.700667pt;}
.y2fb{bottom:525.701467pt;}
.y1fe{bottom:525.710267pt;}
.y2e{bottom:526.173733pt;}
.y19a{bottom:526.418800pt;}
.y159{bottom:527.058400pt;}
.y2d9{bottom:527.485733pt;}
.y60{bottom:527.795333pt;}
.y13a{bottom:528.018800pt;}
.yec{bottom:529.219600pt;}
.y343{bottom:531.415200pt;}
.y38{bottom:532.955733pt;}
.y17a{bottom:535.967333pt;}
.y2ba{bottom:537.983600pt;}
.yc6{bottom:538.576133pt;}
.y80{bottom:538.707067pt;}
.y319{bottom:539.118667pt;}
.y260{bottom:540.262533pt;}
.ya5{bottom:540.320000pt;}
.y10e{bottom:540.596800pt;}
.y224{bottom:540.661467pt;}
.y1b7{bottom:541.138933pt;}
.y2d{bottom:542.173733pt;}
.y1d8{bottom:542.349600pt;}
.y27f{bottom:542.767200pt;}
.y2fa{bottom:542.768000pt;}
.y1fd{bottom:542.779200pt;}
.y199{bottom:543.485600pt;}
.y158{bottom:544.124933pt;}
.y2d8{bottom:544.552400pt;}
.y29e{bottom:544.771467pt;}
.y5f{bottom:544.862000pt;}
.y139{bottom:545.085467pt;}
.yeb{bottom:546.286267pt;}
.y342{bottom:547.415200pt;}
.y37{bottom:550.022400pt;}
.y318{bottom:555.118667pt;}
.y2b9{bottom:555.230667pt;}
.y7f{bottom:555.869867pt;}
.yc5{bottom:555.925333pt;}
.y25f{bottom:557.499467pt;}
.ya4{bottom:557.730800pt;}
.y223{bottom:558.049467pt;}
.ya{bottom:558.341733pt;}
.y1b6{bottom:558.495067pt;}
.y1d7{bottom:559.625067pt;}
.y27e{bottom:559.833867pt;}
.y1fc{bottom:559.848267pt;}
.y10d{bottom:560.426267pt;}
.y198{bottom:560.552267pt;}
.y2f9{bottom:560.739333pt;}
.y157{bottom:561.191600pt;}
.y2d7{bottom:561.619067pt;}
.y29d{bottom:561.885467pt;}
.y5e{bottom:561.928667pt;}
.y138{bottom:562.152133pt;}
.y243{bottom:563.101200pt;}
.yea{bottom:563.352800pt;}
.y341{bottom:563.415200pt;}
.y9{bottom:571.675067pt;}
.y317{bottom:571.813867pt;}
.y2b8{bottom:572.477733pt;}
.y179{bottom:572.905067pt;}
.y7e{bottom:573.032667pt;}
.yc4{bottom:573.274667pt;}
.y25e{bottom:574.736267pt;}
.ya3{bottom:575.141600pt;}
.y2c{bottom:575.240400pt;}
.y222{bottom:575.437600pt;}
.y1b5{bottom:575.851333pt;}
.y1d6{bottom:576.900533pt;}
.y1fb{bottom:576.917333pt;}
.y10c{bottom:577.589067pt;}
.y197{bottom:577.618933pt;}
.y2f8{bottom:577.806000pt;}
.y156{bottom:578.258400pt;}
.y5d{bottom:578.995333pt;}
.y29c{bottom:578.999467pt;}
.y137{bottom:579.218800pt;}
.y340{bottom:579.415200pt;}
.y2d6{bottom:579.615333pt;}
.y242{bottom:580.202133pt;}
.ye9{bottom:580.419467pt;}
.y36{bottom:584.739600pt;}
.y8{bottom:585.008400pt;}
.y316{bottom:588.509067pt;}
.y2b7{bottom:589.724800pt;}
.yc3{bottom:590.624000pt;}
.y25d{bottom:591.973067pt;}
.ya2{bottom:592.552267pt;}
.y221{bottom:592.825600pt;}
.y7d{bottom:592.862000pt;}
.y1b4{bottom:593.207467pt;}
.y27d{bottom:593.967200pt;}
.y1fa{bottom:593.986400pt;}
.y1d5{bottom:594.176133pt;}
.y196{bottom:594.685600pt;}
.y10b{bottom:594.751733pt;}
.y2f7{bottom:594.872667pt;}
.y155{bottom:595.325067pt;}
.y33f{bottom:595.415200pt;}
.y5c{bottom:596.062000pt;}
.y29b{bottom:596.113467pt;}
.y136{bottom:596.285467pt;}
.y2d5{bottom:596.682000pt;}
.y241{bottom:597.302933pt;}
.ye8{bottom:597.486267pt;}
.y7{bottom:598.341733pt;}
.y315{bottom:604.509067pt;}
.y2b6{bottom:606.971867pt;}
.yc2{bottom:607.973200pt;}
.y2b{bottom:609.375467pt;}
.y178{bottom:609.842800pt;}
.ya1{bottom:609.963200pt;}
.y7c{bottom:610.024800pt;}
.y220{bottom:610.213600pt;}
.y1b3{bottom:610.563733pt;}
.y27c{bottom:611.034000pt;}
.y1f9{bottom:611.055467pt;}
.y33e{bottom:611.415200pt;}
.y1d4{bottom:611.451600pt;}
.y195{bottom:611.752133pt;}
.y25c{bottom:611.876667pt;}
.y10a{bottom:611.914533pt;}
.y2f6{bottom:611.939333pt;}
.y154{bottom:612.391733pt;}
.y6{bottom:612.420133pt;}
.y5b{bottom:613.128667pt;}
.y29a{bottom:613.227600pt;}
.y135{bottom:613.352133pt;}
.y2d4{bottom:613.748667pt;}
.y240{bottom:614.403867pt;}
.ye7{bottom:614.552933pt;}
.y314{bottom:621.204267pt;}
.y2b5{bottom:624.219067pt;}
.yc1{bottom:625.322533pt;}
.y2a{bottom:625.375467pt;}
.y7b{bottom:627.187600pt;}
.ya0{bottom:627.374000pt;}
.y33d{bottom:627.415200pt;}
.y21f{bottom:627.601600pt;}
.y1b2{bottom:627.919867pt;}
.y1f8{bottom:628.124533pt;}
.y1d3{bottom:628.727067pt;}
.y194{bottom:628.818933pt;}
.y2f5{bottom:629.006000pt;}
.y109{bottom:629.077333pt;}
.y25b{bottom:629.113467pt;}
.y27b{bottom:629.457867pt;}
.y153{bottom:629.458267pt;}
.y5a{bottom:630.195333pt;}
.y299{bottom:630.341600pt;}
.y134{bottom:630.418800pt;}
.y2d3{bottom:630.815333pt;}
.ye6{bottom:631.619600pt;}
.y313{bottom:637.899467pt;}
.y29{bottom:641.375467pt;}
.y2b4{bottom:641.466133pt;}
.y33c{bottom:643.415200pt;}
.y7a{bottom:644.350400pt;}
.y9f{bottom:644.784800pt;}
.y21e{bottom:644.989600pt;}
.y1f7{bottom:645.193733pt;}
.y1b1{bottom:645.276133pt;}
.yc0{bottom:645.338400pt;}
.y193{bottom:645.885600pt;}
.y1d2{bottom:646.002533pt;}
.y2f4{bottom:646.072667pt;}
.y108{bottom:646.240133pt;}
.y25a{bottom:646.350267pt;}
.y27a{bottom:646.524533pt;}
.y152{bottom:646.525067pt;}
.y59{bottom:647.262000pt;}
.y298{bottom:647.455600pt;}
.y133{bottom:647.485467pt;}
.y2d2{bottom:647.882000pt;}
.y23f{bottom:648.573067pt;}
.ye5{bottom:649.771733pt;}
.y312{bottom:653.899467pt;}
.y28{bottom:657.375467pt;}
.y33b{bottom:659.415200pt;}
.y12c{bottom:661.513200pt;}
.y9e{bottom:662.195600pt;}
.y1f6{bottom:662.262800pt;}
.y21d{bottom:662.377733pt;}
.y1b0{bottom:662.632267pt;}
.ybf{bottom:662.687733pt;}
.y192{bottom:662.952267pt;}
.y2f3{bottom:663.139333pt;}
.y1d1{bottom:663.278000pt;}
.y107{bottom:663.402933pt;}
.y259{bottom:663.587200pt;}
.y279{bottom:663.591333pt;}
.y151{bottom:663.591733pt;}
.y177{bottom:663.847067pt;}
.y79{bottom:664.179867pt;}
.y58{bottom:664.328667pt;}
.y132{bottom:664.552133pt;}
.y297{bottom:664.569600pt;}
.y2d1{bottom:664.948667pt;}
.y23e{bottom:665.674000pt;}
.ye4{bottom:666.838400pt;}
.y311{bottom:670.594667pt;}
.y27{bottom:673.375467pt;}
.y33a{bottom:675.415200pt;}
.y5{bottom:677.703467pt;}
.y2b3{bottom:678.446533pt;}
.y12b{bottom:678.675867pt;}
.y1f5{bottom:679.331733pt;}
.y9d{bottom:679.606400pt;}
.y21c{bottom:679.765733pt;}
.y1af{bottom:679.988533pt;}
.y191{bottom:680.018933pt;}
.ybe{bottom:680.036933pt;}
.y2f2{bottom:680.206000pt;}
.y1d0{bottom:680.553600pt;}
.y106{bottom:680.565600pt;}
.y278{bottom:680.657867pt;}
.y150{bottom:680.658400pt;}
.y258{bottom:680.824000pt;}
.y176{bottom:681.051467pt;}
.y78{bottom:681.342533pt;}
.y57{bottom:681.395333pt;}
.y131{bottom:681.618800pt;}
.y296{bottom:681.683733pt;}
.y2d0{bottom:682.015333pt;}
.y35{bottom:682.391467pt;}
.y23d{bottom:682.774933pt;}
.ye3{bottom:683.905067pt;}
.y310{bottom:686.594667pt;}
.y26{bottom:689.375467pt;}
.y339{bottom:691.415333pt;}
.y4{bottom:694.770133pt;}
.y12a{bottom:695.838667pt;}
.y1f4{bottom:696.400933pt;}
.y9c{bottom:697.017200pt;}
.y190{bottom:697.085467pt;}
.y21b{bottom:697.153733pt;}
.y1ae{bottom:697.344667pt;}
.ybd{bottom:697.386267pt;}
.y277{bottom:697.724667pt;}
.y14f{bottom:697.725067pt;}
.y105{bottom:697.728400pt;}
.y1cf{bottom:697.829067pt;}
.y257{bottom:698.060933pt;}
.y175{bottom:698.255867pt;}
.y56{bottom:698.462133pt;}
.y77{bottom:698.505333pt;}
.y130{bottom:698.685333pt;}
.y295{bottom:698.797733pt;}
.y2cf{bottom:699.082000pt;}
.y34{bottom:699.458133pt;}
.y23c{bottom:699.875867pt;}
.ye2{bottom:700.971733pt;}
.y30f{bottom:703.289867pt;}
.y25{bottom:705.375467pt;}
.y338{bottom:707.415333pt;}
.y3{bottom:712.581867pt;}
.y129{bottom:713.001467pt;}
.y1f3{bottom:713.469867pt;}
.y18f{bottom:714.152133pt;}
.y9b{bottom:714.428000pt;}
.y21a{bottom:714.541867pt;}
.y1ad{bottom:714.700933pt;}
.ybc{bottom:714.735467pt;}
.y14e{bottom:714.791600pt;}
.y104{bottom:714.891200pt;}
.y1ce{bottom:715.104533pt;}
.y2f1{bottom:715.244000pt;}
.y256{bottom:715.297733pt;}
.y174{bottom:715.460267pt;}
.y76{bottom:715.668133pt;}
.y12f{bottom:715.752133pt;}
.y294{bottom:715.911733pt;}
.y55{bottom:716.148667pt;}
.y33{bottom:716.524800pt;}
.y23b{bottom:716.976667pt;}
.ye1{bottom:718.038400pt;}
.y30e{bottom:719.289867pt;}
.y24{bottom:721.375467pt;}
.y337{bottom:723.415333pt;}
.y128{bottom:730.164267pt;}
.y1f2{bottom:730.538933pt;}
.y18e{bottom:731.218933pt;}
.y9a{bottom:731.838667pt;}
.y14d{bottom:731.858267pt;}
.y219{bottom:731.929867pt;}
.y103{bottom:732.054000pt;}
.y1ac{bottom:732.057067pt;}
.ybb{bottom:732.084800pt;}
.y1cd{bottom:732.380000pt;}
.y2b2{bottom:732.493600pt;}
.y255{bottom:732.534533pt;}
.y173{bottom:732.664533pt;}
.y75{bottom:732.830933pt;}
.y293{bottom:733.025733pt;}
.y54{bottom:733.215200pt;}
.y32{bottom:733.591467pt;}
.ye0{bottom:735.105067pt;}
.y30d{bottom:735.985067pt;}
.y23{bottom:737.375467pt;}
.y336{bottom:739.415333pt;}
.y127{bottom:747.326933pt;}
.y1f1{bottom:747.608133pt;}
.y14c{bottom:748.925067pt;}
.y102{bottom:749.216667pt;}
.y99{bottom:749.249467pt;}
.y218{bottom:749.317867pt;}
.y1ab{bottom:749.413333pt;}
.yba{bottom:749.434133pt;}
.y1cc{bottom:749.655467pt;}
.y2b1{bottom:749.740667pt;}
.y254{bottom:749.771467pt;}
.y172{bottom:749.868933pt;}
.y74{bottom:749.993600pt;}
.y292{bottom:750.139867pt;}
.y53{bottom:750.281867pt;}
.y31{bottom:750.658267pt;}
.y23a{bottom:751.145867pt;}
.y30c{bottom:751.985067pt;}
.ydf{bottom:752.171733pt;}
.y22{bottom:753.375467pt;}
.y335{bottom:755.415333pt;}
.y126{bottom:764.489733pt;}
.y14b{bottom:765.991733pt;}
.y98{bottom:766.660267pt;}
.y217{bottom:766.705867pt;}
.y1aa{bottom:766.769467pt;}
.yb9{bottom:766.783333pt;}
.y1cb{bottom:766.930933pt;}
.y2b0{bottom:766.987733pt;}
.y253{bottom:767.008267pt;}
.y171{bottom:767.073200pt;}
.y73{bottom:767.156400pt;}
.y291{bottom:767.253867pt;}
.y1f0{bottom:767.343867pt;}
.y52{bottom:767.348667pt;}
.y30{bottom:767.724800pt;}
.y239{bottom:768.246800pt;}
.y30b{bottom:768.680267pt;}
.y101{bottom:769.046133pt;}
.yde{bottom:769.238400pt;}
.y21{bottom:769.375467pt;}
.y2{bottom:770.396133pt;}
.y334{bottom:771.415333pt;}
.y97{bottom:784.071067pt;}
.y216{bottom:784.093867pt;}
.y1a9{bottom:784.125733pt;}
.yb8{bottom:784.132667pt;}
.y1ca{bottom:784.206400pt;}
.y2af{bottom:784.234800pt;}
.y252{bottom:784.245067pt;}
.y170{bottom:784.277600pt;}
.y72{bottom:784.319200pt;}
.y290{bottom:784.367867pt;}
.y1ef{bottom:784.412800pt;}
.y51{bottom:784.415333pt;}
.y238{bottom:785.347733pt;}
.y100{bottom:786.208933pt;}
.ydd{bottom:786.305067pt;}
.y333{bottom:787.415333pt;}
.y1{bottom:798.700267pt;}
.y50{bottom:801.482000pt;}
.y20{bottom:802.442000pt;}
.y237{bottom:802.448533pt;}
.ydc{bottom:803.371600pt;}
.y332{bottom:803.415333pt;}
.y1e{bottom:840.340533pt;}
.y2f{bottom:841.693867pt;}
.he{height:24.546875pt;}
.hb{height:30.501005pt;}
.h6{height:32.291667pt;}
.h5{height:32.682667pt;}
.h7{height:32.729167pt;}
.h8{height:38.810667pt;}
.hf{height:41.664000pt;}
.h13{height:43.218667pt;}
.h4{height:44.064000pt;}
.hc{height:45.493333pt;}
.h12{height:46.512000pt;}
.ha{height:47.768000pt;}
.hd{height:48.145067pt;}
.h10{height:48.440104pt;}
.h11{height:51.408000pt;}
.h9{height:52.317333pt;}
.h3{height:56.304000pt;}
.h2{height:63.648000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:94.488133pt;}
.x1{left:107.156400pt;}
.xd{left:113.385867pt;}
.xc{left:124.724400pt;}
.x2{left:155.528133pt;}
.xe{left:210.197333pt;}
.x3{left:222.558133pt;}
.x4{left:248.617733pt;}
.x5{left:257.522533pt;}
.xa{left:331.453333pt;}
.x8{left:348.349200pt;}
.x9{left:352.156533pt;}
.x6{left:453.515733pt;}
.x7{left:456.703333pt;}
}




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