
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_6865ab1f36408679c8aa6a24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_fffe7b1da1740ab2a5b4261c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.137667;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_c68106591d5f2d59ed2c79d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963667;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_5ad1af063de46d4e80fb8fdf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.953000;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_4c6453c0956f8c6d85dc8f6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_0a21c0a8984628b8b0741a2b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_78c114448c65f52e187c6902.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_9c3a4313c36b6a69906d8212.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963000;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_121ed8f66b4b8de250014596.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.943000;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_b8a249f9cf6ef45109769add.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893000;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_9b234ce5286dbddfc800181e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.886000;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_060ba65d48e79131d8df69e8.woff2')format("woff");}.fff{font-family:fff;line-height:0.887000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls14{letter-spacing:-2.457000px;}
.ls1d{letter-spacing:-1.638000px;}
.lsf{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-1.197000px;}
.ls21{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.756000px;}
.ls4{letter-spacing:-0.693000px;}
.ls1e{letter-spacing:-0.630000px;}
.ls12{letter-spacing:-0.567000px;}
.ls1a{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.441000px;}
.ls5{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.252000px;}
.ls1b{letter-spacing:-0.189000px;}
.ls18{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.126000px;}
.ls11{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.315000px;}
.ls1c{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.567000px;}
.lsd{letter-spacing:0.693000px;}
.ls6{letter-spacing:0.756000px;}
.ls13{letter-spacing:0.882000px;}
.ls15{letter-spacing:1.008000px;}
.lse{letter-spacing:1.134000px;}
.ls20{letter-spacing:1.632000px;}
.lsb{letter-spacing:1.638000px;}
.ls17{letter-spacing:3.654000px;}
.ls1f{letter-spacing:4.032000px;}
.ls19{letter-spacing:4.284000px;}
.ls22{letter-spacing:10.206000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.wsd0{word-spacing:-14.637000px;}
.wsce{word-spacing:-13.980000px;}
.wscf{word-spacing:-13.005000px;}
.ws34{word-spacing:-12.222000px;}
.wscd{word-spacing:-11.655000px;}
.ws8c{word-spacing:-10.836000px;}
.wsdd{word-spacing:-10.206000px;}
.wsa0{word-spacing:-4.284000px;}
.wsc8{word-spacing:-4.032000px;}
.ws7b{word-spacing:-3.654000px;}
.ws95{word-spacing:-2.016000px;}
.wse4{word-spacing:-1.734000px;}
.ws36{word-spacing:-1.638000px;}
.wsbe{word-spacing:-1.449000px;}
.ws8d{word-spacing:-1.260000px;}
.wsd9{word-spacing:-1.197000px;}
.ws4a{word-spacing:-1.134000px;}
.ws93{word-spacing:-1.008000px;}
.ws21{word-spacing:-0.960000px;}
.wsae{word-spacing:-0.945000px;}
.ws32{word-spacing:-0.882000px;}
.ws1a{word-spacing:-0.756000px;}
.ws9f{word-spacing:-0.630000px;}
.wsad{word-spacing:-0.567000px;}
.ws11{word-spacing:-0.504000px;}
.wse1{word-spacing:-0.378000px;}
.wsc{word-spacing:-0.315000px;}
.ws5f{word-spacing:-0.300000px;}
.ws86{word-spacing:-0.252000px;}
.ws57{word-spacing:-0.189000px;}
.wsa5{word-spacing:-0.126000px;}
.ws74{word-spacing:-0.063000px;}
.ws1f{word-spacing:-0.060000px;}
.wse5{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws35{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws43{word-spacing:0.189000px;}
.ws22{word-spacing:0.240000px;}
.ws54{word-spacing:0.315000px;}
.ws17{word-spacing:0.378000px;}
.ws1c{word-spacing:0.441000px;}
.wsa1{word-spacing:0.504000px;}
.ws66{word-spacing:0.567000px;}
.wsba{word-spacing:0.630000px;}
.ws40{word-spacing:0.693000px;}
.ws1d{word-spacing:0.756000px;}
.wsa6{word-spacing:0.945000px;}
.ws9a{word-spacing:1.008000px;}
.ws13{word-spacing:1.197000px;}
.ws28{word-spacing:1.260000px;}
.ws4c{word-spacing:1.323000px;}
.ws7a{word-spacing:1.386000px;}
.wsc5{word-spacing:1.449000px;}
.wsed{word-spacing:1.500000px;}
.ws31{word-spacing:1.512000px;}
.wsab{word-spacing:1.575000px;}
.wsa2{word-spacing:1.638000px;}
.wsea{word-spacing:1.800000px;}
.wsf2{word-spacing:1.827000px;}
.wsa9{word-spacing:1.953000px;}
.ws30{word-spacing:2.016000px;}
.ws65{word-spacing:2.142000px;}
.ws68{word-spacing:2.205000px;}
.wseb{word-spacing:2.400000px;}
.ws70{word-spacing:2.457000px;}
.ws25{word-spacing:2.520000px;}
.wsb{word-spacing:2.583000px;}
.ws71{word-spacing:2.646000px;}
.ws41{word-spacing:2.709000px;}
.ws42{word-spacing:2.835000px;}
.ws6c{word-spacing:2.961000px;}
.ws8e{word-spacing:3.024000px;}
.ws45{word-spacing:3.213000px;}
.ws6a{word-spacing:3.276000px;}
.ws53{word-spacing:3.339000px;}
.ws8a{word-spacing:3.465000px;}
.wsb5{word-spacing:3.528000px;}
.wsd8{word-spacing:3.591000px;}
.ws98{word-spacing:3.654000px;}
.ws61{word-spacing:3.780000px;}
.wsd6{word-spacing:3.843000px;}
.wscb{word-spacing:3.969000px;}
.ws37{word-spacing:4.032000px;}
.ws8{word-spacing:4.095000px;}
.wsa8{word-spacing:4.158000px;}
.ws18{word-spacing:4.221000px;}
.ws24{word-spacing:4.260000px;}
.wsd5{word-spacing:4.347000px;}
.wsec{word-spacing:4.380000px;}
.ws3e{word-spacing:4.410000px;}
.ws50{word-spacing:4.473000px;}
.ws97{word-spacing:4.536000px;}
.wsca{word-spacing:4.599000px;}
.wsf3{word-spacing:4.725000px;}
.ws64{word-spacing:4.788000px;}
.ws12{word-spacing:4.914000px;}
.wsd1{word-spacing:4.977000px;}
.ws76{word-spacing:5.040000px;}
.ws67{word-spacing:5.166000px;}
.wsac{word-spacing:5.229000px;}
.ws88{word-spacing:5.355000px;}
.ws60{word-spacing:5.544000px;}
.ws77{word-spacing:5.607000px;}
.ws20{word-spacing:5.640000px;}
.wsa{word-spacing:5.670000px;}
.wsaa{word-spacing:5.796000px;}
.ws2d{word-spacing:5.859000px;}
.ws84{word-spacing:5.985000px;}
.ws51{word-spacing:6.111000px;}
.wsee{word-spacing:6.174000px;}
.ws8f{word-spacing:6.237000px;}
.ws6e{word-spacing:6.363000px;}
.wse2{word-spacing:6.426000px;}
.wsb2{word-spacing:6.552000px;}
.ws23{word-spacing:6.660000px;}
.wsb1{word-spacing:6.678000px;}
.wsd4{word-spacing:6.804000px;}
.wsf9{word-spacing:6.867000px;}
.ws26{word-spacing:6.930000px;}
.wsdf{word-spacing:7.056000px;}
.ws3d{word-spacing:7.119000px;}
.ws39{word-spacing:7.182000px;}
.ws3b{word-spacing:7.245000px;}
.wsfe{word-spacing:7.308000px;}
.ws85{word-spacing:7.371000px;}
.ws72{word-spacing:7.497000px;}
.ws89{word-spacing:8.001000px;}
.ws87{word-spacing:8.064000px;}
.ws4f{word-spacing:8.127000px;}
.ws19{word-spacing:8.316000px;}
.ws59{word-spacing:8.442000px;}
.wsb4{word-spacing:8.505000px;}
.ws5a{word-spacing:8.820000px;}
.ws46{word-spacing:8.883000px;}
.ws2c{word-spacing:8.946000px;}
.wsd{word-spacing:9.135000px;}
.wsb3{word-spacing:9.261000px;}
.ws1e{word-spacing:9.420000px;}
.wsb6{word-spacing:9.450000px;}
.ws69{word-spacing:9.576000px;}
.wsda{word-spacing:9.639000px;}
.wsf8{word-spacing:9.702000px;}
.wsbf{word-spacing:9.765000px;}
.ws49{word-spacing:9.828000px;}
.wsc1{word-spacing:10.017000px;}
.wsc4{word-spacing:10.080000px;}
.ws44{word-spacing:10.206000px;}
.ws16{word-spacing:10.332000px;}
.wse7{word-spacing:10.404000px;}
.wsb0{word-spacing:10.458000px;}
.ws92{word-spacing:10.521000px;}
.ws79{word-spacing:10.584000px;}
.ws27{word-spacing:10.647000px;}
.ws7c{word-spacing:10.710000px;}
.ws14{word-spacing:10.773000px;}
.ws6f{word-spacing:10.836000px;}
.ws62{word-spacing:10.899000px;}
.wsfc{word-spacing:11.277000px;}
.ws48{word-spacing:11.655000px;}
.ws96{word-spacing:11.718000px;}
.ws9{word-spacing:11.844000px;}
.ws81{word-spacing:11.970000px;}
.wsdb{word-spacing:12.096000px;}
.wsb7{word-spacing:12.222000px;}
.wsc0{word-spacing:12.411000px;}
.wsfb{word-spacing:12.474000px;}
.wsfd{word-spacing:12.663000px;}
.ws15{word-spacing:12.852000px;}
.ws2f{word-spacing:12.915000px;}
.wsde{word-spacing:13.104000px;}
.ws4d{word-spacing:13.167000px;}
.ws52{word-spacing:13.293000px;}
.ws91{word-spacing:13.419000px;}
.ws9d{word-spacing:13.482000px;}
.ws63{word-spacing:13.860000px;}
.ws7f{word-spacing:13.923000px;}
.ws2e{word-spacing:13.986000px;}
.ws3f{word-spacing:14.112000px;}
.ws6d{word-spacing:14.238000px;}
.ws7d{word-spacing:14.301000px;}
.ws90{word-spacing:14.679000px;}
.wsa3{word-spacing:14.742000px;}
.wsa4{word-spacing:14.931000px;}
.wsfa{word-spacing:14.994000px;}
.wsd7{word-spacing:15.309000px;}
.wsa7{word-spacing:15.435000px;}
.wsc9{word-spacing:15.498000px;}
.ws9e{word-spacing:15.561000px;}
.ws9b{word-spacing:15.624000px;}
.ws10{word-spacing:15.687000px;}
.wse6{word-spacing:15.708000px;}
.ws58{word-spacing:15.750000px;}
.ws9c{word-spacing:15.813000px;}
.wsf1{word-spacing:16.065000px;}
.ws47{word-spacing:16.128000px;}
.ws82{word-spacing:16.254000px;}
.wse3{word-spacing:16.443000px;}
.ws5b{word-spacing:16.695000px;}
.ws99{word-spacing:17.136000px;}
.ws29{word-spacing:17.199000px;}
.ws7e{word-spacing:17.325000px;}
.wsf{word-spacing:17.577000px;}
.ws5d{word-spacing:18.585000px;}
.ws94{word-spacing:18.648000px;}
.ws78{word-spacing:18.774000px;}
.wsb8{word-spacing:18.837000px;}
.wsc6{word-spacing:18.963000px;}
.ws6b{word-spacing:19.089000px;}
.wse{word-spacing:19.341000px;}
.ws80{word-spacing:19.782000px;}
.wsc2{word-spacing:19.845000px;}
.wse0{word-spacing:20.034000px;}
.ws3c{word-spacing:20.097000px;}
.wsd3{word-spacing:20.160000px;}
.ws38{word-spacing:20.286000px;}
.wsd2{word-spacing:20.475000px;}
.ws4b{word-spacing:20.790000px;}
.ws2b{word-spacing:21.483000px;}
.wsdc{word-spacing:21.735000px;}
.wsc7{word-spacing:21.987000px;}
.wsf4{word-spacing:22.365000px;}
.ws83{word-spacing:23.058000px;}
.wsbb{word-spacing:23.121000px;}
.ws3a{word-spacing:23.751000px;}
.wsf6{word-spacing:23.877000px;}
.ws73{word-spacing:24.066000px;}
.ws75{word-spacing:24.192000px;}
.wsf0{word-spacing:24.255000px;}
.ws55{word-spacing:24.444000px;}
.wsf7{word-spacing:24.507000px;}
.wsaf{word-spacing:24.570000px;}
.wsbd{word-spacing:24.696000px;}
.ws5c{word-spacing:24.759000px;}
.wsef{word-spacing:25.074000px;}
.ws1b{word-spacing:25.452000px;}
.wsf5{word-spacing:25.641000px;}
.ws56{word-spacing:27.279000px;}
.wsc3{word-spacing:28.476000px;}
.wsbc{word-spacing:28.728000px;}
.ws4e{word-spacing:29.610000px;}
.ws2a{word-spacing:30.051000px;}
.ws5e{word-spacing:33.453000px;}
.wsb9{word-spacing:39.564000px;}
.wse9{word-spacing:249.206400px;}
.ws6{word-spacing:596.388600px;}
.ws7{word-spacing:663.778800px;}
.ws8b{word-spacing:6274.800000px;}
.ws5{word-spacing:6280.056000px;}
.wse8{word-spacing:6280.200000px;}
.ws33{word-spacing:6280.488000px;}
.wscc{word-spacing:6286.392000px;}
._20{margin-left:-18.615305px;}
._26{margin-left:-16.090195px;}
._15{margin-left:-14.826000px;}
._4{margin-left:-13.271098px;}
._24{margin-left:-11.515229px;}
._22{margin-left:-10.174500px;}
._23{margin-left:-9.015886px;}
._7{margin-left:-7.693795px;}
._25{margin-left:-6.601195px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._5{margin-left:-1.066195px;}
._9{width:1.070707px;}
._8{width:2.097900px;}
._d{width:3.536350px;}
._12{width:4.774253px;}
._a{width:6.426000px;}
._b{width:7.991676px;}
._14{width:9.778186px;}
._1a{width:10.861200px;}
._e{width:13.872600px;}
._f{width:15.075900px;}
._13{width:16.903802px;}
._11{width:18.437410px;}
._10{width:19.467293px;}
._16{width:20.679014px;}
._18{width:21.722366px;}
._17{width:22.781702px;}
._c{width:24.552002px;}
._21{width:25.634098px;}
._1f{width:27.054590px;}
._1e{width:28.080002px;}
._1b{width:31.896022px;}
._19{width:34.891790px;}
._1d{width:37.025393px;}
._1c{width:53.115886px;}
._6{width:679.968302px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.y79{bottom:47.834700px;}
.ycd{bottom:95.839950px;}
.y14d{bottom:95.855700px;}
.y16e{bottom:95.866200px;}
.y1c3{bottom:95.892450px;}
.y128{bottom:95.897700px;}
.y78{bottom:95.944950px;}
.y1a7{bottom:95.950200px;}
.y5b{bottom:95.960700px;}
.y25e{bottom:95.965950px;}
.ya4{bottom:96.018450px;}
.yfb{bottom:96.060450px;}
.ycc{bottom:116.834700px;}
.y14c{bottom:116.850450px;}
.y16d{bottom:116.860950px;}
.y1c2{bottom:116.887200px;}
.y127{bottom:116.892450px;}
.y77{bottom:116.939700px;}
.y1a6{bottom:116.944950px;}
.y5a{bottom:116.955450px;}
.y25d{bottom:116.960700px;}
.ya3{bottom:117.013200px;}
.yfa{bottom:117.055200px;}
.y14b{bottom:137.845200px;}
.y16c{bottom:137.855700px;}
.y1e4{bottom:137.858700px;}
.y1c1{bottom:137.881950px;}
.y126{bottom:137.887200px;}
.y206{bottom:137.896950px;}
.y76{bottom:137.934450px;}
.y227{bottom:137.935200px;}
.y1a5{bottom:137.939700px;}
.y59{bottom:137.950200px;}
.y25c{bottom:137.955450px;}
.ya2{bottom:138.007950px;}
.yf9{bottom:138.049950px;}
.ycb{bottom:158.834700px;}
.y14a{bottom:158.839950px;}
.y16b{bottom:158.850450px;}
.y1e3{bottom:158.857950px;}
.y2f{bottom:158.867700px;}
.y1c0{bottom:158.876700px;}
.y125{bottom:158.881950px;}
.y205{bottom:158.896200px;}
.y75{bottom:158.929200px;}
.y1a4{bottom:158.934450px;}
.y58{bottom:158.944950px;}
.y25b{bottom:158.950200px;}
.ya1{bottom:159.002700px;}
.yf8{bottom:159.044700px;}
.yca{bottom:179.834700px;}
.y1e2{bottom:179.857200px;}
.y2e{bottom:179.866950px;}
.y1bf{bottom:179.871450px;}
.y124{bottom:179.876700px;}
.y204{bottom:179.895450px;}
.y57{bottom:179.939700px;}
.y25a{bottom:179.944950px;}
.ya0{bottom:179.997450px;}
.yf7{bottom:180.039450px;}
.y16a{bottom:200.855700px;}
.y1e1{bottom:200.856450px;}
.y2d{bottom:200.866200px;}
.y123{bottom:200.871450px;}
.y203{bottom:200.894700px;}
.y226{bottom:200.932950px;}
.y56{bottom:200.934450px;}
.y1a3{bottom:200.939700px;}
.y9f{bottom:200.992200px;}
.yf6{bottom:201.034200px;}
.y149{bottom:221.834700px;}
.y169{bottom:221.850450px;}
.y1e0{bottom:221.855700px;}
.y1be{bottom:221.860950px;}
.y2c{bottom:221.865450px;}
.y122{bottom:221.866200px;}
.y55{bottom:221.929200px;}
.y225{bottom:221.932200px;}
.yc9{bottom:221.934450px;}
.y24b{bottom:221.955450px;}
.y9e{bottom:221.986950px;}
.yf5{bottom:222.028950px;}
.y168{bottom:242.845200px;}
.y1bd{bottom:242.855700px;}
.y121{bottom:242.860950px;}
.y202{bottom:242.893200px;}
.y74{bottom:242.923950px;}
.yc8{bottom:242.929200px;}
.y224{bottom:242.931450px;}
.y24a{bottom:242.950200px;}
.y9d{bottom:242.981700px;}
.yf4{bottom:243.023700px;}
.y167{bottom:263.839950px;}
.y1bc{bottom:263.850450px;}
.y1df{bottom:263.854200px;}
.y120{bottom:263.855700px;}
.y2b{bottom:263.863950px;}
.y73{bottom:263.918700px;}
.yc7{bottom:263.923950px;}
.y54{bottom:263.934450px;}
.y249{bottom:263.944950px;}
.y148{bottom:263.955450px;}
.y9c{bottom:263.976450px;}
.yf3{bottom:264.018450px;}
.y166{bottom:284.834700px;}
.y1bb{bottom:284.845200px;}
.y11f{bottom:284.850450px;}
.y1de{bottom:284.853450px;}
.y2a{bottom:284.863200px;}
.y201{bottom:284.891700px;}
.y72{bottom:284.913450px;}
.yc6{bottom:284.918700px;}
.y53{bottom:284.929200px;}
.y223{bottom:284.929950px;}
.y248{bottom:284.939700px;}
.y147{bottom:284.950200px;}
.y9b{bottom:284.971200px;}
.y1ba{bottom:305.839950px;}
.y11e{bottom:305.845200px;}
.y29{bottom:305.862450px;}
.y200{bottom:305.890950px;}
.y71{bottom:305.908200px;}
.yc5{bottom:305.913450px;}
.y52{bottom:305.923950px;}
.y222{bottom:305.929200px;}
.y247{bottom:305.934450px;}
.y146{bottom:305.944950px;}
.y9a{bottom:305.965950px;}
.yf2{bottom:306.023700px;}
.y165{bottom:326.834700px;}
.y11d{bottom:326.839950px;}
.y1dd{bottom:326.851950px;}
.y28{bottom:326.861700px;}
.y70{bottom:326.902950px;}
.yc4{bottom:326.908200px;}
.y51{bottom:326.918700px;}
.y259{bottom:326.923950px;}
.y221{bottom:326.928450px;}
.y246{bottom:326.929200px;}
.y145{bottom:326.939700px;}
.y99{bottom:326.960700px;}
.yf1{bottom:327.018450px;}
.y11c{bottom:347.834700px;}
.y27{bottom:347.860950px;}
.y1ff{bottom:347.889450px;}
.y6f{bottom:347.897700px;}
.yc3{bottom:347.902950px;}
.y50{bottom:347.913450px;}
.y258{bottom:347.918700px;}
.y245{bottom:347.923950px;}
.y220{bottom:347.927700px;}
.y144{bottom:347.934450px;}
.y98{bottom:347.955450px;}
.yf0{bottom:348.013200px;}
.y7{bottom:352.018200px;}
.y1b9{bottom:368.834700px;}
.y1dc{bottom:368.850450px;}
.y1fe{bottom:368.888700px;}
.y6e{bottom:368.892450px;}
.yc2{bottom:368.897700px;}
.y4f{bottom:368.908200px;}
.y257{bottom:368.913450px;}
.y244{bottom:368.918700px;}
.yef{bottom:369.007950px;}
.y9{bottom:381.914100px;}
.y11b{bottom:389.834700px;}
.y1db{bottom:389.849700px;}
.y26{bottom:389.859450px;}
.y6d{bottom:389.887200px;}
.y1fd{bottom:389.887950px;}
.yc1{bottom:389.892450px;}
.y4e{bottom:389.902950px;}
.y256{bottom:389.908200px;}
.y243{bottom:389.913450px;}
.y21f{bottom:389.926200px;}
.y143{bottom:389.939700px;}
.y97{bottom:389.960700px;}
.yee{bottom:390.002700px;}
.y25{bottom:410.858700px;}
.y6c{bottom:410.881950px;}
.yc0{bottom:410.887200px;}
.y4d{bottom:410.897700px;}
.y1a2{bottom:410.902950px;}
.y242{bottom:410.908200px;}
.y21e{bottom:410.925450px;}
.y142{bottom:410.934450px;}
.y96{bottom:410.955450px;}
.yed{bottom:410.997450px;}
.y1da{bottom:431.848200px;}
.y24{bottom:431.857950px;}
.ybf{bottom:431.881950px;}
.y4c{bottom:431.892450px;}
.y1a1{bottom:431.897700px;}
.y241{bottom:431.902950px;}
.y187{bottom:431.908200px;}
.y21d{bottom:431.924700px;}
.y141{bottom:431.929200px;}
.y95{bottom:431.950200px;}
.y1b8{bottom:431.965950px;}
.yec{bottom:431.992200px;}
.y11a{bottom:432.212700px;}
.y6{bottom:445.018200px;}
.y1d9{bottom:452.847450px;}
.y23{bottom:452.857200px;}
.ybe{bottom:452.876700px;}
.y1fc{bottom:452.885700px;}
.y4b{bottom:452.887200px;}
.y1a0{bottom:452.892450px;}
.y240{bottom:452.897700px;}
.y186{bottom:452.902950px;}
.y140{bottom:452.923950px;}
.y94{bottom:452.944950px;}
.y1b7{bottom:452.960700px;}
.yeb{bottom:452.986950px;}
.y119{bottom:453.207450px;}
.y1d8{bottom:473.846700px;}
.y22{bottom:473.856450px;}
.ybd{bottom:473.871450px;}
.y4a{bottom:473.881950px;}
.y1fb{bottom:473.884950px;}
.y19f{bottom:473.887200px;}
.y23f{bottom:473.892450px;}
.y185{bottom:473.897700px;}
.y13f{bottom:473.918700px;}
.y93{bottom:473.939700px;}
.y1b6{bottom:473.955450px;}
.yea{bottom:473.981700px;}
.y164{bottom:473.997450px;}
.y118{bottom:474.202200px;}
.ybc{bottom:494.866200px;}
.y49{bottom:494.876700px;}
.y19e{bottom:494.881950px;}
.y1fa{bottom:494.884200px;}
.y23e{bottom:494.887200px;}
.y184{bottom:494.892450px;}
.y13e{bottom:494.913450px;}
.y21c{bottom:494.922450px;}
.y92{bottom:494.934450px;}
.y1b5{bottom:494.950200px;}
.ye9{bottom:494.976450px;}
.y163{bottom:494.992200px;}
.y117{bottom:495.196950px;}
.y1d7{bottom:515.845200px;}
.y21{bottom:515.854950px;}
.ybb{bottom:515.860950px;}
.y48{bottom:515.871450px;}
.y19d{bottom:515.876700px;}
.y23d{bottom:515.881950px;}
.y1f9{bottom:515.883450px;}
.y183{bottom:515.887200px;}
.y255{bottom:515.892450px;}
.y13d{bottom:515.908200px;}
.y21b{bottom:515.921700px;}
.y91{bottom:515.929200px;}
.y1b4{bottom:515.944950px;}
.ye8{bottom:515.971200px;}
.y162{bottom:515.986950px;}
.y116{bottom:516.191700px;}
.y1d6{bottom:536.844450px;}
.y20{bottom:536.854200px;}
.yba{bottom:536.855700px;}
.y47{bottom:536.866200px;}
.y19c{bottom:536.871450px;}
.y23c{bottom:536.876700px;}
.y182{bottom:536.881950px;}
.y254{bottom:536.887200px;}
.y13c{bottom:536.902950px;}
.y21a{bottom:536.920950px;}
.y90{bottom:536.923950px;}
.y1b3{bottom:536.939700px;}
.ye7{bottom:536.965950px;}
.y161{bottom:536.981700px;}
.y115{bottom:537.186450px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y1d5{bottom:557.843700px;}
.yb9{bottom:557.850450px;}
.y1f{bottom:557.853450px;}
.y46{bottom:557.860950px;}
.y19b{bottom:557.866200px;}
.y23b{bottom:557.871450px;}
.y181{bottom:557.876700px;}
.y1f8{bottom:557.881950px;}
.y13b{bottom:557.897700px;}
.y8f{bottom:557.918700px;}
.y1b2{bottom:557.934450px;}
.ye6{bottom:557.960700px;}
.y160{bottom:557.976450px;}
.y114{bottom:558.181200px;}
.y1d4{bottom:578.842950px;}
.yb8{bottom:578.845200px;}
.y22c{bottom:578.852700px;}
.y45{bottom:578.855700px;}
.y19a{bottom:578.860950px;}
.y23a{bottom:578.866200px;}
.y180{bottom:578.871450px;}
.y253{bottom:578.876700px;}
.y1f7{bottom:578.881200px;}
.y13a{bottom:578.892450px;}
.y8e{bottom:578.913450px;}
.y219{bottom:578.919450px;}
.y1b1{bottom:578.929200px;}
.ye5{bottom:578.955450px;}
.y15f{bottom:578.971200px;}
.y113{bottom:579.175950px;}
.yb7{bottom:599.839950px;}
.y44{bottom:599.850450px;}
.y1e{bottom:599.851950px;}
.y199{bottom:599.855700px;}
.y239{bottom:599.860950px;}
.y17f{bottom:599.866200px;}
.y252{bottom:599.871450px;}
.y1f6{bottom:599.880450px;}
.y139{bottom:599.887200px;}
.y8d{bottom:599.908200px;}
.y218{bottom:599.918700px;}
.y1b0{bottom:599.923950px;}
.ye4{bottom:599.950200px;}
.y15e{bottom:599.965950px;}
.y112{bottom:600.170700px;}
.yb6{bottom:620.834700px;}
.y1d3{bottom:620.841450px;}
.y43{bottom:620.845200px;}
.y198{bottom:620.850450px;}
.y1d{bottom:620.851200px;}
.y238{bottom:620.855700px;}
.y17e{bottom:620.860950px;}
.y251{bottom:620.866200px;}
.y1f5{bottom:620.879700px;}
.y138{bottom:620.881950px;}
.y217{bottom:620.917950px;}
.ye3{bottom:620.944950px;}
.y15d{bottom:620.960700px;}
.y111{bottom:621.165450px;}
.y4{bottom:631.018200px;}
.y42{bottom:641.839950px;}
.y1d2{bottom:641.840700px;}
.y197{bottom:641.845200px;}
.y22b{bottom:641.850450px;}
.y17d{bottom:641.855700px;}
.y250{bottom:641.860950px;}
.y137{bottom:641.876700px;}
.y8c{bottom:641.913450px;}
.y1af{bottom:641.929200px;}
.ye2{bottom:641.939700px;}
.y15c{bottom:641.955450px;}
.y110{bottom:642.160200px;}
.y41{bottom:662.834700px;}
.y196{bottom:662.839950px;}
.y237{bottom:662.845200px;}
.y1c{bottom:662.849700px;}
.y6b{bottom:662.850450px;}
.y24f{bottom:662.855700px;}
.y136{bottom:662.871450px;}
.y1f4{bottom:662.878200px;}
.y8b{bottom:662.908200px;}
.y216{bottom:662.916450px;}
.y1ae{bottom:662.923950px;}
.y15b{bottom:662.950200px;}
.y10f{bottom:663.154950px;}
.yb5{bottom:683.834700px;}
.y1d1{bottom:683.839200px;}
.y236{bottom:683.839950px;}
.y6a{bottom:683.845200px;}
.y1b{bottom:683.848950px;}
.y24e{bottom:683.850450px;}
.y135{bottom:683.866200px;}
.y1f3{bottom:683.877450px;}
.y8a{bottom:683.902950px;}
.y215{bottom:683.915700px;}
.y1ad{bottom:683.918700px;}
.ye1{bottom:683.944950px;}
.y10e{bottom:684.149700px;}
.y40{bottom:704.834700px;}
.y1d0{bottom:704.838450px;}
.y69{bottom:704.839950px;}
.y24d{bottom:704.845200px;}
.y22a{bottom:704.848200px;}
.y134{bottom:704.860950px;}
.y1f2{bottom:704.876700px;}
.y89{bottom:704.897700px;}
.y1ac{bottom:704.913450px;}
.ye0{bottom:704.939700px;}
.y10d{bottom:705.144450px;}
.y3f{bottom:725.834700px;}
.y1cf{bottom:725.837700px;}
.y24c{bottom:725.839950px;}
.y1a{bottom:725.847450px;}
.y133{bottom:725.855700px;}
.y1f1{bottom:725.875950px;}
.y88{bottom:725.892450px;}
.y1ab{bottom:725.908200px;}
.y214{bottom:725.914200px;}
.ydf{bottom:725.934450px;}
.y10c{bottom:726.139200px;}
.y195{bottom:746.834700px;}
.y19{bottom:746.846700px;}
.y132{bottom:746.850450px;}
.y1f0{bottom:746.875200px;}
.y3d{bottom:746.884950px;}
.y87{bottom:746.887200px;}
.y1aa{bottom:746.902950px;}
.y213{bottom:746.913450px;}
.yde{bottom:746.929200px;}
.yb4{bottom:747.091950px;}
.y10b{bottom:747.133950px;}
.y3{bottom:751.738650px;}
.y17c{bottom:767.834700px;}
.y1ce{bottom:767.836200px;}
.y131{bottom:767.845200px;}
.y18{bottom:767.845950px;}
.y86{bottom:767.881950px;}
.y3c{bottom:767.884200px;}
.y1a9{bottom:767.897700px;}
.y212{bottom:767.912700px;}
.ydd{bottom:767.923950px;}
.yb3{bottom:768.086700px;}
.y10a{bottom:768.128700px;}
.y1cd{bottom:788.835450px;}
.y130{bottom:788.839950px;}
.y17{bottom:788.845200px;}
.y1ef{bottom:788.873700px;}
.y3b{bottom:788.883450px;}
.y1a8{bottom:788.892450px;}
.y211{bottom:788.911950px;}
.ydc{bottom:788.918700px;}
.yb2{bottom:789.081450px;}
.y109{bottom:789.123450px;}
.y2{bottom:791.931000px;}
.y68{bottom:809.834700px;}
.y229{bottom:809.844450px;}
.y1ee{bottom:809.872950px;}
.y85{bottom:809.887200px;}
.y210{bottom:809.911200px;}
.ydb{bottom:809.913450px;}
.y17b{bottom:809.923950px;}
.yb1{bottom:810.076200px;}
.y108{bottom:810.118200px;}
.y67{bottom:830.834700px;}
.y16{bottom:830.843700px;}
.y1ed{bottom:830.872200px;}
.y3a{bottom:830.881950px;}
.yda{bottom:830.908200px;}
.y17a{bottom:830.918700px;}
.y15a{bottom:830.923950px;}
.y194{bottom:831.013200px;}
.yb0{bottom:831.070950px;}
.y235{bottom:851.834550px;}
.y66{bottom:851.834700px;}
.y15{bottom:851.842950px;}
.y84{bottom:851.876700px;}
.y39{bottom:851.881200px;}
.yd9{bottom:851.902950px;}
.y20f{bottom:851.909700px;}
.y179{bottom:851.913450px;}
.y159{bottom:851.918700px;}
.y193{bottom:852.007950px;}
.yaf{bottom:852.065700px;}
.y107{bottom:852.123450px;}
.y1{bottom:859.112850px;}
.y234{bottom:872.834550px;}
.y65{bottom:872.834700px;}
.y14{bottom:872.842200px;}
.y1ec{bottom:872.870700px;}
.y83{bottom:872.871450px;}
.y38{bottom:872.880450px;}
.yd8{bottom:872.897700px;}
.y178{bottom:872.908200px;}
.y158{bottom:872.913450px;}
.y192{bottom:873.002700px;}
.yae{bottom:873.060450px;}
.y106{bottom:873.118200px;}
.y233{bottom:893.834550px;}
.y64{bottom:893.834700px;}
.y13{bottom:893.841450px;}
.y82{bottom:893.866200px;}
.y1eb{bottom:893.869950px;}
.y37{bottom:893.879700px;}
.y12f{bottom:893.881950px;}
.yd7{bottom:893.892450px;}
.y177{bottom:893.902950px;}
.y157{bottom:893.908200px;}
.y191{bottom:893.997450px;}
.yad{bottom:894.055200px;}
.y105{bottom:894.112950px;}
.y232{bottom:914.834550px;}
.y63{bottom:914.834700px;}
.y12{bottom:914.840700px;}
.y81{bottom:914.860950px;}
.y1ea{bottom:914.869200px;}
.y12e{bottom:914.876700px;}
.y36{bottom:914.878950px;}
.yd6{bottom:914.887200px;}
.y176{bottom:914.897700px;}
.y156{bottom:914.902950px;}
.y20e{bottom:914.907450px;}
.y1cc{bottom:914.939700px;}
.y190{bottom:914.992200px;}
.yac{bottom:915.049950px;}
.y104{bottom:915.107700px;}
.y231{bottom:935.834550px;}
.y62{bottom:935.834700px;}
.y11{bottom:935.839950px;}
.y80{bottom:935.855700px;}
.y1e9{bottom:935.868450px;}
.y12d{bottom:935.871450px;}
.yd5{bottom:935.881950px;}
.y175{bottom:935.892450px;}
.y155{bottom:935.897700px;}
.y20d{bottom:935.906700px;}
.y1cb{bottom:935.934450px;}
.y18f{bottom:935.986950px;}
.y103{bottom:936.102450px;}
.y230{bottom:956.834550px;}
.y61{bottom:956.834700px;}
.y10{bottom:956.839200px;}
.y7f{bottom:956.850450px;}
.y12c{bottom:956.866200px;}
.yd4{bottom:956.876700px;}
.y35{bottom:956.877450px;}
.y174{bottom:956.887200px;}
.y154{bottom:956.892450px;}
.y20c{bottom:956.905950px;}
.y1ca{bottom:956.929200px;}
.y18e{bottom:956.981700px;}
.yab{bottom:957.055200px;}
.y102{bottom:957.097200px;}
.y22f{bottom:977.834550px;}
.y60{bottom:977.834700px;}
.yf{bottom:977.838450px;}
.y7e{bottom:977.845200px;}
.y12b{bottom:977.860950px;}
.y1e8{bottom:977.866950px;}
.yd3{bottom:977.871450px;}
.y34{bottom:977.876700px;}
.y173{bottom:977.881950px;}
.y153{bottom:977.887200px;}
.y20b{bottom:977.905200px;}
.y1c9{bottom:977.923950px;}
.y18d{bottom:977.976450px;}
.yaa{bottom:978.049950px;}
.y101{bottom:978.091950px;}
.y5f{bottom:998.834700px;}
.y228{bottom:998.837700px;}
.y7d{bottom:998.839950px;}
.y12a{bottom:998.855700px;}
.yd2{bottom:998.866200px;}
.y33{bottom:998.875950px;}
.y172{bottom:998.876700px;}
.y152{bottom:998.881950px;}
.y20a{bottom:998.904450px;}
.y1c8{bottom:998.918700px;}
.y18c{bottom:998.971200px;}
.ya9{bottom:999.044700px;}
.y100{bottom:999.086700px;}
.y5e{bottom:1019.834700px;}
.ye{bottom:1019.836950px;}
.y129{bottom:1019.850450px;}
.yd1{bottom:1019.860950px;}
.y151{bottom:1019.876700px;}
.y1c7{bottom:1019.913450px;}
.y18b{bottom:1019.965950px;}
.ya8{bottom:1020.039450px;}
.yff{bottom:1020.081450px;}
.y22e{bottom:1034.834700px;}
.yd{bottom:1040.836200px;}
.y7c{bottom:1040.845200px;}
.yd0{bottom:1040.855700px;}
.y1e7{bottom:1040.864700px;}
.y150{bottom:1040.871450px;}
.y32{bottom:1040.874450px;}
.y171{bottom:1040.881950px;}
.y209{bottom:1040.902950px;}
.y1c6{bottom:1040.908200px;}
.y18a{bottom:1040.960700px;}
.ya7{bottom:1041.034200px;}
.yfe{bottom:1041.076200px;}
.y5d{bottom:1061.834700px;}
.yc{bottom:1061.835450px;}
.y7b{bottom:1061.839950px;}
.ycf{bottom:1061.850450px;}
.y1e6{bottom:1061.863950px;}
.y14f{bottom:1061.866200px;}
.y31{bottom:1061.873700px;}
.y170{bottom:1061.876700px;}
.y208{bottom:1061.902200px;}
.y1c5{bottom:1061.902950px;}
.y189{bottom:1061.955450px;}
.ya6{bottom:1062.028950px;}
.yfd{bottom:1062.070950px;}
.yb{bottom:1082.834700px;}
.yce{bottom:1082.845200px;}
.y14e{bottom:1082.860950px;}
.y1e5{bottom:1082.863200px;}
.y16f{bottom:1082.871450px;}
.y30{bottom:1082.872950px;}
.y1c4{bottom:1082.897700px;}
.y207{bottom:1082.901450px;}
.y188{bottom:1082.950200px;}
.ya5{bottom:1083.023700px;}
.yfc{bottom:1083.065700px;}
.y5c{bottom:1091.412900px;}
.y22d{bottom:1092.394800px;}
.y3e{bottom:1187.881950px;}
.h9{height:37.740000px;}
.hf{height:43.620000px;}
.hb{height:44.400000px;}
.h10{height:44.793000px;}
.h8{height:46.614000px;}
.hc{height:50.526000px;}
.h7{height:53.280000px;}
.he{height:54.840000px;}
.ha{height:70.080000px;}
.h11{height:70.269000px;}
.hd{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x2{left:223.228350px;}
.x5{left:467.717850px;}
.x6{left:977.952750px;}
.xa{left:991.502400px;}
.x8{left:998.483850px;}
.x9{left:1074.248850px;}
.x7{left:1360.629900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls14{letter-spacing:-2.184000pt;}
.ls1d{letter-spacing:-1.456000pt;}
.lsf{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-1.064000pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.672000pt;}
.ls4{letter-spacing:-0.616000pt;}
.ls1e{letter-spacing:-0.560000pt;}
.ls12{letter-spacing:-0.504000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.392000pt;}
.ls5{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls1b{letter-spacing:-0.168000pt;}
.ls18{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.112000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.280000pt;}
.ls1c{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.504000pt;}
.lsd{letter-spacing:0.616000pt;}
.ls6{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.784000pt;}
.ls15{letter-spacing:0.896000pt;}
.lse{letter-spacing:1.008000pt;}
.ls20{letter-spacing:1.450667pt;}
.lsb{letter-spacing:1.456000pt;}
.ls17{letter-spacing:3.248000pt;}
.ls1f{letter-spacing:3.584000pt;}
.ls19{letter-spacing:3.808000pt;}
.ls22{letter-spacing:9.072000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.wsd0{word-spacing:-13.010667pt;}
.wsce{word-spacing:-12.426667pt;}
.wscf{word-spacing:-11.560000pt;}
.ws34{word-spacing:-10.864000pt;}
.wscd{word-spacing:-10.360000pt;}
.ws8c{word-spacing:-9.632000pt;}
.wsdd{word-spacing:-9.072000pt;}
.wsa0{word-spacing:-3.808000pt;}
.wsc8{word-spacing:-3.584000pt;}
.ws7b{word-spacing:-3.248000pt;}
.ws95{word-spacing:-1.792000pt;}
.wse4{word-spacing:-1.541333pt;}
.ws36{word-spacing:-1.456000pt;}
.wsbe{word-spacing:-1.288000pt;}
.ws8d{word-spacing:-1.120000pt;}
.wsd9{word-spacing:-1.064000pt;}
.ws4a{word-spacing:-1.008000pt;}
.ws93{word-spacing:-0.896000pt;}
.ws21{word-spacing:-0.853333pt;}
.wsae{word-spacing:-0.840000pt;}
.ws32{word-spacing:-0.784000pt;}
.ws1a{word-spacing:-0.672000pt;}
.ws9f{word-spacing:-0.560000pt;}
.wsad{word-spacing:-0.504000pt;}
.ws11{word-spacing:-0.448000pt;}
.wse1{word-spacing:-0.336000pt;}
.wsc{word-spacing:-0.280000pt;}
.ws5f{word-spacing:-0.266667pt;}
.ws86{word-spacing:-0.224000pt;}
.ws57{word-spacing:-0.168000pt;}
.wsa5{word-spacing:-0.112000pt;}
.ws74{word-spacing:-0.056000pt;}
.ws1f{word-spacing:-0.053333pt;}
.wse5{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws35{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws43{word-spacing:0.168000pt;}
.ws22{word-spacing:0.213333pt;}
.ws54{word-spacing:0.280000pt;}
.ws17{word-spacing:0.336000pt;}
.ws1c{word-spacing:0.392000pt;}
.wsa1{word-spacing:0.448000pt;}
.ws66{word-spacing:0.504000pt;}
.wsba{word-spacing:0.560000pt;}
.ws40{word-spacing:0.616000pt;}
.ws1d{word-spacing:0.672000pt;}
.wsa6{word-spacing:0.840000pt;}
.ws9a{word-spacing:0.896000pt;}
.ws13{word-spacing:1.064000pt;}
.ws28{word-spacing:1.120000pt;}
.ws4c{word-spacing:1.176000pt;}
.ws7a{word-spacing:1.232000pt;}
.wsc5{word-spacing:1.288000pt;}
.wsed{word-spacing:1.333333pt;}
.ws31{word-spacing:1.344000pt;}
.wsab{word-spacing:1.400000pt;}
.wsa2{word-spacing:1.456000pt;}
.wsea{word-spacing:1.600000pt;}
.wsf2{word-spacing:1.624000pt;}
.wsa9{word-spacing:1.736000pt;}
.ws30{word-spacing:1.792000pt;}
.ws65{word-spacing:1.904000pt;}
.ws68{word-spacing:1.960000pt;}
.wseb{word-spacing:2.133333pt;}
.ws70{word-spacing:2.184000pt;}
.ws25{word-spacing:2.240000pt;}
.wsb{word-spacing:2.296000pt;}
.ws71{word-spacing:2.352000pt;}
.ws41{word-spacing:2.408000pt;}
.ws42{word-spacing:2.520000pt;}
.ws6c{word-spacing:2.632000pt;}
.ws8e{word-spacing:2.688000pt;}
.ws45{word-spacing:2.856000pt;}
.ws6a{word-spacing:2.912000pt;}
.ws53{word-spacing:2.968000pt;}
.ws8a{word-spacing:3.080000pt;}
.wsb5{word-spacing:3.136000pt;}
.wsd8{word-spacing:3.192000pt;}
.ws98{word-spacing:3.248000pt;}
.ws61{word-spacing:3.360000pt;}
.wsd6{word-spacing:3.416000pt;}
.wscb{word-spacing:3.528000pt;}
.ws37{word-spacing:3.584000pt;}
.ws8{word-spacing:3.640000pt;}
.wsa8{word-spacing:3.696000pt;}
.ws18{word-spacing:3.752000pt;}
.ws24{word-spacing:3.786667pt;}
.wsd5{word-spacing:3.864000pt;}
.wsec{word-spacing:3.893333pt;}
.ws3e{word-spacing:3.920000pt;}
.ws50{word-spacing:3.976000pt;}
.ws97{word-spacing:4.032000pt;}
.wsca{word-spacing:4.088000pt;}
.wsf3{word-spacing:4.200000pt;}
.ws64{word-spacing:4.256000pt;}
.ws12{word-spacing:4.368000pt;}
.wsd1{word-spacing:4.424000pt;}
.ws76{word-spacing:4.480000pt;}
.ws67{word-spacing:4.592000pt;}
.wsac{word-spacing:4.648000pt;}
.ws88{word-spacing:4.760000pt;}
.ws60{word-spacing:4.928000pt;}
.ws77{word-spacing:4.984000pt;}
.ws20{word-spacing:5.013333pt;}
.wsa{word-spacing:5.040000pt;}
.wsaa{word-spacing:5.152000pt;}
.ws2d{word-spacing:5.208000pt;}
.ws84{word-spacing:5.320000pt;}
.ws51{word-spacing:5.432000pt;}
.wsee{word-spacing:5.488000pt;}
.ws8f{word-spacing:5.544000pt;}
.ws6e{word-spacing:5.656000pt;}
.wse2{word-spacing:5.712000pt;}
.wsb2{word-spacing:5.824000pt;}
.ws23{word-spacing:5.920000pt;}
.wsb1{word-spacing:5.936000pt;}
.wsd4{word-spacing:6.048000pt;}
.wsf9{word-spacing:6.104000pt;}
.ws26{word-spacing:6.160000pt;}
.wsdf{word-spacing:6.272000pt;}
.ws3d{word-spacing:6.328000pt;}
.ws39{word-spacing:6.384000pt;}
.ws3b{word-spacing:6.440000pt;}
.wsfe{word-spacing:6.496000pt;}
.ws85{word-spacing:6.552000pt;}
.ws72{word-spacing:6.664000pt;}
.ws89{word-spacing:7.112000pt;}
.ws87{word-spacing:7.168000pt;}
.ws4f{word-spacing:7.224000pt;}
.ws19{word-spacing:7.392000pt;}
.ws59{word-spacing:7.504000pt;}
.wsb4{word-spacing:7.560000pt;}
.ws5a{word-spacing:7.840000pt;}
.ws46{word-spacing:7.896000pt;}
.ws2c{word-spacing:7.952000pt;}
.wsd{word-spacing:8.120000pt;}
.wsb3{word-spacing:8.232000pt;}
.ws1e{word-spacing:8.373333pt;}
.wsb6{word-spacing:8.400000pt;}
.ws69{word-spacing:8.512000pt;}
.wsda{word-spacing:8.568000pt;}
.wsf8{word-spacing:8.624000pt;}
.wsbf{word-spacing:8.680000pt;}
.ws49{word-spacing:8.736000pt;}
.wsc1{word-spacing:8.904000pt;}
.wsc4{word-spacing:8.960000pt;}
.ws44{word-spacing:9.072000pt;}
.ws16{word-spacing:9.184000pt;}
.wse7{word-spacing:9.248000pt;}
.wsb0{word-spacing:9.296000pt;}
.ws92{word-spacing:9.352000pt;}
.ws79{word-spacing:9.408000pt;}
.ws27{word-spacing:9.464000pt;}
.ws7c{word-spacing:9.520000pt;}
.ws14{word-spacing:9.576000pt;}
.ws6f{word-spacing:9.632000pt;}
.ws62{word-spacing:9.688000pt;}
.wsfc{word-spacing:10.024000pt;}
.ws48{word-spacing:10.360000pt;}
.ws96{word-spacing:10.416000pt;}
.ws9{word-spacing:10.528000pt;}
.ws81{word-spacing:10.640000pt;}
.wsdb{word-spacing:10.752000pt;}
.wsb7{word-spacing:10.864000pt;}
.wsc0{word-spacing:11.032000pt;}
.wsfb{word-spacing:11.088000pt;}
.wsfd{word-spacing:11.256000pt;}
.ws15{word-spacing:11.424000pt;}
.ws2f{word-spacing:11.480000pt;}
.wsde{word-spacing:11.648000pt;}
.ws4d{word-spacing:11.704000pt;}
.ws52{word-spacing:11.816000pt;}
.ws91{word-spacing:11.928000pt;}
.ws9d{word-spacing:11.984000pt;}
.ws63{word-spacing:12.320000pt;}
.ws7f{word-spacing:12.376000pt;}
.ws2e{word-spacing:12.432000pt;}
.ws3f{word-spacing:12.544000pt;}
.ws6d{word-spacing:12.656000pt;}
.ws7d{word-spacing:12.712000pt;}
.ws90{word-spacing:13.048000pt;}
.wsa3{word-spacing:13.104000pt;}
.wsa4{word-spacing:13.272000pt;}
.wsfa{word-spacing:13.328000pt;}
.wsd7{word-spacing:13.608000pt;}
.wsa7{word-spacing:13.720000pt;}
.wsc9{word-spacing:13.776000pt;}
.ws9e{word-spacing:13.832000pt;}
.ws9b{word-spacing:13.888000pt;}
.ws10{word-spacing:13.944000pt;}
.wse6{word-spacing:13.962667pt;}
.ws58{word-spacing:14.000000pt;}
.ws9c{word-spacing:14.056000pt;}
.wsf1{word-spacing:14.280000pt;}
.ws47{word-spacing:14.336000pt;}
.ws82{word-spacing:14.448000pt;}
.wse3{word-spacing:14.616000pt;}
.ws5b{word-spacing:14.840000pt;}
.ws99{word-spacing:15.232000pt;}
.ws29{word-spacing:15.288000pt;}
.ws7e{word-spacing:15.400000pt;}
.wsf{word-spacing:15.624000pt;}
.ws5d{word-spacing:16.520000pt;}
.ws94{word-spacing:16.576000pt;}
.ws78{word-spacing:16.688000pt;}
.wsb8{word-spacing:16.744000pt;}
.wsc6{word-spacing:16.856000pt;}
.ws6b{word-spacing:16.968000pt;}
.wse{word-spacing:17.192000pt;}
.ws80{word-spacing:17.584000pt;}
.wsc2{word-spacing:17.640000pt;}
.wse0{word-spacing:17.808000pt;}
.ws3c{word-spacing:17.864000pt;}
.wsd3{word-spacing:17.920000pt;}
.ws38{word-spacing:18.032000pt;}
.wsd2{word-spacing:18.200000pt;}
.ws4b{word-spacing:18.480000pt;}
.ws2b{word-spacing:19.096000pt;}
.wsdc{word-spacing:19.320000pt;}
.wsc7{word-spacing:19.544000pt;}
.wsf4{word-spacing:19.880000pt;}
.ws83{word-spacing:20.496000pt;}
.wsbb{word-spacing:20.552000pt;}
.ws3a{word-spacing:21.112000pt;}
.wsf6{word-spacing:21.224000pt;}
.ws73{word-spacing:21.392000pt;}
.ws75{word-spacing:21.504000pt;}
.wsf0{word-spacing:21.560000pt;}
.ws55{word-spacing:21.728000pt;}
.wsf7{word-spacing:21.784000pt;}
.wsaf{word-spacing:21.840000pt;}
.wsbd{word-spacing:21.952000pt;}
.ws5c{word-spacing:22.008000pt;}
.wsef{word-spacing:22.288000pt;}
.ws1b{word-spacing:22.624000pt;}
.wsf5{word-spacing:22.792000pt;}
.ws56{word-spacing:24.248000pt;}
.wsc3{word-spacing:25.312000pt;}
.wsbc{word-spacing:25.536000pt;}
.ws4e{word-spacing:26.320000pt;}
.ws2a{word-spacing:26.712000pt;}
.ws5e{word-spacing:29.736000pt;}
.wsb9{word-spacing:35.168000pt;}
.wse9{word-spacing:221.516800pt;}
.ws6{word-spacing:530.123200pt;}
.ws7{word-spacing:590.025600pt;}
.ws8b{word-spacing:5577.600000pt;}
.ws5{word-spacing:5582.272000pt;}
.wse8{word-spacing:5582.400000pt;}
.ws33{word-spacing:5582.656000pt;}
.wscc{word-spacing:5587.904000pt;}
._20{margin-left:-16.546938pt;}
._26{margin-left:-14.302396pt;}
._15{margin-left:-13.178667pt;}
._4{margin-left:-11.796531pt;}
._24{margin-left:-10.235759pt;}
._22{margin-left:-9.044000pt;}
._23{margin-left:-8.014121pt;}
._7{margin-left:-6.838929pt;}
._25{margin-left:-5.867729pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._5{margin-left:-0.947729pt;}
._9{width:0.951740pt;}
._8{width:1.864800pt;}
._d{width:3.143422pt;}
._12{width:4.243780pt;}
._a{width:5.712000pt;}
._b{width:7.103712pt;}
._14{width:8.691721pt;}
._1a{width:9.654400pt;}
._e{width:12.331200pt;}
._f{width:13.400800pt;}
._13{width:15.025602pt;}
._11{width:16.388809pt;}
._10{width:17.304260pt;}
._16{width:18.381346pt;}
._18{width:19.308770pt;}
._17{width:20.250402pt;}
._c{width:21.824002pt;}
._21{width:22.785865pt;}
._1f{width:24.048525pt;}
._1e{width:24.960002pt;}
._1b{width:28.352019pt;}
._19{width:31.014925pt;}
._1d{width:32.911460pt;}
._1c{width:47.214121pt;}
._6{width:604.416269pt;}
.fs5{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.y79{bottom:42.519733pt;}
.ycd{bottom:85.191067pt;}
.y14d{bottom:85.205067pt;}
.y16e{bottom:85.214400pt;}
.y1c3{bottom:85.237733pt;}
.y128{bottom:85.242400pt;}
.y78{bottom:85.284400pt;}
.y1a7{bottom:85.289067pt;}
.y5b{bottom:85.298400pt;}
.y25e{bottom:85.303067pt;}
.ya4{bottom:85.349733pt;}
.yfb{bottom:85.387067pt;}
.ycc{bottom:103.853067pt;}
.y14c{bottom:103.867067pt;}
.y16d{bottom:103.876400pt;}
.y1c2{bottom:103.899733pt;}
.y127{bottom:103.904400pt;}
.y77{bottom:103.946400pt;}
.y1a6{bottom:103.951067pt;}
.y5a{bottom:103.960400pt;}
.y25d{bottom:103.965067pt;}
.ya3{bottom:104.011733pt;}
.yfa{bottom:104.049067pt;}
.y14b{bottom:122.529067pt;}
.y16c{bottom:122.538400pt;}
.y1e4{bottom:122.541067pt;}
.y1c1{bottom:122.561733pt;}
.y126{bottom:122.566400pt;}
.y206{bottom:122.575067pt;}
.y76{bottom:122.608400pt;}
.y227{bottom:122.609067pt;}
.y1a5{bottom:122.613067pt;}
.y59{bottom:122.622400pt;}
.y25c{bottom:122.627067pt;}
.ya2{bottom:122.673733pt;}
.yf9{bottom:122.711067pt;}
.ycb{bottom:141.186400pt;}
.y14a{bottom:141.191067pt;}
.y16b{bottom:141.200400pt;}
.y1e3{bottom:141.207067pt;}
.y2f{bottom:141.215733pt;}
.y1c0{bottom:141.223733pt;}
.y125{bottom:141.228400pt;}
.y205{bottom:141.241067pt;}
.y75{bottom:141.270400pt;}
.y1a4{bottom:141.275067pt;}
.y58{bottom:141.284400pt;}
.y25b{bottom:141.289067pt;}
.ya1{bottom:141.335733pt;}
.yf8{bottom:141.373067pt;}
.yca{bottom:159.853067pt;}
.y1e2{bottom:159.873067pt;}
.y2e{bottom:159.881733pt;}
.y1bf{bottom:159.885733pt;}
.y124{bottom:159.890400pt;}
.y204{bottom:159.907067pt;}
.y57{bottom:159.946400pt;}
.y25a{bottom:159.951067pt;}
.ya0{bottom:159.997733pt;}
.yf7{bottom:160.035067pt;}
.y16a{bottom:178.538400pt;}
.y1e1{bottom:178.539067pt;}
.y2d{bottom:178.547733pt;}
.y123{bottom:178.552400pt;}
.y203{bottom:178.573067pt;}
.y226{bottom:178.607067pt;}
.y56{bottom:178.608400pt;}
.y1a3{bottom:178.613067pt;}
.y9f{bottom:178.659733pt;}
.yf6{bottom:178.697067pt;}
.y149{bottom:197.186400pt;}
.y169{bottom:197.200400pt;}
.y1e0{bottom:197.205067pt;}
.y1be{bottom:197.209733pt;}
.y2c{bottom:197.213733pt;}
.y122{bottom:197.214400pt;}
.y55{bottom:197.270400pt;}
.y225{bottom:197.273067pt;}
.yc9{bottom:197.275067pt;}
.y24b{bottom:197.293733pt;}
.y9e{bottom:197.321733pt;}
.yf5{bottom:197.359067pt;}
.y168{bottom:215.862400pt;}
.y1bd{bottom:215.871733pt;}
.y121{bottom:215.876400pt;}
.y202{bottom:215.905067pt;}
.y74{bottom:215.932400pt;}
.yc8{bottom:215.937067pt;}
.y224{bottom:215.939067pt;}
.y24a{bottom:215.955733pt;}
.y9d{bottom:215.983733pt;}
.yf4{bottom:216.021067pt;}
.y167{bottom:234.524400pt;}
.y1bc{bottom:234.533733pt;}
.y1df{bottom:234.537067pt;}
.y120{bottom:234.538400pt;}
.y2b{bottom:234.545733pt;}
.y73{bottom:234.594400pt;}
.yc7{bottom:234.599067pt;}
.y54{bottom:234.608400pt;}
.y249{bottom:234.617733pt;}
.y148{bottom:234.627067pt;}
.y9c{bottom:234.645733pt;}
.yf3{bottom:234.683067pt;}
.y166{bottom:253.186400pt;}
.y1bb{bottom:253.195733pt;}
.y11f{bottom:253.200400pt;}
.y1de{bottom:253.203067pt;}
.y2a{bottom:253.211733pt;}
.y201{bottom:253.237067pt;}
.y72{bottom:253.256400pt;}
.yc6{bottom:253.261067pt;}
.y53{bottom:253.270400pt;}
.y223{bottom:253.271067pt;}
.y248{bottom:253.279733pt;}
.y147{bottom:253.289067pt;}
.y9b{bottom:253.307733pt;}
.y1ba{bottom:271.857733pt;}
.y11e{bottom:271.862400pt;}
.y29{bottom:271.877733pt;}
.y200{bottom:271.903067pt;}
.y71{bottom:271.918400pt;}
.yc5{bottom:271.923067pt;}
.y52{bottom:271.932400pt;}
.y222{bottom:271.937067pt;}
.y247{bottom:271.941733pt;}
.y146{bottom:271.951067pt;}
.y9a{bottom:271.969733pt;}
.yf2{bottom:272.021067pt;}
.y165{bottom:290.519733pt;}
.y11d{bottom:290.524400pt;}
.y1dd{bottom:290.535067pt;}
.y28{bottom:290.543733pt;}
.y70{bottom:290.580400pt;}
.yc4{bottom:290.585067pt;}
.y51{bottom:290.594400pt;}
.y259{bottom:290.599067pt;}
.y221{bottom:290.603067pt;}
.y246{bottom:290.603733pt;}
.y145{bottom:290.613067pt;}
.y99{bottom:290.631733pt;}
.yf1{bottom:290.683067pt;}
.y11c{bottom:309.186400pt;}
.y27{bottom:309.209733pt;}
.y1ff{bottom:309.235067pt;}
.y6f{bottom:309.242400pt;}
.yc3{bottom:309.247067pt;}
.y50{bottom:309.256400pt;}
.y258{bottom:309.261067pt;}
.y245{bottom:309.265733pt;}
.y220{bottom:309.269067pt;}
.y144{bottom:309.275067pt;}
.y98{bottom:309.293733pt;}
.yf0{bottom:309.345067pt;}
.y7{bottom:312.905067pt;}
.y1b9{bottom:327.853067pt;}
.y1dc{bottom:327.867067pt;}
.y1fe{bottom:327.901067pt;}
.y6e{bottom:327.904400pt;}
.yc2{bottom:327.909067pt;}
.y4f{bottom:327.918400pt;}
.y257{bottom:327.923067pt;}
.y244{bottom:327.927733pt;}
.yef{bottom:328.007067pt;}
.y9{bottom:339.479200pt;}
.y11b{bottom:346.519733pt;}
.y1db{bottom:346.533067pt;}
.y26{bottom:346.541733pt;}
.y6d{bottom:346.566400pt;}
.y1fd{bottom:346.567067pt;}
.yc1{bottom:346.571067pt;}
.y4e{bottom:346.580400pt;}
.y256{bottom:346.585067pt;}
.y243{bottom:346.589733pt;}
.y21f{bottom:346.601067pt;}
.y143{bottom:346.613067pt;}
.y97{bottom:346.631733pt;}
.yee{bottom:346.669067pt;}
.y25{bottom:365.207733pt;}
.y6c{bottom:365.228400pt;}
.yc0{bottom:365.233067pt;}
.y4d{bottom:365.242400pt;}
.y1a2{bottom:365.247067pt;}
.y242{bottom:365.251733pt;}
.y21e{bottom:365.267067pt;}
.y142{bottom:365.275067pt;}
.y96{bottom:365.293733pt;}
.yed{bottom:365.331067pt;}
.y1da{bottom:383.865067pt;}
.y24{bottom:383.873733pt;}
.ybf{bottom:383.895067pt;}
.y4c{bottom:383.904400pt;}
.y1a1{bottom:383.909067pt;}
.y241{bottom:383.913733pt;}
.y187{bottom:383.918400pt;}
.y21d{bottom:383.933067pt;}
.y141{bottom:383.937067pt;}
.y95{bottom:383.955733pt;}
.y1b8{bottom:383.969733pt;}
.yec{bottom:383.993067pt;}
.y11a{bottom:384.189067pt;}
.y6{bottom:395.571733pt;}
.y1d9{bottom:402.531067pt;}
.y23{bottom:402.539733pt;}
.ybe{bottom:402.557067pt;}
.y1fc{bottom:402.565067pt;}
.y4b{bottom:402.566400pt;}
.y1a0{bottom:402.571067pt;}
.y240{bottom:402.575733pt;}
.y186{bottom:402.580400pt;}
.y140{bottom:402.599067pt;}
.y94{bottom:402.617733pt;}
.y1b7{bottom:402.631733pt;}
.yeb{bottom:402.655067pt;}
.y119{bottom:402.851067pt;}
.y1d8{bottom:421.197067pt;}
.y22{bottom:421.205733pt;}
.ybd{bottom:421.219067pt;}
.y4a{bottom:421.228400pt;}
.y1fb{bottom:421.231067pt;}
.y19f{bottom:421.233067pt;}
.y23f{bottom:421.237733pt;}
.y185{bottom:421.242400pt;}
.y13f{bottom:421.261067pt;}
.y93{bottom:421.279733pt;}
.y1b6{bottom:421.293733pt;}
.yea{bottom:421.317067pt;}
.y164{bottom:421.331067pt;}
.y118{bottom:421.513067pt;}
.ybc{bottom:439.881067pt;}
.y49{bottom:439.890400pt;}
.y19e{bottom:439.895067pt;}
.y1fa{bottom:439.897067pt;}
.y23e{bottom:439.899733pt;}
.y184{bottom:439.904400pt;}
.y13e{bottom:439.923067pt;}
.y21c{bottom:439.931067pt;}
.y92{bottom:439.941733pt;}
.y1b5{bottom:439.955733pt;}
.ye9{bottom:439.979067pt;}
.y163{bottom:439.993067pt;}
.y117{bottom:440.175067pt;}
.y1d7{bottom:458.529067pt;}
.y21{bottom:458.537733pt;}
.ybb{bottom:458.543067pt;}
.y48{bottom:458.552400pt;}
.y19d{bottom:458.557067pt;}
.y23d{bottom:458.561733pt;}
.y1f9{bottom:458.563067pt;}
.y183{bottom:458.566400pt;}
.y255{bottom:458.571067pt;}
.y13d{bottom:458.585067pt;}
.y21b{bottom:458.597067pt;}
.y91{bottom:458.603733pt;}
.y1b4{bottom:458.617733pt;}
.ye8{bottom:458.641067pt;}
.y162{bottom:458.655067pt;}
.y116{bottom:458.837067pt;}
.y1d6{bottom:477.195067pt;}
.y20{bottom:477.203733pt;}
.yba{bottom:477.205067pt;}
.y47{bottom:477.214400pt;}
.y19c{bottom:477.219067pt;}
.y23c{bottom:477.223733pt;}
.y182{bottom:477.228400pt;}
.y254{bottom:477.233067pt;}
.y13c{bottom:477.247067pt;}
.y21a{bottom:477.263067pt;}
.y90{bottom:477.265733pt;}
.y1b3{bottom:477.279733pt;}
.ye7{bottom:477.303067pt;}
.y161{bottom:477.317067pt;}
.y115{bottom:477.499067pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y1d5{bottom:495.861067pt;}
.yb9{bottom:495.867067pt;}
.y1f{bottom:495.869733pt;}
.y46{bottom:495.876400pt;}
.y19b{bottom:495.881067pt;}
.y23b{bottom:495.885733pt;}
.y181{bottom:495.890400pt;}
.y1f8{bottom:495.895067pt;}
.y13b{bottom:495.909067pt;}
.y8f{bottom:495.927733pt;}
.y1b2{bottom:495.941733pt;}
.ye6{bottom:495.965067pt;}
.y160{bottom:495.979067pt;}
.y114{bottom:496.161067pt;}
.y1d4{bottom:514.527067pt;}
.yb8{bottom:514.529067pt;}
.y22c{bottom:514.535733pt;}
.y45{bottom:514.538400pt;}
.y19a{bottom:514.543067pt;}
.y23a{bottom:514.547733pt;}
.y180{bottom:514.552400pt;}
.y253{bottom:514.557067pt;}
.y1f7{bottom:514.561067pt;}
.y13a{bottom:514.571067pt;}
.y8e{bottom:514.589733pt;}
.y219{bottom:514.595067pt;}
.y1b1{bottom:514.603733pt;}
.ye5{bottom:514.627067pt;}
.y15f{bottom:514.641067pt;}
.y113{bottom:514.823067pt;}
.yb7{bottom:533.191067pt;}
.y44{bottom:533.200400pt;}
.y1e{bottom:533.201733pt;}
.y199{bottom:533.205067pt;}
.y239{bottom:533.209733pt;}
.y17f{bottom:533.214400pt;}
.y252{bottom:533.219067pt;}
.y1f6{bottom:533.227067pt;}
.y139{bottom:533.233067pt;}
.y8d{bottom:533.251733pt;}
.y218{bottom:533.261067pt;}
.y1b0{bottom:533.265733pt;}
.ye4{bottom:533.289067pt;}
.y15e{bottom:533.303067pt;}
.y112{bottom:533.485067pt;}
.yb6{bottom:551.853067pt;}
.y1d3{bottom:551.859067pt;}
.y43{bottom:551.862400pt;}
.y198{bottom:551.867067pt;}
.y1d{bottom:551.867733pt;}
.y238{bottom:551.871733pt;}
.y17e{bottom:551.876400pt;}
.y251{bottom:551.881067pt;}
.y1f5{bottom:551.893067pt;}
.y138{bottom:551.895067pt;}
.y217{bottom:551.927067pt;}
.ye3{bottom:551.951067pt;}
.y15d{bottom:551.965067pt;}
.y111{bottom:552.147067pt;}
.y4{bottom:560.905067pt;}
.y42{bottom:570.524400pt;}
.y1d2{bottom:570.525067pt;}
.y197{bottom:570.529067pt;}
.y22b{bottom:570.533733pt;}
.y17d{bottom:570.538400pt;}
.y250{bottom:570.543067pt;}
.y137{bottom:570.557067pt;}
.y8c{bottom:570.589733pt;}
.y1af{bottom:570.603733pt;}
.ye2{bottom:570.613067pt;}
.y15c{bottom:570.627067pt;}
.y110{bottom:570.809067pt;}
.y41{bottom:589.186400pt;}
.y196{bottom:589.191067pt;}
.y237{bottom:589.195733pt;}
.y1c{bottom:589.199733pt;}
.y6b{bottom:589.200400pt;}
.y24f{bottom:589.205067pt;}
.y136{bottom:589.219067pt;}
.y1f4{bottom:589.225067pt;}
.y8b{bottom:589.251733pt;}
.y216{bottom:589.259067pt;}
.y1ae{bottom:589.265733pt;}
.y15b{bottom:589.289067pt;}
.y10f{bottom:589.471067pt;}
.yb5{bottom:607.853067pt;}
.y1d1{bottom:607.857067pt;}
.y236{bottom:607.857733pt;}
.y6a{bottom:607.862400pt;}
.y1b{bottom:607.865733pt;}
.y24e{bottom:607.867067pt;}
.y135{bottom:607.881067pt;}
.y1f3{bottom:607.891067pt;}
.y8a{bottom:607.913733pt;}
.y215{bottom:607.925067pt;}
.y1ad{bottom:607.927733pt;}
.ye1{bottom:607.951067pt;}
.y10e{bottom:608.133067pt;}
.y40{bottom:626.519733pt;}
.y1d0{bottom:626.523067pt;}
.y69{bottom:626.524400pt;}
.y24d{bottom:626.529067pt;}
.y22a{bottom:626.531733pt;}
.y134{bottom:626.543067pt;}
.y1f2{bottom:626.557067pt;}
.y89{bottom:626.575733pt;}
.y1ac{bottom:626.589733pt;}
.ye0{bottom:626.613067pt;}
.y10d{bottom:626.795067pt;}
.y3f{bottom:645.186400pt;}
.y1cf{bottom:645.189067pt;}
.y24c{bottom:645.191067pt;}
.y1a{bottom:645.197733pt;}
.y133{bottom:645.205067pt;}
.y1f1{bottom:645.223067pt;}
.y88{bottom:645.237733pt;}
.y1ab{bottom:645.251733pt;}
.y214{bottom:645.257067pt;}
.ydf{bottom:645.275067pt;}
.y10c{bottom:645.457067pt;}
.y195{bottom:663.853067pt;}
.y19{bottom:663.863733pt;}
.y132{bottom:663.867067pt;}
.y1f0{bottom:663.889067pt;}
.y3d{bottom:663.897733pt;}
.y87{bottom:663.899733pt;}
.y1aa{bottom:663.913733pt;}
.y213{bottom:663.923067pt;}
.yde{bottom:663.937067pt;}
.yb4{bottom:664.081733pt;}
.y10b{bottom:664.119067pt;}
.y3{bottom:668.212133pt;}
.y17c{bottom:682.519733pt;}
.y1ce{bottom:682.521067pt;}
.y131{bottom:682.529067pt;}
.y18{bottom:682.529733pt;}
.y86{bottom:682.561733pt;}
.y3c{bottom:682.563733pt;}
.y1a9{bottom:682.575733pt;}
.y212{bottom:682.589067pt;}
.ydd{bottom:682.599067pt;}
.yb3{bottom:682.743733pt;}
.y10a{bottom:682.781067pt;}
.y1cd{bottom:701.187067pt;}
.y130{bottom:701.191067pt;}
.y17{bottom:701.195733pt;}
.y1ef{bottom:701.221067pt;}
.y3b{bottom:701.229733pt;}
.y1a8{bottom:701.237733pt;}
.y211{bottom:701.255067pt;}
.ydc{bottom:701.261067pt;}
.yb2{bottom:701.405733pt;}
.y109{bottom:701.443067pt;}
.y2{bottom:703.938667pt;}
.y68{bottom:719.853067pt;}
.y229{bottom:719.861733pt;}
.y1ee{bottom:719.887067pt;}
.y85{bottom:719.899733pt;}
.y210{bottom:719.921067pt;}
.ydb{bottom:719.923067pt;}
.y17b{bottom:719.932400pt;}
.yb1{bottom:720.067733pt;}
.y108{bottom:720.105067pt;}
.y67{bottom:738.519733pt;}
.y16{bottom:738.527733pt;}
.y1ed{bottom:738.553067pt;}
.y3a{bottom:738.561733pt;}
.yda{bottom:738.585067pt;}
.y17a{bottom:738.594400pt;}
.y15a{bottom:738.599067pt;}
.y194{bottom:738.678400pt;}
.yb0{bottom:738.729733pt;}
.y235{bottom:757.186267pt;}
.y66{bottom:757.186400pt;}
.y15{bottom:757.193733pt;}
.y84{bottom:757.223733pt;}
.y39{bottom:757.227733pt;}
.yd9{bottom:757.247067pt;}
.y20f{bottom:757.253067pt;}
.y179{bottom:757.256400pt;}
.y159{bottom:757.261067pt;}
.y193{bottom:757.340400pt;}
.yaf{bottom:757.391733pt;}
.y107{bottom:757.443067pt;}
.y1{bottom:763.655867pt;}
.y234{bottom:775.852933pt;}
.y65{bottom:775.853067pt;}
.y14{bottom:775.859733pt;}
.y1ec{bottom:775.885067pt;}
.y83{bottom:775.885733pt;}
.y38{bottom:775.893733pt;}
.yd8{bottom:775.909067pt;}
.y178{bottom:775.918400pt;}
.y158{bottom:775.923067pt;}
.y192{bottom:776.002400pt;}
.yae{bottom:776.053733pt;}
.y106{bottom:776.105067pt;}
.y233{bottom:794.519600pt;}
.y64{bottom:794.519733pt;}
.y13{bottom:794.525733pt;}
.y82{bottom:794.547733pt;}
.y1eb{bottom:794.551067pt;}
.y37{bottom:794.559733pt;}
.y12f{bottom:794.561733pt;}
.yd7{bottom:794.571067pt;}
.y177{bottom:794.580400pt;}
.y157{bottom:794.585067pt;}
.y191{bottom:794.664400pt;}
.yad{bottom:794.715733pt;}
.y105{bottom:794.767067pt;}
.y232{bottom:813.186267pt;}
.y63{bottom:813.186400pt;}
.y12{bottom:813.191733pt;}
.y81{bottom:813.209733pt;}
.y1ea{bottom:813.217067pt;}
.y12e{bottom:813.223733pt;}
.y36{bottom:813.225733pt;}
.yd6{bottom:813.233067pt;}
.y176{bottom:813.242400pt;}
.y156{bottom:813.247067pt;}
.y20e{bottom:813.251067pt;}
.y1cc{bottom:813.279733pt;}
.y190{bottom:813.326400pt;}
.yac{bottom:813.377733pt;}
.y104{bottom:813.429067pt;}
.y231{bottom:831.852933pt;}
.y62{bottom:831.853067pt;}
.y11{bottom:831.857733pt;}
.y80{bottom:831.871733pt;}
.y1e9{bottom:831.883067pt;}
.y12d{bottom:831.885733pt;}
.yd5{bottom:831.895067pt;}
.y175{bottom:831.904400pt;}
.y155{bottom:831.909067pt;}
.y20d{bottom:831.917067pt;}
.y1cb{bottom:831.941733pt;}
.y18f{bottom:831.988400pt;}
.y103{bottom:832.091067pt;}
.y230{bottom:850.519600pt;}
.y61{bottom:850.519733pt;}
.y10{bottom:850.523733pt;}
.y7f{bottom:850.533733pt;}
.y12c{bottom:850.547733pt;}
.yd4{bottom:850.557067pt;}
.y35{bottom:850.557733pt;}
.y174{bottom:850.566400pt;}
.y154{bottom:850.571067pt;}
.y20c{bottom:850.583067pt;}
.y1ca{bottom:850.603733pt;}
.y18e{bottom:850.650400pt;}
.yab{bottom:850.715733pt;}
.y102{bottom:850.753067pt;}
.y22f{bottom:869.186267pt;}
.y60{bottom:869.186400pt;}
.yf{bottom:869.189733pt;}
.y7e{bottom:869.195733pt;}
.y12b{bottom:869.209733pt;}
.y1e8{bottom:869.215067pt;}
.yd3{bottom:869.219067pt;}
.y34{bottom:869.223733pt;}
.y173{bottom:869.228400pt;}
.y153{bottom:869.233067pt;}
.y20b{bottom:869.249067pt;}
.y1c9{bottom:869.265733pt;}
.y18d{bottom:869.312400pt;}
.yaa{bottom:869.377733pt;}
.y101{bottom:869.415067pt;}
.y5f{bottom:887.853067pt;}
.y228{bottom:887.855733pt;}
.y7d{bottom:887.857733pt;}
.y12a{bottom:887.871733pt;}
.yd2{bottom:887.881067pt;}
.y33{bottom:887.889733pt;}
.y172{bottom:887.890400pt;}
.y152{bottom:887.895067pt;}
.y20a{bottom:887.915067pt;}
.y1c8{bottom:887.927733pt;}
.y18c{bottom:887.974400pt;}
.ya9{bottom:888.039733pt;}
.y100{bottom:888.077067pt;}
.y5e{bottom:906.519733pt;}
.ye{bottom:906.521733pt;}
.y129{bottom:906.533733pt;}
.yd1{bottom:906.543067pt;}
.y151{bottom:906.557067pt;}
.y1c7{bottom:906.589733pt;}
.y18b{bottom:906.636400pt;}
.ya8{bottom:906.701733pt;}
.yff{bottom:906.739067pt;}
.y22e{bottom:919.853067pt;}
.yd{bottom:925.187733pt;}
.y7c{bottom:925.195733pt;}
.yd0{bottom:925.205067pt;}
.y1e7{bottom:925.213067pt;}
.y150{bottom:925.219067pt;}
.y32{bottom:925.221733pt;}
.y171{bottom:925.228400pt;}
.y209{bottom:925.247067pt;}
.y1c6{bottom:925.251733pt;}
.y18a{bottom:925.298400pt;}
.ya7{bottom:925.363733pt;}
.yfe{bottom:925.401067pt;}
.y5d{bottom:943.853067pt;}
.yc{bottom:943.853733pt;}
.y7b{bottom:943.857733pt;}
.ycf{bottom:943.867067pt;}
.y1e6{bottom:943.879067pt;}
.y14f{bottom:943.881067pt;}
.y31{bottom:943.887733pt;}
.y170{bottom:943.890400pt;}
.y208{bottom:943.913067pt;}
.y1c5{bottom:943.913733pt;}
.y189{bottom:943.960400pt;}
.ya6{bottom:944.025733pt;}
.yfd{bottom:944.063067pt;}
.yb{bottom:962.519733pt;}
.yce{bottom:962.529067pt;}
.y14e{bottom:962.543067pt;}
.y1e5{bottom:962.545067pt;}
.y16f{bottom:962.552400pt;}
.y30{bottom:962.553733pt;}
.y1c4{bottom:962.575733pt;}
.y207{bottom:962.579067pt;}
.y188{bottom:962.622400pt;}
.ya5{bottom:962.687733pt;}
.yfc{bottom:962.725067pt;}
.y5c{bottom:970.144800pt;}
.y22d{bottom:971.017600pt;}
.y3e{bottom:1055.895067pt;}
.h9{height:33.546667pt;}
.hf{height:38.773333pt;}
.hb{height:39.466667pt;}
.h10{height:39.816000pt;}
.h8{height:41.434667pt;}
.hc{height:44.912000pt;}
.h7{height:47.360000pt;}
.he{height:48.746667pt;}
.ha{height:62.293333pt;}
.h11{height:62.461333pt;}
.hd{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x2{left:198.425200pt;}
.x5{left:415.749200pt;}
.x6{left:869.291333pt;}
.xa{left:881.335467pt;}
.x8{left:887.541200pt;}
.x9{left:954.887867pt;}
.x7{left:1209.448800pt;}
}




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