
    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_e153554413b3e27bc49bf695.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8c4b713e7c75360c8346fd75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029000;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_2eaf343931a1df076dd6d7bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1383034d9f75c75a33be0db7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a8f781c0dda6be6de1617f31.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_794d3508cbb218804d65e345.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_de9df04b351de64a3e19e0bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.029000;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_c551b1e22b2b1f965d503eb5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988000;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_f9b71d6ec490e9a7af69e1a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.089000;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_230f34ad7c78da473593858f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_2efbd81d4f2631f5dcb360ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.029000;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_794d3508cbb218804d65e345.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a8a6cf935caeb2cb7403f6a.woff2')format("woff");}.fff{font-family:fff;line-height:0.681000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_717a59cf82c450e4e844b489.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_717a59cf82c450e4e844b489.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_dc6d33244da55d97745b5538.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.850000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.vc{vertical-align:-101.826000px;}
.vd{vertical-align:-94.975800px;}
.vb{vertical-align:-90.000000px;}
.v6{vertical-align:-86.545800px;}
.va{vertical-align:-78.100800px;}
.v7{vertical-align:-69.236400px;}
.v8{vertical-align:-51.926400px;}
.v5{vertical-align:-43.272000px;}
.v9{vertical-align:-33.750000px;}
.vf{vertical-align:-17.820000px;}
.v3{vertical-align:-12.870000px;}
.v11{vertical-align:-1.875000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:12.000000px;}
.ve{vertical-align:15.663000px;}
.v4{vertical-align:17.819400px;}
.v12{vertical-align:25.125000px;}
.v13{vertical-align:27.000000px;}
.v10{vertical-align:40.644600px;}
.ls21{letter-spacing:-6.750000px;}
.ls28{letter-spacing:-2.244000px;}
.ls54{letter-spacing:-1.350000px;}
.ls27{letter-spacing:-1.224000px;}
.ls2b{letter-spacing:-0.840000px;}
.ls4e{letter-spacing:-0.828000px;}
.ls3f{letter-spacing:-0.552000px;}
.ls43{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.496800px;}
.ls6d{letter-spacing:-0.450000px;}
.ls51{letter-spacing:-0.441600px;}
.ls3e{letter-spacing:-0.386400px;}
.ls70{letter-spacing:-0.336000px;}
.ls53{letter-spacing:-0.331200px;}
.ls2a{letter-spacing:-0.330000px;}
.ls44{letter-spacing:-0.313200px;}
.ls6e{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.276000px;}
.ls6f{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.225000px;}
.ls50{letter-spacing:-0.220800px;}
.ls45{letter-spacing:-0.210000px;}
.ls5a{letter-spacing:-0.195000px;}
.ls46{letter-spacing:-0.192000px;}
.ls41{letter-spacing:-0.165600px;}
.ls47{letter-spacing:-0.144000px;}
.ls6b{letter-spacing:-0.135000px;}
.ls59{letter-spacing:-0.113100px;}
.ls40{letter-spacing:-0.110400px;}
.ls48{letter-spacing:-0.096000px;}
.ls6c{letter-spacing:-0.090000px;}
.ls4f{letter-spacing:-0.055200px;}
.ls71{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.000060px;}
.ls3c{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.055200px;}
.ls2e{letter-spacing:0.067860px;}
.ls60{letter-spacing:0.082800px;}
.ls64{letter-spacing:0.090000px;}
.ls32{letter-spacing:0.096000px;}
.lse{letter-spacing:0.110400px;}
.ls2f{letter-spacing:0.117000px;}
.ls3b{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.165600px;}
.ls33{letter-spacing:0.192000px;}
.ls1f{letter-spacing:0.193200px;}
.ls36{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.220800px;}
.ls37{letter-spacing:0.240000px;}
.ls6a{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.276000px;}
.ls31{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.331200px;}
.ls30{letter-spacing:0.336000px;}
.ls34{letter-spacing:0.384000px;}
.ls1d{letter-spacing:0.386400px;}
.ls52{letter-spacing:0.414000px;}
.ls69{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.441600px;}
.ls1a{letter-spacing:0.496800px;}
.ls5b{letter-spacing:0.524400px;}
.ls49{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.552000px;}
.ls3a{letter-spacing:0.576000px;}
.ls58{letter-spacing:0.579600px;}
.ls1{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.607200px;}
.ls1b{letter-spacing:0.634800px;}
.ls4a{letter-spacing:0.662400px;}
.ls38{letter-spacing:0.672000px;}
.ls65{letter-spacing:0.690000px;}
.lsf{letter-spacing:0.717600px;}
.ls35{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.772800px;}
.ls11{letter-spacing:0.828000px;}
.ls5d{letter-spacing:0.855600px;}
.ls18{letter-spacing:0.883200px;}
.ls67{letter-spacing:0.912000px;}
.ls3{letter-spacing:0.938400px;}
.ls5c{letter-spacing:0.966000px;}
.ls42{letter-spacing:0.993600px;}
.ls61{letter-spacing:1.021200px;}
.lsc{letter-spacing:1.048800px;}
.ls68{letter-spacing:1.056000px;}
.ls4{letter-spacing:1.104000px;}
.ls5e{letter-spacing:1.131600px;}
.lsb{letter-spacing:1.159200px;}
.ls4c{letter-spacing:1.186800px;}
.ls22{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.214400px;}
.ls66{letter-spacing:1.248000px;}
.ls20{letter-spacing:1.269600px;}
.ls5f{letter-spacing:1.324800px;}
.ls17{letter-spacing:1.380000px;}
.ls5{letter-spacing:1.435200px;}
.ls2c{letter-spacing:1.490400px;}
.ls1c{letter-spacing:1.545600px;}
.ls1e{letter-spacing:1.600800px;}
.ls56{letter-spacing:1.656000px;}
.ls29{letter-spacing:1.876800px;}
.ls55{letter-spacing:1.987200px;}
.ls57{letter-spacing:2.014800px;}
.ls23{letter-spacing:2.097600px;}
.ls4b{letter-spacing:2.594400px;}
.ls24{letter-spacing:2.815200px;}
.ls2{letter-spacing:18.237000px;}
.ls14{letter-spacing:19.151400px;}
.ls2d{letter-spacing:19.225800px;}
.lsd{letter-spacing:20.065800px;}
.ls8{letter-spacing:20.116200px;}
.ls3d{letter-spacing:99.082800px;}
.ls4d{letter-spacing:1047.007200px;}
.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;}
}
.ws4{word-spacing:-20.400000px;}
.ws3{word-spacing:-19.176000px;}
.ws5{word-spacing:-18.156000px;}
.ws7e{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.855200px;}
.ws7f{word-spacing:-13.358400px;}
.ws6{word-spacing:-13.082400px;}
.ws90{word-spacing:-12.600000px;}
.ws114{word-spacing:-11.376000px;}
.ws113{word-spacing:-11.328000px;}
.ws2{word-spacing:-11.040000px;}
.ws81{word-spacing:-10.260000px;}
.ws53{word-spacing:-9.000000px;}
.ws115{word-spacing:-8.775000px;}
.ws116{word-spacing:-8.550000px;}
.wsa9{word-spacing:-7.650000px;}
.wsae{word-spacing:-5.950800px;}
.ws92{word-spacing:-5.520000px;}
.ws80{word-spacing:-4.524000px;}
.ws97{word-spacing:-3.698400px;}
.wsb6{word-spacing:-3.036000px;}
.ws5e{word-spacing:-2.815200px;}
.ws101{word-spacing:-2.760000px;}
.ws5a{word-spacing:-2.704800px;}
.ws5d{word-spacing:-2.649600px;}
.ws100{word-spacing:-2.594400px;}
.ws5f{word-spacing:-2.539200px;}
.wsef{word-spacing:-2.484000px;}
.ws17{word-spacing:-2.373600px;}
.ws12e{word-spacing:-2.352000px;}
.wsa8{word-spacing:-2.318400px;}
.ws128{word-spacing:-2.304000px;}
.ws120{word-spacing:-2.152800px;}
.ws78{word-spacing:-2.112000px;}
.ws9f{word-spacing:-2.097600px;}
.wsb1{word-spacing:-1.987200px;}
.wsf2{word-spacing:-1.932000px;}
.ws70{word-spacing:-1.920000px;}
.wsb0{word-spacing:-1.821600px;}
.wsdf{word-spacing:-1.794000px;}
.ws127{word-spacing:-1.766400px;}
.ws16{word-spacing:-1.711200px;}
.ws56{word-spacing:-1.656000px;}
.wsf1{word-spacing:-1.545600px;}
.ws73{word-spacing:-1.536000px;}
.wsa1{word-spacing:-1.490400px;}
.wse0{word-spacing:-1.435200px;}
.ws21{word-spacing:-1.324800px;}
.ws146{word-spacing:-1.296000px;}
.ws29{word-spacing:-1.269600px;}
.ws91{word-spacing:-1.104000px;}
.wsc1{word-spacing:-0.993600px;}
.ws13c{word-spacing:-0.960000px;}
.wse8{word-spacing:-0.938400px;}
.ws6b{word-spacing:-0.897000px;}
.wse2{word-spacing:-0.883200px;}
.ws125{word-spacing:-0.662400px;}
.wsd7{word-spacing:-0.607200px;}
.ws13e{word-spacing:-0.576000px;}
.ws31{word-spacing:-0.552000px;}
.ws11c{word-spacing:-0.450000px;}
.ws19{word-spacing:-0.331200px;}
.ws71{word-spacing:-0.288000px;}
.ws3b{word-spacing:-0.276000px;}
.ws138{word-spacing:-0.240000px;}
.ws6d{word-spacing:-0.225000px;}
.ws133{word-spacing:-0.192000px;}
.ws110{word-spacing:-0.165600px;}
.ws112{word-spacing:-0.135000px;}
.ws65{word-spacing:-0.110400px;}
.ws69{word-spacing:-0.067860px;}
.ws10c{word-spacing:-0.055200px;}
.ws134{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws139{word-spacing:0.048000px;}
.wsf3{word-spacing:0.110400px;}
.wsde{word-spacing:0.113100px;}
.wsf4{word-spacing:0.165600px;}
.wsc5{word-spacing:0.210000px;}
.wsa2{word-spacing:0.220800px;}
.ws12d{word-spacing:0.240000px;}
.ws123{word-spacing:0.276000px;}
.ws6c{word-spacing:0.313200px;}
.ws111{word-spacing:0.331200px;}
.ws7d{word-spacing:0.336000px;}
.ws9a{word-spacing:0.386400px;}
.ws22{word-spacing:0.441600px;}
.wsc4{word-spacing:0.540000px;}
.ws96{word-spacing:0.552000px;}
.ws37{word-spacing:0.607200px;}
.wsf9{word-spacing:0.662400px;}
.wsa3{word-spacing:0.717600px;}
.wsd0{word-spacing:0.828000px;}
.wse7{word-spacing:0.883200px;}
.ws11b{word-spacing:0.900000px;}
.ws72{word-spacing:0.960000px;}
.wsb9{word-spacing:0.993600px;}
.wsba{word-spacing:1.048800px;}
.ws76{word-spacing:1.056000px;}
.ws77{word-spacing:1.104000px;}
.ws93{word-spacing:1.159200px;}
.ws43{word-spacing:1.214400px;}
.ws118{word-spacing:1.215000px;}
.ws7a{word-spacing:1.248000px;}
.ws26{word-spacing:1.269600px;}
.ws2f{word-spacing:1.324800px;}
.ws79{word-spacing:1.344000px;}
.wsbf{word-spacing:1.380000px;}
.ws67{word-spacing:1.435200px;}
.ws6f{word-spacing:1.440000px;}
.ws108{word-spacing:1.490400px;}
.ws6a{word-spacing:1.560000px;}
.ws107{word-spacing:1.600800px;}
.ws12f{word-spacing:1.632000px;}
.ws1d{word-spacing:1.656000px;}
.wsb2{word-spacing:1.711200px;}
.ws6e{word-spacing:1.776000px;}
.wsc8{word-spacing:1.821600px;}
.ws11a{word-spacing:1.845000px;}
.wscf{word-spacing:1.876800px;}
.ws74{word-spacing:2.016000px;}
.wsc7{word-spacing:2.042400px;}
.ws122{word-spacing:2.097600px;}
.ws119{word-spacing:2.115000px;}
.ws11f{word-spacing:2.152800px;}
.wsf{word-spacing:2.208000px;}
.ws11d{word-spacing:2.263200px;}
.ws13b{word-spacing:2.304000px;}
.ws13a{word-spacing:2.352000px;}
.ws7b{word-spacing:2.496000px;}
.wse{word-spacing:2.539200px;}
.ws2c{word-spacing:2.594400px;}
.ws44{word-spacing:2.649600px;}
.ws28{word-spacing:2.704800px;}
.ws9b{word-spacing:2.760000px;}
.ws12b{word-spacing:2.784000px;}
.wsa5{word-spacing:2.815200px;}
.ws132{word-spacing:2.832000px;}
.ws117{word-spacing:2.835000px;}
.wsbc{word-spacing:2.870400px;}
.ws7c{word-spacing:2.880000px;}
.ws20{word-spacing:2.925600px;}
.ws42{word-spacing:3.036000px;}
.ws27{word-spacing:3.091200px;}
.wse5{word-spacing:3.146400px;}
.wsa7{word-spacing:3.256800px;}
.ws63{word-spacing:3.312000px;}
.ws68{word-spacing:3.367200px;}
.wsc3{word-spacing:3.422400px;}
.wsfb{word-spacing:3.477600px;}
.wsff{word-spacing:3.532800px;}
.ws13f{word-spacing:3.552000px;}
.ws61{word-spacing:3.588000px;}
.ws99{word-spacing:3.643200px;}
.ws75{word-spacing:3.648000px;}
.wsee{word-spacing:3.698400px;}
.wsfd{word-spacing:3.753600px;}
.wsec{word-spacing:3.808800px;}
.wsd9{word-spacing:3.864000px;}
.ws41{word-spacing:3.919200px;}
.ws14{word-spacing:3.974400px;}
.ws94{word-spacing:4.029600px;}
.ws12a{word-spacing:4.032000px;}
.ws144{word-spacing:4.080000px;}
.ws62{word-spacing:4.084800px;}
.ws3e{word-spacing:4.140000px;}
.ws23{word-spacing:4.195200px;}
.ws140{word-spacing:4.224000px;}
.ws38{word-spacing:4.250400px;}
.ws1f{word-spacing:4.305600px;}
.ws1b{word-spacing:4.360800px;}
.ws32{word-spacing:4.416000px;}
.ws2e{word-spacing:4.471200px;}
.ws10{word-spacing:4.526400px;}
.ws121{word-spacing:4.581600px;}
.ws10e{word-spacing:4.636800px;}
.wsb8{word-spacing:4.692000px;}
.ws64{word-spacing:4.747200px;}
.ws33{word-spacing:4.802400px;}
.wse9{word-spacing:4.857600px;}
.ws58{word-spacing:4.912800px;}
.ws137{word-spacing:4.944000px;}
.ws54{word-spacing:4.968000px;}
.ws39{word-spacing:5.133600px;}
.wse3{word-spacing:5.244000px;}
.wsdb{word-spacing:5.299200px;}
.ws30{word-spacing:5.354400px;}
.wsf6{word-spacing:5.409600px;}
.ws135{word-spacing:5.424000px;}
.wse4{word-spacing:5.464800px;}
.ws142{word-spacing:5.520000px;}
.wsb4{word-spacing:5.630400px;}
.ws55{word-spacing:5.740800px;}
.ws48{word-spacing:5.796000px;}
.ws130{word-spacing:5.808000px;}
.wsfa{word-spacing:5.851200px;}
.ws145{word-spacing:5.904000px;}
.ws2b{word-spacing:5.906400px;}
.ws136{word-spacing:5.952000px;}
.ws5c{word-spacing:5.961600px;}
.wse6{word-spacing:6.016800px;}
.ws1c{word-spacing:6.127200px;}
.wsbb{word-spacing:6.182400px;}
.wsd{word-spacing:6.237600px;}
.ws143{word-spacing:6.240000px;}
.wsd8{word-spacing:6.292800px;}
.wsc2{word-spacing:6.348000px;}
.wsfc{word-spacing:6.403200px;}
.ws126{word-spacing:6.458400px;}
.ws1{word-spacing:6.480000px;}
.ws13d{word-spacing:6.576000px;}
.wsdd{word-spacing:6.624000px;}
.wsce{word-spacing:6.734400px;}
.wse1{word-spacing:6.789600px;}
.ws9d{word-spacing:6.900000px;}
.ws2d{word-spacing:7.010400px;}
.wsc0{word-spacing:7.065600px;}
.wscc{word-spacing:7.120800px;}
.ws10b{word-spacing:7.176000px;}
.wsf7{word-spacing:7.286400px;}
.wsa6{word-spacing:7.341600px;}
.wsf8{word-spacing:7.396800px;}
.ws9e{word-spacing:7.507200px;}
.ws2a{word-spacing:7.562400px;}
.ws1e{word-spacing:7.672800px;}
.ws11e{word-spacing:7.728000px;}
.wsa4{word-spacing:7.783200px;}
.wsed{word-spacing:7.893600px;}
.ws141{word-spacing:7.920000px;}
.ws36{word-spacing:7.948800px;}
.wsa0{word-spacing:8.004000px;}
.ws98{word-spacing:8.059200px;}
.wsf5{word-spacing:8.114400px;}
.ws10a{word-spacing:8.169600px;}
.wsd6{word-spacing:8.224800px;}
.ws18{word-spacing:8.280000px;}
.ws34{word-spacing:8.390400px;}
.ws95{word-spacing:8.500800px;}
.ws66{word-spacing:8.556000px;}
.wsfe{word-spacing:8.666400px;}
.wsb7{word-spacing:8.776800px;}
.ws47{word-spacing:8.887200px;}
.ws60{word-spacing:8.997600px;}
.wsdc{word-spacing:9.052800px;}
.ws3a{word-spacing:9.108000px;}
.ws109{word-spacing:9.328800px;}
.wsb{word-spacing:9.384000px;}
.wsbe{word-spacing:9.439200px;}
.ws106{word-spacing:9.549600px;}
.ws13{word-spacing:9.660000px;}
.wscd{word-spacing:9.715200px;}
.ws124{word-spacing:9.770400px;}
.ws15{word-spacing:10.046400px;}
.ws10d{word-spacing:10.156800px;}
.ws59{word-spacing:10.267200px;}
.ws25{word-spacing:10.322400px;}
.ws35{word-spacing:10.432800px;}
.ws12{word-spacing:10.598400px;}
.wsd3{word-spacing:10.708800px;}
.wsbd{word-spacing:10.929600px;}
.wsda{word-spacing:11.095200px;}
.wsa{word-spacing:11.150400px;}
.wsb5{word-spacing:11.205600px;}
.ws1a{word-spacing:11.260800px;}
.wsf0{word-spacing:11.316000px;}
.ws12c{word-spacing:11.520000px;}
.ws11{word-spacing:11.536800px;}
.ws3f{word-spacing:11.647200px;}
.ws24{word-spacing:11.978400px;}
.wsca{word-spacing:12.033600px;}
.ws7{word-spacing:12.254400px;}
.wsd2{word-spacing:12.309600px;}
.ws45{word-spacing:12.751200px;}
.wsea{word-spacing:12.972000px;}
.ws131{word-spacing:13.152000px;}
.ws46{word-spacing:13.524000px;}
.ws5b{word-spacing:13.744800px;}
.ws10f{word-spacing:13.965600px;}
.wsb3{word-spacing:14.186400px;}
.wscb{word-spacing:14.241600px;}
.wsc{word-spacing:14.407200px;}
.ws129{word-spacing:14.688000px;}
.ws57{word-spacing:14.738400px;}
.wseb{word-spacing:15.180000px;}
.ws3c{word-spacing:15.290400px;}
.ws40{word-spacing:16.228800px;}
.wsd1{word-spacing:16.449600px;}
.ws3d{word-spacing:18.492000px;}
.wsd5{word-spacing:18.933600px;}
.wsc9{word-spacing:19.761600px;}
.wsd4{word-spacing:20.092800px;}
.ws8{word-spacing:20.479200px;}
.ws9c{word-spacing:22.742400px;}
.wsaa{word-spacing:72.199200px;}
.wsaf{word-spacing:78.595200px;}
.wsac{word-spacing:99.786600px;}
.wsc6{word-spacing:105.351000px;}
.ws4b{word-spacing:119.792400px;}
.ws49{word-spacing:119.793000px;}
.ws4a{word-spacing:122.530200px;}
.ws52{word-spacing:166.032000px;}
.ws4c{word-spacing:186.910200px;}
.ws4f{word-spacing:188.278800px;}
.ws4e{word-spacing:196.724400px;}
.ws51{word-spacing:197.782200px;}
.ws4d{word-spacing:200.829600px;}
.ws104{word-spacing:207.775200px;}
.ws105{word-spacing:207.775800px;}
.ws50{word-spacing:212.323200px;}
.ws82{word-spacing:264.374400px;}
.ws84{word-spacing:275.534400px;}
.ws88{word-spacing:297.899400px;}
.ws89{word-spacing:323.971800px;}
.ws8b{word-spacing:417.922800px;}
.ws8e{word-spacing:577.357800px;}
.ws86{word-spacing:581.452800px;}
.ws8f{word-spacing:585.277800px;}
.ws83{word-spacing:675.727800px;}
.ws8a{word-spacing:679.012800px;}
.ws85{word-spacing:688.327800px;}
.ws8c{word-spacing:702.547800px;}
.ws87{word-spacing:723.652800px;}
.ws8d{word-spacing:750.832800px;}
.wsab{word-spacing:838.048200px;}
.wsad{word-spacing:928.048200px;}
.ws102{word-spacing:1035.008100px;}
.ws103{word-spacing:1071.413100px;}
._1e{margin-left:-603.478200px;}
._6{margin-left:-53.064000px;}
._e{margin-left:-50.760000px;}
._32{margin-left:-27.213600px;}
._21{margin-left:-23.081400px;}
._7{margin-left:-21.149400px;}
._a{margin-left:-19.596000px;}
._10{margin-left:-17.845200px;}
._13{margin-left:-16.428840px;}
._1f{margin-left:-12.972000px;}
._9{margin-left:-10.874400px;}
._36{margin-left:-9.721200px;}
._f{margin-left:-8.398200px;}
._12{margin-left:-7.312800px;}
._20{margin-left:-6.182400px;}
._b{margin-left:-4.676760px;}
._c{margin-left:-2.804160px;}
._4{margin-left:-1.593000px;}
._d{width:1.010160px;}
._5{width:2.025000px;}
._0{width:4.104000px;}
._2{width:5.832000px;}
._3{width:7.641000px;}
._11{width:11.382000px;}
._1{width:26.217000px;}
._8{width:41.405520px;}
._3c{width:75.993600px;}
._14{width:78.939600px;}
._22{width:81.199200px;}
._3b{width:88.458600px;}
._2d{width:101.937000px;}
._29{width:108.786600px;}
._25{width:126.348600px;}
._24{width:131.151600px;}
._23{width:145.975200px;}
._30{width:154.714200px;}
._42{width:216.775800px;}
._26{width:221.688360px;}
._41{width:239.140800px;}
._35{width:251.203200px;}
._4d{width:275.363400px;}
._34{width:283.750200px;}
._3e{width:286.075200px;}
._33{width:302.792640px;}
._1d{width:314.620800px;}
._1c{width:324.457800px;}
._3a{width:353.153400px;}
._2f{width:369.121200px;}
._37{width:372.275760px;}
._3f{width:383.206800px;}
._1b{width:398.707800px;}
._31{width:416.241000px;}
._1a{width:421.072800px;}
._54{width:433.151400px;}
._17{width:476.575800px;}
._19{width:486.592800px;}
._4c{width:517.265400px;}
._51{width:519.083400px;}
._2e{width:526.909200px;}
._15{width:552.472800px;}
._4b{width:569.151000px;}
._16{width:579.490800px;}
._39{width:590.151600px;}
._4a{width:591.516000px;}
._43{width:597.744000px;}
._2c{width:604.264200px;}
._28{width:612.346200px;}
._46{width:647.018400px;}
._49{width:657.036000px;}
._47{width:672.246000px;}
._38{width:673.419600px;}
._18{width:691.837800px;}
._40{width:722.915400px;}
._50{width:729.863400px;}
._4f{width:744.174000px;}
._44{width:749.934000px;}
._3d{width:756.465000px;}
._48{width:764.001000px;}
._52{width:766.808400px;}
._4e{width:817.956000px;}
._27{width:823.621200px;}
._53{width:848.241000px;}
._2a{width:860.566200px;}
._45{width:881.991000px;}
._2b{width:934.078200px;}
.fc6{color:rgb(48,88,159);}
.fc4{color:transparent;}
.fc1{color:rgb(23,62,125);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fsa{font-size:22.620000px;}
.fs10{font-size:26.100000px;}
.fsd{font-size:31.320000px;}
.fsb{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fse{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:55.200000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:168.000000px;}
.fs5{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:26.122500px;}
.ycb{bottom:34.015800px;}
.y4c{bottom:44.122500px;}
.y4b{bottom:62.122500px;}
.y5{bottom:66.525004px;}
.y26{bottom:73.795200px;}
.yef{bottom:74.493600px;}
.y1be{bottom:75.007350px;}
.y180{bottom:75.133650px;}
.y13a{bottom:75.283500px;}
.y97{bottom:75.295200px;}
.y62{bottom:75.295350px;}
.y15e{bottom:76.300800px;}
.y4a{bottom:80.122500px;}
.y1bd{bottom:88.507350px;}
.yee{bottom:89.493600px;}
.y139{bottom:90.283500px;}
.y15d{bottom:91.300800px;}
.yc9{bottom:91.501500px;}
.y17f{bottom:93.351150px;}
.y4{bottom:97.125005px;}
.y96{bottom:97.795200px;}
.y61{bottom:97.795350px;}
.y49{bottom:98.122500px;}
.y1bc{bottom:102.007350px;}
.y138{bottom:102.283500px;}
.y17e{bottom:105.133650px;}
.y15c{bottom:106.518300px;}
.yed{bottom:107.711100px;}
.yc8{bottom:108.001500px;}
.y1bb{bottom:115.507350px;}
.y48{bottom:116.122500px;}
.y17d{bottom:117.133650px;}
.y137{bottom:117.501000px;}
.yec{bottom:119.493600px;}
.y95{bottom:120.295200px;}
.y60{bottom:120.295350px;}
.yc7{bottom:124.501500px;}
.y176{bottom:128.447100px;}
.y1ba{bottom:129.007350px;}
.y20e{bottom:129.964200px;}
.yeb{bottom:131.493600px;}
.y17c{bottom:132.351150px;}
.y47{bottom:132.622500px;}
.y175{bottom:135.197100px;}
.y22{bottom:139.264499px;}
.yc6{bottom:141.001500px;}
.y1b9{bottom:142.507350px;}
.y94{bottom:142.795200px;}
.y5f{bottom:142.795350px;}
.y15a{bottom:144.298350px;}
.y20d{bottom:144.964200px;}
.y18c{bottom:154.101450px;}
.yc5{bottom:157.501500px;}
.y46{bottom:159.776100px;}
.y174{bottom:162.809850px;}
.y159{bottom:163.377450px;}
.y20c{bottom:164.216250px;}
.y93{bottom:165.295200px;}
.y5e{bottom:165.295350px;}
.y112{bottom:171.607500px;}
.y18b{bottom:172.384950px;}
.yc4{bottom:174.001500px;}
.y45{bottom:177.776100px;}
.y20b{bottom:179.216250px;}
.y111{bottom:185.107500px;}
.y1f6{bottom:185.811000px;}
.y92{bottom:187.795200px;}
.y5d{bottom:187.795350px;}
.yc3{bottom:190.501500px;}
.y18a{bottom:190.668450px;}
.y20a{bottom:194.216250px;}
.y44{bottom:195.776100px;}
.y19{bottom:196.933500px;}
.y110{bottom:201.371250px;}
.y1f5{bottom:201.561000px;}
.yc2{bottom:207.001500px;}
.y189{bottom:208.951950px;}
.y209{bottom:209.216250px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y91{bottom:210.295200px;}
.y5c{bottom:210.295350px;}
.y43{bottom:213.776100px;}
.y10f{bottom:214.871250px;}
.y1f4{bottom:217.311000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yc1{bottom:225.840000px;}
.y188{bottom:227.235300px;}
.y208{bottom:228.468150px;}
.y42{bottom:231.776100px;}
.y10e{bottom:232.144950px;}
.y90{bottom:232.795200px;}
.y63{bottom:232.795350px;}
.y1f3{bottom:233.061000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yc0{bottom:242.340000px;}
.y187{bottom:245.518800px;}
.y41{bottom:248.276100px;}
.y1f2{bottom:248.811000px;}
.y10d{bottom:250.215750px;}
.y8f{bottom:255.295200px;}
.y5b{bottom:255.295350px;}
.ybf{bottom:258.840000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1f1{bottom:264.561000px;}
.y10c{bottom:268.074000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y163{bottom:272.650200px;}
.y185{bottom:273.652350px;}
.ybe{bottom:275.340000px;}
.y40{bottom:275.429550px;}
.y169{bottom:275.927850px;}
.y8e{bottom:277.795200px;}
.y5a{bottom:277.795350px;}
.y1f0{bottom:280.311000px;}
.y16f{bottom:284.824350px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y10b{bottom:285.932400px;}
.y184{bottom:288.052350px;}
.ybd{bottom:291.840000px;}
.y3f{bottom:293.429550px;}
.y1ef{bottom:296.061000px;}
.y13e{bottom:298.838850px;}
.y11a{bottom:300.295200px;}
.y59{bottom:300.295350px;}
.y10a{bottom:303.790650px;}
.y141{bottom:306.864300px;}
.y147{bottom:308.775150px;}
.y183{bottom:308.830350px;}
.y158{bottom:309.700500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ybc{bottom:310.678650px;}
.y144{bottom:311.068050px;}
.y3e{bottom:311.429550px;}
.y8d{bottom:311.545200px;}
.y14d{bottom:313.361100px;}
.y14a{bottom:314.507700px;}
.y1ee{bottom:314.787450px;}
.y16b{bottom:319.942200px;}
.y165{bottom:320.410500px;}
.y109{bottom:321.648900px;}
.y119{bottom:322.795200px;}
.y58{bottom:322.795350px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y157{bottom:323.200500px;}
.y168{bottom:324.624600px;}
.y162{bottom:325.561200px;}
.y182{bottom:326.830350px;}
.y171{bottom:326.965800px;}
.ybb{bottom:327.178650px;}
.y3d{bottom:329.429550px;}
.y1ed{bottom:330.537450px;}
.y16e{bottom:331.180050px;}
.y8c{bottom:334.045200px;}
.y108{bottom:339.507150px;}
.y164{bottom:341.013000px;}
.y16a{bottom:341.481150px;}
.y167{bottom:342.417750px;}
.yba{bottom:343.678650px;}
.y16d{bottom:343.822350px;}
.y170{bottom:344.758800px;}
.y181{bottom:344.830350px;}
.y118{bottom:345.295200px;}
.y57{bottom:345.295350px;}
.y1ec{bottom:346.287450px;}
.y173{bottom:347.100000px;}
.y3c{bottom:347.429550px;}
.y10{bottom:348.133500px;}
.y156{bottom:352.220250px;}
.y8b{bottom:356.545200px;}
.y107{bottom:357.365400px;}
.y166{bottom:358.337850px;}
.y16c{bottom:358.806000px;}
.yb9{bottom:360.178650px;}
.y172{bottom:360.210750px;}
.y1eb{bottom:365.013750px;}
.y3b{bottom:365.429550px;}
.y155{bottom:365.720250px;}
.y117{bottom:367.795200px;}
.y56{bottom:367.795350px;}
.y186{bottom:369.724950px;}
.y106{bottom:375.223650px;}
.y177{bottom:375.446550px;}
.yb8{bottom:376.678650px;}
.y1ea{bottom:380.763750px;}
.y3a{bottom:383.429550px;}
.yf{bottom:386.785499px;}
.y116{bottom:390.295200px;}
.y55{bottom:390.295350px;}
.y105{bottom:393.081900px;}
.yb7{bottom:393.178650px;}
.y154{bottom:395.112000px;}
.y1e9{bottom:396.513750px;}
.y39{bottom:401.429550px;}
.y161{bottom:402.938400px;}
.y191{bottom:403.341150px;}
.ye{bottom:408.044999px;}
.y104{bottom:410.940150px;}
.yb6{bottom:412.017300px;}
.y1e8{bottom:412.263750px;}
.y8a{bottom:412.795200px;}
.y54{bottom:412.795350px;}
.y207{bottom:417.140550px;}
.y38{bottom:419.429550px;}
.y190{bottom:421.558650px;}
.y160{bottom:423.716400px;}
.y153{bottom:424.875750px;}
.y1e7{bottom:428.013750px;}
.yb5{bottom:428.517300px;}
.y103{bottom:428.798550px;}
.y18f{bottom:433.341150px;}
.y89{bottom:435.295200px;}
.y53{bottom:435.295350px;}
.y206{bottom:436.392450px;}
.y37{bottom:437.429550px;}
.y15f{bottom:441.716400px;}
.yb4{bottom:445.017300px;}
.y18e{bottom:445.341150px;}
.y102{bottom:446.656800px;}
.y1e6{bottom:446.740200px;}
.y205{bottom:451.392450px;}
.y36{bottom:453.929550px;}
.y152{bottom:454.639500px;}
.y88{bottom:457.795200px;}
.y52{bottom:457.795350px;}
.y18d{bottom:460.558650px;}
.yb3{bottom:461.517300px;}
.y1e5{bottom:462.490200px;}
.y101{bottom:464.515050px;}
.y204{bottom:466.392450px;}
.y178{bottom:466.592250px;}
.y13f{bottom:476.928000px;}
.yb2{bottom:478.017300px;}
.y1e4{bottom:478.240200px;}
.y148{bottom:479.985300px;}
.y87{bottom:480.295200px;}
.y51{bottom:480.295350px;}
.y35{bottom:481.083150px;}
.y14e{bottom:481.131750px;}
.y203{bottom:481.392450px;}
.y100{bottom:482.373300px;}
.y1b8{bottom:484.340400px;}
.y151{bottom:484.403250px;}
.yd{bottom:484.864502px;}
.y142{bottom:484.953450px;}
.y14b{bottom:486.100050px;}
.y145{bottom:490.303800px;}
.yb1{bottom:494.517300px;}
.y1e3{bottom:496.966500px;}
.y34{bottom:499.083150px;}
.yff{bottom:500.231550px;}
.y202{bottom:500.644500px;}
.y1b7{bottom:500.742300px;}
.y86{bottom:502.795200px;}
.y50{bottom:502.795350px;}
.yc{bottom:502.864502px;}
.y14f{bottom:510.940650px;}
.yb0{bottom:511.017300px;}
.y149{bottom:511.705050px;}
.y14c{bottom:512.469450px;}
.y1e2{bottom:512.716500px;}
.y1b6{bottom:514.242300px;}
.y33{bottom:517.083150px;}
.yfe{bottom:518.089800px;}
.yb{bottom:520.864502px;}
.y140{bottom:521.641350px;}
.y143{bottom:522.023550px;}
.y146{bottom:523.552200px;}
.y85{bottom:525.295200px;}
.y4f{bottom:525.295350px;}
.yaf{bottom:527.517300px;}
.y1e1{bottom:528.466500px;}
.y1b5{bottom:530.644350px;}
.y32{bottom:535.083150px;}
.yfd{bottom:535.948050px;}
.ya{bottom:538.864499px;}
.yae{bottom:544.017300px;}
.y1e0{bottom:544.216500px;}
.y1b4{bottom:547.184400px;}
.y84{bottom:547.795200px;}
.yea{bottom:547.795350px;}
.y31{bottom:551.583150px;}
.yfc{bottom:553.806300px;}
.y9{bottom:556.864499px;}
.yad{bottom:560.517300px;}
.y13d{bottom:561.795150px;}
.y1df{bottom:562.942950px;}
.y1b3{bottom:565.712400px;}
.y83{bottom:570.295200px;}
.ye9{bottom:570.295350px;}
.yfb{bottom:571.664550px;}
.y1de{bottom:578.692950px;}
.y30{bottom:578.736750px;}
.y1b2{bottom:579.212400px;}
.yac{bottom:579.355800px;}
.y13c{bottom:582.573000px;}
.yfa{bottom:589.522950px;}
.y82{bottom:592.795200px;}
.ye8{bottom:592.795350px;}
.y1dd{bottom:594.442950px;}
.yab{bottom:595.855800px;}
.y2f{bottom:596.736750px;}
.y1b1{bottom:597.740400px;}
.y13b{bottom:600.573000px;}
.yf9{bottom:607.381200px;}
.y1dc{bottom:610.192950px;}
.yaa{bottom:612.355800px;}
.y1b0{bottom:614.142300px;}
.y2e{bottom:614.736750px;}
.y81{bottom:615.295200px;}
.ye7{bottom:615.295350px;}
.yf8{bottom:625.239450px;}
.y150{bottom:625.449000px;}
.y1af{bottom:627.642300px;}
.ya9{bottom:628.855800px;}
.y1db{bottom:628.919250px;}
.y2d{bottom:632.736750px;}
.y80{bottom:637.795200px;}
.ye6{bottom:637.795350px;}
.yf7{bottom:643.097700px;}
.y1ae{bottom:644.044350px;}
.y1da{bottom:644.669250px;}
.ya8{bottom:645.355800px;}
.y8{bottom:645.510000px;}
.y15b{bottom:649.045200px;}
.y2c{bottom:650.736750px;}
.y7f{bottom:660.295200px;}
.ye5{bottom:660.295350px;}
.y1d9{bottom:660.419250px;}
.y1ad{bottom:660.584400px;}
.yf6{bottom:660.955950px;}
.y68{bottom:664.356450px;}
.y7{bottom:666.771000px;}
.y2b{bottom:668.736750px;}
.ya7{bottom:670.359750px;}
.y115{bottom:671.545200px;}
.y1ac{bottom:676.771200px;}
.y1d8{bottom:679.145700px;}
.yf5{bottom:680.046300px;}
.y7e{bottom:682.795200px;}
.ye4{bottom:682.795350px;}
.y2a{bottom:686.736750px;}
.y201{bottom:689.316900px;}
.yf4{bottom:691.144950px;}
.y1ab{bottom:692.958000px;}
.yca{bottom:693.002400px;}
.y114{bottom:694.045200px;}
.y1d7{bottom:694.895700px;}
.y11f{bottom:698.814900px;}
.y29{bottom:704.736600px;}
.y7d{bottom:705.295200px;}
.ye3{bottom:705.295350px;}
.y67{bottom:705.416400px;}
.y200{bottom:708.568800px;}
.y1aa{bottom:709.498050px;}
.y1d6{bottom:710.645700px;}
.y113{bottom:716.545200px;}
.y11e{bottom:717.032250px;}
.y28{bottom:722.736600px;}
.y1ff{bottom:723.568800px;}
.y1a9{bottom:726.038250px;}
.y6{bottom:726.298500px;}
.y7c{bottom:727.795200px;}
.ye2{bottom:727.795350px;}
.y11d{bottom:728.814900px;}
.y1d5{bottom:729.372000px;}
.yf2{bottom:733.906650px;}
.y1fe{bottom:738.568800px;}
.y27{bottom:739.236600px;}
.y11c{bottom:740.814900px;}
.y1a8{bottom:742.578450px;}
.y1d4{bottom:745.122000px;}
.y7b{bottom:750.295200px;}
.ye1{bottom:750.295350px;}
.y66{bottom:751.916400px;}
.y3{bottom:752.599495px;}
.yf1{bottom:754.684650px;}
.y11b{bottom:756.032250px;}
.y9b{bottom:757.675050px;}
.y1fd{bottom:757.820850px;}
.y1a7{bottom:759.118650px;}
.y1d3{bottom:760.872000px;}
.y9a{bottom:772.675050px;}
.yf0{bottom:772.684650px;}
.y7a{bottom:772.795200px;}
.ye0{bottom:772.795350px;}
.y1a6{bottom:775.658700px;}
.y1d2{bottom:776.622000px;}
.y136{bottom:782.552700px;}
.y99{bottom:784.675050px;}
.y1a5{bottom:792.198900px;}
.y79{bottom:795.295200px;}
.ydf{bottom:795.295350px;}
.y1d1{bottom:795.348450px;}
.yf3{bottom:797.579400px;}
.y65{bottom:798.416250px;}
.y135{bottom:799.826250px;}
.y98{bottom:799.892550px;}
.y134{bottom:806.576250px;}
.y1a4{bottom:808.739100px;}
.y1d0{bottom:811.098450px;}
.y78{bottom:817.795200px;}
.yde{bottom:817.795350px;}
.ya4{bottom:821.502750px;}
.y1a3{bottom:825.279300px;}
.y1cf{bottom:826.848450px;}
.y133{bottom:830.599950px;}
.y77{bottom:840.295200px;}
.ydd{bottom:840.295350px;}
.y1a2{bottom:841.819500px;}
.y1ce{bottom:842.598450px;}
.y132{bottom:848.883300px;}
.y25{bottom:853.419300px;}
.y64{bottom:853.420200px;}
.y1cd{bottom:858.348450px;}
.y1a1{bottom:858.359550px;}
.y76{bottom:862.795200px;}
.ydc{bottom:862.795350px;}
.y131{bottom:867.166800px;}
.y1a0{bottom:874.899750px;}
.y1cc{bottom:877.074900px;}
.y2{bottom:879.369000px;}
.y75{bottom:885.295200px;}
.ydb{bottom:885.295350px;}
.y130{bottom:885.450300px;}
.y19f{bottom:891.439950px;}
.y1cb{bottom:892.824900px;}
.y12f{bottom:903.733800px;}
.y74{bottom:907.795200px;}
.yda{bottom:907.795350px;}
.y19e{bottom:907.980000px;}
.y1ca{bottom:908.574900px;}
.y12e{bottom:922.017300px;}
.y1c9{bottom:924.324900px;}
.y19d{bottom:924.520200px;}
.y73{bottom:930.295200px;}
.yd9{bottom:930.295350px;}
.ya2{bottom:937.936350px;}
.y12d{bottom:940.300650px;}
.y19c{bottom:941.060400px;}
.y1c8{bottom:943.051200px;}
.y1fc{bottom:946.493100px;}
.y72{bottom:952.795200px;}
.yd8{bottom:952.795350px;}
.y19b{bottom:957.462300px;}
.y12c{bottom:958.584150px;}
.y1c7{bottom:958.801200px;}
.y24{bottom:962.899650px;}
.y19a{bottom:964.212300px;}
.y4e{bottom:964.384800px;}
.y198{bottom:965.732400px;}
.y1fb{bottom:965.745150px;}
.y1{bottom:966.726000px;}
.ya1{bottom:968.228100px;}
.y1c6{bottom:974.551200px;}
.y71{bottom:975.295200px;}
.yd7{bottom:975.295350px;}
.y12b{bottom:976.867650px;}
.y197{bottom:979.232400px;}
.y1fa{bottom:980.745150px;}
.y199{bottom:987.364350px;}
.y1c5{bottom:990.301200px;}
.ya0{bottom:992.028450px;}
.y129{bottom:993.348600px;}
.y12a{bottom:993.871800px;}
.y128{bottom:994.135950px;}
.y23{bottom:994.606350px;}
.y1f9{bottom:995.745150px;}
.y125{bottom:997.184700px;}
.y70{bottom:997.795200px;}
.yd6{bottom:997.795350px;}
.y1c4{bottom:1006.051200px;}
.y127{bottom:1008.136650px;}
.y17b{bottom:1009.045200px;}
.y124{bottom:1009.368300px;}
.y1f8{bottom:1010.745150px;}
.y195{bottom:1013.316300px;}
.y6f{bottom:1020.295200px;}
.yd5{bottom:1020.295350px;}
.y1c3{bottom:1024.777650px;}
.y126{bottom:1029.055350px;}
.y1f7{bottom:1029.997050px;}
.y17a{bottom:1031.545200px;}
.y194{bottom:1034.094300px;}
.ya3{bottom:1037.453550px;}
.y1c2{bottom:1040.527650px;}
.y6e{bottom:1042.795200px;}
.yd4{bottom:1042.795350px;}
.ya5{bottom:1050.835500px;}
.y193{bottom:1052.094300px;}
.y179{bottom:1054.045200px;}
.y1c1{bottom:1056.277650px;}
.y6d{bottom:1065.295200px;}
.yd3{bottom:1065.295350px;}
.y192{bottom:1070.094300px;}
.ya6{bottom:1072.092150px;}
.y1bf{bottom:1076.545200px;}
.y1c0{bottom:1084.783500px;}
.y6c{bottom:1087.795200px;}
.yd2{bottom:1087.795350px;}
.y196{bottom:1094.989050px;}
.y9e{bottom:1097.375550px;}
.y122{bottom:1097.804250px;}
.yce{bottom:1109.145750px;}
.y6b{bottom:1110.295200px;}
.yd1{bottom:1110.295350px;}
.y9d{bottom:1118.153550px;}
.y121{bottom:1118.582250px;}
.ycd{bottom:1131.645750px;}
.y6a{bottom:1132.795200px;}
.yd0{bottom:1132.795350px;}
.y9c{bottom:1136.153550px;}
.y120{bottom:1136.582250px;}
.ycc{bottom:1154.145750px;}
.y69{bottom:1155.295200px;}
.ycf{bottom:1155.295350px;}
.y9f{bottom:1161.029400px;}
.y123{bottom:1161.476850px;}
.h16{height:16.965000px;}
.h17{height:29.250000px;}
.h1c{height:31.500000px;}
.h7{height:32.130000px;}
.h26{height:33.030000px;}
.h1b{height:33.750000px;}
.h22{height:34.425000px;}
.h19{height:36.000000px;}
.h1a{height:36.018000px;}
.h1e{height:38.304000px;}
.h1d{height:39.636000px;}
.h28{height:40.128000px;}
.h27{height:40.516800px;}
.h18{height:40.808280px;}
.h20{height:40.808880px;}
.hf{height:41.344800px;}
.hd{height:44.049600px;}
.ha{height:45.000000px;}
.h6{height:45.900000px;}
.h10{height:46.147200px;}
.h3{height:48.195000px;}
.h11{height:48.444000px;}
.h13{height:49.500000px;}
.hc{height:50.049600px;}
.h14{height:50.160000px;}
.h1f{height:50.274000px;}
.h15{height:54.000000px;}
.h2{height:55.080000px;}
.h23{height:58.875000px;}
.h25{height:60.030000px;}
.h24{height:60.750000px;}
.h21{height:74.394600px;}
.h5{height:78.030000px;}
.he{height:88.500000px;}
.h4{height:119.055004px;}
.h12{height:134.064000px;}
.h9{height:215.460000px;}
.hb{height:803.610300px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:247.347600px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:17.103900px;}
.xa{left:19.035300px;}
.x5e{left:22.601700px;}
.x5f{left:25.155600px;}
.x9{left:26.691900px;}
.x57{left:30.915750px;}
.x5b{left:34.915050px;}
.x56{left:36.208500px;}
.x5d{left:40.061700px;}
.x16{left:42.130200px;}
.x26{left:43.430850px;}
.x58{left:45.331950px;}
.x59{left:47.986950px;}
.x5c{left:50.259600px;}
.x5a{left:54.044700px;}
.x1e{left:58.672500px;}
.x18{left:59.932350px;}
.x1c{left:61.191150px;}
.x28{left:63.999600px;}
.x1b{left:67.493400px;}
.x5{left:69.732300px;}
.x8{left:75.035400px;}
.x6{left:76.535400px;}
.x60{left:78.204000px;}
.x21{left:89.023650px;}
.x7{left:95.669250px;}
.x4c{left:99.872550px;}
.x3a{left:101.016000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4e{left:107.391300px;}
.x2e{left:110.197200px;}
.x2f{left:112.780200px;}
.x40{left:116.873700px;}
.x19{left:123.572250px;}
.x29{left:141.702150px;}
.x46{left:144.511500px;}
.x30{left:152.729400px;}
.x31{left:155.312250px;}
.x50{left:182.742750px;}
.x55{left:184.202550px;}
.x1a{left:186.528000px;}
.x3b{left:188.942400px;}
.x51{left:195.144150px;}
.x4{left:203.484001px;}
.x32{left:211.835550px;}
.x33{left:214.418550px;}
.x41{left:216.580200px;}
.x47{left:244.218000px;}
.x34{left:254.367750px;}
.x35{left:256.950750px;}
.x36{left:296.900100px;}
.x37{left:299.483100px;}
.x3c{left:303.888750px;}
.xd{left:322.579050px;}
.xe{left:323.714850px;}
.x1d{left:325.599300px;}
.x42{left:331.526550px;}
.x39{left:357.378000px;}
.x48{left:359.164350px;}
.x2a{left:376.505250px;}
.x2b{left:390.005250px;}
.x1f{left:404.113500px;}
.x3d{left:406.007550px;}
.x23{left:408.918300px;}
.x20{left:416.723550px;}
.x2c{left:428.963850px;}
.x43{left:433.645350px;}
.x17{left:446.852550px;}
.x38{left:449.368050px;}
.x27{left:451.072350px;}
.x3{left:454.959000px;}
.x49{left:461.283150px;}
.x2d{left:472.216500px;}
.x15{left:509.512650px;}
.x12{left:510.700650px;}
.x14{left:517.874250px;}
.x13{left:523.022700px;}
.x3e{left:524.142900px;}
.x4d{left:545.264550px;}
.x44{left:551.780700px;}
.x4a{left:579.418500px;}
.x11{left:590.300100px;}
.xf{left:591.487950px;}
.x10{left:603.055950px;}
.x24{left:612.794100px;}
.x3f{left:624.064200px;}
.x53{left:645.463200px;}
.x45{left:651.702000px;}
.x4f{left:669.995550px;}
.x4b{left:679.339650px;}
.x52{left:691.673550px;}
.xc{left:755.647200px;}
.x54{left:799.761900px;}
.x22{left:812.607750px;}
.x25{left:842.849700px;}
@media print{
.vc{vertical-align:-90.512000pt;}
.vd{vertical-align:-84.422933pt;}
.vb{vertical-align:-80.000000pt;}
.v6{vertical-align:-76.929600pt;}
.va{vertical-align:-69.422933pt;}
.v7{vertical-align:-61.543467pt;}
.v8{vertical-align:-46.156800pt;}
.v5{vertical-align:-38.464000pt;}
.v9{vertical-align:-30.000000pt;}
.vf{vertical-align:-15.840000pt;}
.v3{vertical-align:-11.440000pt;}
.v11{vertical-align:-1.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:10.666667pt;}
.ve{vertical-align:13.922667pt;}
.v4{vertical-align:15.839467pt;}
.v12{vertical-align:22.333333pt;}
.v13{vertical-align:24.000000pt;}
.v10{vertical-align:36.128533pt;}
.ls21{letter-spacing:-6.000000pt;}
.ls28{letter-spacing:-1.994667pt;}
.ls54{letter-spacing:-1.200000pt;}
.ls27{letter-spacing:-1.088000pt;}
.ls2b{letter-spacing:-0.746667pt;}
.ls4e{letter-spacing:-0.736000pt;}
.ls3f{letter-spacing:-0.490667pt;}
.ls43{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.441600pt;}
.ls6d{letter-spacing:-0.400000pt;}
.ls51{letter-spacing:-0.392533pt;}
.ls3e{letter-spacing:-0.343467pt;}
.ls70{letter-spacing:-0.298667pt;}
.ls53{letter-spacing:-0.294400pt;}
.ls2a{letter-spacing:-0.293333pt;}
.ls44{letter-spacing:-0.278400pt;}
.ls6e{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.245333pt;}
.ls6f{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.200000pt;}
.ls50{letter-spacing:-0.196267pt;}
.ls45{letter-spacing:-0.186667pt;}
.ls5a{letter-spacing:-0.173333pt;}
.ls46{letter-spacing:-0.170667pt;}
.ls41{letter-spacing:-0.147200pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls6b{letter-spacing:-0.120000pt;}
.ls59{letter-spacing:-0.100533pt;}
.ls40{letter-spacing:-0.098133pt;}
.ls48{letter-spacing:-0.085333pt;}
.ls6c{letter-spacing:-0.080000pt;}
.ls4f{letter-spacing:-0.049067pt;}
.ls71{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.000053pt;}
.ls3c{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.049067pt;}
.ls2e{letter-spacing:0.060320pt;}
.ls60{letter-spacing:0.073600pt;}
.ls64{letter-spacing:0.080000pt;}
.ls32{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.098133pt;}
.ls2f{letter-spacing:0.104000pt;}
.ls3b{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.147200pt;}
.ls33{letter-spacing:0.170667pt;}
.ls1f{letter-spacing:0.171733pt;}
.ls36{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.196267pt;}
.ls37{letter-spacing:0.213333pt;}
.ls6a{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.245333pt;}
.ls31{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.294400pt;}
.ls30{letter-spacing:0.298667pt;}
.ls34{letter-spacing:0.341333pt;}
.ls1d{letter-spacing:0.343467pt;}
.ls52{letter-spacing:0.368000pt;}
.ls69{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.392533pt;}
.ls1a{letter-spacing:0.441600pt;}
.ls5b{letter-spacing:0.466133pt;}
.ls49{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.490667pt;}
.ls3a{letter-spacing:0.512000pt;}
.ls58{letter-spacing:0.515200pt;}
.ls1{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.539733pt;}
.ls1b{letter-spacing:0.564267pt;}
.ls4a{letter-spacing:0.588800pt;}
.ls38{letter-spacing:0.597333pt;}
.ls65{letter-spacing:0.613333pt;}
.lsf{letter-spacing:0.637867pt;}
.ls35{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.686933pt;}
.ls11{letter-spacing:0.736000pt;}
.ls5d{letter-spacing:0.760533pt;}
.ls18{letter-spacing:0.785067pt;}
.ls67{letter-spacing:0.810667pt;}
.ls3{letter-spacing:0.834133pt;}
.ls5c{letter-spacing:0.858667pt;}
.ls42{letter-spacing:0.883200pt;}
.ls61{letter-spacing:0.907733pt;}
.lsc{letter-spacing:0.932267pt;}
.ls68{letter-spacing:0.938667pt;}
.ls4{letter-spacing:0.981333pt;}
.ls5e{letter-spacing:1.005867pt;}
.lsb{letter-spacing:1.030400pt;}
.ls4c{letter-spacing:1.054933pt;}
.ls22{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.079467pt;}
.ls66{letter-spacing:1.109333pt;}
.ls20{letter-spacing:1.128533pt;}
.ls5f{letter-spacing:1.177600pt;}
.ls17{letter-spacing:1.226667pt;}
.ls5{letter-spacing:1.275733pt;}
.ls2c{letter-spacing:1.324800pt;}
.ls1c{letter-spacing:1.373867pt;}
.ls1e{letter-spacing:1.422933pt;}
.ls56{letter-spacing:1.472000pt;}
.ls29{letter-spacing:1.668267pt;}
.ls55{letter-spacing:1.766400pt;}
.ls57{letter-spacing:1.790933pt;}
.ls23{letter-spacing:1.864533pt;}
.ls4b{letter-spacing:2.306133pt;}
.ls24{letter-spacing:2.502400pt;}
.ls2{letter-spacing:16.210667pt;}
.ls14{letter-spacing:17.023467pt;}
.ls2d{letter-spacing:17.089600pt;}
.lsd{letter-spacing:17.836267pt;}
.ls8{letter-spacing:17.881067pt;}
.ls3d{letter-spacing:88.073600pt;}
.ls4d{letter-spacing:930.673067pt;}
.ws4{word-spacing:-18.133333pt;}
.ws3{word-spacing:-17.045333pt;}
.ws5{word-spacing:-16.138667pt;}
.ws7e{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.315733pt;}
.ws7f{word-spacing:-11.874133pt;}
.ws6{word-spacing:-11.628800pt;}
.ws90{word-spacing:-11.200000pt;}
.ws114{word-spacing:-10.112000pt;}
.ws113{word-spacing:-10.069333pt;}
.ws2{word-spacing:-9.813333pt;}
.ws81{word-spacing:-9.120000pt;}
.ws53{word-spacing:-8.000000pt;}
.ws115{word-spacing:-7.800000pt;}
.ws116{word-spacing:-7.600000pt;}
.wsa9{word-spacing:-6.800000pt;}
.wsae{word-spacing:-5.289600pt;}
.ws92{word-spacing:-4.906667pt;}
.ws80{word-spacing:-4.021333pt;}
.ws97{word-spacing:-3.287467pt;}
.wsb6{word-spacing:-2.698667pt;}
.ws5e{word-spacing:-2.502400pt;}
.ws101{word-spacing:-2.453333pt;}
.ws5a{word-spacing:-2.404267pt;}
.ws5d{word-spacing:-2.355200pt;}
.ws100{word-spacing:-2.306133pt;}
.ws5f{word-spacing:-2.257067pt;}
.wsef{word-spacing:-2.208000pt;}
.ws17{word-spacing:-2.109867pt;}
.ws12e{word-spacing:-2.090667pt;}
.wsa8{word-spacing:-2.060800pt;}
.ws128{word-spacing:-2.048000pt;}
.ws120{word-spacing:-1.913600pt;}
.ws78{word-spacing:-1.877333pt;}
.ws9f{word-spacing:-1.864533pt;}
.wsb1{word-spacing:-1.766400pt;}
.wsf2{word-spacing:-1.717333pt;}
.ws70{word-spacing:-1.706667pt;}
.wsb0{word-spacing:-1.619200pt;}
.wsdf{word-spacing:-1.594667pt;}
.ws127{word-spacing:-1.570133pt;}
.ws16{word-spacing:-1.521067pt;}
.ws56{word-spacing:-1.472000pt;}
.wsf1{word-spacing:-1.373867pt;}
.ws73{word-spacing:-1.365333pt;}
.wsa1{word-spacing:-1.324800pt;}
.wse0{word-spacing:-1.275733pt;}
.ws21{word-spacing:-1.177600pt;}
.ws146{word-spacing:-1.152000pt;}
.ws29{word-spacing:-1.128533pt;}
.ws91{word-spacing:-0.981333pt;}
.wsc1{word-spacing:-0.883200pt;}
.ws13c{word-spacing:-0.853333pt;}
.wse8{word-spacing:-0.834133pt;}
.ws6b{word-spacing:-0.797333pt;}
.wse2{word-spacing:-0.785067pt;}
.ws125{word-spacing:-0.588800pt;}
.wsd7{word-spacing:-0.539733pt;}
.ws13e{word-spacing:-0.512000pt;}
.ws31{word-spacing:-0.490667pt;}
.ws11c{word-spacing:-0.400000pt;}
.ws19{word-spacing:-0.294400pt;}
.ws71{word-spacing:-0.256000pt;}
.ws3b{word-spacing:-0.245333pt;}
.ws138{word-spacing:-0.213333pt;}
.ws6d{word-spacing:-0.200000pt;}
.ws133{word-spacing:-0.170667pt;}
.ws110{word-spacing:-0.147200pt;}
.ws112{word-spacing:-0.120000pt;}
.ws65{word-spacing:-0.098133pt;}
.ws69{word-spacing:-0.060320pt;}
.ws10c{word-spacing:-0.049067pt;}
.ws134{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws139{word-spacing:0.042667pt;}
.wsf3{word-spacing:0.098133pt;}
.wsde{word-spacing:0.100533pt;}
.wsf4{word-spacing:0.147200pt;}
.wsc5{word-spacing:0.186667pt;}
.wsa2{word-spacing:0.196267pt;}
.ws12d{word-spacing:0.213333pt;}
.ws123{word-spacing:0.245333pt;}
.ws6c{word-spacing:0.278400pt;}
.ws111{word-spacing:0.294400pt;}
.ws7d{word-spacing:0.298667pt;}
.ws9a{word-spacing:0.343467pt;}
.ws22{word-spacing:0.392533pt;}
.wsc4{word-spacing:0.480000pt;}
.ws96{word-spacing:0.490667pt;}
.ws37{word-spacing:0.539733pt;}
.wsf9{word-spacing:0.588800pt;}
.wsa3{word-spacing:0.637867pt;}
.wsd0{word-spacing:0.736000pt;}
.wse7{word-spacing:0.785067pt;}
.ws11b{word-spacing:0.800000pt;}
.ws72{word-spacing:0.853333pt;}
.wsb9{word-spacing:0.883200pt;}
.wsba{word-spacing:0.932267pt;}
.ws76{word-spacing:0.938667pt;}
.ws77{word-spacing:0.981333pt;}
.ws93{word-spacing:1.030400pt;}
.ws43{word-spacing:1.079467pt;}
.ws118{word-spacing:1.080000pt;}
.ws7a{word-spacing:1.109333pt;}
.ws26{word-spacing:1.128533pt;}
.ws2f{word-spacing:1.177600pt;}
.ws79{word-spacing:1.194667pt;}
.wsbf{word-spacing:1.226667pt;}
.ws67{word-spacing:1.275733pt;}
.ws6f{word-spacing:1.280000pt;}
.ws108{word-spacing:1.324800pt;}
.ws6a{word-spacing:1.386667pt;}
.ws107{word-spacing:1.422933pt;}
.ws12f{word-spacing:1.450667pt;}
.ws1d{word-spacing:1.472000pt;}
.wsb2{word-spacing:1.521067pt;}
.ws6e{word-spacing:1.578667pt;}
.wsc8{word-spacing:1.619200pt;}
.ws11a{word-spacing:1.640000pt;}
.wscf{word-spacing:1.668267pt;}
.ws74{word-spacing:1.792000pt;}
.wsc7{word-spacing:1.815467pt;}
.ws122{word-spacing:1.864533pt;}
.ws119{word-spacing:1.880000pt;}
.ws11f{word-spacing:1.913600pt;}
.wsf{word-spacing:1.962667pt;}
.ws11d{word-spacing:2.011733pt;}
.ws13b{word-spacing:2.048000pt;}
.ws13a{word-spacing:2.090667pt;}
.ws7b{word-spacing:2.218667pt;}
.wse{word-spacing:2.257067pt;}
.ws2c{word-spacing:2.306133pt;}
.ws44{word-spacing:2.355200pt;}
.ws28{word-spacing:2.404267pt;}
.ws9b{word-spacing:2.453333pt;}
.ws12b{word-spacing:2.474667pt;}
.wsa5{word-spacing:2.502400pt;}
.ws132{word-spacing:2.517333pt;}
.ws117{word-spacing:2.520000pt;}
.wsbc{word-spacing:2.551467pt;}
.ws7c{word-spacing:2.560000pt;}
.ws20{word-spacing:2.600533pt;}
.ws42{word-spacing:2.698667pt;}
.ws27{word-spacing:2.747733pt;}
.wse5{word-spacing:2.796800pt;}
.wsa7{word-spacing:2.894933pt;}
.ws63{word-spacing:2.944000pt;}
.ws68{word-spacing:2.993067pt;}
.wsc3{word-spacing:3.042133pt;}
.wsfb{word-spacing:3.091200pt;}
.wsff{word-spacing:3.140267pt;}
.ws13f{word-spacing:3.157333pt;}
.ws61{word-spacing:3.189333pt;}
.ws99{word-spacing:3.238400pt;}
.ws75{word-spacing:3.242667pt;}
.wsee{word-spacing:3.287467pt;}
.wsfd{word-spacing:3.336533pt;}
.wsec{word-spacing:3.385600pt;}
.wsd9{word-spacing:3.434667pt;}
.ws41{word-spacing:3.483733pt;}
.ws14{word-spacing:3.532800pt;}
.ws94{word-spacing:3.581867pt;}
.ws12a{word-spacing:3.584000pt;}
.ws144{word-spacing:3.626667pt;}
.ws62{word-spacing:3.630933pt;}
.ws3e{word-spacing:3.680000pt;}
.ws23{word-spacing:3.729067pt;}
.ws140{word-spacing:3.754667pt;}
.ws38{word-spacing:3.778133pt;}
.ws1f{word-spacing:3.827200pt;}
.ws1b{word-spacing:3.876267pt;}
.ws32{word-spacing:3.925333pt;}
.ws2e{word-spacing:3.974400pt;}
.ws10{word-spacing:4.023467pt;}
.ws121{word-spacing:4.072533pt;}
.ws10e{word-spacing:4.121600pt;}
.wsb8{word-spacing:4.170667pt;}
.ws64{word-spacing:4.219733pt;}
.ws33{word-spacing:4.268800pt;}
.wse9{word-spacing:4.317867pt;}
.ws58{word-spacing:4.366933pt;}
.ws137{word-spacing:4.394667pt;}
.ws54{word-spacing:4.416000pt;}
.ws39{word-spacing:4.563200pt;}
.wse3{word-spacing:4.661333pt;}
.wsdb{word-spacing:4.710400pt;}
.ws30{word-spacing:4.759467pt;}
.wsf6{word-spacing:4.808533pt;}
.ws135{word-spacing:4.821333pt;}
.wse4{word-spacing:4.857600pt;}
.ws142{word-spacing:4.906667pt;}
.wsb4{word-spacing:5.004800pt;}
.ws55{word-spacing:5.102933pt;}
.ws48{word-spacing:5.152000pt;}
.ws130{word-spacing:5.162667pt;}
.wsfa{word-spacing:5.201067pt;}
.ws145{word-spacing:5.248000pt;}
.ws2b{word-spacing:5.250133pt;}
.ws136{word-spacing:5.290667pt;}
.ws5c{word-spacing:5.299200pt;}
.wse6{word-spacing:5.348267pt;}
.ws1c{word-spacing:5.446400pt;}
.wsbb{word-spacing:5.495467pt;}
.wsd{word-spacing:5.544533pt;}
.ws143{word-spacing:5.546667pt;}
.wsd8{word-spacing:5.593600pt;}
.wsc2{word-spacing:5.642667pt;}
.wsfc{word-spacing:5.691733pt;}
.ws126{word-spacing:5.740800pt;}
.ws1{word-spacing:5.760000pt;}
.ws13d{word-spacing:5.845333pt;}
.wsdd{word-spacing:5.888000pt;}
.wsce{word-spacing:5.986133pt;}
.wse1{word-spacing:6.035200pt;}
.ws9d{word-spacing:6.133333pt;}
.ws2d{word-spacing:6.231467pt;}
.wsc0{word-spacing:6.280533pt;}
.wscc{word-spacing:6.329600pt;}
.ws10b{word-spacing:6.378667pt;}
.wsf7{word-spacing:6.476800pt;}
.wsa6{word-spacing:6.525867pt;}
.wsf8{word-spacing:6.574933pt;}
.ws9e{word-spacing:6.673067pt;}
.ws2a{word-spacing:6.722133pt;}
.ws1e{word-spacing:6.820267pt;}
.ws11e{word-spacing:6.869333pt;}
.wsa4{word-spacing:6.918400pt;}
.wsed{word-spacing:7.016533pt;}
.ws141{word-spacing:7.040000pt;}
.ws36{word-spacing:7.065600pt;}
.wsa0{word-spacing:7.114667pt;}
.ws98{word-spacing:7.163733pt;}
.wsf5{word-spacing:7.212800pt;}
.ws10a{word-spacing:7.261867pt;}
.wsd6{word-spacing:7.310933pt;}
.ws18{word-spacing:7.360000pt;}
.ws34{word-spacing:7.458133pt;}
.ws95{word-spacing:7.556267pt;}
.ws66{word-spacing:7.605333pt;}
.wsfe{word-spacing:7.703467pt;}
.wsb7{word-spacing:7.801600pt;}
.ws47{word-spacing:7.899733pt;}
.ws60{word-spacing:7.997867pt;}
.wsdc{word-spacing:8.046933pt;}
.ws3a{word-spacing:8.096000pt;}
.ws109{word-spacing:8.292267pt;}
.wsb{word-spacing:8.341333pt;}
.wsbe{word-spacing:8.390400pt;}
.ws106{word-spacing:8.488533pt;}
.ws13{word-spacing:8.586667pt;}
.wscd{word-spacing:8.635733pt;}
.ws124{word-spacing:8.684800pt;}
.ws15{word-spacing:8.930133pt;}
.ws10d{word-spacing:9.028267pt;}
.ws59{word-spacing:9.126400pt;}
.ws25{word-spacing:9.175467pt;}
.ws35{word-spacing:9.273600pt;}
.ws12{word-spacing:9.420800pt;}
.wsd3{word-spacing:9.518933pt;}
.wsbd{word-spacing:9.715200pt;}
.wsda{word-spacing:9.862400pt;}
.wsa{word-spacing:9.911467pt;}
.wsb5{word-spacing:9.960533pt;}
.ws1a{word-spacing:10.009600pt;}
.wsf0{word-spacing:10.058667pt;}
.ws12c{word-spacing:10.240000pt;}
.ws11{word-spacing:10.254933pt;}
.ws3f{word-spacing:10.353067pt;}
.ws24{word-spacing:10.647467pt;}
.wsca{word-spacing:10.696533pt;}
.ws7{word-spacing:10.892800pt;}
.wsd2{word-spacing:10.941867pt;}
.ws45{word-spacing:11.334400pt;}
.wsea{word-spacing:11.530667pt;}
.ws131{word-spacing:11.690667pt;}
.ws46{word-spacing:12.021333pt;}
.ws5b{word-spacing:12.217600pt;}
.ws10f{word-spacing:12.413867pt;}
.wsb3{word-spacing:12.610133pt;}
.wscb{word-spacing:12.659200pt;}
.wsc{word-spacing:12.806400pt;}
.ws129{word-spacing:13.056000pt;}
.ws57{word-spacing:13.100800pt;}
.wseb{word-spacing:13.493333pt;}
.ws3c{word-spacing:13.591467pt;}
.ws40{word-spacing:14.425600pt;}
.wsd1{word-spacing:14.621867pt;}
.ws3d{word-spacing:16.437333pt;}
.wsd5{word-spacing:16.829867pt;}
.wsc9{word-spacing:17.565867pt;}
.wsd4{word-spacing:17.860267pt;}
.ws8{word-spacing:18.203733pt;}
.ws9c{word-spacing:20.215467pt;}
.wsaa{word-spacing:64.177067pt;}
.wsaf{word-spacing:69.862400pt;}
.wsac{word-spacing:88.699200pt;}
.wsc6{word-spacing:93.645333pt;}
.ws4b{word-spacing:106.482133pt;}
.ws49{word-spacing:106.482667pt;}
.ws4a{word-spacing:108.915733pt;}
.ws52{word-spacing:147.584000pt;}
.ws4c{word-spacing:166.142400pt;}
.ws4f{word-spacing:167.358933pt;}
.ws4e{word-spacing:174.866133pt;}
.ws51{word-spacing:175.806400pt;}
.ws4d{word-spacing:178.515200pt;}
.ws104{word-spacing:184.689067pt;}
.ws105{word-spacing:184.689600pt;}
.ws50{word-spacing:188.731733pt;}
.ws82{word-spacing:234.999467pt;}
.ws84{word-spacing:244.919467pt;}
.ws88{word-spacing:264.799467pt;}
.ws89{word-spacing:287.974933pt;}
.ws8b{word-spacing:371.486933pt;}
.ws8e{word-spacing:513.206933pt;}
.ws86{word-spacing:516.846933pt;}
.ws8f{word-spacing:520.246933pt;}
.ws83{word-spacing:600.646933pt;}
.ws8a{word-spacing:603.566933pt;}
.ws85{word-spacing:611.846933pt;}
.ws8c{word-spacing:624.486933pt;}
.ws87{word-spacing:643.246933pt;}
.ws8d{word-spacing:667.406933pt;}
.wsab{word-spacing:744.931733pt;}
.wsad{word-spacing:824.931733pt;}
.ws102{word-spacing:920.007200pt;}
.ws103{word-spacing:952.367200pt;}
._1e{margin-left:-536.425067pt;}
._6{margin-left:-47.168000pt;}
._e{margin-left:-45.120000pt;}
._32{margin-left:-24.189867pt;}
._21{margin-left:-20.516800pt;}
._7{margin-left:-18.799467pt;}
._a{margin-left:-17.418667pt;}
._10{margin-left:-15.862400pt;}
._13{margin-left:-14.603413pt;}
._1f{margin-left:-11.530667pt;}
._9{margin-left:-9.666133pt;}
._36{margin-left:-8.641067pt;}
._f{margin-left:-7.465067pt;}
._12{margin-left:-6.500267pt;}
._20{margin-left:-5.495467pt;}
._b{margin-left:-4.157120pt;}
._c{margin-left:-2.492587pt;}
._4{margin-left:-1.416000pt;}
._d{width:0.897920pt;}
._5{width:1.800000pt;}
._0{width:3.648000pt;}
._2{width:5.184000pt;}
._3{width:6.792000pt;}
._11{width:10.117333pt;}
._1{width:23.304000pt;}
._8{width:36.804907pt;}
._3c{width:67.549867pt;}
._14{width:70.168533pt;}
._22{width:72.177067pt;}
._3b{width:78.629867pt;}
._2d{width:90.610667pt;}
._29{width:96.699200pt;}
._25{width:112.309867pt;}
._24{width:116.579200pt;}
._23{width:129.755733pt;}
._30{width:137.523733pt;}
._42{width:192.689600pt;}
._26{width:197.056320pt;}
._41{width:212.569600pt;}
._35{width:223.291733pt;}
._4d{width:244.767467pt;}
._34{width:252.222400pt;}
._3e{width:254.289067pt;}
._33{width:269.149013pt;}
._1d{width:279.662933pt;}
._1c{width:288.406933pt;}
._3a{width:313.914133pt;}
._2f{width:328.107733pt;}
._37{width:330.911787pt;}
._3f{width:340.628267pt;}
._1b{width:354.406933pt;}
._31{width:369.992000pt;}
._1a{width:374.286933pt;}
._54{width:385.023467pt;}
._17{width:423.622933pt;}
._19{width:432.526933pt;}
._4c{width:459.791467pt;}
._51{width:461.407467pt;}
._2e{width:468.363733pt;}
._15{width:491.086933pt;}
._4b{width:505.912000pt;}
._16{width:515.102933pt;}
._39{width:524.579200pt;}
._4a{width:525.792000pt;}
._43{width:531.328000pt;}
._2c{width:537.123733pt;}
._28{width:544.307733pt;}
._46{width:575.127467pt;}
._49{width:584.032000pt;}
._47{width:597.552000pt;}
._38{width:598.595200pt;}
._18{width:614.966933pt;}
._40{width:642.591467pt;}
._50{width:648.767467pt;}
._4f{width:661.488000pt;}
._44{width:666.608000pt;}
._3d{width:672.413333pt;}
._48{width:679.112000pt;}
._52{width:681.607467pt;}
._4e{width:727.072000pt;}
._27{width:732.107733pt;}
._53{width:753.992000pt;}
._2a{width:764.947733pt;}
._45{width:783.992000pt;}
._2b{width:830.291733pt;}
.fs8{font-size:10.666667pt;}
.fsa{font-size:20.106667pt;}
.fs10{font-size:23.200000pt;}
.fsd{font-size:27.840000pt;}
.fsb{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fse{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:49.066667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:149.333333pt;}
.fs5{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:23.220000pt;}
.ycb{bottom:30.236267pt;}
.y4c{bottom:39.220000pt;}
.y4b{bottom:55.220000pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:65.595733pt;}
.yef{bottom:66.216533pt;}
.y1be{bottom:66.673200pt;}
.y180{bottom:66.785467pt;}
.y13a{bottom:66.918667pt;}
.y97{bottom:66.929067pt;}
.y62{bottom:66.929200pt;}
.y15e{bottom:67.822933pt;}
.y4a{bottom:71.220000pt;}
.y1bd{bottom:78.673200pt;}
.yee{bottom:79.549867pt;}
.y139{bottom:80.252000pt;}
.y15d{bottom:81.156267pt;}
.yc9{bottom:81.334667pt;}
.y17f{bottom:82.978800pt;}
.y4{bottom:86.333337pt;}
.y96{bottom:86.929067pt;}
.y61{bottom:86.929200pt;}
.y49{bottom:87.220000pt;}
.y1bc{bottom:90.673200pt;}
.y138{bottom:90.918667pt;}
.y17e{bottom:93.452133pt;}
.y15c{bottom:94.682933pt;}
.yed{bottom:95.743200pt;}
.yc8{bottom:96.001333pt;}
.y1bb{bottom:102.673200pt;}
.y48{bottom:103.220000pt;}
.y17d{bottom:104.118800pt;}
.y137{bottom:104.445333pt;}
.yec{bottom:106.216533pt;}
.y95{bottom:106.929067pt;}
.y60{bottom:106.929200pt;}
.yc7{bottom:110.668000pt;}
.y176{bottom:114.175200pt;}
.y1ba{bottom:114.673200pt;}
.y20e{bottom:115.523733pt;}
.yeb{bottom:116.883200pt;}
.y17c{bottom:117.645467pt;}
.y47{bottom:117.886667pt;}
.y175{bottom:120.175200pt;}
.y22{bottom:123.790666pt;}
.yc6{bottom:125.334667pt;}
.y1b9{bottom:126.673200pt;}
.y94{bottom:126.929067pt;}
.y5f{bottom:126.929200pt;}
.y15a{bottom:128.265200pt;}
.y20d{bottom:128.857067pt;}
.y18c{bottom:136.979067pt;}
.yc5{bottom:140.001333pt;}
.y46{bottom:142.023200pt;}
.y174{bottom:144.719867pt;}
.y159{bottom:145.224400pt;}
.y20c{bottom:145.970000pt;}
.y93{bottom:146.929067pt;}
.y5e{bottom:146.929200pt;}
.y112{bottom:152.540000pt;}
.y18b{bottom:153.231067pt;}
.yc4{bottom:154.668000pt;}
.y45{bottom:158.023200pt;}
.y20b{bottom:159.303333pt;}
.y111{bottom:164.540000pt;}
.y1f6{bottom:165.165333pt;}
.y92{bottom:166.929067pt;}
.y5d{bottom:166.929200pt;}
.yc3{bottom:169.334667pt;}
.y18a{bottom:169.483067pt;}
.y20a{bottom:172.636667pt;}
.y44{bottom:174.023200pt;}
.y19{bottom:175.052000pt;}
.y110{bottom:178.996667pt;}
.y1f5{bottom:179.165333pt;}
.yc2{bottom:184.001333pt;}
.y189{bottom:185.735067pt;}
.y209{bottom:185.970000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y91{bottom:186.929067pt;}
.y5c{bottom:186.929200pt;}
.y43{bottom:190.023200pt;}
.y10f{bottom:190.996667pt;}
.y1f4{bottom:193.165333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yc1{bottom:200.746667pt;}
.y188{bottom:201.986933pt;}
.y208{bottom:203.082800pt;}
.y42{bottom:206.023200pt;}
.y10e{bottom:206.351067pt;}
.y90{bottom:206.929067pt;}
.y63{bottom:206.929200pt;}
.y1f3{bottom:207.165333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yc0{bottom:215.413333pt;}
.y187{bottom:218.238933pt;}
.y41{bottom:220.689867pt;}
.y1f2{bottom:221.165333pt;}
.y10d{bottom:222.414000pt;}
.y8f{bottom:226.929067pt;}
.y5b{bottom:226.929200pt;}
.ybf{bottom:230.080000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1f1{bottom:235.165333pt;}
.y10c{bottom:238.288000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y163{bottom:242.355733pt;}
.y185{bottom:243.246533pt;}
.ybe{bottom:244.746667pt;}
.y40{bottom:244.826267pt;}
.y169{bottom:245.269200pt;}
.y8e{bottom:246.929067pt;}
.y5a{bottom:246.929200pt;}
.y1f0{bottom:249.165333pt;}
.y16f{bottom:253.177200pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y10b{bottom:254.162133pt;}
.y184{bottom:256.046533pt;}
.ybd{bottom:259.413333pt;}
.y3f{bottom:260.826267pt;}
.y1ef{bottom:263.165333pt;}
.y13e{bottom:265.634533pt;}
.y11a{bottom:266.929067pt;}
.y59{bottom:266.929200pt;}
.y10a{bottom:270.036133pt;}
.y141{bottom:272.768267pt;}
.y147{bottom:274.466800pt;}
.y183{bottom:274.515867pt;}
.y158{bottom:275.289333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ybc{bottom:276.158800pt;}
.y144{bottom:276.504933pt;}
.y3e{bottom:276.826267pt;}
.y8d{bottom:276.929067pt;}
.y14d{bottom:278.543200pt;}
.y14a{bottom:279.562400pt;}
.y1ee{bottom:279.811067pt;}
.y16b{bottom:284.393067pt;}
.y165{bottom:284.809333pt;}
.y109{bottom:285.910133pt;}
.y119{bottom:286.929067pt;}
.y58{bottom:286.929200pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y157{bottom:287.289333pt;}
.y168{bottom:288.555200pt;}
.y162{bottom:289.387733pt;}
.y182{bottom:290.515867pt;}
.y171{bottom:290.636267pt;}
.ybb{bottom:290.825467pt;}
.y3d{bottom:292.826267pt;}
.y1ed{bottom:293.811067pt;}
.y16e{bottom:294.382267pt;}
.y8c{bottom:296.929067pt;}
.y108{bottom:301.784133pt;}
.y164{bottom:303.122667pt;}
.y16a{bottom:303.538800pt;}
.y167{bottom:304.371333pt;}
.yba{bottom:305.492133pt;}
.y16d{bottom:305.619867pt;}
.y170{bottom:306.452267pt;}
.y181{bottom:306.515867pt;}
.y118{bottom:306.929067pt;}
.y57{bottom:306.929200pt;}
.y1ec{bottom:307.811067pt;}
.y173{bottom:308.533333pt;}
.y3c{bottom:308.826267pt;}
.y10{bottom:309.452000pt;}
.y156{bottom:313.084667pt;}
.y8b{bottom:316.929067pt;}
.y107{bottom:317.658133pt;}
.y166{bottom:318.522533pt;}
.y16c{bottom:318.938667pt;}
.yb9{bottom:320.158800pt;}
.y172{bottom:320.187333pt;}
.y1eb{bottom:324.456667pt;}
.y3b{bottom:324.826267pt;}
.y155{bottom:325.084667pt;}
.y117{bottom:326.929067pt;}
.y56{bottom:326.929200pt;}
.y186{bottom:328.644400pt;}
.y106{bottom:333.532133pt;}
.y177{bottom:333.730267pt;}
.yb8{bottom:334.825467pt;}
.y1ea{bottom:338.456667pt;}
.y3a{bottom:340.826267pt;}
.yf{bottom:343.809333pt;}
.y116{bottom:346.929067pt;}
.y55{bottom:346.929200pt;}
.y105{bottom:349.406133pt;}
.yb7{bottom:349.492133pt;}
.y154{bottom:351.210667pt;}
.y1e9{bottom:352.456667pt;}
.y39{bottom:356.826267pt;}
.y161{bottom:358.167467pt;}
.y191{bottom:358.525467pt;}
.ye{bottom:362.706666pt;}
.y104{bottom:365.280133pt;}
.yb6{bottom:366.237600pt;}
.y1e8{bottom:366.456667pt;}
.y8a{bottom:366.929067pt;}
.y54{bottom:366.929200pt;}
.y207{bottom:370.791600pt;}
.y38{bottom:372.826267pt;}
.y190{bottom:374.718800pt;}
.y160{bottom:376.636800pt;}
.y153{bottom:377.667333pt;}
.y1e7{bottom:380.456667pt;}
.yb5{bottom:380.904267pt;}
.y103{bottom:381.154267pt;}
.y18f{bottom:385.192133pt;}
.y89{bottom:386.929067pt;}
.y53{bottom:386.929200pt;}
.y206{bottom:387.904400pt;}
.y37{bottom:388.826267pt;}
.y15f{bottom:392.636800pt;}
.yb4{bottom:395.570933pt;}
.y18e{bottom:395.858800pt;}
.y102{bottom:397.028267pt;}
.y1e6{bottom:397.102400pt;}
.y205{bottom:401.237733pt;}
.y36{bottom:403.492933pt;}
.y152{bottom:404.124000pt;}
.y88{bottom:406.929067pt;}
.y52{bottom:406.929200pt;}
.y18d{bottom:409.385467pt;}
.yb3{bottom:410.237600pt;}
.y1e5{bottom:411.102400pt;}
.y101{bottom:412.902267pt;}
.y204{bottom:414.571067pt;}
.y178{bottom:414.748667pt;}
.y13f{bottom:423.936000pt;}
.yb2{bottom:424.904267pt;}
.y1e4{bottom:425.102400pt;}
.y148{bottom:426.653600pt;}
.y87{bottom:426.929067pt;}
.y51{bottom:426.929200pt;}
.y35{bottom:427.629467pt;}
.y14e{bottom:427.672667pt;}
.y203{bottom:427.904400pt;}
.y100{bottom:428.776267pt;}
.y1b8{bottom:430.524800pt;}
.y151{bottom:430.580667pt;}
.yd{bottom:430.990669pt;}
.y142{bottom:431.069733pt;}
.y14b{bottom:432.088933pt;}
.y145{bottom:435.825600pt;}
.yb1{bottom:439.570933pt;}
.y1e3{bottom:441.748000pt;}
.y34{bottom:443.629467pt;}
.yff{bottom:444.650267pt;}
.y202{bottom:445.017333pt;}
.y1b7{bottom:445.104267pt;}
.y86{bottom:446.929067pt;}
.y50{bottom:446.929200pt;}
.yc{bottom:446.990669pt;}
.y14f{bottom:454.169467pt;}
.yb0{bottom:454.237600pt;}
.y149{bottom:454.848933pt;}
.y14c{bottom:455.528400pt;}
.y1e2{bottom:455.748000pt;}
.y1b6{bottom:457.104267pt;}
.y33{bottom:459.629467pt;}
.yfe{bottom:460.524267pt;}
.yb{bottom:462.990669pt;}
.y140{bottom:463.681200pt;}
.y143{bottom:464.020933pt;}
.y146{bottom:465.379733pt;}
.y85{bottom:466.929067pt;}
.y4f{bottom:466.929200pt;}
.yaf{bottom:468.904267pt;}
.y1e1{bottom:469.748000pt;}
.y1b5{bottom:471.683867pt;}
.y32{bottom:475.629467pt;}
.yfd{bottom:476.398267pt;}
.ya{bottom:478.990666pt;}
.yae{bottom:483.570933pt;}
.y1e0{bottom:483.748000pt;}
.y1b4{bottom:486.386133pt;}
.y84{bottom:486.929067pt;}
.yea{bottom:486.929200pt;}
.y31{bottom:490.296133pt;}
.yfc{bottom:492.272267pt;}
.y9{bottom:494.990666pt;}
.yad{bottom:498.237600pt;}
.y13d{bottom:499.373467pt;}
.y1df{bottom:500.393733pt;}
.y1b3{bottom:502.855467pt;}
.y83{bottom:506.929067pt;}
.ye9{bottom:506.929200pt;}
.yfb{bottom:508.146267pt;}
.y1de{bottom:514.393733pt;}
.y30{bottom:514.432667pt;}
.y1b2{bottom:514.855467pt;}
.yac{bottom:514.982933pt;}
.y13c{bottom:517.842667pt;}
.yfa{bottom:524.020400pt;}
.y82{bottom:526.929067pt;}
.ye8{bottom:526.929200pt;}
.y1dd{bottom:528.393733pt;}
.yab{bottom:529.649600pt;}
.y2f{bottom:530.432667pt;}
.y1b1{bottom:531.324800pt;}
.y13b{bottom:533.842667pt;}
.yf9{bottom:539.894400pt;}
.y1dc{bottom:542.393733pt;}
.yaa{bottom:544.316267pt;}
.y1b0{bottom:545.904267pt;}
.y2e{bottom:546.432667pt;}
.y81{bottom:546.929067pt;}
.ye7{bottom:546.929200pt;}
.yf8{bottom:555.768400pt;}
.y150{bottom:555.954667pt;}
.y1af{bottom:557.904267pt;}
.ya9{bottom:558.982933pt;}
.y1db{bottom:559.039333pt;}
.y2d{bottom:562.432667pt;}
.y80{bottom:566.929067pt;}
.ye6{bottom:566.929200pt;}
.yf7{bottom:571.642400pt;}
.y1ae{bottom:572.483867pt;}
.y1da{bottom:573.039333pt;}
.ya8{bottom:573.649600pt;}
.y8{bottom:573.786667pt;}
.y15b{bottom:576.929067pt;}
.y2c{bottom:578.432667pt;}
.y7f{bottom:586.929067pt;}
.ye5{bottom:586.929200pt;}
.y1d9{bottom:587.039333pt;}
.y1ad{bottom:587.186133pt;}
.yf6{bottom:587.516400pt;}
.y68{bottom:590.539067pt;}
.y7{bottom:592.685334pt;}
.y2b{bottom:594.432667pt;}
.ya7{bottom:595.875333pt;}
.y115{bottom:596.929067pt;}
.y1ac{bottom:601.574400pt;}
.y1d8{bottom:603.685067pt;}
.yf5{bottom:604.485600pt;}
.y7e{bottom:606.929067pt;}
.ye4{bottom:606.929200pt;}
.y2a{bottom:610.432667pt;}
.y201{bottom:612.726133pt;}
.yf4{bottom:614.351067pt;}
.y1ab{bottom:615.962667pt;}
.yca{bottom:616.002133pt;}
.y114{bottom:616.929067pt;}
.y1d7{bottom:617.685067pt;}
.y11f{bottom:621.168800pt;}
.y29{bottom:626.432533pt;}
.y7d{bottom:626.929067pt;}
.ye3{bottom:626.929200pt;}
.y67{bottom:627.036800pt;}
.y200{bottom:629.838933pt;}
.y1aa{bottom:630.664933pt;}
.y1d6{bottom:631.685067pt;}
.y113{bottom:636.929067pt;}
.y11e{bottom:637.362000pt;}
.y28{bottom:642.432533pt;}
.y1ff{bottom:643.172267pt;}
.y1a9{bottom:645.367333pt;}
.y6{bottom:645.598667pt;}
.y7c{bottom:646.929067pt;}
.ye2{bottom:646.929200pt;}
.y11d{bottom:647.835467pt;}
.y1d5{bottom:648.330667pt;}
.yf2{bottom:652.361467pt;}
.y1fe{bottom:656.505600pt;}
.y27{bottom:657.099200pt;}
.y11c{bottom:658.502133pt;}
.y1a8{bottom:660.069733pt;}
.y1d4{bottom:662.330667pt;}
.y7b{bottom:666.929067pt;}
.ye1{bottom:666.929200pt;}
.y66{bottom:668.370133pt;}
.y3{bottom:668.977329pt;}
.yf1{bottom:670.830800pt;}
.y11b{bottom:672.028667pt;}
.y9b{bottom:673.488933pt;}
.y1fd{bottom:673.618533pt;}
.y1a7{bottom:674.772133pt;}
.y1d3{bottom:676.330667pt;}
.y9a{bottom:686.822267pt;}
.yf0{bottom:686.830800pt;}
.y7a{bottom:686.929067pt;}
.ye0{bottom:686.929200pt;}
.y1a6{bottom:689.474400pt;}
.y1d2{bottom:690.330667pt;}
.y136{bottom:695.602400pt;}
.y99{bottom:697.488933pt;}
.y1a5{bottom:704.176800pt;}
.y79{bottom:706.929067pt;}
.ydf{bottom:706.929200pt;}
.y1d1{bottom:706.976400pt;}
.yf3{bottom:708.959467pt;}
.y65{bottom:709.703333pt;}
.y135{bottom:710.956667pt;}
.y98{bottom:711.015600pt;}
.y134{bottom:716.956667pt;}
.y1a4{bottom:718.879200pt;}
.y1d0{bottom:720.976400pt;}
.y78{bottom:726.929067pt;}
.yde{bottom:726.929200pt;}
.ya4{bottom:730.224667pt;}
.y1a3{bottom:733.581600pt;}
.y1cf{bottom:734.976400pt;}
.y133{bottom:738.311067pt;}
.y77{bottom:746.929067pt;}
.ydd{bottom:746.929200pt;}
.y1a2{bottom:748.284000pt;}
.y1ce{bottom:748.976400pt;}
.y132{bottom:754.562933pt;}
.y25{bottom:758.594933pt;}
.y64{bottom:758.595733pt;}
.y1cd{bottom:762.976400pt;}
.y1a1{bottom:762.986267pt;}
.y76{bottom:766.929067pt;}
.ydc{bottom:766.929200pt;}
.y131{bottom:770.814933pt;}
.y1a0{bottom:777.688667pt;}
.y1cc{bottom:779.622133pt;}
.y2{bottom:781.661334pt;}
.y75{bottom:786.929067pt;}
.ydb{bottom:786.929200pt;}
.y130{bottom:787.066933pt;}
.y19f{bottom:792.391067pt;}
.y1cb{bottom:793.622133pt;}
.y12f{bottom:803.318933pt;}
.y74{bottom:806.929067pt;}
.yda{bottom:806.929200pt;}
.y19e{bottom:807.093333pt;}
.y1ca{bottom:807.622133pt;}
.y12e{bottom:819.570933pt;}
.y1c9{bottom:821.622133pt;}
.y19d{bottom:821.795733pt;}
.y73{bottom:826.929067pt;}
.yd9{bottom:826.929200pt;}
.ya2{bottom:833.721200pt;}
.y12d{bottom:835.822800pt;}
.y19c{bottom:836.498133pt;}
.y1c8{bottom:838.267733pt;}
.y1fc{bottom:841.327200pt;}
.y72{bottom:846.929067pt;}
.yd8{bottom:846.929200pt;}
.y19b{bottom:851.077600pt;}
.y12c{bottom:852.074800pt;}
.y1c7{bottom:852.267733pt;}
.y24{bottom:855.910800pt;}
.y19a{bottom:857.077600pt;}
.y4e{bottom:857.230933pt;}
.y198{bottom:858.428800pt;}
.y1fb{bottom:858.440133pt;}
.y1{bottom:859.312000pt;}
.ya1{bottom:860.647200pt;}
.y1c6{bottom:866.267733pt;}
.y71{bottom:866.929067pt;}
.yd7{bottom:866.929200pt;}
.y12b{bottom:868.326800pt;}
.y197{bottom:870.428800pt;}
.y1fa{bottom:871.773467pt;}
.y199{bottom:877.657200pt;}
.y1c5{bottom:880.267733pt;}
.ya0{bottom:881.803067pt;}
.y129{bottom:882.976533pt;}
.y12a{bottom:883.441600pt;}
.y128{bottom:883.676400pt;}
.y23{bottom:884.094533pt;}
.y1f9{bottom:885.106800pt;}
.y125{bottom:886.386400pt;}
.y70{bottom:886.929067pt;}
.yd6{bottom:886.929200pt;}
.y1c4{bottom:894.267733pt;}
.y127{bottom:896.121467pt;}
.y17b{bottom:896.929067pt;}
.y124{bottom:897.216267pt;}
.y1f8{bottom:898.440133pt;}
.y195{bottom:900.725600pt;}
.y6f{bottom:906.929067pt;}
.yd5{bottom:906.929200pt;}
.y1c3{bottom:910.913467pt;}
.y126{bottom:914.715867pt;}
.y1f7{bottom:915.552933pt;}
.y17a{bottom:916.929067pt;}
.y194{bottom:919.194933pt;}
.ya3{bottom:922.180933pt;}
.y1c2{bottom:924.913467pt;}
.y6e{bottom:926.929067pt;}
.yd4{bottom:926.929200pt;}
.ya5{bottom:934.076000pt;}
.y193{bottom:935.194933pt;}
.y179{bottom:936.929067pt;}
.y1c1{bottom:938.913467pt;}
.y6d{bottom:946.929067pt;}
.yd3{bottom:946.929200pt;}
.y192{bottom:951.194933pt;}
.ya6{bottom:952.970800pt;}
.y1bf{bottom:956.929067pt;}
.y1c0{bottom:964.252000pt;}
.y6c{bottom:966.929067pt;}
.yd2{bottom:966.929200pt;}
.y196{bottom:973.323600pt;}
.y9e{bottom:975.444933pt;}
.y122{bottom:975.826000pt;}
.yce{bottom:985.907333pt;}
.y6b{bottom:986.929067pt;}
.yd1{bottom:986.929200pt;}
.y9d{bottom:993.914267pt;}
.y121{bottom:994.295333pt;}
.ycd{bottom:1005.907333pt;}
.y6a{bottom:1006.929067pt;}
.yd0{bottom:1006.929200pt;}
.y9c{bottom:1009.914267pt;}
.y120{bottom:1010.295333pt;}
.ycc{bottom:1025.907333pt;}
.y69{bottom:1026.929067pt;}
.ycf{bottom:1026.929200pt;}
.y9f{bottom:1032.026133pt;}
.y123{bottom:1032.423867pt;}
.h16{height:15.080000pt;}
.h17{height:26.000000pt;}
.h1c{height:28.000000pt;}
.h7{height:28.560000pt;}
.h26{height:29.360000pt;}
.h1b{height:30.000000pt;}
.h22{height:30.600000pt;}
.h19{height:32.000000pt;}
.h1a{height:32.016000pt;}
.h1e{height:34.048000pt;}
.h1d{height:35.232000pt;}
.h28{height:35.669333pt;}
.h27{height:36.014933pt;}
.h18{height:36.274027pt;}
.h20{height:36.274560pt;}
.hf{height:36.750933pt;}
.hd{height:39.155200pt;}
.ha{height:40.000000pt;}
.h6{height:40.800000pt;}
.h10{height:41.019733pt;}
.h3{height:42.840000pt;}
.h11{height:43.061333pt;}
.h13{height:44.000000pt;}
.hc{height:44.488533pt;}
.h14{height:44.586667pt;}
.h1f{height:44.688000pt;}
.h15{height:48.000000pt;}
.h2{height:48.960000pt;}
.h23{height:52.333333pt;}
.h25{height:53.360000pt;}
.h24{height:54.000000pt;}
.h21{height:66.128533pt;}
.h5{height:69.360000pt;}
.he{height:78.666667pt;}
.h4{height:105.826671pt;}
.h12{height:119.168000pt;}
.h9{height:191.520000pt;}
.hb{height:714.320267pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:219.864533pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:15.203467pt;}
.xa{left:16.920267pt;}
.x5e{left:20.090400pt;}
.x5f{left:22.360533pt;}
.x9{left:23.726133pt;}
.x57{left:27.480667pt;}
.x5b{left:31.035600pt;}
.x56{left:32.185333pt;}
.x5d{left:35.610400pt;}
.x16{left:37.449067pt;}
.x26{left:38.605200pt;}
.x58{left:40.295067pt;}
.x59{left:42.655067pt;}
.x5c{left:44.675200pt;}
.x5a{left:48.039733pt;}
.x1e{left:52.153333pt;}
.x18{left:53.273200pt;}
.x1c{left:54.392133pt;}
.x28{left:56.888533pt;}
.x1b{left:59.994133pt;}
.x5{left:61.984267pt;}
.x8{left:66.698133pt;}
.x6{left:68.031467pt;}
.x60{left:69.514667pt;}
.x21{left:79.132133pt;}
.x7{left:85.039333pt;}
.x4c{left:88.775600pt;}
.x3a{left:89.792000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4e{left:95.458933pt;}
.x2e{left:97.953067pt;}
.x2f{left:100.249067pt;}
.x40{left:103.887733pt;}
.x19{left:109.842000pt;}
.x29{left:125.957467pt;}
.x46{left:128.454667pt;}
.x30{left:135.759467pt;}
.x31{left:138.055333pt;}
.x50{left:162.438000pt;}
.x55{left:163.735600pt;}
.x1a{left:165.802667pt;}
.x3b{left:167.948800pt;}
.x51{left:173.461467pt;}
.x4{left:180.874667pt;}
.x32{left:188.298267pt;}
.x33{left:190.594267pt;}
.x41{left:192.515733pt;}
.x47{left:217.082667pt;}
.x34{left:226.104667pt;}
.x35{left:228.400667pt;}
.x36{left:263.911200pt;}
.x37{left:266.207200pt;}
.x3c{left:270.123333pt;}
.xd{left:286.736933pt;}
.xe{left:287.746533pt;}
.x1d{left:289.421600pt;}
.x42{left:294.690267pt;}
.x39{left:317.669333pt;}
.x48{left:319.257200pt;}
.x2a{left:334.671333pt;}
.x2b{left:346.671333pt;}
.x1f{left:359.212000pt;}
.x3d{left:360.895600pt;}
.x23{left:363.482933pt;}
.x20{left:370.420933pt;}
.x2c{left:381.301200pt;}
.x43{left:385.462533pt;}
.x17{left:397.202267pt;}
.x38{left:399.438267pt;}
.x27{left:400.953200pt;}
.x3{left:404.408000pt;}
.x49{left:410.029467pt;}
.x2d{left:419.748000pt;}
.x15{left:452.900133pt;}
.x12{left:453.956133pt;}
.x14{left:460.332667pt;}
.x13{left:464.909067pt;}
.x3e{left:465.904800pt;}
.x4d{left:484.679600pt;}
.x44{left:490.471733pt;}
.x4a{left:515.038667pt;}
.x11{left:524.711200pt;}
.xf{left:525.767067pt;}
.x10{left:536.049733pt;}
.x24{left:544.705867pt;}
.x3f{left:554.723733pt;}
.x53{left:573.745067pt;}
.x45{left:579.290667pt;}
.x4f{left:595.551600pt;}
.x4b{left:603.857467pt;}
.x52{left:614.820933pt;}
.xc{left:671.686400pt;}
.x54{left:710.899467pt;}
.x22{left:722.318000pt;}
.x25{left:749.199733pt;}
}




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