
    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_f21719a7e0224df4be28b9b2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_da98c18609e0ffeb399d126c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_b2afd14aaf9357471f022f15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956000;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_0e743ac612a56152a253ee0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_d723a891b6471421f3ac434b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.556000;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_97eed526d23108c3ba2ffe97.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2269b19519feb3d5a0602502.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.905000;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_8b1319691a6ee42596df7216.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.414000;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);}
.m4{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.058400px;}
.ls15{letter-spacing:-0.819000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002700px;}
.lse{letter-spacing:8.286600px;}
.lsb{letter-spacing:10.311000px;}
.ls2{letter-spacing:10.600200px;}
.lsa{letter-spacing:10.806600px;}
.ls9{letter-spacing:11.403000px;}
.ls21{letter-spacing:12.000000px;}
.ls1b{letter-spacing:12.322800px;}
.ls14{letter-spacing:12.562200px;}
.ls1{letter-spacing:12.711600px;}
.ls3{letter-spacing:13.176000px;}
.ls1c{letter-spacing:13.569600px;}
.ls13{letter-spacing:13.977600px;}
.lsc{letter-spacing:15.069600px;}
.ls17{letter-spacing:15.082200px;}
.ls10{letter-spacing:15.341400px;}
.ls20{letter-spacing:15.665400px;}
.ls1d{letter-spacing:15.969600px;}
.ls7{letter-spacing:16.245600px;}
.ls1e{letter-spacing:17.010000px;}
.ls1a{letter-spacing:17.366400px;}
.ls6{letter-spacing:17.556000px;}
.lsd{letter-spacing:17.572800px;}
.ls12{letter-spacing:17.604000px;}
.ls19{letter-spacing:17.965800px;}
.ls0{letter-spacing:18.441000px;}
.ls16{letter-spacing:19.002600px;}
.ls18{letter-spacing:20.007000px;}
.ls1f{letter-spacing:22.939200px;}
.ls11{letter-spacing:24.661800px;}
.lsf{letter-spacing:26.368200px;}
.ls22{letter-spacing:27.934200px;}
.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;}
}
.ws8f{word-spacing:-28.072800px;}
.wsf2{word-spacing:-27.969600px;}
.ws8d{word-spacing:-25.569600px;}
.ws9f{word-spacing:-13.500000px;}
.ws132{word-spacing:-12.441600px;}
.ws0{word-spacing:-12.000000px;}
.ws66{word-spacing:-10.500000px;}
.ws99{word-spacing:-9.681000px;}
.ws3{word-spacing:-9.000000px;}
.wse8{word-spacing:-1.603800px;}
.ws3a{word-spacing:-1.312200px;}
.wsd9{word-spacing:-1.177200px;}
.ws12b{word-spacing:-1.144800px;}
.ws131{word-spacing:-1.139400px;}
.ws63{word-spacing:-1.092000px;}
.ws10{word-spacing:-1.004400px;}
.ws89{word-spacing:-0.970200px;}
.wsc8{word-spacing:-0.853200px;}
.ws117{word-spacing:-0.837000px;}
.ws39{word-spacing:-0.804600px;}
.ws14{word-spacing:-0.783000px;}
.wsd3{word-spacing:-0.750600px;}
.ws34{word-spacing:-0.680400px;}
.ws47{word-spacing:-0.648000px;}
.ws13b{word-spacing:-0.615600px;}
.wsff{word-spacing:-0.599400px;}
.ws9a{word-spacing:-0.579600px;}
.ws10d{word-spacing:-0.529200px;}
.ws78{word-spacing:-0.340200px;}
.ws103{word-spacing:-0.275400px;}
.ws101{word-spacing:-0.259200px;}
.ws14d{word-spacing:-0.222600px;}
.ws8b{word-spacing:-0.189000px;}
.ws13e{word-spacing:-0.172800px;}
.ws4b{word-spacing:-0.135000px;}
.ws10f{word-spacing:-0.102600px;}
.ws2a{word-spacing:-0.054000px;}
.ws5{word-spacing:-0.048000px;}
.ws70{word-spacing:-0.042000px;}
.ws121{word-spacing:-0.016200px;}
.ws53{word-spacing:0.000000px;}
.ws36{word-spacing:0.064800px;}
.wse9{word-spacing:0.086400px;}
.wsc7{word-spacing:0.102600px;}
.ws7d{word-spacing:0.117600px;}
.ws7e{word-spacing:0.121800px;}
.ws83{word-spacing:0.138600px;}
.ws167{word-spacing:0.189000px;}
.ws1f{word-spacing:0.237600px;}
.ws86{word-spacing:0.306600px;}
.ws10a{word-spacing:0.307800px;}
.ws107{word-spacing:0.324000px;}
.ws1d{word-spacing:0.340200px;}
.ws13d{word-spacing:0.356400px;}
.ws1c{word-spacing:0.410400px;}
.ws8a{word-spacing:0.445200px;}
.ws158{word-spacing:0.495600px;}
.wsdd{word-spacing:0.610200px;}
.wsa{word-spacing:0.615600px;}
.ws10e{word-spacing:0.631800px;}
.wsc2{word-spacing:0.648000px;}
.wse2{word-spacing:0.680400px;}
.wsfe{word-spacing:0.712800px;}
.ws13f{word-spacing:0.734400px;}
.ws106{word-spacing:0.750600px;}
.ws3c{word-spacing:0.799200px;}
.wsf0{word-spacing:0.801600px;}
.wsb5{word-spacing:0.831600px;}
.wsb4{word-spacing:0.853200px;}
.ws72{word-spacing:0.903000px;}
.ws15b{word-spacing:0.907200px;}
.wsb2{word-spacing:0.918000px;}
.ws156{word-spacing:0.919800px;}
.ws123{word-spacing:0.955800px;}
.ws33{word-spacing:0.988200px;}
.ws62{word-spacing:1.159200px;}
.ws81{word-spacing:1.209600px;}
.wsba{word-spacing:1.314600px;}
.ws148{word-spacing:1.331400px;}
.ws13{word-spacing:1.333800px;}
.wsa0{word-spacing:1.344600px;}
.ws91{word-spacing:1.381800px;}
.ws17{word-spacing:1.382400px;}
.ws2c{word-spacing:1.414800px;}
.ws14a{word-spacing:1.415400px;}
.ws113{word-spacing:1.416000px;}
.wseb{word-spacing:1.431000px;}
.wsee{word-spacing:1.449600px;}
.ws44{word-spacing:1.549800px;}
.wsef{word-spacing:1.569600px;}
.wsc4{word-spacing:1.582200px;}
.ws68{word-spacing:1.587600px;}
.wsc0{word-spacing:1.603800px;}
.ws16a{word-spacing:1.688400px;}
.ws125{word-spacing:1.701000px;}
.ws9{word-spacing:1.760400px;}
.ws16{word-spacing:1.792800px;}
.ws6b{word-spacing:1.806000px;}
.wsa5{word-spacing:1.841400px;}
.ws15d{word-spacing:1.856400px;}
.ws2f{word-spacing:1.857600px;}
.ws16d{word-spacing:1.873200px;}
.ws129{word-spacing:1.873800px;}
.wsca{word-spacing:1.960200px;}
.ws12a{word-spacing:1.992600px;}
.ws157{word-spacing:1.995000px;}
.ws30{word-spacing:2.008800px;}
.ws96{word-spacing:2.016000px;}
.ws11a{word-spacing:2.025000px;}
.wsbb{word-spacing:2.062200px;}
.ws90{word-spacing:2.129400px;}
.wsaa{word-spacing:2.149200px;}
.ws111{word-spacing:2.165400px;}
.ws69{word-spacing:2.234400px;}
.wsbf{word-spacing:2.246400px;}
.ws13a{word-spacing:2.332800px;}
.ws84{word-spacing:2.402400px;}
.ws114{word-spacing:2.404800px;}
.ws93{word-spacing:2.469600px;}
.ws92{word-spacing:2.473800px;}
.ws170{word-spacing:2.490600px;}
.ws1b{word-spacing:2.505600px;}
.ws35{word-spacing:2.592000px;}
.ws151{word-spacing:2.641800px;}
.ws15{word-spacing:2.662200px;}
.ws173{word-spacing:2.709000px;}
.ws172{word-spacing:2.713200px;}
.wscb{word-spacing:2.727000px;}
.ws153{word-spacing:2.746800px;}
.wsbe{word-spacing:2.759400px;}
.ws3e{word-spacing:2.775600px;}
.ws142{word-spacing:2.814000px;}
.ws97{word-spacing:2.830800px;}
.ws19{word-spacing:2.845800px;}
.ws38{word-spacing:2.948400px;}
.ws5e{word-spacing:2.982000px;}
.wse3{word-spacing:2.997000px;}
.ws98{word-spacing:3.003000px;}
.ws7b{word-spacing:3.053400px;}
.ws4a{word-spacing:3.067200px;}
.ws14b{word-spacing:3.087000px;}
.ws112{word-spacing:3.100800px;}
.ws15f{word-spacing:3.120600px;}
.ws7c{word-spacing:3.137400px;}
.wsd6{word-spacing:3.304800px;}
.ws32{word-spacing:3.321000px;}
.ws16e{word-spacing:3.322200px;}
.wsfd{word-spacing:3.342600px;}
.wsa4{word-spacing:3.358800px;}
.ws119{word-spacing:3.391200px;}
.ws6a{word-spacing:3.393600px;}
.ws149{word-spacing:3.410400px;}
.ws46{word-spacing:3.423600px;}
.ws49{word-spacing:3.461400px;}
.wsec{word-spacing:3.475200px;}
.ws59{word-spacing:3.477600px;}
.ws154{word-spacing:3.481800px;}
.ws108{word-spacing:3.504600px;}
.ws109{word-spacing:3.510000px;}
.wsf{word-spacing:3.515400px;}
.wse1{word-spacing:3.526200px;}
.ws77{word-spacing:3.612000px;}
.wscc{word-spacing:3.612600px;}
.wsb{word-spacing:3.666600px;}
.ws6f{word-spacing:3.700200px;}
.wse7{word-spacing:3.715200px;}
.ws71{word-spacing:3.717000px;}
.ws7f{word-spacing:3.733800px;}
.wsed{word-spacing:3.734400px;}
.ws94{word-spacing:3.767400px;}
.ws104{word-spacing:3.801600px;}
.ws18{word-spacing:3.850200px;}
.wsd0{word-spacing:3.866400px;}
.ws1e{word-spacing:3.888000px;}
.ws11b{word-spacing:3.904200px;}
.ws176{word-spacing:3.906000px;}
.ws4{word-spacing:3.969600px;}
.ws136{word-spacing:3.974400px;}
.wsb7{word-spacing:3.985200px;}
.wsdc{word-spacing:4.023000px;}
.ws168{word-spacing:4.074000px;}
.wsb1{word-spacing:4.109400px;}
.ws175{word-spacing:4.124400px;}
.ws58{word-spacing:4.125600px;}
.ws174{word-spacing:4.128600px;}
.ws60{word-spacing:4.229400px;}
.ws11c{word-spacing:4.309200px;}
.ws143{word-spacing:4.313400px;}
.ws6d{word-spacing:4.363800px;}
.wsfa{word-spacing:4.433400px;}
.ws8{word-spacing:4.465800px;}
.ws5d{word-spacing:4.481400px;}
.ws88{word-spacing:4.536000px;}
.ws8c{word-spacing:4.569600px;}
.ws126{word-spacing:4.584600px;}
.ws95{word-spacing:4.586400px;}
.ws178{word-spacing:4.603200px;}
.ws177{word-spacing:4.611600px;}
.ws76{word-spacing:4.704000px;}
.ws169{word-spacing:4.737600px;}
.wsa7{word-spacing:4.822200px;}
.ws24{word-spacing:4.876200px;}
.wsa3{word-spacing:4.892400px;}
.ws23{word-spacing:4.908600px;}
.ws14e{word-spacing:4.960200px;}
.ws6c{word-spacing:4.993800px;}
.ws73{word-spacing:5.077800px;}
.wsd{word-spacing:5.097600px;}
.wsf5{word-spacing:5.130000px;}
.ws26{word-spacing:5.265000px;}
.ws50{word-spacing:5.319000px;}
.wsd4{word-spacing:5.335200px;}
.ws16b{word-spacing:5.367600px;}
.wse0{word-spacing:5.400000px;}
.ws138{word-spacing:5.421600px;}
.ws14c{word-spacing:5.439000px;}
.ws7{word-spacing:5.471400px;}
.wsc3{word-spacing:5.502600px;}
.ws48{word-spacing:5.524200px;}
.ws61{word-spacing:5.539800px;}
.wsa6{word-spacing:5.572800px;}
.ws171{word-spacing:5.657400px;}
.ws67{word-spacing:5.745600px;}
.wsab{word-spacing:5.761800px;}
.ws3f{word-spacing:5.794200px;}
.wsde{word-spacing:5.826600px;}
.ws147{word-spacing:5.964000px;}
.ws146{word-spacing:5.968200px;}
.ws5c{word-spacing:6.018600px;}
.ws12c{word-spacing:6.134400px;}
.ws16c{word-spacing:6.169800px;}
.ws12e{word-spacing:6.204600px;}
.ws160{word-spacing:6.207600px;}
.wsa8{word-spacing:6.220800px;}
.ws85{word-spacing:6.274800px;}
.ws15c{word-spacing:6.325200px;}
.wsfc{word-spacing:6.355800px;}
.ws11f{word-spacing:6.372000px;}
.ws54{word-spacing:6.409800px;}
.wsc{word-spacing:6.463800px;}
.wsce{word-spacing:6.501600px;}
.wscf{word-spacing:6.512400px;}
.ws137{word-spacing:6.582600px;}
.wsa1{word-spacing:6.631200px;}
.ws118{word-spacing:6.712200px;}
.ws25{word-spacing:6.733800px;}
.ws74{word-spacing:6.766200px;}
.ws4c{word-spacing:6.798600px;}
.ws16f{word-spacing:6.816600px;}
.wsd8{word-spacing:6.852600px;}
.ws10b{word-spacing:6.868800px;}
.ws51{word-spacing:6.888000px;}
.wsf4{word-spacing:6.917400px;}
.ws9d{word-spacing:6.939000px;}
.ws141{word-spacing:6.955200px;}
.ws1{word-spacing:6.973200px;}
.ws2{word-spacing:6.981000px;}
.ws102{word-spacing:7.003800px;}
.ws64{word-spacing:7.056000px;}
.wse{word-spacing:7.057800px;}
.ws8e{word-spacing:7.072800px;}
.ws55{word-spacing:7.106400px;}
.ws7a{word-spacing:7.295400px;}
.wsa9{word-spacing:7.327800px;}
.ws134{word-spacing:7.333200px;}
.ws15e{word-spacing:7.345800px;}
.wsf8{word-spacing:7.398000px;}
.ws152{word-spacing:7.429800px;}
.ws150{word-spacing:7.450800px;}
.ws159{word-spacing:7.484400px;}
.ws162{word-spacing:7.551600px;}
.ws161{word-spacing:7.560000px;}
.ws166{word-spacing:7.585200px;}
.ws124{word-spacing:7.587000px;}
.ws165{word-spacing:7.589400px;}
.ws10c{word-spacing:7.603200px;}
.wsdf{word-spacing:7.651800px;}
.ws29{word-spacing:7.705800px;}
.ws4e{word-spacing:7.722000px;}
.ws21{word-spacing:7.840800px;}
.ws82{word-spacing:7.841400px;}
.ws130{word-spacing:7.862400px;}
.ws87{word-spacing:7.925400px;}
.wsd5{word-spacing:7.943400px;}
.ws6{word-spacing:7.958400px;}
.wse6{word-spacing:7.959600px;}
.ws11d{word-spacing:8.008200px;}
.ws120{word-spacing:8.029800px;}
.ws4d{word-spacing:8.062200px;}
.wsd2{word-spacing:8.094600px;}
.ws43{word-spacing:8.148600px;}
.ws12{word-spacing:8.164800px;}
.ws40{word-spacing:8.229600px;}
.ws11e{word-spacing:8.386200px;}
.ws15a{word-spacing:8.437800px;}
.wsd7{word-spacing:8.505000px;}
.ws127{word-spacing:8.521200px;}
.ws164{word-spacing:8.538600px;}
.wsda{word-spacing:8.575200px;}
.wse4{word-spacing:8.742600px;}
.ws12f{word-spacing:8.834400px;}
.ws52{word-spacing:8.966400px;}
.ws5b{word-spacing:9.151800px;}
.wsf3{word-spacing:9.153000px;}
.ws5a{word-spacing:9.156000px;}
.wsa2{word-spacing:9.374400px;}
.ws110{word-spacing:9.444600px;}
.wsea{word-spacing:9.595800px;}
.ws9c{word-spacing:9.649800px;}
.ws57{word-spacing:9.666000px;}
.ws27{word-spacing:9.768600px;}
.wsc5{word-spacing:9.801000px;}
.wsb6{word-spacing:9.817200px;}
.wse5{word-spacing:9.833400px;}
.ws145{word-spacing:9.903600px;}
.ws45{word-spacing:9.952200px;}
.ws79{word-spacing:10.038000px;}
.ws3d{word-spacing:10.054800px;}
.ws11{word-spacing:10.179000px;}
.ws75{word-spacing:10.243800px;}
.ws128{word-spacing:10.276200px;}
.ws20{word-spacing:10.330200px;}
.wscd{word-spacing:10.362600px;}
.ws163{word-spacing:10.466400px;}
.ws3b{word-spacing:10.497600px;}
.ws140{word-spacing:10.500000px;}
.ws116{word-spacing:10.617600px;}
.wsd1{word-spacing:10.719000px;}
.ws9b{word-spacing:10.756200px;}
.wsad{word-spacing:10.789200px;}
.ws14f{word-spacing:10.806600px;}
.wsb0{word-spacing:11.161800px;}
.ws155{word-spacing:11.218200px;}
.ws4f{word-spacing:11.264400px;}
.ws80{word-spacing:11.302200px;}
.ws65{word-spacing:11.541600px;}
.ws105{word-spacing:11.658600px;}
.ws37{word-spacing:11.809800px;}
.ws1a{word-spacing:11.880000px;}
.wsf1{word-spacing:11.947200px;}
.wsdb{word-spacing:11.998800px;}
.ws6e{word-spacing:12.104400px;}
.ws28{word-spacing:12.409200px;}
.ws41{word-spacing:12.441600px;}
.wsc6{word-spacing:12.495600px;}
.ws2d{word-spacing:12.646800px;}
.ws12d{word-spacing:12.652200px;}
.wsc1{word-spacing:12.749400px;}
.ws56{word-spacing:12.868200px;}
.ws31{word-spacing:12.954600px;}
.ws22{word-spacing:13.003200px;}
.ws139{word-spacing:13.095000px;}
.ws5f{word-spacing:13.158600px;}
.wsf6{word-spacing:13.429800px;}
.wsae{word-spacing:13.959000px;}
.ws133{word-spacing:14.013000px;}
.wsc9{word-spacing:14.045400px;}
.wsb3{word-spacing:14.077800px;}
.ws42{word-spacing:14.164200px;}
.ws2e{word-spacing:14.401800px;}
.ws13c{word-spacing:14.434200px;}
.ws144{word-spacing:14.574000px;}
.ws100{word-spacing:14.574600px;}
.wsac{word-spacing:15.049800px;}
.wsf7{word-spacing:15.103800px;}
.ws122{word-spacing:15.201000px;}
.wsfb{word-spacing:15.849000px;}
.wsf9{word-spacing:16.005600px;}
.wsaf{word-spacing:17.847000px;}
.ws9e{word-spacing:27.712800px;}
.ws2b{word-spacing:28.787400px;}
.ws135{word-spacing:29.149200px;}
.wsbc{word-spacing:32.076000px;}
.wsbd{word-spacing:32.097600px;}
.ws115{word-spacing:312.734400px;}
.wsb9{word-spacing:337.449600px;}
.wsb8{word-spacing:348.753600px;}
._6{margin-left:-17.543400px;}
._5{margin-left:-15.069600px;}
._2{margin-left:-4.854600px;}
._4{margin-left:-3.767400px;}
._17{margin-left:-1.053000px;}
._3{width:12.000000px;}
._13{width:15.969600px;}
._7{width:24.000000px;}
._1{width:47.995200px;}
._10{width:83.947200px;}
._14{width:93.861600px;}
._11{width:108.000000px;}
._16{width:200.611200px;}
._15{width:228.643200px;}
._d{width:349.300800px;}
._e{width:360.753600px;}
._9{width:383.972400px;}
._8{width:406.501200px;}
._c{width:651.009600px;}
._b{width:658.161600px;}
._a{width:812.074200px;}
._0{width:1366.114200px;}
._12{width:2028.667200px;}
._f{width:2152.903200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.000000px;}
.fs8{font-size:30.000000px;}
.fs6{font-size:33.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:58.500000px;}
.y18f{bottom:88.499100px;}
.y6a{bottom:88.500000px;}
.y130{bottom:88.500150px;}
.y66{bottom:88.500300px;}
.ye7{bottom:88.500600px;}
.yac{bottom:88.502550px;}
.y114{bottom:88.503900px;}
.y163{bottom:88.513500px;}
.y18e{bottom:100.499550px;}
.y69{bottom:102.000000px;}
.yab{bottom:102.002400px;}
.y21f{bottom:103.480650px;}
.y1cf{bottom:103.498500px;}
.ye6{bottom:105.000300px;}
.y113{bottom:105.106200px;}
.y12f{bottom:105.256350px;}
.y162{bottom:105.285900px;}
.y65{bottom:105.324000px;}
.y18d{bottom:112.495800px;}
.y21e{bottom:115.481100px;}
.y1ce{bottom:115.498950px;}
.y68{bottom:115.500000px;}
.yaa{bottom:115.502250px;}
.y18c{bottom:116.625000px;}
.ye5{bottom:121.500000px;}
.ye3{bottom:121.500900px;}
.y112{bottom:121.708500px;}
.y12e{bottom:122.012550px;}
.y161{bottom:122.058300px;}
.y64{bottom:122.147700px;}
.y18b{bottom:124.495650px;}
.ye4{bottom:127.125000px;}
.y21d{bottom:127.481550px;}
.y1cd{bottom:127.499400px;}
.y18a{bottom:128.625000px;}
.y67{bottom:129.000000px;}
.ya9{bottom:129.002100px;}
.ye2{bottom:138.000600px;}
.y111{bottom:138.310800px;}
.y12d{bottom:138.768750px;}
.y160{bottom:138.826650px;}
.y15e{bottom:138.831300px;}
.y63{bottom:138.967350px;}
.y61{bottom:138.974700px;}
.y1cc{bottom:139.499850px;}
.y21c{bottom:139.975500px;}
.ya8{bottom:142.501950px;}
.y15f{bottom:144.456000px;}
.y62{bottom:144.596550px;}
.y188{bottom:147.000000px;}
.y189{bottom:151.875000px;}
.y21b{bottom:151.975950px;}
.ye1{bottom:154.500300px;}
.y110{bottom:154.913100px;}
.y12c{bottom:155.524950px;}
.y15d{bottom:155.603700px;}
.y60{bottom:155.798400px;}
.ya7{bottom:156.001800px;}
.y1cb{bottom:156.988650px;}
.y186{bottom:160.500000px;}
.y21a{bottom:163.976400px;}
.y187{bottom:165.375000px;}
.ya6{bottom:169.501650px;}
.ye0{bottom:171.000000px;}
.yde{bottom:171.000900px;}
.y10f{bottom:171.515400px;}
.y12b{bottom:172.281150px;}
.y15b{bottom:172.378200px;}
.y5f{bottom:172.622100px;}
.y184{bottom:174.000000px;}
.y219{bottom:176.470350px;}
.ydf{bottom:176.625000px;}
.y15c{bottom:178.001400px;}
.y185{bottom:178.875000px;}
.y43{bottom:181.502400px;}
.ya5{bottom:183.001500px;}
.y1ca{bottom:183.818250px;}
.y182{bottom:187.500000px;}
.ydd{bottom:187.500600px;}
.y10e{bottom:188.117700px;}
.y218{bottom:188.470800px;}
.y12a{bottom:189.037350px;}
.y15a{bottom:189.150600px;}
.y5e{bottom:189.445800px;}
.y183{bottom:192.375000px;}
.ya4{bottom:196.501350px;}
.y1c9{bottom:197.318250px;}
.y42{bottom:198.002100px;}
.y217{bottom:200.471250px;}
.y180{bottom:201.000000px;}
.ydc{bottom:204.000300px;}
.y10d{bottom:204.715950px;}
.y10b{bottom:204.718500px;}
.y129{bottom:205.793550px;}
.y181{bottom:205.875000px;}
.y159{bottom:205.923000px;}
.y5d{bottom:206.269500px;}
.ya3{bottom:210.001200px;}
.y10c{bottom:210.345150px;}
.y216{bottom:212.965200px;}
.y17e{bottom:214.500000px;}
.y41{bottom:214.501800px;}
.y17f{bottom:219.375000px;}
.y1c8{bottom:219.818250px;}
.ydb{bottom:220.500000px;}
.yd9{bottom:220.500300px;}
.y10a{bottom:221.320800px;}
.y128{bottom:222.549750px;}
.y158{bottom:222.695400px;}
.y5c{bottom:223.093200px;}
.ya2{bottom:223.501050px;}
.y215{bottom:224.965650px;}
.yda{bottom:226.125000px;}
.y17c{bottom:228.000000px;}
.y40{bottom:231.001500px;}
.y17d{bottom:232.875000px;}
.y214{bottom:236.966100px;}
.yd8{bottom:237.000000px;}
.ya1{bottom:237.000900px;}
.yd6{bottom:237.003300px;}
.y109{bottom:237.923100px;}
.y127{bottom:239.305950px;}
.y157{bottom:239.467800px;}
.y5b{bottom:239.916900px;}
.y17a{bottom:241.500000px;}
.yd7{bottom:242.625000px;}
.y17b{bottom:246.375000px;}
.y3f{bottom:247.501200px;}
.y213{bottom:248.966550px;}
.ya0{bottom:250.500750px;}
.y1c7{bottom:253.500900px;}
.yd5{bottom:253.503000px;}
.y108{bottom:254.525400px;}
.y178{bottom:255.000000px;}
.y126{bottom:256.062150px;}
.y156{bottom:256.240200px;}
.y5a{bottom:256.740600px;}
.y179{bottom:259.875000px;}
.y212{bottom:261.460500px;}
.y9f{bottom:264.000600px;}
.y3e{bottom:264.000900px;}
.y176{bottom:268.500000px;}
.y1c6{bottom:270.000600px;}
.yd4{bottom:270.002700px;}
.y107{bottom:271.127700px;}
.y125{bottom:272.818350px;}
.y155{bottom:273.008550px;}
.y153{bottom:273.012900px;}
.y177{bottom:273.375000px;}
.y211{bottom:273.460950px;}
.y59{bottom:273.564300px;}
.y9e{bottom:277.500450px;}
.y154{bottom:278.637750px;}
.y3d{bottom:280.500600px;}
.y174{bottom:282.000000px;}
.y210{bottom:285.938100px;}
.y1c5{bottom:286.500300px;}
.yd3{bottom:286.502400px;}
.y175{bottom:286.875000px;}
.y106{bottom:287.730000px;}
.y124{bottom:289.574550px;}
.y152{bottom:289.781250px;}
.y150{bottom:289.788450px;}
.y58{bottom:290.388000px;}
.y9d{bottom:291.000300px;}
.y151{bottom:295.410450px;}
.y172{bottom:295.500000px;}
.y3c{bottom:297.000300px;}
.y20f{bottom:297.938550px;}
.y173{bottom:300.375000px;}
.y1c4{bottom:303.000000px;}
.y1c2{bottom:303.000900px;}
.yd2{bottom:303.002100px;}
.y105{bottom:304.332300px;}
.y9c{bottom:304.500150px;}
.y123{bottom:306.346950px;}
.y14f{bottom:306.560850px;}
.y57{bottom:307.211700px;}
.y1c3{bottom:308.625000px;}
.y20e{bottom:309.939000px;}
.y3b{bottom:313.500000px;}
.y9a{bottom:315.750000px;}
.y9b{bottom:318.000000px;}
.y99{bottom:318.001200px;}
.y171{bottom:318.745800px;}
.y16f{bottom:318.750150px;}
.y1c1{bottom:319.500600px;}
.yd1{bottom:319.501800px;}
.y104{bottom:320.934600px;}
.y20d{bottom:321.939450px;}
.y170{bottom:322.875000px;}
.y122{bottom:323.119350px;}
.y14e{bottom:323.333250px;}
.y56{bottom:324.035400px;}
.y16c{bottom:329.437500px;}
.y39{bottom:330.005400px;}
.y98{bottom:331.501050px;}
.y16d{bottom:333.562500px;}
.y20c{bottom:334.416600px;}
.y3a{bottom:335.625000px;}
.y1c0{bottom:336.000300px;}
.yd0{bottom:336.001500px;}
.y103{bottom:337.554450px;}
.y121{bottom:339.891750px;}
.y14d{bottom:340.105650px;}
.y16e{bottom:340.125000px;}
.y55{bottom:340.859100px;}
.y97{bottom:345.000900px;}
.y20b{bottom:346.417050px;}
.y38{bottom:346.505100px;}
.y1bf{bottom:352.500000px;}
.ycf{bottom:352.501200px;}
.y1bd{bottom:352.502400px;}
.y102{bottom:354.174300px;}
.y120{bottom:356.664150px;}
.y14c{bottom:356.878050px;}
.y54{bottom:357.682800px;}
.y1be{bottom:358.125000px;}
.y20a{bottom:358.417500px;}
.y96{bottom:358.500750px;}
.y16b{bottom:363.000300px;}
.y37{bottom:363.004800px;}
.yce{bottom:369.000900px;}
.y1bc{bottom:369.002100px;}
.y209{bottom:370.417950px;}
.y101{bottom:370.794150px;}
.y95{bottom:372.000600px;}
.y11f{bottom:373.436550px;}
.y14b{bottom:373.650450px;}
.y53{bottom:374.506500px;}
.y16a{bottom:376.500300px;}
.y36{bottom:379.504500px;}
.y208{bottom:382.895100px;}
.y94{bottom:385.500450px;}
.ycd{bottom:385.500600px;}
.y1bb{bottom:385.501800px;}
.y100{bottom:387.414000px;}
.y11e{bottom:390.208950px;}
.y14a{bottom:390.422850px;}
.y52{bottom:391.330200px;}
.y207{bottom:394.895550px;}
.y35{bottom:396.004200px;}
.y93{bottom:399.000300px;}
.ycc{bottom:402.000300px;}
.y1ba{bottom:402.001500px;}
.yff{bottom:404.028450px;}
.yfd{bottom:404.033250px;}
.y206{bottom:406.896000px;}
.y11d{bottom:406.977300px;}
.y11b{bottom:406.982400px;}
.y149{bottom:407.212800px;}
.y51{bottom:408.153900px;}
.yfe{bottom:409.657650px;}
.y92{bottom:412.500150px;}
.y34{bottom:412.503900px;}
.y11c{bottom:412.606500px;}
.ycb{bottom:418.500000px;}
.yc9{bottom:418.500600px;}
.y1b9{bottom:418.501200px;}
.y205{bottom:419.373150px;}
.yfc{bottom:420.647700px;}
.yfa{bottom:420.648900px;}
.y11a{bottom:423.754800px;}
.y148{bottom:424.002750px;}
.yca{bottom:424.125000px;}
.y50{bottom:424.977600px;}
.y91{bottom:426.000000px;}
.y8f{bottom:426.000750px;}
.yfb{bottom:426.277050px;}
.y13f{bottom:426.322050px;}
.y33{bottom:429.003600px;}
.y90{bottom:430.125000px;}
.y204{bottom:431.373600px;}
.yc8{bottom:435.000300px;}
.y1b8{bottom:435.000900px;}
.yf9{bottom:437.268750px;}
.y8e{bottom:439.500600px;}
.y119{bottom:440.527200px;}
.y147{bottom:440.792700px;}
.y4f{bottom:441.801300px;}
.y13e{bottom:442.821750px;}
.y203{bottom:443.374050px;}
.y32{bottom:445.503300px;}
.yc7{bottom:451.500000px;}
.y1b7{bottom:451.500600px;}
.y8d{bottom:453.000450px;}
.yf8{bottom:453.888600px;}
.y202{bottom:455.374500px;}
.y118{bottom:457.299600px;}
.y146{bottom:457.582650px;}
.y4e{bottom:458.625000px;}
.y13d{bottom:459.321450px;}
.y31{bottom:462.003000px;}
.y8c{bottom:466.500300px;}
.y201{bottom:467.851650px;}
.y1b6{bottom:468.000300px;}
.yc5{bottom:468.001650px;}
.yf7{bottom:470.508450px;}
.yc6{bottom:473.625000px;}
.y117{bottom:474.072000px;}
.y145{bottom:474.372600px;}
.y4d{bottom:475.448700px;}
.y13c{bottom:475.821150px;}
.y30{bottom:478.502700px;}
.y200{bottom:479.852100px;}
.y8b{bottom:480.000150px;}
.y1b5{bottom:484.500000px;}
.yc4{bottom:484.501350px;}
.y1b3{bottom:484.510500px;}
.yf6{bottom:487.128300px;}
.y1b4{bottom:490.125000px;}
.y116{bottom:490.844400px;}
.y144{bottom:491.162550px;}
.y89{bottom:491.250000px;}
.y1ff{bottom:491.852550px;}
.y4c{bottom:492.272400px;}
.y13b{bottom:492.320850px;}
.y8a{bottom:493.500000px;}
.y88{bottom:493.500900px;}
.y2f{bottom:495.002400px;}
.yc3{bottom:501.001050px;}
.y1b2{bottom:501.010200px;}
.yf5{bottom:503.748150px;}
.y1fe{bottom:504.329700px;}
.y87{bottom:507.000750px;}
.y143{bottom:507.952500px;}
.y13a{bottom:508.820550px;}
.y4b{bottom:509.113650px;}
.y2e{bottom:511.502100px;}
.y1fd{bottom:516.330150px;}
.yc2{bottom:517.500750px;}
.y1b1{bottom:517.509900px;}
.y115{bottom:520.367550px;}
.yf4{bottom:520.368000px;}
.y86{bottom:520.500600px;}
.y142{bottom:524.742450px;}
.y139{bottom:525.320250px;}
.y4a{bottom:525.954900px;}
.y2d{bottom:528.001800px;}
.y1fc{bottom:528.330600px;}
.y85{bottom:534.000450px;}
.y1b0{bottom:534.009600px;}
.y1fb{bottom:540.807750px;}
.y141{bottom:541.532400px;}
.y138{bottom:541.819950px;}
.y49{bottom:542.796150px;}
.y2c{bottom:544.501500px;}
.y84{bottom:547.500300px;}
.yc1{bottom:550.500150px;}
.y1af{bottom:550.509300px;}
.y1fa{bottom:552.808200px;}
.y137{bottom:558.319650px;}
.y140{bottom:558.322350px;}
.y48{bottom:559.637400px;}
.y83{bottom:561.000150px;}
.y2b{bottom:561.001200px;}
.y1f9{bottom:564.808650px;}
.yc0{bottom:566.999850px;}
.y1ae{bottom:567.009000px;}
.y82{bottom:574.500000px;}
.y80{bottom:574.501800px;}
.y47{bottom:576.478650px;}
.y1f8{bottom:577.285800px;}
.y2a{bottom:577.500900px;}
.y81{bottom:578.625000px;}
.y1ad{bottom:583.508700px;}
.y7f{bottom:588.001650px;}
.y1f7{bottom:589.286250px;}
.y136{bottom:589.368000px;}
.ybf{bottom:592.500000px;}
.y46{bottom:593.319900px;}
.y29{bottom:594.000600px;}
.y1ac{bottom:600.008400px;}
.y7e{bottom:601.501500px;}
.y1f6{bottom:601.763400px;}
.y135{bottom:602.868000px;}
.y169{bottom:608.855100px;}
.y167{bottom:608.859300px;}
.y45{bottom:610.161150px;}
.y28{bottom:610.500300px;}
.y168{bottom:613.734300px;}
.y1f5{bottom:613.763850px;}
.y7d{bottom:615.001350px;}
.y134{bottom:616.368000px;}
.y1ab{bottom:616.508100px;}
.y166{bottom:622.359300px;}
.y1f4{bottom:625.764300px;}
.y27{bottom:627.000000px;}
.y44{bottom:627.002400px;}
.y7c{bottom:628.501200px;}
.y133{bottom:629.868000px;}
.y1aa{bottom:633.007800px;}
.y165{bottom:635.859300px;}
.ybe{bottom:637.880400px;}
.y1f3{bottom:638.241450px;}
.y7b{bottom:642.001050px;}
.y132{bottom:643.368000px;}
.y164{bottom:649.359300px;}
.y1a9{bottom:649.507500px;}
.y1f2{bottom:650.241900px;}
.ybd{bottom:651.380250px;}
.y7a{bottom:655.500900px;}
.y131{bottom:656.868000px;}
.y1f1{bottom:662.242350px;}
.ybc{bottom:664.880100px;}
.y1a8{bottom:666.007200px;}
.y26{bottom:669.000450px;}
.y79{bottom:669.000750px;}
.y1f0{bottom:674.719500px;}
.ybb{bottom:678.379950px;}
.y78{bottom:682.500600px;}
.y1a7{bottom:682.506900px;}
.y25{bottom:684.000300px;}
.y1ef{bottom:686.719950px;}
.yba{bottom:691.879800px;}
.y77{bottom:696.000450px;}
.y1ee{bottom:698.720400px;}
.y24{bottom:699.000150px;}
.y1a6{bottom:699.006600px;}
.yb9{bottom:705.379650px;}
.y1ed{bottom:711.197550px;}
.y23{bottom:714.000000px;}
.y76{bottom:715.500000px;}
.y1a5{bottom:715.506300px;}
.yb8{bottom:718.879500px;}
.y1ec{bottom:723.198000px;}
.y22{bottom:728.995800px;}
.y20{bottom:729.000000px;}
.y1a4{bottom:732.006000px;}
.yb7{bottom:732.379350px;}
.y21{bottom:734.625000px;}
.y1eb{bottom:735.198450px;}
.y1f{bottom:743.995800px;}
.y1d{bottom:744.000600px;}
.yb6{bottom:745.879200px;}
.y1ea{bottom:747.675600px;}
.y1a3{bottom:748.505700px;}
.y1e{bottom:749.625000px;}
.y75{bottom:750.375000px;}
.y73{bottom:750.377100px;}
.y74{bottom:756.000000px;}
.y1c{bottom:759.000450px;}
.yb5{bottom:759.379050px;}
.y1e9{bottom:759.676050px;}
.y1a2{bottom:765.005400px;}
.y72{bottom:766.876800px;}
.y1e8{bottom:771.676500px;}
.yb4{bottom:772.878900px;}
.y1b{bottom:774.000300px;}
.y1a1{bottom:781.505100px;}
.y71{bottom:783.376500px;}
.y1e7{bottom:784.153650px;}
.yb3{bottom:786.378750px;}
.y1a{bottom:789.000150px;}
.y1e6{bottom:796.153050px;}
.y1a0{bottom:798.004800px;}
.y70{bottom:799.876200px;}
.yb2{bottom:799.878600px;}
.y19{bottom:804.000000px;}
.y1e5{bottom:808.152450px;}
.yb1{bottom:813.378450px;}
.y19f{bottom:814.504500px;}
.y6f{bottom:816.375900px;}
.y18{bottom:818.995800px;}
.y16{bottom:819.000300px;}
.y1e4{bottom:820.629600px;}
.y17{bottom:824.625000px;}
.yb0{bottom:826.878300px;}
.y19e{bottom:831.004200px;}
.y1e3{bottom:832.630050px;}
.y6e{bottom:832.875600px;}
.y15{bottom:834.000150px;}
.yaf{bottom:840.378150px;}
.y1e2{bottom:844.630500px;}
.y19d{bottom:847.503900px;}
.y14{bottom:849.000000px;}
.y6d{bottom:849.375300px;}
.yae{bottom:853.878000px;}
.y1e1{bottom:857.107650px;}
.y13{bottom:863.995800px;}
.y11{bottom:864.000000px;}
.y19c{bottom:864.003600px;}
.y6c{bottom:865.875000px;}
.yad{bottom:867.377850px;}
.y1e0{bottom:869.108100px;}
.y12{bottom:869.625000px;}
.y10{bottom:878.995800px;}
.ye{bottom:879.000150px;}
.y19b{bottom:880.503300px;}
.y1df{bottom:881.108550px;}
.yf{bottom:884.625000px;}
.y1de{bottom:893.109000px;}
.yd{bottom:894.000000px;}
.y19a{bottom:897.003000px;}
.y1dd{bottom:905.586150px;}
.y199{bottom:913.502700px;}
.yf3{bottom:916.124100px;}
.y1dc{bottom:917.586600px;}
.yc{bottom:926.250000px;}
.yf2{bottom:928.124550px;}
.y1db{bottom:929.587050px;}
.y198{bottom:930.002400px;}
.yf1{bottom:940.125000px;}
.y1da{bottom:942.064200px;}
.yf0{bottom:944.250000px;}
.y197{bottom:946.502100px;}
.yb{bottom:952.500000px;}
.y1d9{bottom:954.064650px;}
.yef{bottom:960.000000px;}
.yee{bottom:962.625000px;}
.y196{bottom:963.001800px;}
.y1d8{bottom:966.065100px;}
.ya{bottom:967.495800px;}
.y8{bottom:967.500000px;}
.y9{bottom:973.125000px;}
.y1d7{bottom:978.542250px;}
.y195{bottom:979.501500px;}
.yed{bottom:989.625000px;}
.y7{bottom:989.995800px;}
.y5{bottom:990.000000px;}
.y1d6{bottom:990.542700px;}
.y194{bottom:996.001200px;}
.y6{bottom:997.125000px;}
.y1d5{bottom:1002.543150px;}
.yec{bottom:1003.125000px;}
.y193{bottom:1012.500900px;}
.y1d4{bottom:1015.020300px;}
.yeb{bottom:1016.625000px;}
.y4{bottom:1018.500000px;}
.y1d3{bottom:1027.020750px;}
.y192{bottom:1029.000600px;}
.y1d2{bottom:1039.021200px;}
.yea{bottom:1039.875000px;}
.y191{bottom:1045.500300px;}
.y1d1{bottom:1051.498350px;}
.y190{bottom:1062.000000px;}
.ye8{bottom:1062.750000px;}
.y1d0{bottom:1063.498800px;}
.ye9{bottom:1067.625000px;}
.y3{bottom:1071.750000px;}
.y2{bottom:1085.250000px;}
.y1{bottom:1098.750000px;}
.he{height:19.656000px;}
.hb{height:20.682000px;}
.hc{height:21.840000px;}
.h8{height:22.968000px;}
.hd{height:22.980000px;}
.h6{height:25.278000px;}
.ha{height:29.232000px;}
.h4{height:32.172000px;}
.h10{height:33.408000px;}
.h1{height:36.768000px;}
.h7{height:37.584000px;}
.h5{height:39.312000px;}
.h9{height:41.364000px;}
.hf{height:41.380200px;}
.h3{height:50.556000px;}
.h2{height:73.536000px;}
.h0{height:1180.500000px;}
.w0{width:880.500000px;}
.x0{left:0.000000px;}
.x1{left:64.717350px;}
.x69{left:69.967800px;}
.x2b{left:75.216750px;}
.x27{left:76.717350px;}
.x21{left:78.217350px;}
.x30{left:79.239000px;}
.x61{left:82.041900px;}
.x6a{left:83.092800px;}
.x47{left:84.995100px;}
.x29{left:87.958350px;}
.x5b{left:90.136800px;}
.x31{left:93.787050px;}
.x64{left:103.169550px;}
.x5c{left:108.440100px;}
.x4a{left:113.878650px;}
.x32{left:116.982600px;}
.x13{left:118.717350px;}
.x2{left:121.129200px;}
.x4b{left:122.900100px;}
.x12{left:132.217350px;}
.x33{left:135.655950px;}
.x2e{left:144.739500px;}
.x43{left:154.751400px;}
.x59{left:157.261500px;}
.x2f{left:160.192350px;}
.x5a{left:165.754800px;}
.x2a{left:172.597950px;}
.x67{left:179.514150px;}
.x11{left:185.607900px;}
.x5f{left:195.228300px;}
.xc{left:196.887750px;}
.x68{left:209.786850px;}
.x3{left:239.232900px;}
.x1d{left:243.760350px;}
.x1e{left:251.720700px;}
.x62{left:266.927850px;}
.x2c{left:271.215000px;}
.x63{left:276.916650px;}
.x60{left:277.968750px;}
.x2d{left:279.729600px;}
.x4c{left:294.096000px;}
.x4{left:296.234850px;}
.x1f{left:301.727100px;}
.x4d{left:303.688500px;}
.x1b{left:306.794850px;}
.x5{left:308.102550px;}
.x20{left:309.687300px;}
.x1c{left:315.283650px;}
.xd{left:323.869350px;}
.xe{left:333.610950px;}
.x10{left:339.481500px;}
.x65{left:347.844600px;}
.x16{left:349.885800px;}
.x17{left:354.931350px;}
.x66{left:360.079050px;}
.x4e{left:370.092300px;}
.x4f{left:384.934800px;}
.x48{left:393.330900px;}
.x6{left:401.253150px;}
.x49{left:403.332450px;}
.x7{left:413.120850px;}
.x22{left:414.301200px;}
.x5d{left:416.539950px;}
.x34{left:418.054350px;}
.x5e{left:420.723000px;}
.x35{left:422.179650px;}
.x28{left:426.217350px;}
.x23{left:451.717800px;}
.x6c{left:456.966300px;}
.x36{left:462.217200px;}
.x24{left:465.217800px;}
.x6b{left:470.091300px;}
.x39{left:480.297000px;}
.x3a{left:489.382350px;}
.xf{left:498.387300px;}
.x8{left:508.547100px;}
.x9{left:529.977000px;}
.x45{left:543.395400px;}
.x53{left:545.216100px;}
.x46{left:547.895700px;}
.x54{left:554.719050px;}
.x25{left:567.731100px;}
.x14{left:574.196700px;}
.x26{left:578.371800px;}
.x15{left:582.506400px;}
.x50{left:589.854000px;}
.x37{left:601.201650px;}
.x3b{left:612.399600px;}
.xa{left:622.615050px;}
.x3c{left:623.815800px;}
.xb{left:628.989750px;}
.x18{left:650.465400px;}
.x19{left:660.385950px;}
.x55{left:665.128050px;}
.x56{left:673.829850px;}
.x51{left:690.047850px;}
.x52{left:698.378850px;}
.x3d{left:704.610600px;}
.x3e{left:714.262800px;}
.x44{left:717.314550px;}
.x41{left:733.151850px;}
.x3f{left:741.645450px;}
.x42{left:744.231600px;}
.x1a{left:752.553750px;}
.x40{left:753.790350px;}
.x57{left:756.869700px;}
.x58{left:766.036050px;}
.x38{left:806.519850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.940800pt;}
.ls15{letter-spacing:-0.728000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002400pt;}
.lse{letter-spacing:7.365867pt;}
.lsb{letter-spacing:9.165333pt;}
.ls2{letter-spacing:9.422400pt;}
.lsa{letter-spacing:9.605867pt;}
.ls9{letter-spacing:10.136000pt;}
.ls21{letter-spacing:10.666667pt;}
.ls1b{letter-spacing:10.953600pt;}
.ls14{letter-spacing:11.166400pt;}
.ls1{letter-spacing:11.299200pt;}
.ls3{letter-spacing:11.712000pt;}
.ls1c{letter-spacing:12.061867pt;}
.ls13{letter-spacing:12.424533pt;}
.lsc{letter-spacing:13.395200pt;}
.ls17{letter-spacing:13.406400pt;}
.ls10{letter-spacing:13.636800pt;}
.ls20{letter-spacing:13.924800pt;}
.ls1d{letter-spacing:14.195200pt;}
.ls7{letter-spacing:14.440533pt;}
.ls1e{letter-spacing:15.120000pt;}
.ls1a{letter-spacing:15.436800pt;}
.ls6{letter-spacing:15.605333pt;}
.lsd{letter-spacing:15.620267pt;}
.ls12{letter-spacing:15.648000pt;}
.ls19{letter-spacing:15.969600pt;}
.ls0{letter-spacing:16.392000pt;}
.ls16{letter-spacing:16.891200pt;}
.ls18{letter-spacing:17.784000pt;}
.ls1f{letter-spacing:20.390400pt;}
.ls11{letter-spacing:21.921600pt;}
.lsf{letter-spacing:23.438400pt;}
.ls22{letter-spacing:24.830400pt;}
.ws8f{word-spacing:-24.953600pt;}
.wsf2{word-spacing:-24.861867pt;}
.ws8d{word-spacing:-22.728533pt;}
.ws9f{word-spacing:-12.000000pt;}
.ws132{word-spacing:-11.059200pt;}
.ws0{word-spacing:-10.666667pt;}
.ws66{word-spacing:-9.333333pt;}
.ws99{word-spacing:-8.605333pt;}
.ws3{word-spacing:-8.000000pt;}
.wse8{word-spacing:-1.425600pt;}
.ws3a{word-spacing:-1.166400pt;}
.wsd9{word-spacing:-1.046400pt;}
.ws12b{word-spacing:-1.017600pt;}
.ws131{word-spacing:-1.012800pt;}
.ws63{word-spacing:-0.970667pt;}
.ws10{word-spacing:-0.892800pt;}
.ws89{word-spacing:-0.862400pt;}
.wsc8{word-spacing:-0.758400pt;}
.ws117{word-spacing:-0.744000pt;}
.ws39{word-spacing:-0.715200pt;}
.ws14{word-spacing:-0.696000pt;}
.wsd3{word-spacing:-0.667200pt;}
.ws34{word-spacing:-0.604800pt;}
.ws47{word-spacing:-0.576000pt;}
.ws13b{word-spacing:-0.547200pt;}
.wsff{word-spacing:-0.532800pt;}
.ws9a{word-spacing:-0.515200pt;}
.ws10d{word-spacing:-0.470400pt;}
.ws78{word-spacing:-0.302400pt;}
.ws103{word-spacing:-0.244800pt;}
.ws101{word-spacing:-0.230400pt;}
.ws14d{word-spacing:-0.197867pt;}
.ws8b{word-spacing:-0.168000pt;}
.ws13e{word-spacing:-0.153600pt;}
.ws4b{word-spacing:-0.120000pt;}
.ws10f{word-spacing:-0.091200pt;}
.ws2a{word-spacing:-0.048000pt;}
.ws5{word-spacing:-0.042667pt;}
.ws70{word-spacing:-0.037333pt;}
.ws121{word-spacing:-0.014400pt;}
.ws53{word-spacing:0.000000pt;}
.ws36{word-spacing:0.057600pt;}
.wse9{word-spacing:0.076800pt;}
.wsc7{word-spacing:0.091200pt;}
.ws7d{word-spacing:0.104533pt;}
.ws7e{word-spacing:0.108267pt;}
.ws83{word-spacing:0.123200pt;}
.ws167{word-spacing:0.168000pt;}
.ws1f{word-spacing:0.211200pt;}
.ws86{word-spacing:0.272533pt;}
.ws10a{word-spacing:0.273600pt;}
.ws107{word-spacing:0.288000pt;}
.ws1d{word-spacing:0.302400pt;}
.ws13d{word-spacing:0.316800pt;}
.ws1c{word-spacing:0.364800pt;}
.ws8a{word-spacing:0.395733pt;}
.ws158{word-spacing:0.440533pt;}
.wsdd{word-spacing:0.542400pt;}
.wsa{word-spacing:0.547200pt;}
.ws10e{word-spacing:0.561600pt;}
.wsc2{word-spacing:0.576000pt;}
.wse2{word-spacing:0.604800pt;}
.wsfe{word-spacing:0.633600pt;}
.ws13f{word-spacing:0.652800pt;}
.ws106{word-spacing:0.667200pt;}
.ws3c{word-spacing:0.710400pt;}
.wsf0{word-spacing:0.712533pt;}
.wsb5{word-spacing:0.739200pt;}
.wsb4{word-spacing:0.758400pt;}
.ws72{word-spacing:0.802667pt;}
.ws15b{word-spacing:0.806400pt;}
.wsb2{word-spacing:0.816000pt;}
.ws156{word-spacing:0.817600pt;}
.ws123{word-spacing:0.849600pt;}
.ws33{word-spacing:0.878400pt;}
.ws62{word-spacing:1.030400pt;}
.ws81{word-spacing:1.075200pt;}
.wsba{word-spacing:1.168533pt;}
.ws148{word-spacing:1.183467pt;}
.ws13{word-spacing:1.185600pt;}
.wsa0{word-spacing:1.195200pt;}
.ws91{word-spacing:1.228267pt;}
.ws17{word-spacing:1.228800pt;}
.ws2c{word-spacing:1.257600pt;}
.ws14a{word-spacing:1.258133pt;}
.ws113{word-spacing:1.258667pt;}
.wseb{word-spacing:1.272000pt;}
.wsee{word-spacing:1.288533pt;}
.ws44{word-spacing:1.377600pt;}
.wsef{word-spacing:1.395200pt;}
.wsc4{word-spacing:1.406400pt;}
.ws68{word-spacing:1.411200pt;}
.wsc0{word-spacing:1.425600pt;}
.ws16a{word-spacing:1.500800pt;}
.ws125{word-spacing:1.512000pt;}
.ws9{word-spacing:1.564800pt;}
.ws16{word-spacing:1.593600pt;}
.ws6b{word-spacing:1.605333pt;}
.wsa5{word-spacing:1.636800pt;}
.ws15d{word-spacing:1.650133pt;}
.ws2f{word-spacing:1.651200pt;}
.ws16d{word-spacing:1.665067pt;}
.ws129{word-spacing:1.665600pt;}
.wsca{word-spacing:1.742400pt;}
.ws12a{word-spacing:1.771200pt;}
.ws157{word-spacing:1.773333pt;}
.ws30{word-spacing:1.785600pt;}
.ws96{word-spacing:1.792000pt;}
.ws11a{word-spacing:1.800000pt;}
.wsbb{word-spacing:1.833067pt;}
.ws90{word-spacing:1.892800pt;}
.wsaa{word-spacing:1.910400pt;}
.ws111{word-spacing:1.924800pt;}
.ws69{word-spacing:1.986133pt;}
.wsbf{word-spacing:1.996800pt;}
.ws13a{word-spacing:2.073600pt;}
.ws84{word-spacing:2.135467pt;}
.ws114{word-spacing:2.137600pt;}
.ws93{word-spacing:2.195200pt;}
.ws92{word-spacing:2.198933pt;}
.ws170{word-spacing:2.213867pt;}
.ws1b{word-spacing:2.227200pt;}
.ws35{word-spacing:2.304000pt;}
.ws151{word-spacing:2.348267pt;}
.ws15{word-spacing:2.366400pt;}
.ws173{word-spacing:2.408000pt;}
.ws172{word-spacing:2.411733pt;}
.wscb{word-spacing:2.424000pt;}
.ws153{word-spacing:2.441600pt;}
.wsbe{word-spacing:2.452800pt;}
.ws3e{word-spacing:2.467200pt;}
.ws142{word-spacing:2.501333pt;}
.ws97{word-spacing:2.516267pt;}
.ws19{word-spacing:2.529600pt;}
.ws38{word-spacing:2.620800pt;}
.ws5e{word-spacing:2.650667pt;}
.wse3{word-spacing:2.664000pt;}
.ws98{word-spacing:2.669333pt;}
.ws7b{word-spacing:2.714133pt;}
.ws4a{word-spacing:2.726400pt;}
.ws14b{word-spacing:2.744000pt;}
.ws112{word-spacing:2.756267pt;}
.ws15f{word-spacing:2.773867pt;}
.ws7c{word-spacing:2.788800pt;}
.wsd6{word-spacing:2.937600pt;}
.ws32{word-spacing:2.952000pt;}
.ws16e{word-spacing:2.953067pt;}
.wsfd{word-spacing:2.971200pt;}
.wsa4{word-spacing:2.985600pt;}
.ws119{word-spacing:3.014400pt;}
.ws6a{word-spacing:3.016533pt;}
.ws149{word-spacing:3.031467pt;}
.ws46{word-spacing:3.043200pt;}
.ws49{word-spacing:3.076800pt;}
.wsec{word-spacing:3.089067pt;}
.ws59{word-spacing:3.091200pt;}
.ws154{word-spacing:3.094933pt;}
.ws108{word-spacing:3.115200pt;}
.ws109{word-spacing:3.120000pt;}
.wsf{word-spacing:3.124800pt;}
.wse1{word-spacing:3.134400pt;}
.ws77{word-spacing:3.210667pt;}
.wscc{word-spacing:3.211200pt;}
.wsb{word-spacing:3.259200pt;}
.ws6f{word-spacing:3.289067pt;}
.wse7{word-spacing:3.302400pt;}
.ws71{word-spacing:3.304000pt;}
.ws7f{word-spacing:3.318933pt;}
.wsed{word-spacing:3.319467pt;}
.ws94{word-spacing:3.348800pt;}
.ws104{word-spacing:3.379200pt;}
.ws18{word-spacing:3.422400pt;}
.wsd0{word-spacing:3.436800pt;}
.ws1e{word-spacing:3.456000pt;}
.ws11b{word-spacing:3.470400pt;}
.ws176{word-spacing:3.472000pt;}
.ws4{word-spacing:3.528533pt;}
.ws136{word-spacing:3.532800pt;}
.wsb7{word-spacing:3.542400pt;}
.wsdc{word-spacing:3.576000pt;}
.ws168{word-spacing:3.621333pt;}
.wsb1{word-spacing:3.652800pt;}
.ws175{word-spacing:3.666133pt;}
.ws58{word-spacing:3.667200pt;}
.ws174{word-spacing:3.669867pt;}
.ws60{word-spacing:3.759467pt;}
.ws11c{word-spacing:3.830400pt;}
.ws143{word-spacing:3.834133pt;}
.ws6d{word-spacing:3.878933pt;}
.wsfa{word-spacing:3.940800pt;}
.ws8{word-spacing:3.969600pt;}
.ws5d{word-spacing:3.983467pt;}
.ws88{word-spacing:4.032000pt;}
.ws8c{word-spacing:4.061867pt;}
.ws126{word-spacing:4.075200pt;}
.ws95{word-spacing:4.076800pt;}
.ws178{word-spacing:4.091733pt;}
.ws177{word-spacing:4.099200pt;}
.ws76{word-spacing:4.181333pt;}
.ws169{word-spacing:4.211200pt;}
.wsa7{word-spacing:4.286400pt;}
.ws24{word-spacing:4.334400pt;}
.wsa3{word-spacing:4.348800pt;}
.ws23{word-spacing:4.363200pt;}
.ws14e{word-spacing:4.409067pt;}
.ws6c{word-spacing:4.438933pt;}
.ws73{word-spacing:4.513600pt;}
.wsd{word-spacing:4.531200pt;}
.wsf5{word-spacing:4.560000pt;}
.ws26{word-spacing:4.680000pt;}
.ws50{word-spacing:4.728000pt;}
.wsd4{word-spacing:4.742400pt;}
.ws16b{word-spacing:4.771200pt;}
.wse0{word-spacing:4.800000pt;}
.ws138{word-spacing:4.819200pt;}
.ws14c{word-spacing:4.834667pt;}
.ws7{word-spacing:4.863467pt;}
.wsc3{word-spacing:4.891200pt;}
.ws48{word-spacing:4.910400pt;}
.ws61{word-spacing:4.924267pt;}
.wsa6{word-spacing:4.953600pt;}
.ws171{word-spacing:5.028800pt;}
.ws67{word-spacing:5.107200pt;}
.wsab{word-spacing:5.121600pt;}
.ws3f{word-spacing:5.150400pt;}
.wsde{word-spacing:5.179200pt;}
.ws147{word-spacing:5.301333pt;}
.ws146{word-spacing:5.305067pt;}
.ws5c{word-spacing:5.349867pt;}
.ws12c{word-spacing:5.452800pt;}
.ws16c{word-spacing:5.484267pt;}
.ws12e{word-spacing:5.515200pt;}
.ws160{word-spacing:5.517867pt;}
.wsa8{word-spacing:5.529600pt;}
.ws85{word-spacing:5.577600pt;}
.ws15c{word-spacing:5.622400pt;}
.wsfc{word-spacing:5.649600pt;}
.ws11f{word-spacing:5.664000pt;}
.ws54{word-spacing:5.697600pt;}
.wsc{word-spacing:5.745600pt;}
.wsce{word-spacing:5.779200pt;}
.wscf{word-spacing:5.788800pt;}
.ws137{word-spacing:5.851200pt;}
.wsa1{word-spacing:5.894400pt;}
.ws118{word-spacing:5.966400pt;}
.ws25{word-spacing:5.985600pt;}
.ws74{word-spacing:6.014400pt;}
.ws4c{word-spacing:6.043200pt;}
.ws16f{word-spacing:6.059200pt;}
.wsd8{word-spacing:6.091200pt;}
.ws10b{word-spacing:6.105600pt;}
.ws51{word-spacing:6.122667pt;}
.wsf4{word-spacing:6.148800pt;}
.ws9d{word-spacing:6.168000pt;}
.ws141{word-spacing:6.182400pt;}
.ws1{word-spacing:6.198400pt;}
.ws2{word-spacing:6.205333pt;}
.ws102{word-spacing:6.225600pt;}
.ws64{word-spacing:6.272000pt;}
.wse{word-spacing:6.273600pt;}
.ws8e{word-spacing:6.286933pt;}
.ws55{word-spacing:6.316800pt;}
.ws7a{word-spacing:6.484800pt;}
.wsa9{word-spacing:6.513600pt;}
.ws134{word-spacing:6.518400pt;}
.ws15e{word-spacing:6.529600pt;}
.wsf8{word-spacing:6.576000pt;}
.ws152{word-spacing:6.604267pt;}
.ws150{word-spacing:6.622933pt;}
.ws159{word-spacing:6.652800pt;}
.ws162{word-spacing:6.712533pt;}
.ws161{word-spacing:6.720000pt;}
.ws166{word-spacing:6.742400pt;}
.ws124{word-spacing:6.744000pt;}
.ws165{word-spacing:6.746133pt;}
.ws10c{word-spacing:6.758400pt;}
.wsdf{word-spacing:6.801600pt;}
.ws29{word-spacing:6.849600pt;}
.ws4e{word-spacing:6.864000pt;}
.ws21{word-spacing:6.969600pt;}
.ws82{word-spacing:6.970133pt;}
.ws130{word-spacing:6.988800pt;}
.ws87{word-spacing:7.044800pt;}
.wsd5{word-spacing:7.060800pt;}
.ws6{word-spacing:7.074133pt;}
.wse6{word-spacing:7.075200pt;}
.ws11d{word-spacing:7.118400pt;}
.ws120{word-spacing:7.137600pt;}
.ws4d{word-spacing:7.166400pt;}
.wsd2{word-spacing:7.195200pt;}
.ws43{word-spacing:7.243200pt;}
.ws12{word-spacing:7.257600pt;}
.ws40{word-spacing:7.315200pt;}
.ws11e{word-spacing:7.454400pt;}
.ws15a{word-spacing:7.500267pt;}
.wsd7{word-spacing:7.560000pt;}
.ws127{word-spacing:7.574400pt;}
.ws164{word-spacing:7.589867pt;}
.wsda{word-spacing:7.622400pt;}
.wse4{word-spacing:7.771200pt;}
.ws12f{word-spacing:7.852800pt;}
.ws52{word-spacing:7.970133pt;}
.ws5b{word-spacing:8.134933pt;}
.wsf3{word-spacing:8.136000pt;}
.ws5a{word-spacing:8.138667pt;}
.wsa2{word-spacing:8.332800pt;}
.ws110{word-spacing:8.395200pt;}
.wsea{word-spacing:8.529600pt;}
.ws9c{word-spacing:8.577600pt;}
.ws57{word-spacing:8.592000pt;}
.ws27{word-spacing:8.683200pt;}
.wsc5{word-spacing:8.712000pt;}
.wsb6{word-spacing:8.726400pt;}
.wse5{word-spacing:8.740800pt;}
.ws145{word-spacing:8.803200pt;}
.ws45{word-spacing:8.846400pt;}
.ws79{word-spacing:8.922667pt;}
.ws3d{word-spacing:8.937600pt;}
.ws11{word-spacing:9.048000pt;}
.ws75{word-spacing:9.105600pt;}
.ws128{word-spacing:9.134400pt;}
.ws20{word-spacing:9.182400pt;}
.wscd{word-spacing:9.211200pt;}
.ws163{word-spacing:9.303467pt;}
.ws3b{word-spacing:9.331200pt;}
.ws140{word-spacing:9.333333pt;}
.ws116{word-spacing:9.437867pt;}
.wsd1{word-spacing:9.528000pt;}
.ws9b{word-spacing:9.561067pt;}
.wsad{word-spacing:9.590400pt;}
.ws14f{word-spacing:9.605867pt;}
.wsb0{word-spacing:9.921600pt;}
.ws155{word-spacing:9.971733pt;}
.ws4f{word-spacing:10.012800pt;}
.ws80{word-spacing:10.046400pt;}
.ws65{word-spacing:10.259200pt;}
.ws105{word-spacing:10.363200pt;}
.ws37{word-spacing:10.497600pt;}
.ws1a{word-spacing:10.560000pt;}
.wsf1{word-spacing:10.619733pt;}
.wsdb{word-spacing:10.665600pt;}
.ws6e{word-spacing:10.759467pt;}
.ws28{word-spacing:11.030400pt;}
.ws41{word-spacing:11.059200pt;}
.wsc6{word-spacing:11.107200pt;}
.ws2d{word-spacing:11.241600pt;}
.ws12d{word-spacing:11.246400pt;}
.wsc1{word-spacing:11.332800pt;}
.ws56{word-spacing:11.438400pt;}
.ws31{word-spacing:11.515200pt;}
.ws22{word-spacing:11.558400pt;}
.ws139{word-spacing:11.640000pt;}
.ws5f{word-spacing:11.696533pt;}
.wsf6{word-spacing:11.937600pt;}
.wsae{word-spacing:12.408000pt;}
.ws133{word-spacing:12.456000pt;}
.wsc9{word-spacing:12.484800pt;}
.wsb3{word-spacing:12.513600pt;}
.ws42{word-spacing:12.590400pt;}
.ws2e{word-spacing:12.801600pt;}
.ws13c{word-spacing:12.830400pt;}
.ws144{word-spacing:12.954667pt;}
.ws100{word-spacing:12.955200pt;}
.wsac{word-spacing:13.377600pt;}
.wsf7{word-spacing:13.425600pt;}
.ws122{word-spacing:13.512000pt;}
.wsfb{word-spacing:14.088000pt;}
.wsf9{word-spacing:14.227200pt;}
.wsaf{word-spacing:15.864000pt;}
.ws9e{word-spacing:24.633600pt;}
.ws2b{word-spacing:25.588800pt;}
.ws135{word-spacing:25.910400pt;}
.wsbc{word-spacing:28.512000pt;}
.wsbd{word-spacing:28.531200pt;}
.ws115{word-spacing:277.986133pt;}
.wsb9{word-spacing:299.955200pt;}
.wsb8{word-spacing:310.003200pt;}
._6{margin-left:-15.594133pt;}
._5{margin-left:-13.395200pt;}
._2{margin-left:-4.315200pt;}
._4{margin-left:-3.348800pt;}
._17{margin-left:-0.936000pt;}
._3{width:10.666667pt;}
._13{width:14.195200pt;}
._7{width:21.333333pt;}
._1{width:42.662400pt;}
._10{width:74.619733pt;}
._14{width:83.432533pt;}
._11{width:96.000000pt;}
._16{width:178.321067pt;}
._15{width:203.238400pt;}
._d{width:310.489600pt;}
._e{width:320.669867pt;}
._9{width:341.308800pt;}
._8{width:361.334400pt;}
._c{width:578.675200pt;}
._b{width:585.032533pt;}
._a{width:721.843733pt;}
._0{width:1214.323733pt;}
._12{width:1803.259733pt;}
._f{width:1913.691733pt;}
.fs7{font-size:24.000000pt;}
.fs8{font-size:26.666667pt;}
.fs6{font-size:29.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:52.000000pt;}
.y18f{bottom:78.665867pt;}
.y6a{bottom:78.666667pt;}
.y130{bottom:78.666800pt;}
.y66{bottom:78.666933pt;}
.ye7{bottom:78.667200pt;}
.yac{bottom:78.668933pt;}
.y114{bottom:78.670133pt;}
.y163{bottom:78.678667pt;}
.y18e{bottom:89.332933pt;}
.y69{bottom:90.666667pt;}
.yab{bottom:90.668800pt;}
.y21f{bottom:91.982800pt;}
.y1cf{bottom:91.998667pt;}
.ye6{bottom:93.333600pt;}
.y113{bottom:93.427733pt;}
.y12f{bottom:93.561200pt;}
.y162{bottom:93.587467pt;}
.y65{bottom:93.621333pt;}
.y18d{bottom:99.996267pt;}
.y21e{bottom:102.649867pt;}
.y1ce{bottom:102.665733pt;}
.y68{bottom:102.666667pt;}
.yaa{bottom:102.668667pt;}
.y18c{bottom:103.666667pt;}
.ye5{bottom:108.000000pt;}
.ye3{bottom:108.000800pt;}
.y112{bottom:108.185333pt;}
.y12e{bottom:108.455600pt;}
.y161{bottom:108.496267pt;}
.y64{bottom:108.575733pt;}
.y18b{bottom:110.662800pt;}
.ye4{bottom:113.000000pt;}
.y21d{bottom:113.316933pt;}
.y1cd{bottom:113.332800pt;}
.y18a{bottom:114.333333pt;}
.y67{bottom:114.666667pt;}
.ya9{bottom:114.668533pt;}
.ye2{bottom:122.667200pt;}
.y111{bottom:122.942933pt;}
.y12d{bottom:123.350000pt;}
.y160{bottom:123.401467pt;}
.y15e{bottom:123.405600pt;}
.y63{bottom:123.526533pt;}
.y61{bottom:123.533067pt;}
.y1cc{bottom:123.999867pt;}
.y21c{bottom:124.422667pt;}
.ya8{bottom:126.668400pt;}
.y15f{bottom:128.405333pt;}
.y62{bottom:128.530267pt;}
.y188{bottom:130.666667pt;}
.y189{bottom:135.000000pt;}
.y21b{bottom:135.089733pt;}
.ye1{bottom:137.333600pt;}
.y110{bottom:137.700533pt;}
.y12c{bottom:138.244400pt;}
.y15d{bottom:138.314400pt;}
.y60{bottom:138.487467pt;}
.ya7{bottom:138.668267pt;}
.y1cb{bottom:139.545467pt;}
.y186{bottom:142.666667pt;}
.y21a{bottom:145.756800pt;}
.y187{bottom:147.000000pt;}
.ya6{bottom:150.668133pt;}
.ye0{bottom:152.000000pt;}
.yde{bottom:152.000800pt;}
.y10f{bottom:152.458133pt;}
.y12b{bottom:153.138800pt;}
.y15b{bottom:153.225067pt;}
.y5f{bottom:153.441867pt;}
.y184{bottom:154.666667pt;}
.y219{bottom:156.862533pt;}
.ydf{bottom:157.000000pt;}
.y15c{bottom:158.223467pt;}
.y185{bottom:159.000000pt;}
.y43{bottom:161.335467pt;}
.ya5{bottom:162.668000pt;}
.y1ca{bottom:163.394000pt;}
.y182{bottom:166.666667pt;}
.ydd{bottom:166.667200pt;}
.y10e{bottom:167.215733pt;}
.y218{bottom:167.529600pt;}
.y12a{bottom:168.033200pt;}
.y15a{bottom:168.133867pt;}
.y5e{bottom:168.396267pt;}
.y183{bottom:171.000000pt;}
.ya4{bottom:174.667867pt;}
.y1c9{bottom:175.394000pt;}
.y42{bottom:176.001867pt;}
.y217{bottom:178.196667pt;}
.y180{bottom:178.666667pt;}
.ydc{bottom:181.333600pt;}
.y10d{bottom:181.969733pt;}
.y10b{bottom:181.972000pt;}
.y129{bottom:182.927600pt;}
.y181{bottom:183.000000pt;}
.y159{bottom:183.042667pt;}
.y5d{bottom:183.350667pt;}
.ya3{bottom:186.667733pt;}
.y10c{bottom:186.973467pt;}
.y216{bottom:189.302400pt;}
.y17e{bottom:190.666667pt;}
.y41{bottom:190.668267pt;}
.y17f{bottom:195.000000pt;}
.y1c8{bottom:195.394000pt;}
.ydb{bottom:196.000000pt;}
.yd9{bottom:196.000267pt;}
.y10a{bottom:196.729600pt;}
.y128{bottom:197.822000pt;}
.y158{bottom:197.951467pt;}
.y5c{bottom:198.305067pt;}
.ya2{bottom:198.667600pt;}
.y215{bottom:199.969467pt;}
.yda{bottom:201.000000pt;}
.y17c{bottom:202.666667pt;}
.y40{bottom:205.334667pt;}
.y17d{bottom:207.000000pt;}
.y214{bottom:210.636533pt;}
.yd8{bottom:210.666667pt;}
.ya1{bottom:210.667467pt;}
.yd6{bottom:210.669600pt;}
.y109{bottom:211.487200pt;}
.y127{bottom:212.716400pt;}
.y157{bottom:212.860267pt;}
.y5b{bottom:213.259467pt;}
.y17a{bottom:214.666667pt;}
.yd7{bottom:215.666667pt;}
.y17b{bottom:219.000000pt;}
.y3f{bottom:220.001067pt;}
.y213{bottom:221.303600pt;}
.ya0{bottom:222.667333pt;}
.y1c7{bottom:225.334133pt;}
.yd5{bottom:225.336000pt;}
.y108{bottom:226.244800pt;}
.y178{bottom:226.666667pt;}
.y126{bottom:227.610800pt;}
.y156{bottom:227.769067pt;}
.y5a{bottom:228.213867pt;}
.y179{bottom:231.000000pt;}
.y212{bottom:232.409333pt;}
.y9f{bottom:234.667200pt;}
.y3e{bottom:234.667467pt;}
.y176{bottom:238.666667pt;}
.y1c6{bottom:240.000533pt;}
.yd4{bottom:240.002400pt;}
.y107{bottom:241.002400pt;}
.y125{bottom:242.505200pt;}
.y155{bottom:242.674267pt;}
.y153{bottom:242.678133pt;}
.y177{bottom:243.000000pt;}
.y211{bottom:243.076400pt;}
.y59{bottom:243.168267pt;}
.y9e{bottom:246.667067pt;}
.y154{bottom:247.678000pt;}
.y3d{bottom:249.333867pt;}
.y174{bottom:250.666667pt;}
.y210{bottom:254.167200pt;}
.y1c5{bottom:254.666933pt;}
.yd3{bottom:254.668800pt;}
.y175{bottom:255.000000pt;}
.y106{bottom:255.760000pt;}
.y124{bottom:257.399600pt;}
.y152{bottom:257.583333pt;}
.y150{bottom:257.589733pt;}
.y58{bottom:258.122667pt;}
.y9d{bottom:258.666933pt;}
.y151{bottom:262.587067pt;}
.y172{bottom:262.666667pt;}
.y3c{bottom:264.000267pt;}
.y20f{bottom:264.834267pt;}
.y173{bottom:267.000000pt;}
.y1c4{bottom:269.333333pt;}
.y1c2{bottom:269.334133pt;}
.yd2{bottom:269.335200pt;}
.y105{bottom:270.517600pt;}
.y9c{bottom:270.666800pt;}
.y123{bottom:272.308400pt;}
.y14f{bottom:272.498533pt;}
.y57{bottom:273.077067pt;}
.y1c3{bottom:274.333333pt;}
.y20e{bottom:275.501333pt;}
.y3b{bottom:278.666667pt;}
.y9a{bottom:280.666667pt;}
.y9b{bottom:282.666667pt;}
.y99{bottom:282.667733pt;}
.y171{bottom:283.329600pt;}
.y16f{bottom:283.333467pt;}
.y1c1{bottom:284.000533pt;}
.yd1{bottom:284.001600pt;}
.y104{bottom:285.275200pt;}
.y20d{bottom:286.168400pt;}
.y170{bottom:287.000000pt;}
.y122{bottom:287.217200pt;}
.y14e{bottom:287.407333pt;}
.y56{bottom:288.031467pt;}
.y16c{bottom:292.833333pt;}
.y39{bottom:293.338133pt;}
.y98{bottom:294.667600pt;}
.y16d{bottom:296.500000pt;}
.y20c{bottom:297.259200pt;}
.y3a{bottom:298.333333pt;}
.y1c0{bottom:298.666933pt;}
.yd0{bottom:298.668000pt;}
.y103{bottom:300.048400pt;}
.y121{bottom:302.126000pt;}
.y14d{bottom:302.316133pt;}
.y16e{bottom:302.333333pt;}
.y55{bottom:302.985867pt;}
.y97{bottom:306.667467pt;}
.y20b{bottom:307.926267pt;}
.y38{bottom:308.004533pt;}
.y1bf{bottom:313.333333pt;}
.ycf{bottom:313.334400pt;}
.y1bd{bottom:313.335467pt;}
.y102{bottom:314.821600pt;}
.y120{bottom:317.034800pt;}
.y14c{bottom:317.224933pt;}
.y54{bottom:317.940267pt;}
.y1be{bottom:318.333333pt;}
.y20a{bottom:318.593333pt;}
.y96{bottom:318.667333pt;}
.y16b{bottom:322.666933pt;}
.y37{bottom:322.670933pt;}
.yce{bottom:328.000800pt;}
.y1bc{bottom:328.001867pt;}
.y209{bottom:329.260400pt;}
.y101{bottom:329.594800pt;}
.y95{bottom:330.667200pt;}
.y11f{bottom:331.943600pt;}
.y14b{bottom:332.133733pt;}
.y53{bottom:332.894667pt;}
.y16a{bottom:334.666933pt;}
.y36{bottom:337.337333pt;}
.y208{bottom:340.351200pt;}
.y94{bottom:342.667067pt;}
.ycd{bottom:342.667200pt;}
.y1bb{bottom:342.668267pt;}
.y100{bottom:344.368000pt;}
.y11e{bottom:346.852400pt;}
.y14a{bottom:347.042533pt;}
.y52{bottom:347.849067pt;}
.y207{bottom:351.018267pt;}
.y35{bottom:352.003733pt;}
.y93{bottom:354.666933pt;}
.ycc{bottom:357.333600pt;}
.y1ba{bottom:357.334667pt;}
.yff{bottom:359.136400pt;}
.yfd{bottom:359.140667pt;}
.y206{bottom:361.685333pt;}
.y11d{bottom:361.757600pt;}
.y11b{bottom:361.762133pt;}
.y149{bottom:361.966933pt;}
.y51{bottom:362.803467pt;}
.yfe{bottom:364.140133pt;}
.y92{bottom:366.666800pt;}
.y34{bottom:366.670133pt;}
.y11c{bottom:366.761333pt;}
.ycb{bottom:372.000000pt;}
.yc9{bottom:372.000533pt;}
.y1b9{bottom:372.001067pt;}
.y205{bottom:372.776133pt;}
.yfc{bottom:373.909067pt;}
.yfa{bottom:373.910133pt;}
.y11a{bottom:376.670933pt;}
.y148{bottom:376.891333pt;}
.yca{bottom:377.000000pt;}
.y50{bottom:377.757867pt;}
.y91{bottom:378.666667pt;}
.y8f{bottom:378.667333pt;}
.yfb{bottom:378.912933pt;}
.y13f{bottom:378.952933pt;}
.y33{bottom:381.336533pt;}
.y90{bottom:382.333333pt;}
.y204{bottom:383.443200pt;}
.yc8{bottom:386.666933pt;}
.y1b8{bottom:386.667467pt;}
.yf9{bottom:388.683333pt;}
.y8e{bottom:390.667200pt;}
.y119{bottom:391.579733pt;}
.y147{bottom:391.815733pt;}
.y4f{bottom:392.712267pt;}
.y13e{bottom:393.619333pt;}
.y203{bottom:394.110267pt;}
.y32{bottom:396.002933pt;}
.yc7{bottom:401.333333pt;}
.y1b7{bottom:401.333867pt;}
.y8d{bottom:402.667067pt;}
.yf8{bottom:403.456533pt;}
.y202{bottom:404.777333pt;}
.y118{bottom:406.488533pt;}
.y146{bottom:406.740133pt;}
.y4e{bottom:407.666667pt;}
.y13d{bottom:408.285733pt;}
.y31{bottom:410.669333pt;}
.y8c{bottom:414.666933pt;}
.y201{bottom:415.868133pt;}
.y1b6{bottom:416.000267pt;}
.yc5{bottom:416.001467pt;}
.yf7{bottom:418.229733pt;}
.yc6{bottom:421.000000pt;}
.y117{bottom:421.397333pt;}
.y145{bottom:421.664533pt;}
.y4d{bottom:422.621067pt;}
.y13c{bottom:422.952133pt;}
.y30{bottom:425.335733pt;}
.y200{bottom:426.535200pt;}
.y8b{bottom:426.666800pt;}
.y1b5{bottom:430.666667pt;}
.yc4{bottom:430.667867pt;}
.y1b3{bottom:430.676000pt;}
.yf6{bottom:433.002933pt;}
.y1b4{bottom:435.666667pt;}
.y116{bottom:436.306133pt;}
.y144{bottom:436.588933pt;}
.y89{bottom:436.666667pt;}
.y1ff{bottom:437.202267pt;}
.y4c{bottom:437.575467pt;}
.y13b{bottom:437.618533pt;}
.y8a{bottom:438.666667pt;}
.y88{bottom:438.667467pt;}
.y2f{bottom:440.002133pt;}
.yc3{bottom:445.334267pt;}
.y1b2{bottom:445.342400pt;}
.yf5{bottom:447.776133pt;}
.y1fe{bottom:448.293067pt;}
.y87{bottom:450.667333pt;}
.y143{bottom:451.513333pt;}
.y13a{bottom:452.284933pt;}
.y4b{bottom:452.545467pt;}
.y2e{bottom:454.668533pt;}
.y1fd{bottom:458.960133pt;}
.yc2{bottom:460.000667pt;}
.y1b1{bottom:460.008800pt;}
.y115{bottom:462.548933pt;}
.yf4{bottom:462.549333pt;}
.y86{bottom:462.667200pt;}
.y142{bottom:466.437733pt;}
.y139{bottom:466.951333pt;}
.y4a{bottom:467.515467pt;}
.y2d{bottom:469.334933pt;}
.y1fc{bottom:469.627200pt;}
.y85{bottom:474.667067pt;}
.y1b0{bottom:474.675200pt;}
.y1fb{bottom:480.718000pt;}
.y141{bottom:481.362133pt;}
.y138{bottom:481.617733pt;}
.y49{bottom:482.485467pt;}
.y2c{bottom:484.001333pt;}
.y84{bottom:486.666933pt;}
.yc1{bottom:489.333467pt;}
.y1af{bottom:489.341600pt;}
.y1fa{bottom:491.385067pt;}
.y137{bottom:496.284133pt;}
.y140{bottom:496.286533pt;}
.y48{bottom:497.455467pt;}
.y83{bottom:498.666800pt;}
.y2b{bottom:498.667733pt;}
.y1f9{bottom:502.052133pt;}
.yc0{bottom:503.999867pt;}
.y1ae{bottom:504.008000pt;}
.y82{bottom:510.666667pt;}
.y80{bottom:510.668267pt;}
.y47{bottom:512.425467pt;}
.y1f8{bottom:513.142933pt;}
.y2a{bottom:513.334133pt;}
.y81{bottom:514.333333pt;}
.y1ad{bottom:518.674400pt;}
.y7f{bottom:522.668133pt;}
.y1f7{bottom:523.810000pt;}
.y136{bottom:523.882667pt;}
.ybf{bottom:526.666667pt;}
.y46{bottom:527.395467pt;}
.y29{bottom:528.000533pt;}
.y1ac{bottom:533.340800pt;}
.y7e{bottom:534.668000pt;}
.y1f6{bottom:534.900800pt;}
.y135{bottom:535.882667pt;}
.y169{bottom:541.204533pt;}
.y167{bottom:541.208267pt;}
.y45{bottom:542.365467pt;}
.y28{bottom:542.666933pt;}
.y168{bottom:545.541600pt;}
.y1f5{bottom:545.567867pt;}
.y7d{bottom:546.667867pt;}
.y134{bottom:547.882667pt;}
.y1ab{bottom:548.007200pt;}
.y166{bottom:553.208267pt;}
.y1f4{bottom:556.234933pt;}
.y27{bottom:557.333333pt;}
.y44{bottom:557.335467pt;}
.y7c{bottom:558.667733pt;}
.y133{bottom:559.882667pt;}
.y1aa{bottom:562.673600pt;}
.y165{bottom:565.208267pt;}
.ybe{bottom:567.004800pt;}
.y1f3{bottom:567.325733pt;}
.y7b{bottom:570.667600pt;}
.y132{bottom:571.882667pt;}
.y164{bottom:577.208267pt;}
.y1a9{bottom:577.340000pt;}
.y1f2{bottom:577.992800pt;}
.ybd{bottom:579.004667pt;}
.y7a{bottom:582.667467pt;}
.y131{bottom:583.882667pt;}
.y1f1{bottom:588.659867pt;}
.ybc{bottom:591.004533pt;}
.y1a8{bottom:592.006400pt;}
.y26{bottom:594.667067pt;}
.y79{bottom:594.667333pt;}
.y1f0{bottom:599.750667pt;}
.ybb{bottom:603.004400pt;}
.y78{bottom:606.667200pt;}
.y1a7{bottom:606.672800pt;}
.y25{bottom:608.000267pt;}
.y1ef{bottom:610.417733pt;}
.yba{bottom:615.004267pt;}
.y77{bottom:618.667067pt;}
.y1ee{bottom:621.084800pt;}
.y24{bottom:621.333467pt;}
.y1a6{bottom:621.339200pt;}
.yb9{bottom:627.004133pt;}
.y1ed{bottom:632.175600pt;}
.y23{bottom:634.666667pt;}
.y76{bottom:636.000000pt;}
.y1a5{bottom:636.005600pt;}
.yb8{bottom:639.004000pt;}
.y1ec{bottom:642.842667pt;}
.y22{bottom:647.996267pt;}
.y20{bottom:648.000000pt;}
.y1a4{bottom:650.672000pt;}
.yb7{bottom:651.003867pt;}
.y21{bottom:653.000000pt;}
.y1eb{bottom:653.509733pt;}
.y1f{bottom:661.329600pt;}
.y1d{bottom:661.333867pt;}
.yb6{bottom:663.003733pt;}
.y1ea{bottom:664.600533pt;}
.y1a3{bottom:665.338400pt;}
.y1e{bottom:666.333333pt;}
.y75{bottom:667.000000pt;}
.y73{bottom:667.001867pt;}
.y74{bottom:672.000000pt;}
.y1c{bottom:674.667067pt;}
.yb5{bottom:675.003600pt;}
.y1e9{bottom:675.267600pt;}
.y1a2{bottom:680.004800pt;}
.y72{bottom:681.668267pt;}
.y1e8{bottom:685.934667pt;}
.yb4{bottom:687.003467pt;}
.y1b{bottom:688.000267pt;}
.y1a1{bottom:694.671200pt;}
.y71{bottom:696.334667pt;}
.y1e7{bottom:697.025467pt;}
.yb3{bottom:699.003333pt;}
.y1a{bottom:701.333467pt;}
.y1e6{bottom:707.691600pt;}
.y1a0{bottom:709.337600pt;}
.y70{bottom:711.001067pt;}
.yb2{bottom:711.003200pt;}
.y19{bottom:714.666667pt;}
.y1e5{bottom:718.357733pt;}
.yb1{bottom:723.003067pt;}
.y19f{bottom:724.004000pt;}
.y6f{bottom:725.667467pt;}
.y18{bottom:727.996267pt;}
.y16{bottom:728.000267pt;}
.y1e4{bottom:729.448533pt;}
.y17{bottom:733.000000pt;}
.yb0{bottom:735.002933pt;}
.y19e{bottom:738.670400pt;}
.y1e3{bottom:740.115600pt;}
.y6e{bottom:740.333867pt;}
.y15{bottom:741.333467pt;}
.yaf{bottom:747.002800pt;}
.y1e2{bottom:750.782667pt;}
.y19d{bottom:753.336800pt;}
.y14{bottom:754.666667pt;}
.y6d{bottom:755.000267pt;}
.yae{bottom:759.002667pt;}
.y1e1{bottom:761.873467pt;}
.y13{bottom:767.996267pt;}
.y11{bottom:768.000000pt;}
.y19c{bottom:768.003200pt;}
.y6c{bottom:769.666667pt;}
.yad{bottom:771.002533pt;}
.y1e0{bottom:772.540533pt;}
.y12{bottom:773.000000pt;}
.y10{bottom:781.329600pt;}
.ye{bottom:781.333467pt;}
.y19b{bottom:782.669600pt;}
.y1df{bottom:783.207600pt;}
.yf{bottom:786.333333pt;}
.y1de{bottom:793.874667pt;}
.yd{bottom:794.666667pt;}
.y19a{bottom:797.336000pt;}
.y1dd{bottom:804.965467pt;}
.y199{bottom:812.002400pt;}
.yf3{bottom:814.332533pt;}
.y1dc{bottom:815.632533pt;}
.yc{bottom:823.333333pt;}
.yf2{bottom:824.999600pt;}
.y1db{bottom:826.299600pt;}
.y198{bottom:826.668800pt;}
.yf1{bottom:835.666667pt;}
.y1da{bottom:837.390400pt;}
.yf0{bottom:839.333333pt;}
.y197{bottom:841.335200pt;}
.yb{bottom:846.666667pt;}
.y1d9{bottom:848.057467pt;}
.yef{bottom:853.333333pt;}
.yee{bottom:855.666667pt;}
.y196{bottom:856.001600pt;}
.y1d8{bottom:858.724533pt;}
.ya{bottom:859.996267pt;}
.y8{bottom:860.000000pt;}
.y9{bottom:865.000000pt;}
.y1d7{bottom:869.815333pt;}
.y195{bottom:870.668000pt;}
.yed{bottom:879.666667pt;}
.y7{bottom:879.996267pt;}
.y5{bottom:880.000000pt;}
.y1d6{bottom:880.482400pt;}
.y194{bottom:885.334400pt;}
.y6{bottom:886.333333pt;}
.y1d5{bottom:891.149467pt;}
.yec{bottom:891.666667pt;}
.y193{bottom:900.000800pt;}
.y1d4{bottom:902.240267pt;}
.yeb{bottom:903.666667pt;}
.y4{bottom:905.333333pt;}
.y1d3{bottom:912.907333pt;}
.y192{bottom:914.667200pt;}
.y1d2{bottom:923.574400pt;}
.yea{bottom:924.333333pt;}
.y191{bottom:929.333600pt;}
.y1d1{bottom:934.665200pt;}
.y190{bottom:944.000000pt;}
.ye8{bottom:944.666667pt;}
.y1d0{bottom:945.332267pt;}
.ye9{bottom:949.000000pt;}
.y3{bottom:952.666667pt;}
.y2{bottom:964.666667pt;}
.y1{bottom:976.666667pt;}
.he{height:17.472000pt;}
.hb{height:18.384000pt;}
.hc{height:19.413333pt;}
.h8{height:20.416000pt;}
.hd{height:20.426667pt;}
.h6{height:22.469333pt;}
.ha{height:25.984000pt;}
.h4{height:28.597333pt;}
.h10{height:29.696000pt;}
.h1{height:32.682667pt;}
.h7{height:33.408000pt;}
.h5{height:34.944000pt;}
.h9{height:36.768000pt;}
.hf{height:36.782400pt;}
.h3{height:44.938667pt;}
.h2{height:65.365333pt;}
.h0{height:1049.333333pt;}
.w0{width:782.666667pt;}
.x0{left:0.000000pt;}
.x1{left:57.526533pt;}
.x69{left:62.193600pt;}
.x2b{left:66.859333pt;}
.x27{left:68.193200pt;}
.x21{left:69.526533pt;}
.x30{left:70.434667pt;}
.x61{left:72.926133pt;}
.x6a{left:73.860267pt;}
.x47{left:75.551200pt;}
.x29{left:78.185200pt;}
.x5b{left:80.121600pt;}
.x31{left:83.366267pt;}
.x64{left:91.706267pt;}
.x5c{left:96.391200pt;}
.x4a{left:101.225467pt;}
.x32{left:103.984533pt;}
.x13{left:105.526533pt;}
.x2{left:107.670400pt;}
.x4b{left:109.244533pt;}
.x12{left:117.526533pt;}
.x33{left:120.583067pt;}
.x2e{left:128.657333pt;}
.x43{left:137.556800pt;}
.x59{left:139.788000pt;}
.x2f{left:142.393200pt;}
.x5a{left:147.337600pt;}
.x2a{left:153.420400pt;}
.x67{left:159.568133pt;}
.x11{left:164.984800pt;}
.x5f{left:173.536267pt;}
.xc{left:175.011333pt;}
.x68{left:186.477200pt;}
.x3{left:212.651467pt;}
.x1d{left:216.675867pt;}
.x1e{left:223.751733pt;}
.x62{left:237.269200pt;}
.x2c{left:241.080000pt;}
.x63{left:246.148133pt;}
.x60{left:247.083333pt;}
.x2d{left:248.648533pt;}
.x4c{left:261.418667pt;}
.x4{left:263.319867pt;}
.x1f{left:268.201867pt;}
.x4d{left:269.945333pt;}
.x1b{left:272.706533pt;}
.x5{left:273.868933pt;}
.x20{left:275.277600pt;}
.x1c{left:280.252133pt;}
.xd{left:287.883867pt;}
.xe{left:296.543067pt;}
.x10{left:301.761333pt;}
.x65{left:309.195200pt;}
.x16{left:311.009600pt;}
.x17{left:315.494533pt;}
.x66{left:320.070267pt;}
.x4e{left:328.970933pt;}
.x4f{left:342.164267pt;}
.x48{left:349.627467pt;}
.x6{left:356.669467pt;}
.x49{left:358.517733pt;}
.x7{left:367.218533pt;}
.x22{left:368.267733pt;}
.x5d{left:370.257733pt;}
.x34{left:371.603867pt;}
.x5e{left:373.976000pt;}
.x35{left:375.270800pt;}
.x28{left:378.859867pt;}
.x23{left:401.526933pt;}
.x6c{left:406.192267pt;}
.x36{left:410.859733pt;}
.x24{left:413.526933pt;}
.x6b{left:417.858933pt;}
.x39{left:426.930667pt;}
.x3a{left:435.006533pt;}
.xf{left:443.010933pt;}
.x8{left:452.041867pt;}
.x9{left:471.090667pt;}
.x45{left:483.018133pt;}
.x53{left:484.636533pt;}
.x46{left:487.018400pt;}
.x54{left:493.083600pt;}
.x25{left:504.649867pt;}
.x14{left:510.397067pt;}
.x26{left:514.108267pt;}
.x15{left:517.783467pt;}
.x50{left:524.314667pt;}
.x37{left:534.401467pt;}
.x3b{left:544.355200pt;}
.xa{left:553.435600pt;}
.x3c{left:554.502933pt;}
.xb{left:559.102000pt;}
.x18{left:578.191467pt;}
.x19{left:587.009733pt;}
.x55{left:591.224933pt;}
.x56{left:598.959867pt;}
.x51{left:613.375867pt;}
.x52{left:620.781200pt;}
.x3d{left:626.320533pt;}
.x3e{left:634.900267pt;}
.x44{left:637.612933pt;}
.x41{left:651.690533pt;}
.x3f{left:659.240400pt;}
.x42{left:661.539200pt;}
.x1a{left:668.936667pt;}
.x40{left:670.035867pt;}
.x57{left:672.773067pt;}
.x58{left:680.920933pt;}
.x38{left:716.906533pt;}
}




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