
    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_c2108b84770e4be0a4707117.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_ae91a1557f4b78aa8d6f473f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_3a605b1c812d30c2e435149e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_e80c8ca2d2f43b5ca8c7f84d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_450d00328e005a879958f6bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913000;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_04aa4782f3f2045862693f9b.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_55fd52d26c6383dd2fdbe684.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_e87ce06eb2e862f70b59a0b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_246d0077e7e9f03096db4db3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.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:ffa;src:url('chunks/assets/font_087482efadf07bc1a9172691.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.737000;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;}
.m13{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.234997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234997,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.237501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237501,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239796,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247449,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m6{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;}
.v2{vertical-align:15.250800px;}
.v1{vertical-align:18.969000px;}
.ls1a{letter-spacing:-1.778400px;}
.ls8{letter-spacing:-1.026000px;}
.ls17{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.450000px;}
.ls1{letter-spacing:-0.249900px;}
.ls2{letter-spacing:-0.234000px;}
.ls19{letter-spacing:-0.228000px;}
.ls4{letter-spacing:-0.222000px;}
.ls7{letter-spacing:-0.166155px;}
.ls10{letter-spacing:-0.133200px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.022737px;}
.ls18{letter-spacing:0.052470px;}
.ls13{letter-spacing:0.225000px;}
.ls3{letter-spacing:0.444000px;}
.ls12{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.125000px;}
.lsb{letter-spacing:1.341429px;}
.ls11{letter-spacing:1.485000px;}
.lsc{letter-spacing:1.953600px;}
.lsf{letter-spacing:2.379840px;}
.lse{letter-spacing:2.619600px;}
.ls9{letter-spacing:3.640800px;}
.lsa{letter-spacing:5.705700px;}
.lsd{letter-spacing:31.281649px;}
.ls6{letter-spacing:31.282268px;}
.ls5{letter-spacing:1533.911400px;}
.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;}
}
.ws84{word-spacing:-19.536000px;}
.ws60{word-spacing:-16.872000px;}
.ws92{word-spacing:-15.846000px;}
.ws0{word-spacing:-11.054400px;}
.wsf0{word-spacing:-10.485000px;}
.wsf5{word-spacing:-10.125000px;}
.wsf2{word-spacing:-9.900000px;}
.ws23{word-spacing:-9.324000px;}
.wsf4{word-spacing:-9.225000px;}
.ws1{word-spacing:-9.126000px;}
.wsee{word-spacing:-9.000000px;}
.ws136{word-spacing:-8.892000px;}
.wsad{word-spacing:-8.880000px;}
.wsdc{word-spacing:-8.746800px;}
.ws49{word-spacing:-8.658000px;}
.wsef{word-spacing:-8.550000px;}
.ws48{word-spacing:-6.646200px;}
.wsac{word-spacing:-6.480045px;}
.wsf1{word-spacing:-5.299470px;}
.ws7a{word-spacing:-3.363000px;}
.ws8d{word-spacing:-3.306000px;}
.ws7c{word-spacing:-3.249000px;}
.wsdd{word-spacing:-3.192000px;}
.ws71{word-spacing:-3.135000px;}
.wsc6{word-spacing:-3.078000px;}
.ws6a{word-spacing:-3.021000px;}
.ws11e{word-spacing:-3.015000px;}
.ws86{word-spacing:-2.907000px;}
.wsb4{word-spacing:-2.850000px;}
.ws94{word-spacing:-2.793000px;}
.ws66{word-spacing:-2.679000px;}
.wsae{word-spacing:-2.622000px;}
.ws11f{word-spacing:-2.610000px;}
.ws32{word-spacing:-2.565000px;}
.wsc5{word-spacing:-2.508000px;}
.wsed{word-spacing:-2.451000px;}
.wsd1{word-spacing:-2.394000px;}
.ws3a{word-spacing:-2.337000px;}
.ws4e{word-spacing:-2.280000px;}
.ws21{word-spacing:-2.223000px;}
.ws5a{word-spacing:-2.166000px;}
.ws5d{word-spacing:-2.109000px;}
.ws95{word-spacing:-2.052000px;}
.ws69{word-spacing:-1.995000px;}
.wsa5{word-spacing:-1.938000px;}
.ws78{word-spacing:-1.881000px;}
.ws96{word-spacing:-1.824000px;}
.ws83{word-spacing:-1.820400px;}
.ws11b{word-spacing:-1.800000px;}
.ws4f{word-spacing:-1.767000px;}
.ws133{word-spacing:-1.755000px;}
.wsd0{word-spacing:-1.710000px;}
.ws12c{word-spacing:-1.665000px;}
.wsc7{word-spacing:-1.653000px;}
.ws7{word-spacing:-1.649340px;}
.ws65{word-spacing:-1.596000px;}
.ws118{word-spacing:-1.575000px;}
.wsd7{word-spacing:-1.554000px;}
.ws43{word-spacing:-1.539000px;}
.ws116{word-spacing:-1.530000px;}
.ws31{word-spacing:-1.482000px;}
.ws8c{word-spacing:-1.425000px;}
.ws5e{word-spacing:-1.376400px;}
.ws1f{word-spacing:-1.368000px;}
.wsbc{word-spacing:-1.311000px;}
.ws127{word-spacing:-1.305000px;}
.ws109{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.254000px;}
.wsdb{word-spacing:-1.243200px;}
.ws6f{word-spacing:-1.197000px;}
.ws59{word-spacing:-1.140000px;}
.ws10e{word-spacing:-1.125000px;}
.ws18{word-spacing:-1.099560px;}
.ws149{word-spacing:-1.094400px;}
.wsa1{word-spacing:-1.083000px;}
.wsc9{word-spacing:-1.026000px;}
.wsc8{word-spacing:-0.969000px;}
.wsd{word-spacing:-0.949620px;}
.ws7b{word-spacing:-0.912000px;}
.ws106{word-spacing:-0.900000px;}
.ws8a{word-spacing:-0.855000px;}
.ws107{word-spacing:-0.810000px;}
.wsa0{word-spacing:-0.798000px;}
.ws27{word-spacing:-0.741000px;}
.ws34{word-spacing:-0.684000px;}
.ws148{word-spacing:-0.638400px;}
.ws87{word-spacing:-0.627000px;}
.wsd6{word-spacing:-0.621600px;}
.wsfa{word-spacing:-0.585000px;}
.ws74{word-spacing:-0.570000px;}
.ws15{word-spacing:-0.549780px;}
.ws121{word-spacing:-0.540000px;}
.ws63{word-spacing:-0.513000px;}
.wsa4{word-spacing:-0.456000px;}
.ws47{word-spacing:-0.444000px;}
.ws67{word-spacing:-0.399000px;}
.wsa7{word-spacing:-0.342000px;}
.ws4b{word-spacing:-0.285000px;}
.wse{word-spacing:-0.249900px;}
.ws38{word-spacing:-0.228000px;}
.ws2b{word-spacing:-0.171000px;}
.wsb5{word-spacing:-0.114000px;}
.ws1c{word-spacing:-0.099960px;}
.wsf3{word-spacing:-0.045000px;}
.ws2{word-spacing:0.000000px;}
.ws26{word-spacing:0.057000px;}
.wsc2{word-spacing:0.114000px;}
.ws6e{word-spacing:0.166155px;}
.wsd9{word-spacing:0.171000px;}
.ws45{word-spacing:0.222000px;}
.wsce{word-spacing:0.228000px;}
.ws9d{word-spacing:0.285000px;}
.wsb0{word-spacing:0.342000px;}
.ws46{word-spacing:0.355200px;}
.ws7d{word-spacing:0.399000px;}
.wsa{word-spacing:0.399840px;}
.ws104{word-spacing:0.450000px;}
.ws62{word-spacing:0.456000px;}
.ws6c{word-spacing:0.513000px;}
.ws146{word-spacing:0.540000px;}
.wsbd{word-spacing:0.570000px;}
.ws143{word-spacing:0.585000px;}
.ws5f{word-spacing:0.621600px;}
.ws4d{word-spacing:0.627000px;}
.ws117{word-spacing:0.630000px;}
.wse2{word-spacing:0.684000px;}
.ws42{word-spacing:0.741000px;}
.ws82{word-spacing:0.754800px;}
.ws105{word-spacing:0.765000px;}
.ws8b{word-spacing:0.798000px;}
.ws90{word-spacing:0.855000px;}
.ws119{word-spacing:0.900000px;}
.ws3f{word-spacing:0.912000px;}
.wsf6{word-spacing:0.945000px;}
.ws1d{word-spacing:0.949620px;}
.ws36{word-spacing:0.969000px;}
.ws7f{word-spacing:1.026000px;}
.ws114{word-spacing:1.035000px;}
.ws14c{word-spacing:1.048800px;}
.ws147{word-spacing:1.080000px;}
.ws20{word-spacing:1.083000px;}
.ws10f{word-spacing:1.125000px;}
.wsca{word-spacing:1.140000px;}
.ws13a{word-spacing:1.170000px;}
.wsb8{word-spacing:1.197000px;}
.wscf{word-spacing:1.254000px;}
.ws11c{word-spacing:1.260000px;}
.ws1e{word-spacing:1.299480px;}
.wsa3{word-spacing:1.311000px;}
.wse8{word-spacing:1.368000px;}
.ws93{word-spacing:1.425000px;}
.wsd4{word-spacing:1.465200px;}
.ws9e{word-spacing:1.482000px;}
.ws79{word-spacing:1.539000px;}
.wsa6{word-spacing:1.596000px;}
.ws75{word-spacing:1.653000px;}
.ws12a{word-spacing:1.665000px;}
.ws68{word-spacing:1.710000px;}
.ws14b{word-spacing:1.732800px;}
.ws33{word-spacing:1.767000px;}
.wsbb{word-spacing:1.776000px;}
.ws3b{word-spacing:1.824000px;}
.ws110{word-spacing:1.845000px;}
.ws39{word-spacing:1.881000px;}
.ws64{word-spacing:1.938000px;}
.ws19{word-spacing:1.949220px;}
.wsc4{word-spacing:1.953600px;}
.wsc3{word-spacing:1.995000px;}
.ws3d{word-spacing:2.052000px;}
.ws4a{word-spacing:2.109000px;}
.wsf8{word-spacing:2.115000px;}
.ws3{word-spacing:2.149140px;}
.ws50{word-spacing:2.166000px;}
.wsfc{word-spacing:2.205000px;}
.wsd3{word-spacing:2.223000px;}
.ws29{word-spacing:2.280000px;}
.ws12b{word-spacing:2.295000px;}
.wsb{word-spacing:2.299080px;}
.wsb9{word-spacing:2.337000px;}
.wsa8{word-spacing:2.394000px;}
.ws125{word-spacing:2.430000px;}
.ws24{word-spacing:2.451000px;}
.ws4c{word-spacing:2.508000px;}
.ws76{word-spacing:2.565000px;}
.wse0{word-spacing:2.619600px;}
.wsd8{word-spacing:2.622000px;}
.ws28{word-spacing:2.679000px;}
.wse7{word-spacing:2.736000px;}
.wsab{word-spacing:2.793000px;}
.wsda{word-spacing:2.841600px;}
.ws5b{word-spacing:2.850000px;}
.ws6d{word-spacing:2.907000px;}
.ws22{word-spacing:2.964000px;}
.ws12f{word-spacing:2.970000px;}
.ws6{word-spacing:2.998800px;}
.ws111{word-spacing:3.015000px;}
.ws25{word-spacing:3.021000px;}
.ws35{word-spacing:3.078000px;}
.ws135{word-spacing:3.105000px;}
.wsc0{word-spacing:3.135000px;}
.ws14a{word-spacing:3.237600px;}
.ws128{word-spacing:3.240000px;}
.ws53{word-spacing:3.249000px;}
.ws81{word-spacing:3.285600px;}
.ws51{word-spacing:3.306000px;}
.wsfd{word-spacing:3.330000px;}
.wsb1{word-spacing:3.363000px;}
.ws138{word-spacing:3.375000px;}
.wsea{word-spacing:3.420000px;}
.wsaf{word-spacing:3.477000px;}
.ws2c{word-spacing:3.534000px;}
.ws13b{word-spacing:3.555000px;}
.ws55{word-spacing:3.591000px;}
.wsde{word-spacing:3.648000px;}
.wsb2{word-spacing:3.685200px;}
.ws132{word-spacing:3.690000px;}
.ws88{word-spacing:3.705000px;}
.ws98{word-spacing:3.762000px;}
.ws44{word-spacing:3.819000px;}
.ws140{word-spacing:3.825000px;}
.ws122{word-spacing:3.870000px;}
.wse5{word-spacing:3.876000px;}
.ws80{word-spacing:3.990000px;}
.ws16{word-spacing:3.998400px;}
.ws134{word-spacing:4.005000px;}
.wsb7{word-spacing:4.047000px;}
.ws100{word-spacing:4.095000px;}
.ws7e{word-spacing:4.104000px;}
.ws102{word-spacing:4.140000px;}
.wsd2{word-spacing:4.161000px;}
.wsbe{word-spacing:4.218000px;}
.ws131{word-spacing:4.230000px;}
.ws70{word-spacing:4.275000px;}
.wsa9{word-spacing:4.332000px;}
.ws11a{word-spacing:4.365000px;}
.ws91{word-spacing:4.389000px;}
.ws73{word-spacing:4.446000px;}
.wsd5{word-spacing:4.484400px;}
.ws113{word-spacing:4.590000px;}
.ws8e{word-spacing:4.617000px;}
.ws8f{word-spacing:4.674000px;}
.wsc{word-spacing:4.698120px;}
.ws103{word-spacing:4.725000px;}
.ws6b{word-spacing:4.731000px;}
.ws9b{word-spacing:4.788000px;}
.ws85{word-spacing:4.902000px;}
.ws9a{word-spacing:5.016000px;}
.wsf7{word-spacing:5.040000px;}
.ws14d{word-spacing:5.061600px;}
.ws58{word-spacing:5.073000px;}
.ws54{word-spacing:5.244000px;}
.wsf9{word-spacing:5.310000px;}
.ws77{word-spacing:5.358000px;}
.ws30{word-spacing:5.415000px;}
.wscd{word-spacing:5.472000px;}
.ws5c{word-spacing:5.529000px;}
.wsa2{word-spacing:5.586000px;}
.ws145{word-spacing:5.625000px;}
.ws2f{word-spacing:5.643000px;}
.ws8{word-spacing:5.697720px;}
.ws2a{word-spacing:5.700000px;}
.wse3{word-spacing:5.814000px;}
.ws4{word-spacing:5.847660px;}
.ws144{word-spacing:5.895000px;}
.ws56{word-spacing:6.042000px;}
.ws41{word-spacing:6.099000px;}
.wsc1{word-spacing:6.156000px;}
.wseb{word-spacing:6.213000px;}
.ws89{word-spacing:6.270000px;}
.ws10a{word-spacing:6.300000px;}
.wsdf{word-spacing:6.384000px;}
.ws137{word-spacing:6.660000px;}
.wsec{word-spacing:6.669000px;}
.ws120{word-spacing:6.705000px;}
.wse4{word-spacing:6.726000px;}
.ws2e{word-spacing:6.897000px;}
.wscc{word-spacing:7.068000px;}
.ws37{word-spacing:7.125000px;}
.wsfb{word-spacing:7.200000px;}
.ws13e{word-spacing:7.290000px;}
.wsba{word-spacing:7.296000px;}
.ws1b{word-spacing:7.347060px;}
.ws57{word-spacing:7.353000px;}
.wscb{word-spacing:7.410000px;}
.ws123{word-spacing:7.470000px;}
.wsf{word-spacing:7.546980px;}
.ws52{word-spacing:7.752000px;}
.ws1a{word-spacing:7.796880px;}
.wsb6{word-spacing:7.809000px;}
.wsaa{word-spacing:7.866000px;}
.ws72{word-spacing:7.980000px;}
.wse9{word-spacing:8.094000px;}
.ws13{word-spacing:8.146740px;}
.wsff{word-spacing:8.190000px;}
.ws3c{word-spacing:8.208000px;}
.ws61{word-spacing:8.265000px;}
.ws11{word-spacing:8.396640px;}
.ws112{word-spacing:8.550000px;}
.ws13d{word-spacing:8.640000px;}
.ws99{word-spacing:8.721000px;}
.ws139{word-spacing:8.730000px;}
.ws2d{word-spacing:8.892000px;}
.ws11d{word-spacing:8.955000px;}
.ws97{word-spacing:9.006000px;}
.ws5{word-spacing:9.196320px;}
.ws9f{word-spacing:9.234000px;}
.ws10d{word-spacing:9.360000px;}
.ws3e{word-spacing:9.462000px;}
.ws9c{word-spacing:9.519000px;}
.ws124{word-spacing:9.945000px;}
.wsbf{word-spacing:9.975000px;}
.ws12e{word-spacing:10.215000px;}
.ws10{word-spacing:10.245900px;}
.ws10b{word-spacing:10.395000px;}
.ws130{word-spacing:10.755000px;}
.wse1{word-spacing:10.789200px;}
.wse6{word-spacing:11.233200px;}
.ws115{word-spacing:11.295000px;}
.ws9{word-spacing:11.345460px;}
.wsb3{word-spacing:11.632800px;}
.ws108{word-spacing:12.465000px;}
.ws13c{word-spacing:12.555000px;}
.ws14{word-spacing:12.594960px;}
.ws17{word-spacing:12.994800px;}
.ws12{word-spacing:13.494600px;}
.ws142{word-spacing:14.220000px;}
.ws101{word-spacing:14.490000px;}
.ws13f{word-spacing:15.435000px;}
.ws12d{word-spacing:15.570000px;}
.wsfe{word-spacing:16.515000px;}
.ws126{word-spacing:17.685000px;}
.ws129{word-spacing:18.495000px;}
.ws141{word-spacing:26.685000px;}
.ws10c{word-spacing:29.070000px;}
._16{margin-left:-35.736342px;}
._12{margin-left:-25.802040px;}
._5{margin-left:-22.793760px;}
._6{margin-left:-18.473760px;}
._13{margin-left:-15.287822px;}
._18{margin-left:-13.831200px;}
._f{margin-left:-9.138960px;}
._8{margin-left:-7.353000px;}
._c{margin-left:-6.246300px;}
._7{margin-left:-4.766562px;}
._4{margin-left:-3.294258px;}
._a{margin-left:-2.261040px;}
._3{margin-left:-1.030740px;}
._1{width:1.440000px;}
._2{width:3.075600px;}
._9{width:4.686000px;}
._b{width:6.609480px;}
._15{width:7.818480px;}
._11{width:9.006000px;}
._14{width:12.083878px;}
._e{width:16.291440px;}
._17{width:49.552054px;}
._d{width:51.739200px;}
._10{width:55.035278px;}
._0{width:2050.809000px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.235000px;}
.fs9{font-size:33.231000px;}
.fsa{font-size:44.400000px;}
.fsc{font-size:45.000000px;}
.fse{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fs8{font-size:47.040000px;}
.fsb{font-size:48.000000px;}
.fs5{font-size:49.980000px;}
.fs4{font-size:55.272000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:76.440000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:58.827450px;}
.y19b{bottom:110.553750px;}
.y9a{bottom:112.677300px;}
.y4f{bottom:112.679700px;}
.y99{bottom:112.680750px;}
.yf4{bottom:112.680900px;}
.y75{bottom:112.682100px;}
.yed{bottom:112.682400px;}
.y116{bottom:112.686150px;}
.y1ed{bottom:113.380500px;}
.y19a{bottom:124.051350px;}
.y199{bottom:124.054800px;}
.y4e{bottom:126.177300px;}
.y74{bottom:126.179700px;}
.yb9{bottom:126.180750px;}
.y217{bottom:127.626150px;}
.y1ec{bottom:127.634250px;}
.yf3{bottom:132.930150px;}
.yec{bottom:132.931650px;}
.y115{bottom:132.935400px;}
.yfb{bottom:133.937250px;}
.y157{bottom:133.939650px;}
.y18a{bottom:133.940700px;}
.y98{bottom:133.940850px;}
.y73{bottom:139.677300px;}
.y216{bottom:141.879900px;}
.y1eb{bottom:141.888000px;}
.y198{bottom:145.311300px;}
.y197{bottom:145.313700px;}
.yb8{bottom:147.437250px;}
.y4d{bottom:147.439650px;}
.y16f{bottom:147.440700px;}
.y166{bottom:147.440850px;}
.y156{bottom:147.442050px;}
.yd2{bottom:153.178650px;}
.yf2{bottom:153.179400px;}
.yeb{bottom:153.180900px;}
.y114{bottom:153.184650px;}
.y189{bottom:155.197200px;}
.y97{bottom:155.197350px;}
.y188{bottom:155.199600px;}
.y150{bottom:155.200800px;}
.y215{bottom:156.133650px;}
.y1ea{bottom:156.141750px;}
.y196{bottom:158.811300px;}
.y4c{bottom:160.937250px;}
.yb7{bottom:160.939650px;}
.y16e{bottom:168.697200px;}
.y165{bottom:168.697350px;}
.y13a{bottom:173.427150px;}
.yd1{bottom:173.427900px;}
.y24{bottom:173.428650px;}
.yea{bottom:173.430150px;}
.y138{bottom:173.431650px;}
.y127{bottom:173.432400px;}
.y113{bottom:173.433900px;}
.y1b8{bottom:173.448900px;}
.yb6{bottom:174.437250px;}
.yb5{bottom:174.440850px;}
.y1e9{bottom:174.624450px;}
.y214{bottom:174.639900px;}
.y96{bottom:176.457300px;}
.y139{bottom:178.172400px;}
.y72{bottom:182.197350px;}
.y1e8{bottom:188.878200px;}
.y211{bottom:188.881950px;}
.y213{bottom:188.893650px;}
.y212{bottom:192.639900px;}
.yf9{bottom:193.677150px;}
.y23{bottom:193.677900px;}
.y146{bottom:193.678650px;}
.ye9{bottom:193.679400px;}
.yd0{bottom:193.680150px;}
.y137{bottom:193.680900px;}
.y126{bottom:193.681650px;}
.y112{bottom:193.683150px;}
.y1b7{bottom:193.698150px;}
.yb4{bottom:195.697350px;}
.y95{bottom:197.717250px;}
.yfa{bottom:198.422400px;}
.y1e7{bottom:203.131950px;}
.y210{bottom:203.135700px;}
.y71{bottom:203.457300px;}
.y22{bottom:213.927150px;}
.y21{bottom:213.927900px;}
.ye8{bottom:213.928650px;}
.ycf{bottom:213.929400px;}
.y136{bottom:213.930150px;}
.y125{bottom:213.930900px;}
.y111{bottom:213.932400px;}
.y4b{bottom:213.936900px;}
.y187{bottom:213.939900px;}
.y1b6{bottom:213.947400px;}
.y70{bottom:216.957300px;}
.y1e6{bottom:217.385700px;}
.y20f{bottom:221.641950px;}
.y20{bottom:234.177150px;}
.ye7{bottom:234.177900px;}
.yce{bottom:234.178650px;}
.y135{bottom:234.179400px;}
.y124{bottom:234.180150px;}
.y110{bottom:234.181650px;}
.y14f{bottom:234.184650px;}
.y4a{bottom:234.186150px;}
.yb3{bottom:234.187650px;}
.y186{bottom:234.189150px;}
.y1b5{bottom:234.196650px;}
.y1e5{bottom:235.891950px;}
.y1e4{bottom:250.079250px;}
.y20e{bottom:250.145700px;}
.yf1{bottom:250.674990px;}
.y23e{bottom:252.791550px;}
.ye6{bottom:254.427150px;}
.ycd{bottom:254.427900px;}
.y94{bottom:254.428650px;}
.y123{bottom:254.429400px;}
.y16c{bottom:254.430150px;}
.y10f{bottom:254.430900px;}
.y145{bottom:254.431650px;}
.y14e{bottom:254.433900px;}
.y49{bottom:254.435400px;}
.yb2{bottom:254.436900px;}
.y185{bottom:254.438400px;}
.y1b4{bottom:254.445900px;}
.y16d{bottom:259.172400px;}
.y1e3{bottom:264.333000px;}
.y23d{bottom:268.386750px;}
.y20d{bottom:268.632600px;}
.y1f{bottom:274.677150px;}
.y6f{bottom:274.677900px;}
.y122{bottom:274.678650px;}
.y154{bottom:274.679400px;}
.y10e{bottom:274.680150px;}
.y144{bottom:274.680900px;}
.ye5{bottom:274.681650px;}
.y14d{bottom:274.683150px;}
.y48{bottom:274.684650px;}
.yb1{bottom:274.686150px;}
.y184{bottom:274.687650px;}
.y1b3{bottom:274.695150px;}
.y1e2{bottom:278.586750px;}
.y155{bottom:279.422400px;}
.y20c{bottom:282.886350px;}
.y23c{bottom:283.981950px;}
.y6e{bottom:294.927150px;}
.y121{bottom:294.927900px;}
.y153{bottom:294.928650px;}
.y10d{bottom:294.929400px;}
.y143{bottom:294.930150px;}
.y92{bottom:294.930900px;}
.y134{bottom:294.932400px;}
.y47{bottom:294.933900px;}
.yb0{bottom:294.935400px;}
.y183{bottom:294.936900px;}
.ycc{bottom:294.939900px;}
.y1b2{bottom:294.944400px;}
.y1e1{bottom:297.093000px;}
.y20b{bottom:297.140100px;}
.y23b{bottom:299.577150px;}
.y23a{bottom:299.581950px;}
.y93{bottom:299.672400px;}
.y1e0{bottom:311.346750px;}
.y20a{bottom:311.393850px;}
.y120{bottom:315.177150px;}
.y152{bottom:315.177900px;}
.y10c{bottom:315.178650px;}
.y142{bottom:315.179400px;}
.y91{bottom:315.180150px;}
.y133{bottom:315.181650px;}
.y46{bottom:315.183150px;}
.yaf{bottom:315.184650px;}
.y182{bottom:315.186150px;}
.ycb{bottom:315.189150px;}
.y1b1{bottom:315.193650px;}
.y1df{bottom:325.600500px;}
.y209{bottom:325.647600px;}
.y6d{bottom:335.427150px;}
.y10b{bottom:335.427900px;}
.y141{bottom:335.428650px;}
.y90{bottom:335.429400px;}
.y132{bottom:335.430900px;}
.y45{bottom:335.432400px;}
.yae{bottom:335.433900px;}
.y181{bottom:335.435400px;}
.y6c{bottom:335.436150px;}
.yca{bottom:335.438400px;}
.y1b0{bottom:335.442900px;}
.y151{bottom:340.172400px;}
.y1de{bottom:344.106750px;}
.y208{bottom:344.142150px;}
.y11f{bottom:351.924990px;}
.y10a{bottom:355.677150px;}
.y140{bottom:355.677900px;}
.y8f{bottom:355.678650px;}
.y131{bottom:355.680150px;}
.y16a{bottom:355.680900px;}
.y44{bottom:355.681650px;}
.yad{bottom:355.683150px;}
.y180{bottom:355.684650px;}
.y6b{bottom:355.685400px;}
.yc9{bottom:355.687650px;}
.y1af{bottom:355.692150px;}
.y1dd{bottom:358.360500px;}
.y207{bottom:358.395900px;}
.y16b{bottom:360.422400px;}
.y206{bottom:372.649650px;}
.y15{bottom:375.861225px;}
.y1e{bottom:375.909570px;}
.y11e{bottom:375.927150px;}
.ye4{bottom:375.927900px;}
.y164{bottom:375.928650px;}
.y130{bottom:375.929400px;}
.y169{bottom:375.930150px;}
.y43{bottom:375.930900px;}
.yac{bottom:375.932400px;}
.y17f{bottom:375.933900px;}
.y6a{bottom:375.934650px;}
.y109{bottom:375.935400px;}
.yc8{bottom:375.936900px;}
.y1ae{bottom:375.941400px;}
.y1dc{bottom:376.866750px;}
.y13f{bottom:380.672400px;}
.y1db{bottom:391.120500px;}
.y205{bottom:391.147800px;}
.y14{bottom:396.115620px;}
.y1d{bottom:396.163965px;}
.y8e{bottom:396.177150px;}
.ye3{bottom:396.177900px;}
.y12f{bottom:396.178650px;}
.y168{bottom:396.179400px;}
.y42{bottom:396.180150px;}
.yab{bottom:396.181650px;}
.y17e{bottom:396.183150px;}
.y69{bottom:396.183900px;}
.y108{bottom:396.184650px;}
.yc7{bottom:396.186150px;}
.y8c{bottom:396.187650px;}
.y1ad{bottom:396.190650px;}
.y8d{bottom:400.922400px;}
.y204{bottom:405.401550px;}
.y1da{bottom:409.626750px;}
.y13{bottom:416.370015px;}
.y1c{bottom:416.418360px;}
.ye2{bottom:416.427150px;}
.y12e{bottom:416.427900px;}
.y167{bottom:416.428650px;}
.y41{bottom:416.429400px;}
.yaa{bottom:416.430900px;}
.y17d{bottom:416.432400px;}
.y68{bottom:416.433150px;}
.y107{bottom:416.433900px;}
.yc6{bottom:416.435400px;}
.y162{bottom:416.436150px;}
.y8b{bottom:416.436900px;}
.y1ac{bottom:416.439900px;}
.y163{bottom:421.172400px;}
.y203{bottom:423.833400px;}
.y1d9{bottom:423.880500px;}
.y12{bottom:436.624410px;}
.y1b{bottom:436.672755px;}
.y12d{bottom:436.677150px;}
.y13e{bottom:436.677900px;}
.y40{bottom:436.678650px;}
.y12b{bottom:436.679400px;}
.ya9{bottom:436.680150px;}
.y14c{bottom:436.681650px;}
.y67{bottom:436.682400px;}
.y106{bottom:436.683150px;}
.yc5{bottom:436.684650px;}
.y161{bottom:436.685400px;}
.y8a{bottom:436.686150px;}
.y1ab{bottom:436.689150px;}
.ye1{bottom:436.693650px;}
.y202{bottom:438.087150px;}
.y1d8{bottom:438.134250px;}
.y12c{bottom:441.422400px;}
.y201{bottom:452.340900px;}
.y1d7{bottom:452.388000px;}
.y11{bottom:456.878805px;}
.y1a{bottom:456.927150px;}
.y3f{bottom:456.927900px;}
.y12a{bottom:456.928650px;}
.ya8{bottom:456.929400px;}
.y14b{bottom:456.930900px;}
.y66{bottom:456.931650px;}
.y105{bottom:456.932400px;}
.yc4{bottom:456.933900px;}
.y160{bottom:456.934650px;}
.y89{bottom:456.935400px;}
.y1aa{bottom:456.938400px;}
.y13d{bottom:461.672400px;}
.y200{bottom:466.594650px;}
.y1d6{bottom:466.641750px;}
.y10{bottom:477.133200px;}
.y19{bottom:477.163965px;}
.y3e{bottom:477.177150px;}
.y129{bottom:477.177900px;}
.ya7{bottom:477.178650px;}
.y14a{bottom:477.180150px;}
.y65{bottom:477.180900px;}
.y104{bottom:477.181650px;}
.yc3{bottom:477.183150px;}
.y15f{bottom:477.183900px;}
.y88{bottom:477.184650px;}
.y1a9{bottom:477.187650px;}
.ye0{bottom:477.192150px;}
.y3c{bottom:477.192900px;}
.y3d{bottom:481.922400px;}
.y1ff{bottom:485.100900px;}
.y1d5{bottom:485.148000px;}
.yf{bottom:497.387595px;}
.y18{bottom:497.418360px;}
.y128{bottom:497.427150px;}
.ya6{bottom:497.427900px;}
.y195{bottom:497.428650px;}
.y149{bottom:497.429400px;}
.y64{bottom:497.430150px;}
.y103{bottom:497.430900px;}
.yc2{bottom:497.432400px;}
.y15e{bottom:497.433150px;}
.y1a8{bottom:497.436900px;}
.ydf{bottom:497.441400px;}
.y3b{bottom:497.442150px;}
.y1fe{bottom:499.354650px;}
.y1d4{bottom:499.401750px;}
.y239{bottom:512.279550px;}
.y1fd{bottom:513.608400px;}
.y1d3{bottom:513.655500px;}
.ye{bottom:517.641990px;}
.y17{bottom:517.672755px;}
.ya5{bottom:517.677150px;}
.y194{bottom:517.677900px;}
.yf8{bottom:517.678650px;}
.y63{bottom:517.679400px;}
.y102{bottom:517.680150px;}
.yc1{bottom:517.681650px;}
.y15d{bottom:517.682400px;}
.y87{bottom:517.683150px;}
.y1a7{bottom:517.686150px;}
.yde{bottom:517.690650px;}
.y3a{bottom:517.691400px;}
.y238{bottom:527.578350px;}
.y1fc{bottom:532.114650px;}
.y1d2{bottom:532.153800px;}
.yd{bottom:537.896385px;}
.y16{bottom:537.927150px;}
.yf7{bottom:537.927900px;}
.y62{bottom:537.928650px;}
.y101{bottom:537.929400px;}
.ya3{bottom:537.930150px;}
.yc0{bottom:537.930900px;}
.y15c{bottom:537.931650px;}
.y15a{bottom:537.931950px;}
.y86{bottom:537.932400px;}
.y1a6{bottom:537.935400px;}
.ydd{bottom:537.939900px;}
.y39{bottom:537.940650px;}
.ya4{bottom:542.672400px;}
.y237{bottom:542.877150px;}
.y1fb{bottom:546.368400px;}
.y1cf{bottom:546.400050px;}
.y1d1{bottom:546.407550px;}
.y1d0{bottom:550.153800px;}
.y159{bottom:551.429550px;}
.y13c{bottom:552.592800px;}
.yc{bottom:558.150780px;}
.y148{bottom:558.177150px;}
.y61{bottom:558.177900px;}
.y100{bottom:558.178650px;}
.ya2{bottom:558.179400px;}
.ybf{bottom:558.180150px;}
.y15b{bottom:558.180900px;}
.y85{bottom:558.181650px;}
.y1a5{bottom:558.184650px;}
.ydc{bottom:558.189150px;}
.y38{bottom:558.189900px;}
.y1fa{bottom:560.622150px;}
.y1ce{bottom:560.653800px;}
.y147{bottom:562.922400px;}
.y158{bottom:564.927150px;}
.y13b{bottom:566.090400px;}
.y1f9{bottom:574.875900px;}
.y1cd{bottom:574.907550px;}
.y172{bottom:578.270100px;}
.yb{bottom:578.405175px;}
.yf6{bottom:578.427150px;}
.yff{bottom:578.427900px;}
.ya1{bottom:578.428650px;}
.ybe{bottom:578.429400px;}
.y60{bottom:578.430150px;}
.y84{bottom:578.430900px;}
.y1a4{bottom:578.433900px;}
.y37{bottom:578.439150px;}
.y11d{bottom:583.172400px;}
.y171{bottom:591.767700px;}
.y1f8{bottom:593.382150px;}
.y1cb{bottom:593.397600px;}
.y1cc{bottom:593.409450px;}
.ya{bottom:598.659570px;}
.yf5{bottom:598.677150px;}
.ya0{bottom:598.677900px;}
.ybd{bottom:598.678650px;}
.y5f{bottom:598.679400px;}
.y83{bottom:598.680150px;}
.y1a3{bottom:598.683150px;}
.y236{bottom:598.683222px;}
.ydb{bottom:598.687650px;}
.y36{bottom:598.688400px;}
.y170{bottom:605.267700px;}
.y1f7{bottom:607.635900px;}
.y1ca{bottom:607.651350px;}
.y9{bottom:618.913965px;}
.y9f{bottom:618.927150px;}
.ybc{bottom:618.927900px;}
.y5e{bottom:618.928650px;}
.y82{bottom:618.929400px;}
.y1a2{bottom:618.932400px;}
.yda{bottom:618.936900px;}
.y35{bottom:618.937650px;}
.y1f6{bottom:621.889650px;}
.y1c9{bottom:621.905100px;}
.y9e{bottom:623.672400px;}
.y1f5{bottom:636.143400px;}
.y8{bottom:639.168360px;}
.ybb{bottom:639.177150px;}
.y5d{bottom:639.177900px;}
.y81{bottom:639.178650px;}
.y1a1{bottom:639.181650px;}
.yf0{bottom:639.182400px;}
.yd9{bottom:639.186150px;}
.y34{bottom:639.186900px;}
.y1c8{bottom:640.411350px;}
.y1c7{bottom:654.607350px;}
.y1f4{bottom:654.649650px;}
.y7{bottom:659.422755px;}
.y9d{bottom:659.427150px;}
.y5c{bottom:659.427900px;}
.y193{bottom:659.428650px;}
.y9b{bottom:659.430900px;}
.yef{bottom:659.431650px;}
.yfe{bottom:659.431950px;}
.yd8{bottom:659.435400px;}
.y33{bottom:659.436150px;}
.y9c{bottom:664.172400px;}
.y1c6{bottom:668.861100px;}
.y1f3{bottom:668.903400px;}
.yfd{bottom:672.929550px;}
.y6{bottom:679.677150px;}
.y192{bottom:679.677900px;}
.y5b{bottom:679.680150px;}
.yee{bottom:679.680900px;}
.yd7{bottom:679.684650px;}
.y32{bottom:679.685400px;}
.y1c5{bottom:683.114850px;}
.y1f2{bottom:683.157150px;}
.yba{bottom:684.422400px;}
.yfc{bottom:686.427150px;}
.y1c4{bottom:697.368600px;}
.y11c{bottom:699.927150px;}
.y5a{bottom:699.929400px;}
.y7f{bottom:699.930150px;}
.yd6{bottom:699.933900px;}
.y31{bottom:699.934650px;}
.y1f1{bottom:701.663400px;}
.y225{bottom:703.832550px;}
.y234{bottom:703.871100px;}
.y235{bottom:703.882950px;}
.y80{bottom:704.672400px;}
.y1c3{bottom:715.874850px;}
.y224{bottom:718.086300px;}
.y233{bottom:718.124850px;}
.y5{bottom:720.177150px;}
.y59{bottom:720.178650px;}
.y7e{bottom:720.179400px;}
.y191{bottom:720.183000px;}
.yd5{bottom:720.183150px;}
.y30{bottom:720.183900px;}
.y1c2{bottom:730.128600px;}
.y232{bottom:732.378600px;}
.y223{bottom:736.592550px;}
.y11b{bottom:740.427150px;}
.y58{bottom:740.427900px;}
.y7d{bottom:740.428650px;}
.y190{bottom:740.432250px;}
.yd4{bottom:740.432400px;}
.y2f{bottom:740.433150px;}
.y1c1{bottom:744.382350px;}
.y1f0{bottom:748.634850px;}
.y230{bottom:750.801300px;}
.y222{bottom:750.846300px;}
.y231{bottom:750.884850px;}
.y1c0{bottom:758.636100px;}
.y57{bottom:760.677150px;}
.y7c{bottom:760.677900px;}
.y17b{bottom:760.678500px;}
.y1a0{bottom:760.680900px;}
.y18f{bottom:760.681500px;}
.yd3{bottom:760.681650px;}
.y2e{bottom:760.682400px;}
.y1ef{bottom:762.888600px;}
.y22f{bottom:765.055050px;}
.y221{bottom:765.100050px;}
.y17c{bottom:765.422400px;}
.y1bf{bottom:777.142350px;}
.y22e{bottom:779.308800px;}
.y220{bottom:779.353800px;}
.y7b{bottom:780.927150px;}
.y17a{bottom:780.927750px;}
.y79{bottom:780.928650px;}
.y19f{bottom:780.930150px;}
.y18e{bottom:780.930750px;}
.y56{bottom:780.930900px;}
.y2d{bottom:780.931650px;}
.y7a{bottom:785.672400px;}
.y1be{bottom:791.396100px;}
.y22d{bottom:793.562550px;}
.y21f{bottom:793.607550px;}
.y179{bottom:801.177000px;}
.y4{bottom:801.177150px;}
.y78{bottom:801.177900px;}
.y11a{bottom:801.178650px;}
.y178{bottom:801.179250px;}
.y19e{bottom:801.179400px;}
.y18d{bottom:801.180000px;}
.y55{bottom:801.180150px;}
.y2c{bottom:801.180900px;}
.y1bd{bottom:805.649850px;}
.y21e{bottom:807.861300px;}
.y22c{bottom:812.068800px;}
.y1ee{bottom:819.903600px;}
.y77{bottom:821.427150px;}
.y119{bottom:821.427900px;}
.y177{bottom:821.428500px;}
.y19d{bottom:821.428650px;}
.y18c{bottom:821.429250px;}
.y54{bottom:821.429400px;}
.y2b{bottom:821.430150px;}
.y1bc{bottom:824.156100px;}
.y22b{bottom:826.322550px;}
.y21d{bottom:826.367550px;}
.y1bb{bottom:838.409850px;}
.y22a{bottom:840.576300px;}
.y21c{bottom:840.621300px;}
.y3{bottom:841.677150px;}
.y176{bottom:841.677750px;}
.y19c{bottom:841.677900px;}
.y18b{bottom:841.678500px;}
.y53{bottom:841.678650px;}
.y2a{bottom:841.679400px;}
.y118{bottom:846.422400px;}
.y1ba{bottom:852.663600px;}
.y229{bottom:854.830050px;}
.y21b{bottom:854.875050px;}
.y175{bottom:861.927000px;}
.y117{bottom:861.927150px;}
.y174{bottom:861.927750px;}
.y52{bottom:861.927900px;}
.y29{bottom:861.928650px;}
.y76{bottom:866.672400px;}
.y1b9{bottom:866.917350px;}
.y228{bottom:869.083800px;}
.y21a{bottom:873.381300px;}
.y173{bottom:882.177000px;}
.y51{bottom:882.177150px;}
.y28{bottom:882.177900px;}
.y50{bottom:886.922400px;}
.y227{bottom:887.590050px;}
.y219{bottom:887.635050px;}
.y226{bottom:901.843800px;}
.y218{bottom:901.888800px;}
.y2{bottom:902.427150px;}
.y27{bottom:907.172400px;}
.y26{bottom:954.674400px;}
.y1{bottom:954.717300px;}
.h17{height:21.250350px;}
.hc{height:26.152797px;}
.h16{height:33.120000px;}
.hd{height:35.830800px;}
.h13{height:35.964000px;}
.h14{height:36.000000px;}
.h15{height:36.450000px;}
.h18{height:36.715800px;}
.ha{height:36.831600px;}
.h19{height:36.936000px;}
.h2{height:37.767600px;}
.h1a{height:37.776000px;}
.he{height:37.908000px;}
.hb{height:38.102400px;}
.h7{height:40.483800px;}
.h12{height:41.040000px;}
.h9{height:42.750000px;}
.h6{height:43.499064px;}
.hf{height:45.121797px;}
.h10{height:45.130797px;}
.h11{height:49.488000px;}
.h3{height:53.460000px;}
.h8{height:60.158280px;}
.h5{height:68.040000px;}
.h4{height:75.552000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x59{left:81.856800px;}
.x28{left:83.219400px;}
.x74{left:86.314950px;}
.x69{left:89.290200px;}
.x8{left:93.538335px;}
.x2f{left:96.447960px;}
.xb{left:97.795200px;}
.x29{left:104.149350px;}
.x75{left:108.637650px;}
.x20{left:113.555100px;}
.x54{left:115.552800px;}
.x5a{left:117.225300px;}
.xe{left:119.055150px;}
.x6{left:124.955400px;}
.x41{left:132.988650px;}
.x73{left:137.125950px;}
.x2b{left:150.774600px;}
.x2c{left:154.656750px;}
.x6a{left:158.810100px;}
.x27{left:160.913250px;}
.x2a{left:168.825300px;}
.x37{left:173.634900px;}
.xd{left:178.615800px;}
.x49{left:186.182550px;}
.x4d{left:191.155200px;}
.x26{left:202.146750px;}
.x56{left:222.157200px;}
.x23{left:231.780600px;}
.x62{left:236.095350px;}
.x31{left:237.785100px;}
.x4b{left:241.426800px;}
.x63{left:244.984500px;}
.x40{left:246.603450px;}
.x2d{left:252.796200px;}
.x17{left:255.396600px;}
.x2e{left:256.678350px;}
.x18{left:264.285750px;}
.x1a{left:271.806150px;}
.x1f{left:273.615750px;}
.x9{left:279.044700px;}
.x6b{left:282.007050px;}
.xa{left:283.489350px;}
.x11{left:288.888900px;}
.x38{left:292.566750px;}
.x35{left:302.763600px;}
.x66{left:304.020600px;}
.x30{left:307.582050px;}
.xf{left:311.066550px;}
.x67{left:312.909600px;}
.x10{left:315.762300px;}
.x51{left:317.016150px;}
.x1e{left:319.284750px;}
.x6c{left:320.288250px;}
.x4c{left:324.297600px;}
.x6d{left:326.021850px;}
.x60{left:328.327500px;}
.x4e{left:336.281250px;}
.x44{left:339.105150px;}
.x4f{left:345.170400px;}
.x12{left:348.138750px;}
.x50{left:349.671900px;}
.x68{left:351.104400px;}
.x13{left:352.583400px;}
.x55{left:354.056400px;}
.x7{left:355.140900px;}
.x32{left:356.365050px;}
.x36{left:358.185450px;}
.x2{left:359.291400px;}
.x19{left:360.526950px;}
.x4a{left:363.024900px;}
.x6e{left:372.052275px;}
.x22{left:376.792950px;}
.x21{left:381.568350px;}
.x46{left:387.658500px;}
.x3d{left:395.269350px;}
.x3c{left:403.161450px;}
.x3e{left:412.360050px;}
.x72{left:418.195500px;}
.x3f{left:420.982500px;}
.x1b{left:423.873900px;}
.x64{left:435.140250px;}
.x15{left:445.397700px;}
.x45{left:451.048500px;}
.x16{left:454.328400px;}
.x57{left:463.010250px;}
.x58{left:471.543750px;}
.x65{left:475.093050px;}
.x39{left:479.971500px;}
.x53{left:494.937450px;}
.x33{left:501.579150px;}
.x71{left:508.183650px;}
.x34{left:510.468300px;}
.x42{left:521.247150px;}
.x24{left:526.588050px;}
.x43{left:530.136450px;}
.x25{left:535.518750px;}
.x47{left:541.207350px;}
.x48{left:550.096500px;}
.x5d{left:551.804700px;}
.x1c{left:556.540950px;}
.x5c{left:559.753800px;}
.x3a{left:561.492450px;}
.x14{left:563.611650px;}
.x1d{left:565.430100px;}
.x3b{left:570.105750px;}
.x6f{left:584.475750px;}
.x5b{left:587.803050px;}
.x5e{left:589.376100px;}
.x70{left:591.516450px;}
.x5f{left:598.265250px;}
.x5{left:601.251750px;}
.x61{left:613.141500px;}
.x3{left:616.251750px;}
.xc{left:620.553150px;}
.x52{left:622.077000px;}
.x4{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.556267pt;}
.v1{vertical-align:16.861333pt;}
.ls1a{letter-spacing:-1.580800pt;}
.ls8{letter-spacing:-0.912000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.400000pt;}
.ls1{letter-spacing:-0.222133pt;}
.ls2{letter-spacing:-0.208000pt;}
.ls19{letter-spacing:-0.202667pt;}
.ls4{letter-spacing:-0.197333pt;}
.ls7{letter-spacing:-0.147693pt;}
.ls10{letter-spacing:-0.118400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020211pt;}
.ls18{letter-spacing:0.046640pt;}
.ls13{letter-spacing:0.200000pt;}
.ls3{letter-spacing:0.394667pt;}
.ls12{letter-spacing:0.800000pt;}
.ls14{letter-spacing:1.000000pt;}
.lsb{letter-spacing:1.192381pt;}
.ls11{letter-spacing:1.320000pt;}
.lsc{letter-spacing:1.736533pt;}
.lsf{letter-spacing:2.115413pt;}
.lse{letter-spacing:2.328533pt;}
.ls9{letter-spacing:3.236267pt;}
.lsa{letter-spacing:5.071733pt;}
.lsd{letter-spacing:27.805911pt;}
.ls6{letter-spacing:27.806460pt;}
.ls5{letter-spacing:1363.476800pt;}
.ws84{word-spacing:-17.365333pt;}
.ws60{word-spacing:-14.997333pt;}
.ws92{word-spacing:-14.085333pt;}
.ws0{word-spacing:-9.826133pt;}
.wsf0{word-spacing:-9.320000pt;}
.wsf5{word-spacing:-9.000000pt;}
.wsf2{word-spacing:-8.800000pt;}
.ws23{word-spacing:-8.288000pt;}
.wsf4{word-spacing:-8.200000pt;}
.ws1{word-spacing:-8.112000pt;}
.wsee{word-spacing:-8.000000pt;}
.ws136{word-spacing:-7.904000pt;}
.wsad{word-spacing:-7.893333pt;}
.wsdc{word-spacing:-7.774933pt;}
.ws49{word-spacing:-7.696000pt;}
.wsef{word-spacing:-7.600000pt;}
.ws48{word-spacing:-5.907733pt;}
.wsac{word-spacing:-5.760040pt;}
.wsf1{word-spacing:-4.710640pt;}
.ws7a{word-spacing:-2.989333pt;}
.ws8d{word-spacing:-2.938667pt;}
.ws7c{word-spacing:-2.888000pt;}
.wsdd{word-spacing:-2.837333pt;}
.ws71{word-spacing:-2.786667pt;}
.wsc6{word-spacing:-2.736000pt;}
.ws6a{word-spacing:-2.685333pt;}
.ws11e{word-spacing:-2.680000pt;}
.ws86{word-spacing:-2.584000pt;}
.wsb4{word-spacing:-2.533333pt;}
.ws94{word-spacing:-2.482667pt;}
.ws66{word-spacing:-2.381333pt;}
.wsae{word-spacing:-2.330667pt;}
.ws11f{word-spacing:-2.320000pt;}
.ws32{word-spacing:-2.280000pt;}
.wsc5{word-spacing:-2.229333pt;}
.wsed{word-spacing:-2.178667pt;}
.wsd1{word-spacing:-2.128000pt;}
.ws3a{word-spacing:-2.077333pt;}
.ws4e{word-spacing:-2.026667pt;}
.ws21{word-spacing:-1.976000pt;}
.ws5a{word-spacing:-1.925333pt;}
.ws5d{word-spacing:-1.874667pt;}
.ws95{word-spacing:-1.824000pt;}
.ws69{word-spacing:-1.773333pt;}
.wsa5{word-spacing:-1.722667pt;}
.ws78{word-spacing:-1.672000pt;}
.ws96{word-spacing:-1.621333pt;}
.ws83{word-spacing:-1.618133pt;}
.ws11b{word-spacing:-1.600000pt;}
.ws4f{word-spacing:-1.570667pt;}
.ws133{word-spacing:-1.560000pt;}
.wsd0{word-spacing:-1.520000pt;}
.ws12c{word-spacing:-1.480000pt;}
.wsc7{word-spacing:-1.469333pt;}
.ws7{word-spacing:-1.466080pt;}
.ws65{word-spacing:-1.418667pt;}
.ws118{word-spacing:-1.400000pt;}
.wsd7{word-spacing:-1.381333pt;}
.ws43{word-spacing:-1.368000pt;}
.ws116{word-spacing:-1.360000pt;}
.ws31{word-spacing:-1.317333pt;}
.ws8c{word-spacing:-1.266667pt;}
.ws5e{word-spacing:-1.223467pt;}
.ws1f{word-spacing:-1.216000pt;}
.wsbc{word-spacing:-1.165333pt;}
.ws127{word-spacing:-1.160000pt;}
.ws109{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.114667pt;}
.wsdb{word-spacing:-1.105067pt;}
.ws6f{word-spacing:-1.064000pt;}
.ws59{word-spacing:-1.013333pt;}
.ws10e{word-spacing:-1.000000pt;}
.ws18{word-spacing:-0.977387pt;}
.ws149{word-spacing:-0.972800pt;}
.wsa1{word-spacing:-0.962667pt;}
.wsc9{word-spacing:-0.912000pt;}
.wsc8{word-spacing:-0.861333pt;}
.wsd{word-spacing:-0.844107pt;}
.ws7b{word-spacing:-0.810667pt;}
.ws106{word-spacing:-0.800000pt;}
.ws8a{word-spacing:-0.760000pt;}
.ws107{word-spacing:-0.720000pt;}
.wsa0{word-spacing:-0.709333pt;}
.ws27{word-spacing:-0.658667pt;}
.ws34{word-spacing:-0.608000pt;}
.ws148{word-spacing:-0.567467pt;}
.ws87{word-spacing:-0.557333pt;}
.wsd6{word-spacing:-0.552533pt;}
.wsfa{word-spacing:-0.520000pt;}
.ws74{word-spacing:-0.506667pt;}
.ws15{word-spacing:-0.488693pt;}
.ws121{word-spacing:-0.480000pt;}
.ws63{word-spacing:-0.456000pt;}
.wsa4{word-spacing:-0.405333pt;}
.ws47{word-spacing:-0.394667pt;}
.ws67{word-spacing:-0.354667pt;}
.wsa7{word-spacing:-0.304000pt;}
.ws4b{word-spacing:-0.253333pt;}
.wse{word-spacing:-0.222133pt;}
.ws38{word-spacing:-0.202667pt;}
.ws2b{word-spacing:-0.152000pt;}
.wsb5{word-spacing:-0.101333pt;}
.ws1c{word-spacing:-0.088853pt;}
.wsf3{word-spacing:-0.040000pt;}
.ws2{word-spacing:0.000000pt;}
.ws26{word-spacing:0.050667pt;}
.wsc2{word-spacing:0.101333pt;}
.ws6e{word-spacing:0.147693pt;}
.wsd9{word-spacing:0.152000pt;}
.ws45{word-spacing:0.197333pt;}
.wsce{word-spacing:0.202667pt;}
.ws9d{word-spacing:0.253333pt;}
.wsb0{word-spacing:0.304000pt;}
.ws46{word-spacing:0.315733pt;}
.ws7d{word-spacing:0.354667pt;}
.wsa{word-spacing:0.355413pt;}
.ws104{word-spacing:0.400000pt;}
.ws62{word-spacing:0.405333pt;}
.ws6c{word-spacing:0.456000pt;}
.ws146{word-spacing:0.480000pt;}
.wsbd{word-spacing:0.506667pt;}
.ws143{word-spacing:0.520000pt;}
.ws5f{word-spacing:0.552533pt;}
.ws4d{word-spacing:0.557333pt;}
.ws117{word-spacing:0.560000pt;}
.wse2{word-spacing:0.608000pt;}
.ws42{word-spacing:0.658667pt;}
.ws82{word-spacing:0.670933pt;}
.ws105{word-spacing:0.680000pt;}
.ws8b{word-spacing:0.709333pt;}
.ws90{word-spacing:0.760000pt;}
.ws119{word-spacing:0.800000pt;}
.ws3f{word-spacing:0.810667pt;}
.wsf6{word-spacing:0.840000pt;}
.ws1d{word-spacing:0.844107pt;}
.ws36{word-spacing:0.861333pt;}
.ws7f{word-spacing:0.912000pt;}
.ws114{word-spacing:0.920000pt;}
.ws14c{word-spacing:0.932267pt;}
.ws147{word-spacing:0.960000pt;}
.ws20{word-spacing:0.962667pt;}
.ws10f{word-spacing:1.000000pt;}
.wsca{word-spacing:1.013333pt;}
.ws13a{word-spacing:1.040000pt;}
.wsb8{word-spacing:1.064000pt;}
.wscf{word-spacing:1.114667pt;}
.ws11c{word-spacing:1.120000pt;}
.ws1e{word-spacing:1.155093pt;}
.wsa3{word-spacing:1.165333pt;}
.wse8{word-spacing:1.216000pt;}
.ws93{word-spacing:1.266667pt;}
.wsd4{word-spacing:1.302400pt;}
.ws9e{word-spacing:1.317333pt;}
.ws79{word-spacing:1.368000pt;}
.wsa6{word-spacing:1.418667pt;}
.ws75{word-spacing:1.469333pt;}
.ws12a{word-spacing:1.480000pt;}
.ws68{word-spacing:1.520000pt;}
.ws14b{word-spacing:1.540267pt;}
.ws33{word-spacing:1.570667pt;}
.wsbb{word-spacing:1.578667pt;}
.ws3b{word-spacing:1.621333pt;}
.ws110{word-spacing:1.640000pt;}
.ws39{word-spacing:1.672000pt;}
.ws64{word-spacing:1.722667pt;}
.ws19{word-spacing:1.732640pt;}
.wsc4{word-spacing:1.736533pt;}
.wsc3{word-spacing:1.773333pt;}
.ws3d{word-spacing:1.824000pt;}
.ws4a{word-spacing:1.874667pt;}
.wsf8{word-spacing:1.880000pt;}
.ws3{word-spacing:1.910347pt;}
.ws50{word-spacing:1.925333pt;}
.wsfc{word-spacing:1.960000pt;}
.wsd3{word-spacing:1.976000pt;}
.ws29{word-spacing:2.026667pt;}
.ws12b{word-spacing:2.040000pt;}
.wsb{word-spacing:2.043627pt;}
.wsb9{word-spacing:2.077333pt;}
.wsa8{word-spacing:2.128000pt;}
.ws125{word-spacing:2.160000pt;}
.ws24{word-spacing:2.178667pt;}
.ws4c{word-spacing:2.229333pt;}
.ws76{word-spacing:2.280000pt;}
.wse0{word-spacing:2.328533pt;}
.wsd8{word-spacing:2.330667pt;}
.ws28{word-spacing:2.381333pt;}
.wse7{word-spacing:2.432000pt;}
.wsab{word-spacing:2.482667pt;}
.wsda{word-spacing:2.525867pt;}
.ws5b{word-spacing:2.533333pt;}
.ws6d{word-spacing:2.584000pt;}
.ws22{word-spacing:2.634667pt;}
.ws12f{word-spacing:2.640000pt;}
.ws6{word-spacing:2.665600pt;}
.ws111{word-spacing:2.680000pt;}
.ws25{word-spacing:2.685333pt;}
.ws35{word-spacing:2.736000pt;}
.ws135{word-spacing:2.760000pt;}
.wsc0{word-spacing:2.786667pt;}
.ws14a{word-spacing:2.877867pt;}
.ws128{word-spacing:2.880000pt;}
.ws53{word-spacing:2.888000pt;}
.ws81{word-spacing:2.920533pt;}
.ws51{word-spacing:2.938667pt;}
.wsfd{word-spacing:2.960000pt;}
.wsb1{word-spacing:2.989333pt;}
.ws138{word-spacing:3.000000pt;}
.wsea{word-spacing:3.040000pt;}
.wsaf{word-spacing:3.090667pt;}
.ws2c{word-spacing:3.141333pt;}
.ws13b{word-spacing:3.160000pt;}
.ws55{word-spacing:3.192000pt;}
.wsde{word-spacing:3.242667pt;}
.wsb2{word-spacing:3.275733pt;}
.ws132{word-spacing:3.280000pt;}
.ws88{word-spacing:3.293333pt;}
.ws98{word-spacing:3.344000pt;}
.ws44{word-spacing:3.394667pt;}
.ws140{word-spacing:3.400000pt;}
.ws122{word-spacing:3.440000pt;}
.wse5{word-spacing:3.445333pt;}
.ws80{word-spacing:3.546667pt;}
.ws16{word-spacing:3.554133pt;}
.ws134{word-spacing:3.560000pt;}
.wsb7{word-spacing:3.597333pt;}
.ws100{word-spacing:3.640000pt;}
.ws7e{word-spacing:3.648000pt;}
.ws102{word-spacing:3.680000pt;}
.wsd2{word-spacing:3.698667pt;}
.wsbe{word-spacing:3.749333pt;}
.ws131{word-spacing:3.760000pt;}
.ws70{word-spacing:3.800000pt;}
.wsa9{word-spacing:3.850667pt;}
.ws11a{word-spacing:3.880000pt;}
.ws91{word-spacing:3.901333pt;}
.ws73{word-spacing:3.952000pt;}
.wsd5{word-spacing:3.986133pt;}
.ws113{word-spacing:4.080000pt;}
.ws8e{word-spacing:4.104000pt;}
.ws8f{word-spacing:4.154667pt;}
.wsc{word-spacing:4.176107pt;}
.ws103{word-spacing:4.200000pt;}
.ws6b{word-spacing:4.205333pt;}
.ws9b{word-spacing:4.256000pt;}
.ws85{word-spacing:4.357333pt;}
.ws9a{word-spacing:4.458667pt;}
.wsf7{word-spacing:4.480000pt;}
.ws14d{word-spacing:4.499200pt;}
.ws58{word-spacing:4.509333pt;}
.ws54{word-spacing:4.661333pt;}
.wsf9{word-spacing:4.720000pt;}
.ws77{word-spacing:4.762667pt;}
.ws30{word-spacing:4.813333pt;}
.wscd{word-spacing:4.864000pt;}
.ws5c{word-spacing:4.914667pt;}
.wsa2{word-spacing:4.965333pt;}
.ws145{word-spacing:5.000000pt;}
.ws2f{word-spacing:5.016000pt;}
.ws8{word-spacing:5.064640pt;}
.ws2a{word-spacing:5.066667pt;}
.wse3{word-spacing:5.168000pt;}
.ws4{word-spacing:5.197920pt;}
.ws144{word-spacing:5.240000pt;}
.ws56{word-spacing:5.370667pt;}
.ws41{word-spacing:5.421333pt;}
.wsc1{word-spacing:5.472000pt;}
.wseb{word-spacing:5.522667pt;}
.ws89{word-spacing:5.573333pt;}
.ws10a{word-spacing:5.600000pt;}
.wsdf{word-spacing:5.674667pt;}
.ws137{word-spacing:5.920000pt;}
.wsec{word-spacing:5.928000pt;}
.ws120{word-spacing:5.960000pt;}
.wse4{word-spacing:5.978667pt;}
.ws2e{word-spacing:6.130667pt;}
.wscc{word-spacing:6.282667pt;}
.ws37{word-spacing:6.333333pt;}
.wsfb{word-spacing:6.400000pt;}
.ws13e{word-spacing:6.480000pt;}
.wsba{word-spacing:6.485333pt;}
.ws1b{word-spacing:6.530720pt;}
.ws57{word-spacing:6.536000pt;}
.wscb{word-spacing:6.586667pt;}
.ws123{word-spacing:6.640000pt;}
.wsf{word-spacing:6.708427pt;}
.ws52{word-spacing:6.890667pt;}
.ws1a{word-spacing:6.930560pt;}
.wsb6{word-spacing:6.941333pt;}
.wsaa{word-spacing:6.992000pt;}
.ws72{word-spacing:7.093333pt;}
.wse9{word-spacing:7.194667pt;}
.ws13{word-spacing:7.241547pt;}
.wsff{word-spacing:7.280000pt;}
.ws3c{word-spacing:7.296000pt;}
.ws61{word-spacing:7.346667pt;}
.ws11{word-spacing:7.463680pt;}
.ws112{word-spacing:7.600000pt;}
.ws13d{word-spacing:7.680000pt;}
.ws99{word-spacing:7.752000pt;}
.ws139{word-spacing:7.760000pt;}
.ws2d{word-spacing:7.904000pt;}
.ws11d{word-spacing:7.960000pt;}
.ws97{word-spacing:8.005333pt;}
.ws5{word-spacing:8.174507pt;}
.ws9f{word-spacing:8.208000pt;}
.ws10d{word-spacing:8.320000pt;}
.ws3e{word-spacing:8.410667pt;}
.ws9c{word-spacing:8.461333pt;}
.ws124{word-spacing:8.840000pt;}
.wsbf{word-spacing:8.866667pt;}
.ws12e{word-spacing:9.080000pt;}
.ws10{word-spacing:9.107467pt;}
.ws10b{word-spacing:9.240000pt;}
.ws130{word-spacing:9.560000pt;}
.wse1{word-spacing:9.590400pt;}
.wse6{word-spacing:9.985067pt;}
.ws115{word-spacing:10.040000pt;}
.ws9{word-spacing:10.084853pt;}
.wsb3{word-spacing:10.340267pt;}
.ws108{word-spacing:11.080000pt;}
.ws13c{word-spacing:11.160000pt;}
.ws14{word-spacing:11.195520pt;}
.ws17{word-spacing:11.550933pt;}
.ws12{word-spacing:11.995200pt;}
.ws142{word-spacing:12.640000pt;}
.ws101{word-spacing:12.880000pt;}
.ws13f{word-spacing:13.720000pt;}
.ws12d{word-spacing:13.840000pt;}
.wsfe{word-spacing:14.680000pt;}
.ws126{word-spacing:15.720000pt;}
.ws129{word-spacing:16.440000pt;}
.ws141{word-spacing:23.720000pt;}
.ws10c{word-spacing:25.840000pt;}
._16{margin-left:-31.765637pt;}
._12{margin-left:-22.935147pt;}
._5{margin-left:-20.261120pt;}
._6{margin-left:-16.421120pt;}
._13{margin-left:-13.589175pt;}
._18{margin-left:-12.294400pt;}
._f{margin-left:-8.123520pt;}
._8{margin-left:-6.536000pt;}
._c{margin-left:-5.552267pt;}
._7{margin-left:-4.236944pt;}
._4{margin-left:-2.928229pt;}
._a{margin-left:-2.009813pt;}
._3{margin-left:-0.916213pt;}
._1{width:1.280000pt;}
._2{width:2.733867pt;}
._9{width:4.165333pt;}
._b{width:5.875093pt;}
._15{width:6.949760pt;}
._11{width:8.005333pt;}
._14{width:10.741224pt;}
._e{width:14.481280pt;}
._17{width:44.046270pt;}
._d{width:45.990400pt;}
._10{width:48.920247pt;}
._0{width:1822.941333pt;}
.fsd{font-size:23.320000pt;}
.fs9{font-size:29.538667pt;}
.fsa{font-size:39.466667pt;}
.fsc{font-size:40.000000pt;}
.fse{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fs8{font-size:41.813333pt;}
.fsb{font-size:42.666667pt;}
.fs5{font-size:44.426667pt;}
.fs4{font-size:49.130667pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:67.946667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:52.291067pt;}
.y19b{bottom:98.270000pt;}
.y9a{bottom:100.157600pt;}
.y4f{bottom:100.159733pt;}
.y99{bottom:100.160667pt;}
.yf4{bottom:100.160800pt;}
.y75{bottom:100.161867pt;}
.yed{bottom:100.162133pt;}
.y116{bottom:100.165467pt;}
.y1ed{bottom:100.782667pt;}
.y19a{bottom:110.267867pt;}
.y199{bottom:110.270933pt;}
.y4e{bottom:112.157600pt;}
.y74{bottom:112.159733pt;}
.yb9{bottom:112.160667pt;}
.y217{bottom:113.445467pt;}
.y1ec{bottom:113.452667pt;}
.yf3{bottom:118.160133pt;}
.yec{bottom:118.161467pt;}
.y115{bottom:118.164800pt;}
.yfb{bottom:119.055333pt;}
.y157{bottom:119.057467pt;}
.y18a{bottom:119.058400pt;}
.y98{bottom:119.058533pt;}
.y73{bottom:124.157600pt;}
.y216{bottom:126.115467pt;}
.y1eb{bottom:126.122667pt;}
.y198{bottom:129.165600pt;}
.y197{bottom:129.167733pt;}
.yb8{bottom:131.055333pt;}
.y4d{bottom:131.057467pt;}
.y16f{bottom:131.058400pt;}
.y166{bottom:131.058533pt;}
.y156{bottom:131.059600pt;}
.yd2{bottom:136.158800pt;}
.yf2{bottom:136.159467pt;}
.yeb{bottom:136.160800pt;}
.y114{bottom:136.164133pt;}
.y189{bottom:137.953067pt;}
.y97{bottom:137.953200pt;}
.y188{bottom:137.955200pt;}
.y150{bottom:137.956267pt;}
.y215{bottom:138.785467pt;}
.y1ea{bottom:138.792667pt;}
.y196{bottom:141.165600pt;}
.y4c{bottom:143.055333pt;}
.yb7{bottom:143.057467pt;}
.y16e{bottom:149.953067pt;}
.y165{bottom:149.953200pt;}
.y13a{bottom:154.157467pt;}
.yd1{bottom:154.158133pt;}
.y24{bottom:154.158800pt;}
.yea{bottom:154.160133pt;}
.y138{bottom:154.161467pt;}
.y127{bottom:154.162133pt;}
.y113{bottom:154.163467pt;}
.y1b8{bottom:154.176800pt;}
.yb6{bottom:155.055333pt;}
.yb5{bottom:155.058533pt;}
.y1e9{bottom:155.221733pt;}
.y214{bottom:155.235467pt;}
.y96{bottom:156.850933pt;}
.y139{bottom:158.375467pt;}
.y72{bottom:161.953200pt;}
.y1e8{bottom:167.891733pt;}
.y211{bottom:167.895067pt;}
.y213{bottom:167.905467pt;}
.y212{bottom:171.235467pt;}
.yf9{bottom:172.157467pt;}
.y23{bottom:172.158133pt;}
.y146{bottom:172.158800pt;}
.ye9{bottom:172.159467pt;}
.yd0{bottom:172.160133pt;}
.y137{bottom:172.160800pt;}
.y126{bottom:172.161467pt;}
.y112{bottom:172.162800pt;}
.y1b7{bottom:172.176133pt;}
.yb4{bottom:173.953200pt;}
.y95{bottom:175.748667pt;}
.yfa{bottom:176.375467pt;}
.y1e7{bottom:180.561733pt;}
.y210{bottom:180.565067pt;}
.y71{bottom:180.850933pt;}
.y22{bottom:190.157467pt;}
.y21{bottom:190.158133pt;}
.ye8{bottom:190.158800pt;}
.ycf{bottom:190.159467pt;}
.y136{bottom:190.160133pt;}
.y125{bottom:190.160800pt;}
.y111{bottom:190.162133pt;}
.y4b{bottom:190.166133pt;}
.y187{bottom:190.168800pt;}
.y1b6{bottom:190.175467pt;}
.y70{bottom:192.850933pt;}
.y1e6{bottom:193.231733pt;}
.y20f{bottom:197.015067pt;}
.y20{bottom:208.157467pt;}
.ye7{bottom:208.158133pt;}
.yce{bottom:208.158800pt;}
.y135{bottom:208.159467pt;}
.y124{bottom:208.160133pt;}
.y110{bottom:208.161467pt;}
.y14f{bottom:208.164133pt;}
.y4a{bottom:208.165467pt;}
.yb3{bottom:208.166800pt;}
.y186{bottom:208.168133pt;}
.y1b5{bottom:208.174800pt;}
.y1e5{bottom:209.681733pt;}
.y1e4{bottom:222.292667pt;}
.y20e{bottom:222.351733pt;}
.yf1{bottom:222.822213pt;}
.y23e{bottom:224.703600pt;}
.ye6{bottom:226.157467pt;}
.ycd{bottom:226.158133pt;}
.y94{bottom:226.158800pt;}
.y123{bottom:226.159467pt;}
.y16c{bottom:226.160133pt;}
.y10f{bottom:226.160800pt;}
.y145{bottom:226.161467pt;}
.y14e{bottom:226.163467pt;}
.y49{bottom:226.164800pt;}
.yb2{bottom:226.166133pt;}
.y185{bottom:226.167467pt;}
.y1b4{bottom:226.174133pt;}
.y16d{bottom:230.375467pt;}
.y1e3{bottom:234.962667pt;}
.y23d{bottom:238.566000pt;}
.y20d{bottom:238.784533pt;}
.y1f{bottom:244.157467pt;}
.y6f{bottom:244.158133pt;}
.y122{bottom:244.158800pt;}
.y154{bottom:244.159467pt;}
.y10e{bottom:244.160133pt;}
.y144{bottom:244.160800pt;}
.ye5{bottom:244.161467pt;}
.y14d{bottom:244.162800pt;}
.y48{bottom:244.164133pt;}
.yb1{bottom:244.165467pt;}
.y184{bottom:244.166800pt;}
.y1b3{bottom:244.173467pt;}
.y1e2{bottom:247.632667pt;}
.y155{bottom:248.375467pt;}
.y20c{bottom:251.454533pt;}
.y23c{bottom:252.428400pt;}
.y6e{bottom:262.157467pt;}
.y121{bottom:262.158133pt;}
.y153{bottom:262.158800pt;}
.y10d{bottom:262.159467pt;}
.y143{bottom:262.160133pt;}
.y92{bottom:262.160800pt;}
.y134{bottom:262.162133pt;}
.y47{bottom:262.163467pt;}
.yb0{bottom:262.164800pt;}
.y183{bottom:262.166133pt;}
.ycc{bottom:262.168800pt;}
.y1b2{bottom:262.172800pt;}
.y1e1{bottom:264.082667pt;}
.y20b{bottom:264.124533pt;}
.y23b{bottom:266.290800pt;}
.y23a{bottom:266.295067pt;}
.y93{bottom:266.375467pt;}
.y1e0{bottom:276.752667pt;}
.y20a{bottom:276.794533pt;}
.y120{bottom:280.157467pt;}
.y152{bottom:280.158133pt;}
.y10c{bottom:280.158800pt;}
.y142{bottom:280.159467pt;}
.y91{bottom:280.160133pt;}
.y133{bottom:280.161467pt;}
.y46{bottom:280.162800pt;}
.yaf{bottom:280.164133pt;}
.y182{bottom:280.165467pt;}
.ycb{bottom:280.168133pt;}
.y1b1{bottom:280.172133pt;}
.y1df{bottom:289.422667pt;}
.y209{bottom:289.464533pt;}
.y6d{bottom:298.157467pt;}
.y10b{bottom:298.158133pt;}
.y141{bottom:298.158800pt;}
.y90{bottom:298.159467pt;}
.y132{bottom:298.160800pt;}
.y45{bottom:298.162133pt;}
.yae{bottom:298.163467pt;}
.y181{bottom:298.164800pt;}
.y6c{bottom:298.165467pt;}
.yca{bottom:298.167467pt;}
.y1b0{bottom:298.171467pt;}
.y151{bottom:302.375467pt;}
.y1de{bottom:305.872667pt;}
.y208{bottom:305.904133pt;}
.y11f{bottom:312.822213pt;}
.y10a{bottom:316.157467pt;}
.y140{bottom:316.158133pt;}
.y8f{bottom:316.158800pt;}
.y131{bottom:316.160133pt;}
.y16a{bottom:316.160800pt;}
.y44{bottom:316.161467pt;}
.yad{bottom:316.162800pt;}
.y180{bottom:316.164133pt;}
.y6b{bottom:316.164800pt;}
.yc9{bottom:316.166800pt;}
.y1af{bottom:316.170800pt;}
.y1dd{bottom:318.542667pt;}
.y207{bottom:318.574133pt;}
.y16b{bottom:320.375467pt;}
.y206{bottom:331.244133pt;}
.y15{bottom:334.098867pt;}
.y1e{bottom:334.141840pt;}
.y11e{bottom:334.157467pt;}
.ye4{bottom:334.158133pt;}
.y164{bottom:334.158800pt;}
.y130{bottom:334.159467pt;}
.y169{bottom:334.160133pt;}
.y43{bottom:334.160800pt;}
.yac{bottom:334.162133pt;}
.y17f{bottom:334.163467pt;}
.y6a{bottom:334.164133pt;}
.y109{bottom:334.164800pt;}
.yc8{bottom:334.166133pt;}
.y1ae{bottom:334.170133pt;}
.y1dc{bottom:334.992667pt;}
.y13f{bottom:338.375467pt;}
.y1db{bottom:347.662667pt;}
.y205{bottom:347.686933pt;}
.y14{bottom:352.102773pt;}
.y1d{bottom:352.145747pt;}
.y8e{bottom:352.157467pt;}
.ye3{bottom:352.158133pt;}
.y12f{bottom:352.158800pt;}
.y168{bottom:352.159467pt;}
.y42{bottom:352.160133pt;}
.yab{bottom:352.161467pt;}
.y17e{bottom:352.162800pt;}
.y69{bottom:352.163467pt;}
.y108{bottom:352.164133pt;}
.yc7{bottom:352.165467pt;}
.y8c{bottom:352.166800pt;}
.y1ad{bottom:352.169467pt;}
.y8d{bottom:356.375467pt;}
.y204{bottom:360.356933pt;}
.y1da{bottom:364.112667pt;}
.y13{bottom:370.106680pt;}
.y1c{bottom:370.149653pt;}
.ye2{bottom:370.157467pt;}
.y12e{bottom:370.158133pt;}
.y167{bottom:370.158800pt;}
.y41{bottom:370.159467pt;}
.yaa{bottom:370.160800pt;}
.y17d{bottom:370.162133pt;}
.y68{bottom:370.162800pt;}
.y107{bottom:370.163467pt;}
.yc6{bottom:370.164800pt;}
.y162{bottom:370.165467pt;}
.y8b{bottom:370.166133pt;}
.y1ac{bottom:370.168800pt;}
.y163{bottom:374.375467pt;}
.y203{bottom:376.740800pt;}
.y1d9{bottom:376.782667pt;}
.y12{bottom:388.110587pt;}
.y1b{bottom:388.153560pt;}
.y12d{bottom:388.157467pt;}
.y13e{bottom:388.158133pt;}
.y40{bottom:388.158800pt;}
.y12b{bottom:388.159467pt;}
.ya9{bottom:388.160133pt;}
.y14c{bottom:388.161467pt;}
.y67{bottom:388.162133pt;}
.y106{bottom:388.162800pt;}
.yc5{bottom:388.164133pt;}
.y161{bottom:388.164800pt;}
.y8a{bottom:388.165467pt;}
.y1ab{bottom:388.168133pt;}
.ye1{bottom:388.172133pt;}
.y202{bottom:389.410800pt;}
.y1d8{bottom:389.452667pt;}
.y12c{bottom:392.375467pt;}
.y201{bottom:402.080800pt;}
.y1d7{bottom:402.122667pt;}
.y11{bottom:406.114493pt;}
.y1a{bottom:406.157467pt;}
.y3f{bottom:406.158133pt;}
.y12a{bottom:406.158800pt;}
.ya8{bottom:406.159467pt;}
.y14b{bottom:406.160800pt;}
.y66{bottom:406.161467pt;}
.y105{bottom:406.162133pt;}
.yc4{bottom:406.163467pt;}
.y160{bottom:406.164133pt;}
.y89{bottom:406.164800pt;}
.y1aa{bottom:406.167467pt;}
.y13d{bottom:410.375467pt;}
.y200{bottom:414.750800pt;}
.y1d6{bottom:414.792667pt;}
.y10{bottom:424.118400pt;}
.y19{bottom:424.145747pt;}
.y3e{bottom:424.157467pt;}
.y129{bottom:424.158133pt;}
.ya7{bottom:424.158800pt;}
.y14a{bottom:424.160133pt;}
.y65{bottom:424.160800pt;}
.y104{bottom:424.161467pt;}
.yc3{bottom:424.162800pt;}
.y15f{bottom:424.163467pt;}
.y88{bottom:424.164133pt;}
.y1a9{bottom:424.166800pt;}
.ye0{bottom:424.170800pt;}
.y3c{bottom:424.171467pt;}
.y3d{bottom:428.375467pt;}
.y1ff{bottom:431.200800pt;}
.y1d5{bottom:431.242667pt;}
.yf{bottom:442.122307pt;}
.y18{bottom:442.149653pt;}
.y128{bottom:442.157467pt;}
.ya6{bottom:442.158133pt;}
.y195{bottom:442.158800pt;}
.y149{bottom:442.159467pt;}
.y64{bottom:442.160133pt;}
.y103{bottom:442.160800pt;}
.yc2{bottom:442.162133pt;}
.y15e{bottom:442.162800pt;}
.y1a8{bottom:442.166133pt;}
.ydf{bottom:442.170133pt;}
.y3b{bottom:442.170800pt;}
.y1fe{bottom:443.870800pt;}
.y1d4{bottom:443.912667pt;}
.y239{bottom:455.359600pt;}
.y1fd{bottom:456.540800pt;}
.y1d3{bottom:456.582667pt;}
.ye{bottom:460.126213pt;}
.y17{bottom:460.153560pt;}
.ya5{bottom:460.157467pt;}
.y194{bottom:460.158133pt;}
.yf8{bottom:460.158800pt;}
.y63{bottom:460.159467pt;}
.y102{bottom:460.160133pt;}
.yc1{bottom:460.161467pt;}
.y15d{bottom:460.162133pt;}
.y87{bottom:460.162800pt;}
.y1a7{bottom:460.165467pt;}
.yde{bottom:460.169467pt;}
.y3a{bottom:460.170133pt;}
.y238{bottom:468.958533pt;}
.y1fc{bottom:472.990800pt;}
.y1d2{bottom:473.025600pt;}
.yd{bottom:478.130120pt;}
.y16{bottom:478.157467pt;}
.yf7{bottom:478.158133pt;}
.y62{bottom:478.158800pt;}
.y101{bottom:478.159467pt;}
.ya3{bottom:478.160133pt;}
.yc0{bottom:478.160800pt;}
.y15c{bottom:478.161467pt;}
.y15a{bottom:478.161733pt;}
.y86{bottom:478.162133pt;}
.y1a6{bottom:478.164800pt;}
.ydd{bottom:478.168800pt;}
.y39{bottom:478.169467pt;}
.ya4{bottom:482.375467pt;}
.y237{bottom:482.557467pt;}
.y1fb{bottom:485.660800pt;}
.y1cf{bottom:485.688933pt;}
.y1d1{bottom:485.695600pt;}
.y1d0{bottom:489.025600pt;}
.y159{bottom:490.159600pt;}
.y13c{bottom:491.193600pt;}
.yc{bottom:496.134027pt;}
.y148{bottom:496.157467pt;}
.y61{bottom:496.158133pt;}
.y100{bottom:496.158800pt;}
.ya2{bottom:496.159467pt;}
.ybf{bottom:496.160133pt;}
.y15b{bottom:496.160800pt;}
.y85{bottom:496.161467pt;}
.y1a5{bottom:496.164133pt;}
.ydc{bottom:496.168133pt;}
.y38{bottom:496.168800pt;}
.y1fa{bottom:498.330800pt;}
.y1ce{bottom:498.358933pt;}
.y147{bottom:500.375467pt;}
.y158{bottom:502.157467pt;}
.y13b{bottom:503.191467pt;}
.y1f9{bottom:511.000800pt;}
.y1cd{bottom:511.028933pt;}
.y172{bottom:514.017867pt;}
.yb{bottom:514.137933pt;}
.yf6{bottom:514.157467pt;}
.yff{bottom:514.158133pt;}
.ya1{bottom:514.158800pt;}
.ybe{bottom:514.159467pt;}
.y60{bottom:514.160133pt;}
.y84{bottom:514.160800pt;}
.y1a4{bottom:514.163467pt;}
.y37{bottom:514.168133pt;}
.y11d{bottom:518.375467pt;}
.y171{bottom:526.015733pt;}
.y1f8{bottom:527.450800pt;}
.y1cb{bottom:527.464533pt;}
.y1cc{bottom:527.475067pt;}
.ya{bottom:532.141840pt;}
.yf5{bottom:532.157467pt;}
.ya0{bottom:532.158133pt;}
.ybd{bottom:532.158800pt;}
.y5f{bottom:532.159467pt;}
.y83{bottom:532.160133pt;}
.y1a3{bottom:532.162800pt;}
.y236{bottom:532.162864pt;}
.ydb{bottom:532.166800pt;}
.y36{bottom:532.167467pt;}
.y170{bottom:538.015733pt;}
.y1f7{bottom:540.120800pt;}
.y1ca{bottom:540.134533pt;}
.y9{bottom:550.145747pt;}
.y9f{bottom:550.157467pt;}
.ybc{bottom:550.158133pt;}
.y5e{bottom:550.158800pt;}
.y82{bottom:550.159467pt;}
.y1a2{bottom:550.162133pt;}
.yda{bottom:550.166133pt;}
.y35{bottom:550.166800pt;}
.y1f6{bottom:552.790800pt;}
.y1c9{bottom:552.804533pt;}
.y9e{bottom:554.375467pt;}
.y1f5{bottom:565.460800pt;}
.y8{bottom:568.149653pt;}
.ybb{bottom:568.157467pt;}
.y5d{bottom:568.158133pt;}
.y81{bottom:568.158800pt;}
.y1a1{bottom:568.161467pt;}
.yf0{bottom:568.162133pt;}
.yd9{bottom:568.165467pt;}
.y34{bottom:568.166133pt;}
.y1c8{bottom:569.254533pt;}
.y1c7{bottom:581.873200pt;}
.y1f4{bottom:581.910800pt;}
.y7{bottom:586.153560pt;}
.y9d{bottom:586.157467pt;}
.y5c{bottom:586.158133pt;}
.y193{bottom:586.158800pt;}
.y9b{bottom:586.160800pt;}
.yef{bottom:586.161467pt;}
.yfe{bottom:586.161733pt;}
.yd8{bottom:586.164800pt;}
.y33{bottom:586.165467pt;}
.y9c{bottom:590.375467pt;}
.y1c6{bottom:594.543200pt;}
.y1f3{bottom:594.580800pt;}
.yfd{bottom:598.159600pt;}
.y6{bottom:604.157467pt;}
.y192{bottom:604.158133pt;}
.y5b{bottom:604.160133pt;}
.yee{bottom:604.160800pt;}
.yd7{bottom:604.164133pt;}
.y32{bottom:604.164800pt;}
.y1c5{bottom:607.213200pt;}
.y1f2{bottom:607.250800pt;}
.yba{bottom:608.375467pt;}
.yfc{bottom:610.157467pt;}
.y1c4{bottom:619.883200pt;}
.y11c{bottom:622.157467pt;}
.y5a{bottom:622.159467pt;}
.y7f{bottom:622.160133pt;}
.yd6{bottom:622.163467pt;}
.y31{bottom:622.164133pt;}
.y1f1{bottom:623.700800pt;}
.y225{bottom:625.628933pt;}
.y234{bottom:625.663200pt;}
.y235{bottom:625.673733pt;}
.y80{bottom:626.375467pt;}
.y1c3{bottom:636.333200pt;}
.y224{bottom:638.298933pt;}
.y233{bottom:638.333200pt;}
.y5{bottom:640.157467pt;}
.y59{bottom:640.158800pt;}
.y7e{bottom:640.159467pt;}
.y191{bottom:640.162667pt;}
.yd5{bottom:640.162800pt;}
.y30{bottom:640.163467pt;}
.y1c2{bottom:649.003200pt;}
.y232{bottom:651.003200pt;}
.y223{bottom:654.748933pt;}
.y11b{bottom:658.157467pt;}
.y58{bottom:658.158133pt;}
.y7d{bottom:658.158800pt;}
.y190{bottom:658.162000pt;}
.yd4{bottom:658.162133pt;}
.y2f{bottom:658.162800pt;}
.y1c1{bottom:661.673200pt;}
.y1f0{bottom:665.453200pt;}
.y230{bottom:667.378933pt;}
.y222{bottom:667.418933pt;}
.y231{bottom:667.453200pt;}
.y1c0{bottom:674.343200pt;}
.y57{bottom:676.157467pt;}
.y7c{bottom:676.158133pt;}
.y17b{bottom:676.158667pt;}
.y1a0{bottom:676.160800pt;}
.y18f{bottom:676.161333pt;}
.yd3{bottom:676.161467pt;}
.y2e{bottom:676.162133pt;}
.y1ef{bottom:678.123200pt;}
.y22f{bottom:680.048933pt;}
.y221{bottom:680.088933pt;}
.y17c{bottom:680.375467pt;}
.y1bf{bottom:690.793200pt;}
.y22e{bottom:692.718933pt;}
.y220{bottom:692.758933pt;}
.y7b{bottom:694.157467pt;}
.y17a{bottom:694.158000pt;}
.y79{bottom:694.158800pt;}
.y19f{bottom:694.160133pt;}
.y18e{bottom:694.160667pt;}
.y56{bottom:694.160800pt;}
.y2d{bottom:694.161467pt;}
.y7a{bottom:698.375467pt;}
.y1be{bottom:703.463200pt;}
.y22d{bottom:705.388933pt;}
.y21f{bottom:705.428933pt;}
.y179{bottom:712.157333pt;}
.y4{bottom:712.157467pt;}
.y78{bottom:712.158133pt;}
.y11a{bottom:712.158800pt;}
.y178{bottom:712.159333pt;}
.y19e{bottom:712.159467pt;}
.y18d{bottom:712.160000pt;}
.y55{bottom:712.160133pt;}
.y2c{bottom:712.160800pt;}
.y1bd{bottom:716.133200pt;}
.y21e{bottom:718.098933pt;}
.y22c{bottom:721.838933pt;}
.y1ee{bottom:728.803200pt;}
.y77{bottom:730.157467pt;}
.y119{bottom:730.158133pt;}
.y177{bottom:730.158667pt;}
.y19d{bottom:730.158800pt;}
.y18c{bottom:730.159333pt;}
.y54{bottom:730.159467pt;}
.y2b{bottom:730.160133pt;}
.y1bc{bottom:732.583200pt;}
.y22b{bottom:734.508933pt;}
.y21d{bottom:734.548933pt;}
.y1bb{bottom:745.253200pt;}
.y22a{bottom:747.178933pt;}
.y21c{bottom:747.218933pt;}
.y3{bottom:748.157467pt;}
.y176{bottom:748.158000pt;}
.y19c{bottom:748.158133pt;}
.y18b{bottom:748.158667pt;}
.y53{bottom:748.158800pt;}
.y2a{bottom:748.159467pt;}
.y118{bottom:752.375467pt;}
.y1ba{bottom:757.923200pt;}
.y229{bottom:759.848933pt;}
.y21b{bottom:759.888933pt;}
.y175{bottom:766.157333pt;}
.y117{bottom:766.157467pt;}
.y174{bottom:766.158000pt;}
.y52{bottom:766.158133pt;}
.y29{bottom:766.158800pt;}
.y76{bottom:770.375467pt;}
.y1b9{bottom:770.593200pt;}
.y228{bottom:772.518933pt;}
.y21a{bottom:776.338933pt;}
.y173{bottom:784.157333pt;}
.y51{bottom:784.157467pt;}
.y28{bottom:784.158133pt;}
.y50{bottom:788.375467pt;}
.y227{bottom:788.968933pt;}
.y219{bottom:789.008933pt;}
.y226{bottom:801.638933pt;}
.y218{bottom:801.678933pt;}
.y2{bottom:802.157467pt;}
.y27{bottom:806.375467pt;}
.y26{bottom:848.599467pt;}
.y1{bottom:848.637600pt;}
.h17{height:18.889200pt;}
.hc{height:23.246931pt;}
.h16{height:29.440000pt;}
.hd{height:31.849600pt;}
.h13{height:31.968000pt;}
.h14{height:32.000000pt;}
.h15{height:32.400000pt;}
.h18{height:32.636267pt;}
.ha{height:32.739200pt;}
.h19{height:32.832000pt;}
.h2{height:33.571200pt;}
.h1a{height:33.578667pt;}
.he{height:33.696000pt;}
.hb{height:33.868800pt;}
.h7{height:35.985600pt;}
.h12{height:36.480000pt;}
.h9{height:38.000000pt;}
.h6{height:38.665835pt;}
.hf{height:40.108264pt;}
.h10{height:40.116264pt;}
.h11{height:43.989333pt;}
.h3{height:47.520000pt;}
.h8{height:53.474027pt;}
.h5{height:60.480000pt;}
.h4{height:67.157333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x59{left:72.761600pt;}
.x28{left:73.972800pt;}
.x74{left:76.724400pt;}
.x69{left:79.369067pt;}
.x8{left:83.145187pt;}
.x2f{left:85.731520pt;}
.xb{left:86.929067pt;}
.x29{left:92.577200pt;}
.x75{left:96.566800pt;}
.x20{left:100.937867pt;}
.x54{left:102.713600pt;}
.x5a{left:104.200267pt;}
.xe{left:105.826800pt;}
.x6{left:111.071467pt;}
.x41{left:118.212133pt;}
.x73{left:121.889733pt;}
.x2b{left:134.021867pt;}
.x2c{left:137.472667pt;}
.x6a{left:141.164533pt;}
.x27{left:143.034000pt;}
.x2a{left:150.066933pt;}
.x37{left:154.342133pt;}
.xd{left:158.769600pt;}
.x49{left:165.495600pt;}
.x4d{left:169.915733pt;}
.x26{left:179.686000pt;}
.x56{left:197.473067pt;}
.x23{left:206.027200pt;}
.x62{left:209.862533pt;}
.x31{left:211.364533pt;}
.x4b{left:214.601600pt;}
.x63{left:217.764000pt;}
.x40{left:219.203067pt;}
.x2d{left:224.707733pt;}
.x17{left:227.019200pt;}
.x2e{left:228.158533pt;}
.x18{left:234.920667pt;}
.x1a{left:241.605467pt;}
.x1f{left:243.214000pt;}
.x9{left:248.039733pt;}
.x6b{left:250.672933pt;}
.xa{left:251.990533pt;}
.x11{left:256.790133pt;}
.x38{left:260.059333pt;}
.x35{left:269.123200pt;}
.x66{left:270.240533pt;}
.x30{left:273.406267pt;}
.xf{left:276.503600pt;}
.x67{left:278.141867pt;}
.x10{left:280.677600pt;}
.x51{left:281.792133pt;}
.x1e{left:283.808667pt;}
.x6c{left:284.700667pt;}
.x4c{left:288.264533pt;}
.x6d{left:289.797200pt;}
.x60{left:291.846667pt;}
.x4e{left:298.916667pt;}
.x44{left:301.426800pt;}
.x4f{left:306.818133pt;}
.x12{left:309.456667pt;}
.x50{left:310.819467pt;}
.x68{left:312.092800pt;}
.x13{left:313.407467pt;}
.x55{left:314.716800pt;}
.x7{left:315.680800pt;}
.x32{left:316.768933pt;}
.x36{left:318.387067pt;}
.x2{left:319.370133pt;}
.x19{left:320.468400pt;}
.x4a{left:322.688800pt;}
.x6e{left:330.713133pt;}
.x22{left:334.927067pt;}
.x21{left:339.171867pt;}
.x46{left:344.585333pt;}
.x3d{left:351.350533pt;}
.x3c{left:358.365733pt;}
.x3e{left:366.542267pt;}
.x72{left:371.729333pt;}
.x3f{left:374.206667pt;}
.x1b{left:376.776800pt;}
.x64{left:386.791333pt;}
.x15{left:395.909067pt;}
.x45{left:400.932000pt;}
.x16{left:403.847467pt;}
.x57{left:411.564667pt;}
.x58{left:419.150000pt;}
.x65{left:422.304933pt;}
.x39{left:426.641333pt;}
.x53{left:439.944400pt;}
.x33{left:445.848133pt;}
.x71{left:451.718800pt;}
.x34{left:453.749600pt;}
.x42{left:463.330800pt;}
.x24{left:468.078267pt;}
.x43{left:471.232400pt;}
.x25{left:476.016667pt;}
.x47{left:481.073200pt;}
.x48{left:488.974667pt;}
.x5d{left:490.493067pt;}
.x1c{left:494.703067pt;}
.x5c{left:497.558933pt;}
.x3a{left:499.104400pt;}
.x14{left:500.988133pt;}
.x1d{left:502.604533pt;}
.x3b{left:506.760667pt;}
.x6f{left:519.534000pt;}
.x5b{left:522.491600pt;}
.x5e{left:523.889867pt;}
.x70{left:525.792400pt;}
.x5f{left:531.791333pt;}
.x5{left:534.446000pt;}
.x61{left:545.014667pt;}
.x3{left:547.779333pt;}
.xc{left:551.602800pt;}
.x52{left:552.957333pt;}
.x4{left:555.590533pt;}
}




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