
    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_840eb8bde567dda62bdd5de0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_6a279239515813a351c8224e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_3fc48026012e9c2a864bdf53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.742000;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_0a9670de3a1736ff4c9e0619.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_6ee3cb6d8357a6c48fd5e71a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991211;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_42fbf49bc608595294b38011.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_bb2d81b24745eb528b064daa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_a0fd88ba5dd20a157a996eef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.067000;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_3fc48026012e9c2a864bdf53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.742000;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_e9c89eb6135934167d867038.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_46deac04ca57c5c8a0fe2e22.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_300ca47100c71218f60dcb3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6a279239515813a351c8224e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3fc48026012e9c2a864bdf53.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a9670de3a1736ff4c9e0619.woff2')format("woff");}.fff{font-family:fff;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6a279239515813a351c8224e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3fc48026012e9c2a864bdf53.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0a9670de3a1736ff4c9e0619.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912000;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:ff13;src:url('chunks/assets/font_47815b22866bc9aaad4528e4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6a279239515813a351c8224e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.067000;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:ff15;src:url('chunks/assets/font_3fc48026012e9c2a864bdf53.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.742000;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:ff16;src:url('chunks/assets/font_0a9670de3a1736ff4c9e0619.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912000;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:ff17;src:url('chunks/assets/font_ec622cc6b7a8490f08f1b5d1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.639000;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:ff18;src:url('chunks/assets/font_6a279239515813a351c8224e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.067000;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:ff19;src:url('chunks/assets/font_3fc48026012e9c2a864bdf53.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.742000;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:ff1a;src:url('chunks/assets/font_0a9670de3a1736ff4c9e0619.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.912000;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:ff1b;src:url('chunks/assets/font_9033a1567ef1345f225b1759.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.941000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:27.000000px;}
.v2{vertical-align:54.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.596400px;}
.ls7{letter-spacing:0.596700px;}
.ls9{letter-spacing:0.675000px;}
.ls6{letter-spacing:0.784200px;}
.ls5{letter-spacing:0.900000px;}
.ls2{letter-spacing:3.780000px;}
.ls4{letter-spacing:3.900000px;}
.ls0{letter-spacing:24.492000px;}
.ls3{letter-spacing:1189.492200px;}
.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;}
}
.ws95{word-spacing:-16.500000px;}
.wsc5{word-spacing:-16.499400px;}
.wse8{word-spacing:-15.846000px;}
.ws30{word-spacing:-15.600000px;}
.ws2{word-spacing:-15.012000px;}
.ws0{word-spacing:-14.400000px;}
.wse9{word-spacing:-12.510000px;}
.wsf0{word-spacing:-12.374550px;}
.ws6{word-spacing:-11.520480px;}
.ws96{word-spacing:-10.939500px;}
.ws1{word-spacing:-10.342800px;}
.wse2{word-spacing:-7.860000px;}
.wse3{word-spacing:-6.539400px;}
.ws5a{word-spacing:-4.320600px;}
.ws8c{word-spacing:-4.140000px;}
.ws7e{word-spacing:-4.079400px;}
.ws4{word-spacing:-3.780000px;}
.wsbf{word-spacing:-3.480000px;}
.ws7a{word-spacing:-3.059400px;}
.ws77{word-spacing:-2.940000px;}
.ws89{word-spacing:-2.760600px;}
.wsbc{word-spacing:-2.580000px;}
.ws6b{word-spacing:-2.520600px;}
.wsf{word-spacing:-2.214000px;}
.ws6a{word-spacing:-2.160000px;}
.ws5{word-spacing:-1.776000px;}
.wsd8{word-spacing:-1.740600px;}
.wsb1{word-spacing:-1.619400px;}
.ws2a{word-spacing:-1.499400px;}
.wsdb{word-spacing:-1.440000px;}
.ws48{word-spacing:-1.379400px;}
.wsbe{word-spacing:-1.320000px;}
.ws20{word-spacing:-1.260000px;}
.ws84{word-spacing:-1.200000px;}
.wsd7{word-spacing:-1.140000px;}
.ws8e{word-spacing:-1.080600px;}
.ws10{word-spacing:-0.972540px;}
.ws43{word-spacing:-0.900000px;}
.ws2b{word-spacing:-0.719400px;}
.wsf1{word-spacing:-0.675000px;}
.ws4d{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.599400px;}
.wsda{word-spacing:-0.596700px;}
.ws9b{word-spacing:-0.420000px;}
.ws1e{word-spacing:-0.360000px;}
.ws8d{word-spacing:-0.240000px;}
.wse7{word-spacing:-0.144480px;}
.ws7{word-spacing:-0.108000px;}
.wsea{word-spacing:-0.048480px;}
.ws3{word-spacing:0.000000px;}
.wsec{word-spacing:0.048480px;}
.ws35{word-spacing:0.120000px;}
.wsc8{word-spacing:0.180600px;}
.ws4e{word-spacing:0.240000px;}
.ws14{word-spacing:0.360000px;}
.wsc{word-spacing:0.539460px;}
.ws9f{word-spacing:0.540000px;}
.wsbd{word-spacing:0.599400px;}
.ws7d{word-spacing:0.719400px;}
.ws68{word-spacing:0.780000px;}
.ws8f{word-spacing:0.840600px;}
.ws11{word-spacing:0.918000px;}
.ws5f{word-spacing:1.020000px;}
.ws3f{word-spacing:1.200000px;}
.ws74{word-spacing:1.320000px;}
.wsdd{word-spacing:1.379400px;}
.ws63{word-spacing:1.440000px;}
.ws34{word-spacing:1.551420px;}
.ws7c{word-spacing:1.560000px;}
.wsab{word-spacing:1.619400px;}
.ws88{word-spacing:1.920000px;}
.wsd9{word-spacing:1.980000px;}
.ws90{word-spacing:2.068560px;}
.wsef{word-spacing:2.112480px;}
.ws39{word-spacing:2.220000px;}
.ws8{word-spacing:2.322000px;}
.ws33{word-spacing:2.340000px;}
.ws79{word-spacing:2.399400px;}
.wse1{word-spacing:2.520600px;}
.wscc{word-spacing:2.580000px;}
.ws17{word-spacing:2.700000px;}
.ws67{word-spacing:2.820000px;}
.ws71{word-spacing:2.880000px;}
.ws9d{word-spacing:3.000000px;}
.ws44{word-spacing:3.120000px;}
.wsb2{word-spacing:3.240000px;}
.wsa7{word-spacing:3.299400px;}
.ws83{word-spacing:3.619980px;}
.ws60{word-spacing:3.780000px;}
.wsa0{word-spacing:3.840000px;}
.ws50{word-spacing:3.959400px;}
.ws7b{word-spacing:4.079400px;}
.ws58{word-spacing:4.200600px;}
.ws2f{word-spacing:4.260000px;}
.wsb3{word-spacing:4.320600px;}
.ws97{word-spacing:4.560000px;}
.ws21{word-spacing:4.739400px;}
.ws62{word-spacing:4.800000px;}
.wsb4{word-spacing:4.859400px;}
.wsce{word-spacing:4.920000px;}
.ws85{word-spacing:4.979400px;}
.wsed{word-spacing:5.135520px;}
.ws56{word-spacing:5.220600px;}
.wscf{word-spacing:5.280000px;}
.ws4f{word-spacing:5.340000px;}
.ws3d{word-spacing:5.400000px;}
.ws82{word-spacing:5.460000px;}
.wse0{word-spacing:5.520000px;}
.ws52{word-spacing:5.580000px;}
.ws61{word-spacing:5.639400px;}
.ws8b{word-spacing:5.820000px;}
.ws4c{word-spacing:5.880600px;}
.ws45{word-spacing:6.000600px;}
.wseb{word-spacing:6.096000px;}
.ws13{word-spacing:6.120600px;}
.wsee{word-spacing:6.144480px;}
.ws99{word-spacing:6.300000px;}
.ws9c{word-spacing:6.360000px;}
.ws4a{word-spacing:6.480000px;}
.wsa8{word-spacing:6.720000px;}
.wse{word-spacing:6.750000px;}
.ws40{word-spacing:6.840000px;}
.ws2d{word-spacing:6.900600px;}
.wsc2{word-spacing:6.960000px;}
.wsb7{word-spacing:7.020000px;}
.ws9e{word-spacing:7.140000px;}
.ws64{word-spacing:7.200000px;}
.ws73{word-spacing:7.500000px;}
.ws32{word-spacing:7.560600px;}
.wsa5{word-spacing:7.620000px;}
.ws54{word-spacing:7.740000px;}
.ws6e{word-spacing:7.800000px;}
.ws12{word-spacing:7.860000px;}
.ws6c{word-spacing:7.980000px;}
.ws53{word-spacing:8.099400px;}
.wsc0{word-spacing:8.280000px;}
.ws19{word-spacing:8.400000px;}
.wsb8{word-spacing:8.460600px;}
.wsa{word-spacing:8.478000px;}
.ws80{word-spacing:8.520000px;}
.ws28{word-spacing:8.580600px;}
.ws42{word-spacing:8.879400px;}
.wsc4{word-spacing:8.940000px;}
.wse5{word-spacing:9.060000px;}
.wsc1{word-spacing:9.240600px;}
.wsba{word-spacing:9.300000px;}
.wsd0{word-spacing:9.360600px;}
.wsaa{word-spacing:9.540000px;}
.wsdc{word-spacing:9.660000px;}
.wsd4{word-spacing:9.706320px;}
.wscd{word-spacing:9.899400px;}
.wse4{word-spacing:10.020600px;}
.wsb{word-spacing:10.152000px;}
.wsc7{word-spacing:10.200000px;}
.wsd6{word-spacing:10.260600px;}
.ws29{word-spacing:10.320000px;}
.ws47{word-spacing:10.620000px;}
.ws25{word-spacing:10.740000px;}
.ws49{word-spacing:10.799400px;}
.wsa4{word-spacing:10.860000px;}
.ws75{word-spacing:10.980000px;}
.ws72{word-spacing:11.160000px;}
.ws78{word-spacing:11.220000px;}
.wsbb{word-spacing:11.520000px;}
.ws9a{word-spacing:11.579400px;}
.wsa1{word-spacing:11.760000px;}
.ws3c{word-spacing:11.820600px;}
.ws3b{word-spacing:11.940600px;}
.ws87{word-spacing:12.479400px;}
.wsde{word-spacing:12.780000px;}
.wsb9{word-spacing:12.840000px;}
.ws98{word-spacing:13.139400px;}
.ws70{word-spacing:13.200000px;}
.ws18{word-spacing:13.320000px;}
.wsa2{word-spacing:13.440000px;}
.ws1b{word-spacing:13.560000px;}
.ws81{word-spacing:13.980000px;}
.ws7f{word-spacing:14.220000px;}
.ws9{word-spacing:14.310000px;}
.ws57{word-spacing:14.400600px;}
.wsb0{word-spacing:14.520000px;}
.wsb6{word-spacing:14.640000px;}
.wsd3{word-spacing:14.700000px;}
.ws15{word-spacing:14.880000px;}
.ws6d{word-spacing:15.000000px;}
.wsb5{word-spacing:15.420000px;}
.ws16{word-spacing:15.719400px;}
.wsd5{word-spacing:15.960600px;}
.ws31{word-spacing:16.080600px;}
.ws3e{word-spacing:16.260000px;}
.ws55{word-spacing:16.379400px;}
.ws69{word-spacing:16.440000px;}
.ws1f{word-spacing:16.560000px;}
.ws4b{word-spacing:16.800000px;}
.wsc9{word-spacing:16.860600px;}
.ws5b{word-spacing:17.040000px;}
.ws86{word-spacing:17.100000px;}
.ws5e{word-spacing:17.160000px;}
.wsac{word-spacing:17.220000px;}
.wsc3{word-spacing:17.399400px;}
.wsa6{word-spacing:17.460000px;}
.ws59{word-spacing:17.880000px;}
.wsaf{word-spacing:18.240000px;}
.ws2e{word-spacing:18.540600px;}
.wsd2{word-spacing:18.959400px;}
.ws5c{word-spacing:19.020000px;}
.ws8a{word-spacing:19.560000px;}
.ws1a{word-spacing:19.859400px;}
.ws36{word-spacing:20.160000px;}
.wsc6{word-spacing:20.460000px;}
.ws27{word-spacing:21.060000px;}
.wsa9{word-spacing:21.120600px;}
.wsa3{word-spacing:21.480000px;}
.ws6f{word-spacing:21.600000px;}
.wscb{word-spacing:21.960000px;}
.ws22{word-spacing:22.020000px;}
.wsae{word-spacing:22.680600px;}
.ws1d{word-spacing:23.460600px;}
.wsca{word-spacing:23.879400px;}
.ws26{word-spacing:23.940000px;}
.ws3a{word-spacing:24.180000px;}
.ws46{word-spacing:24.779400px;}
.ws51{word-spacing:25.020600px;}
.wsd{word-spacing:25.380000px;}
.wsad{word-spacing:25.440000px;}
.ws41{word-spacing:25.620000px;}
.ws5d{word-spacing:26.040600px;}
.wse6{word-spacing:27.780000px;}
.wsdf{word-spacing:27.960000px;}
.ws66{word-spacing:29.280600px;}
.ws24{word-spacing:30.660000px;}
.ws76{word-spacing:31.200000px;}
.ws37{word-spacing:31.379400px;}
.ws1c{word-spacing:33.540600px;}
.ws38{word-spacing:35.880600px;}
.ws65{word-spacing:38.640000px;}
.wsd1{word-spacing:40.140600px;}
.ws23{word-spacing:46.140000px;}
.ws93{word-spacing:77.868000px;}
.ws94{word-spacing:95.904000px;}
.ws92{word-spacing:107.892000px;}
.ws91{word-spacing:317.952000px;}
._b{margin-left:-2965.405680px;}
._a{margin-left:-1893.724920px;}
._5{margin-left:-59.040000px;}
._37{margin-left:-45.240000px;}
._d{margin-left:-22.020000px;}
._17{margin-left:-15.228000px;}
._3d{margin-left:-12.375000px;}
._3a{margin-left:-10.555200px;}
._3{margin-left:-8.520600px;}
._3c{margin-left:-7.518000px;}
._7{margin-left:-6.210000px;}
._8{margin-left:-4.836000px;}
._1{margin-left:-3.604800px;}
._6{margin-left:-2.336400px;}
._2{margin-left:-1.300800px;}
._4{width:1.334400px;}
._c{width:2.454000px;}
._39{width:7.056960px;}
._3b{width:11.520000px;}
._38{width:12.628800px;}
._15{width:15.012000px;}
._3f{width:17.145000px;}
._36{width:19.914000px;}
._28{width:29.970000px;}
._3e{width:32.894100px;}
._25{width:38.016000px;}
._f{width:39.204000px;}
._29{width:50.058000px;}
._12{width:54.000000px;}
._2e{width:110.916000px;}
._26{width:117.544800px;}
._30{width:122.904000px;}
._2b{width:140.940000px;}
._27{width:146.988000px;}
._31{width:189.972000px;}
._0{width:210.480000px;}
._9{width:223.719840px;}
._32{width:248.994000px;}
._21{width:268.812000px;}
._35{width:273.564000px;}
._34{width:278.964000px;}
._2c{width:302.940000px;}
._2f{width:325.026000px;}
._2d{width:327.564000px;}
._2a{width:332.964000px;}
._33{width:335.988000px;}
._20{width:366.930000px;}
._1f{width:475.956000px;}
._19{width:541.836000px;}
._18{width:542.916000px;}
._1c{width:555.012000px;}
._1b{width:590.004000px;}
._1e{width:713.988000px;}
._1a{width:757.944000px;}
._16{width:767.988000px;}
._10{width:799.956000px;}
._1d{width:800.982000px;}
._11{width:842.994000px;}
._23{width:914.922000px;}
._22{width:944.946000px;}
._24{width:969.570000px;}
._14{width:999.594000px;}
._13{width:1031.994000px;}
._e{width:1190.031600px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,83,145);}
.fs5{font-size:39.780000px;}
.fs7{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.398200px;}
.ye6{bottom:41.398350px;}
.y79{bottom:41.412900px;}
.y138{bottom:41.413050px;}
.y1{bottom:41.413350px;}
.y14{bottom:81.519000px;}
.y10f{bottom:81.524700px;}
.y1c2{bottom:81.526350px;}
.y5b{bottom:81.531150px;}
.y17c{bottom:81.538650px;}
.y77{bottom:81.540000px;}
.y11b{bottom:81.540300px;}
.y190{bottom:81.541350px;}
.ye5{bottom:81.550350px;}
.yb1{bottom:81.556350px;}
.y246{bottom:81.639600px;}
.y20a{bottom:86.833350px;}
.y245{bottom:94.385850px;}
.y1c1{bottom:95.926350px;}
.y13{bottom:96.519000px;}
.y10e{bottom:97.724700px;}
.y5a{bottom:99.531150px;}
.y17b{bottom:99.538650px;}
.y76{bottom:99.540000px;}
.y11a{bottom:99.540300px;}
.y18f{bottom:99.541350px;}
.ye4{bottom:99.550350px;}
.yb0{bottom:99.556350px;}
.y209{bottom:101.233350px;}
.y244{bottom:107.132100px;}
.y1c0{bottom:110.326350px;}
.y12{bottom:111.519000px;}
.y208{bottom:115.633350px;}
.y59{bottom:117.531150px;}
.y75{bottom:117.540000px;}
.y119{bottom:117.540300px;}
.y17a{bottom:117.541350px;}
.ye3{bottom:117.550350px;}
.yaf{bottom:117.556350px;}
.y243{bottom:119.878350px;}
.y1bf{bottom:124.726350px;}
.y207{bottom:130.033350px;}
.y1a{bottom:130.592850px;}
.y242{bottom:132.624600px;}
.y58{bottom:135.531150px;}
.y74{bottom:135.540000px;}
.y118{bottom:135.540300px;}
.y179{bottom:135.541350px;}
.ye2{bottom:135.550350px;}
.yae{bottom:135.556350px;}
.y1be{bottom:139.126350px;}
.y206{bottom:144.433350px;}
.y19{bottom:144.992850px;}
.y241{bottom:145.370850px;}
.y1bd{bottom:153.526350px;}
.y57{bottom:153.531150px;}
.y73{bottom:153.540000px;}
.y117{bottom:153.540300px;}
.y178{bottom:153.541350px;}
.ye1{bottom:153.550350px;}
.yad{bottom:153.556350px;}
.y240{bottom:158.117100px;}
.y205{bottom:158.833350px;}
.y18{bottom:159.392850px;}
.y1bc{bottom:167.926350px;}
.y23f{bottom:170.863350px;}
.y56{bottom:171.531150px;}
.y72{bottom:171.540000px;}
.y116{bottom:171.540300px;}
.y177{bottom:171.541350px;}
.ye0{bottom:171.550350px;}
.yac{bottom:171.556350px;}
.y204{bottom:173.233350px;}
.y17{bottom:173.792850px;}
.y1bb{bottom:182.326350px;}
.y23e{bottom:183.609600px;}
.y203{bottom:187.633350px;}
.y16{bottom:188.192850px;}
.y71{bottom:189.540000px;}
.y115{bottom:189.540300px;}
.y176{bottom:189.541350px;}
.ydf{bottom:189.550350px;}
.yab{bottom:189.556350px;}
.y23d{bottom:196.355850px;}
.y1ba{bottom:196.726350px;}
.y202{bottom:202.033350px;}
.y15{bottom:202.592850px;}
.y70{bottom:207.540000px;}
.y114{bottom:207.540300px;}
.y175{bottom:207.541350px;}
.yde{bottom:207.550350px;}
.yaa{bottom:207.556350px;}
.y23c{bottom:209.102100px;}
.y1b9{bottom:211.126350px;}
.y201{bottom:216.433350px;}
.y23b{bottom:221.848350px;}
.y1b8{bottom:225.526350px;}
.y6f{bottom:225.540000px;}
.y113{bottom:225.540300px;}
.y174{bottom:225.541350px;}
.ydd{bottom:225.550350px;}
.ya9{bottom:225.556350px;}
.y200{bottom:230.833350px;}
.y23a{bottom:234.594600px;}
.y55{bottom:239.061150px;}
.y1b7{bottom:239.926350px;}
.y6e{bottom:243.540000px;}
.y112{bottom:243.540300px;}
.y173{bottom:243.541350px;}
.ya8{bottom:243.556350px;}
.y1ff{bottom:245.233350px;}
.y239{bottom:247.340850px;}
.y1b6{bottom:254.326350px;}
.y54{bottom:255.558150px;}
.y1fe{bottom:259.633350px;}
.y238{bottom:260.087100px;}
.y6d{bottom:261.540000px;}
.y172{bottom:261.541350px;}
.ya7{bottom:261.556350px;}
.y1b5{bottom:268.726350px;}
.y53{bottom:272.055150px;}
.ydc{bottom:272.365350px;}
.y237{bottom:272.833350px;}
.y1fd{bottom:274.033350px;}
.y6c{bottom:279.540000px;}
.y171{bottom:279.541350px;}
.ya6{bottom:279.556350px;}
.y1b4{bottom:283.126350px;}
.y236{bottom:285.579600px;}
.y1fc{bottom:288.433350px;}
.y111{bottom:288.540300px;}
.y52{bottom:288.552150px;}
.ydb{bottom:290.365350px;}
.y1b3{bottom:297.526350px;}
.y6b{bottom:297.540000px;}
.y170{bottom:297.541350px;}
.ya5{bottom:297.556350px;}
.y235{bottom:298.325850px;}
.y1fb{bottom:302.833350px;}
.y51{bottom:305.049150px;}
.y110{bottom:306.540300px;}
.yda{bottom:308.365350px;}
.y234{bottom:311.072100px;}
.y1b2{bottom:311.926350px;}
.y6a{bottom:315.540000px;}
.y16f{bottom:315.541350px;}
.ya4{bottom:315.556350px;}
.y1fa{bottom:317.233350px;}
.y50{bottom:321.546150px;}
.y233{bottom:323.818350px;}
.y137{bottom:325.091250px;}
.y1b1{bottom:326.326350px;}
.yd9{bottom:326.365350px;}
.y1f9{bottom:331.633350px;}
.y69{bottom:333.540000px;}
.y16e{bottom:333.541350px;}
.ya3{bottom:333.556350px;}
.y232{bottom:336.564600px;}
.y4f{bottom:338.043150px;}
.y1b0{bottom:340.726350px;}
.y136{bottom:343.091100px;}
.yd8{bottom:344.365350px;}
.y1f8{bottom:346.033350px;}
.y231{bottom:349.310850px;}
.y68{bottom:351.540000px;}
.y16d{bottom:351.541350px;}
.y4e{bottom:354.540150px;}
.y1af{bottom:355.126350px;}
.y1f7{bottom:360.433350px;}
.y135{bottom:361.091100px;}
.y230{bottom:362.057100px;}
.yd7{bottom:362.365350px;}
.ya2{bottom:365.056350px;}
.y109{bottom:369.202500px;}
.y1ae{bottom:369.526350px;}
.y67{bottom:369.540000px;}
.y16c{bottom:369.541350px;}
.y4d{bottom:371.037150px;}
.y22f{bottom:374.803350px;}
.y1f6{bottom:374.833350px;}
.y134{bottom:379.091100px;}
.yd6{bottom:380.365350px;}
.ya1{bottom:383.056350px;}
.y1ad{bottom:383.926350px;}
.y4c{bottom:387.534150px;}
.y66{bottom:387.540000px;}
.y16b{bottom:387.541350px;}
.y22e{bottom:387.549600px;}
.y1f5{bottom:389.233350px;}
.y108{bottom:389.344500px;}
.y133{bottom:397.091100px;}
.y1ac{bottom:398.326350px;}
.yd5{bottom:398.365350px;}
.y22d{bottom:400.295850px;}
.ya0{bottom:401.056350px;}
.y1f4{bottom:403.633350px;}
.y4b{bottom:404.031150px;}
.y65{bottom:405.540000px;}
.y16a{bottom:405.541350px;}
.y107{bottom:410.985000px;}
.y160{bottom:411.496350px;}
.y1ab{bottom:412.726350px;}
.y22c{bottom:413.042100px;}
.y18e{bottom:414.556350px;}
.y132{bottom:415.091100px;}
.yd4{bottom:416.365350px;}
.y1f3{bottom:418.033350px;}
.y9f{bottom:419.056350px;}
.y4a{bottom:420.528150px;}
.y64{bottom:423.540000px;}
.y169{bottom:423.541350px;}
.y22b{bottom:425.788350px;}
.y1aa{bottom:427.126350px;}
.y15f{bottom:429.496350px;}
.y1f2{bottom:432.433350px;}
.y18d{bottom:432.556350px;}
.y106{bottom:432.625500px;}
.y131{bottom:433.091100px;}
.yd3{bottom:434.365350px;}
.y49{bottom:437.025150px;}
.y9e{bottom:437.056350px;}
.y22a{bottom:438.538350px;}
.y1a9{bottom:441.526350px;}
.y63{bottom:441.540000px;}
.y168{bottom:441.541350px;}
.y1f1{bottom:446.833350px;}
.y15e{bottom:447.496350px;}
.y18c{bottom:450.556350px;}
.y130{bottom:451.091100px;}
.yd2{bottom:452.365350px;}
.y48{bottom:453.522150px;}
.y105{bottom:454.266000px;}
.y9d{bottom:455.056350px;}
.y1a8{bottom:455.926350px;}
.y62{bottom:459.540000px;}
.y167{bottom:459.541350px;}
.y1f0{bottom:461.233350px;}
.y15d{bottom:465.496350px;}
.y18b{bottom:468.556350px;}
.y12f{bottom:469.091100px;}
.y47{bottom:470.019150px;}
.y1a7{bottom:470.326350px;}
.yd1{bottom:470.365350px;}
.y9c{bottom:473.056350px;}
.y1ef{bottom:475.633350px;}
.y104{bottom:475.906500px;}
.y61{bottom:477.540000px;}
.y166{bottom:477.541350px;}
.y15c{bottom:483.496350px;}
.y1a6{bottom:484.726350px;}
.y46{bottom:486.516150px;}
.y18a{bottom:486.556350px;}
.y12e{bottom:487.091100px;}
.yd0{bottom:488.365350px;}
.y1ee{bottom:490.033350px;}
.y9b{bottom:491.056350px;}
.y60{bottom:495.540000px;}
.y165{bottom:495.541350px;}
.y103{bottom:497.547000px;}
.y1a5{bottom:499.126350px;}
.y15b{bottom:501.496350px;}
.y229{bottom:502.033350px;}
.y45{bottom:503.013150px;}
.y1ed{bottom:504.433350px;}
.y189{bottom:504.556350px;}
.y12d{bottom:505.091100px;}
.ycf{bottom:506.365350px;}
.y9a{bottom:509.056350px;}
.y1a4{bottom:513.526350px;}
.y5f{bottom:513.540000px;}
.y164{bottom:513.541350px;}
.y228{bottom:516.433350px;}
.y1ec{bottom:518.833350px;}
.y102{bottom:519.187500px;}
.y15a{bottom:519.496350px;}
.y44{bottom:519.510150px;}
.y188{bottom:522.556350px;}
.y12c{bottom:523.091100px;}
.yce{bottom:524.365350px;}
.y99{bottom:527.056350px;}
.y1a3{bottom:527.926350px;}
.y227{bottom:530.833350px;}
.y163{bottom:531.541350px;}
.y5e{bottom:531.546150px;}
.y1eb{bottom:533.233350px;}
.y43{bottom:536.007150px;}
.y159{bottom:537.496350px;}
.y187{bottom:540.556350px;}
.y101{bottom:540.828000px;}
.y12b{bottom:541.091100px;}
.y1a2{bottom:542.326350px;}
.ycd{bottom:542.365350px;}
.y226{bottom:545.233350px;}
.y1ea{bottom:547.633350px;}
.y162{bottom:549.541350px;}
.y5d{bottom:549.546150px;}
.y42{bottom:552.504150px;}
.y158{bottom:555.496350px;}
.y98{bottom:558.556350px;}
.y12a{bottom:559.091100px;}
.y225{bottom:559.633350px;}
.ycc{bottom:560.365350px;}
.y1e9{bottom:562.033350px;}
.y100{bottom:562.468500px;}
.y1a1{bottom:562.726350px;}
.y161{bottom:567.541350px;}
.y5c{bottom:567.546150px;}
.y41{bottom:569.001150px;}
.y157{bottom:573.496350px;}
.y224{bottom:574.033350px;}
.y1e8{bottom:576.433350px;}
.y97{bottom:576.556350px;}
.y129{bottom:577.091100px;}
.ycb{bottom:578.365350px;}
.y1a0{bottom:580.726350px;}
.yff{bottom:584.109000px;}
.y40{bottom:585.498150px;}
.y1e7{bottom:590.833350px;}
.y156{bottom:591.496350px;}
.y223{bottom:594.433350px;}
.y96{bottom:594.556350px;}
.y128{bottom:595.091100px;}
.yca{bottom:596.365350px;}
.y19f{bottom:598.726350px;}
.y3f{bottom:601.995150px;}
.y1e6{bottom:605.233350px;}
.yfe{bottom:605.749500px;}
.y222{bottom:608.833350px;}
.y155{bottom:609.496350px;}
.y95{bottom:612.556350px;}
.y127{bottom:613.091100px;}
.yc9{bottom:614.365350px;}
.y19e{bottom:616.726350px;}
.y3e{bottom:618.492150px;}
.y14f{bottom:618.553500px;}
.y1e5{bottom:619.633350px;}
.y221{bottom:623.233350px;}
.y2b{bottom:627.215850px;}
.yfd{bottom:627.390000px;}
.y154{bottom:627.496350px;}
.y94{bottom:630.556350px;}
.y126{bottom:631.091100px;}
.yc8{bottom:632.365350px;}
.y1e4{bottom:634.033350px;}
.y19d{bottom:634.726350px;}
.y3d{bottom:634.989150px;}
.y220{bottom:637.633350px;}
.y2a{bottom:643.712850px;}
.y14e{bottom:645.088500px;}
.y153{bottom:645.496350px;}
.y1e3{bottom:648.433350px;}
.y93{bottom:648.556350px;}
.yfc{bottom:649.030500px;}
.y125{bottom:649.091100px;}
.yc7{bottom:650.365350px;}
.y3c{bottom:651.486150px;}
.y19c{bottom:652.726350px;}
.y21f{bottom:658.033350px;}
.y29{bottom:660.209850px;}
.y1e2{bottom:662.833350px;}
.y14d{bottom:665.230500px;}
.y92{bottom:666.556350px;}
.y124{bottom:667.095300px;}
.y3b{bottom:667.983150px;}
.yc6{bottom:668.365350px;}
.yfb{bottom:670.671000px;}
.y19b{bottom:670.726350px;}
.y28{bottom:676.718850px;}
.y1e1{bottom:677.233350px;}
.y21e{bottom:678.433350px;}
.y3a{bottom:684.480150px;}
.y91{bottom:684.556350px;}
.y123{bottom:685.095300px;}
.yc5{bottom:686.365350px;}
.y14c{bottom:686.871000px;}
.y19a{bottom:688.726350px;}
.y152{bottom:690.496350px;}
.y1e0{bottom:691.633350px;}
.yfa{bottom:692.311500px;}
.y21d{bottom:692.833350px;}
.y27{bottom:693.215850px;}
.y39{bottom:700.977150px;}
.y90{bottom:702.556350px;}
.y122{bottom:703.095300px;}
.yc4{bottom:704.365350px;}
.y1df{bottom:706.033350px;}
.y199{bottom:706.726350px;}
.y21c{bottom:707.233350px;}
.y151{bottom:708.496350px;}
.y14b{bottom:708.511500px;}
.y26{bottom:709.712850px;}
.yf9{bottom:713.952000px;}
.y38{bottom:717.474150px;}
.y1de{bottom:720.433350px;}
.y8f{bottom:720.556350px;}
.y121{bottom:721.095300px;}
.y21b{bottom:721.633350px;}
.y198{bottom:724.726350px;}
.y25{bottom:726.209850px;}
.y150{bottom:726.496350px;}
.y14a{bottom:730.152000px;}
.y78{bottom:730.181745px;}
.y37{bottom:733.971150px;}
.y11{bottom:734.427000px;}
.y1dd{bottom:734.833350px;}
.yf8{bottom:735.592500px;}
.y8e{bottom:738.556350px;}
.y120{bottom:739.095300px;}
.y21a{bottom:742.033350px;}
.y24{bottom:742.712850px;}
.y197{bottom:742.726350px;}
.y1dc{bottom:749.233350px;}
.y10{bottom:749.427000px;}
.y36{bottom:750.468150px;}
.yc3{bottom:751.171350px;}
.y149{bottom:751.792500px;}
.y8d{bottom:756.556350px;}
.y11f{bottom:757.095300px;}
.yf7{bottom:757.233000px;}
.y23{bottom:759.209850px;}
.y196{bottom:760.726350px;}
.y219{bottom:762.433350px;}
.y1db{bottom:763.633350px;}
.yf{bottom:764.427000px;}
.y262{bottom:765.620100px;}
.y27d{bottom:765.890100px;}
.y35{bottom:766.965150px;}
.y13b{bottom:767.701200px;}
.yc2{bottom:769.171350px;}
.y148{bottom:773.433000px;}
.y8c{bottom:774.556350px;}
.y11e{bottom:775.095300px;}
.y22{bottom:775.718850px;}
.y1da{bottom:778.033350px;}
.y261{bottom:778.366350px;}
.y195{bottom:778.726350px;}
.yf6{bottom:778.873500px;}
.y27c{bottom:779.120100px;}
.y218{bottom:782.833350px;}
.y34{bottom:783.462150px;}
.y13a{bottom:783.901200px;}
.yc1{bottom:787.171350px;}
.y260{bottom:791.112600px;}
.y21{bottom:792.215850px;}
.y27b{bottom:792.350100px;}
.y1d9{bottom:792.433350px;}
.y186{bottom:792.556350px;}
.y11d{bottom:793.095300px;}
.ye{bottom:793.683000px;}
.y147{bottom:795.073500px;}
.y194{bottom:796.726350px;}
.y217{bottom:797.233350px;}
.y33{bottom:799.959150px;}
.yf5{bottom:800.514000px;}
.y25f{bottom:803.858850px;}
.yc0{bottom:805.171350px;}
.y27a{bottom:805.580100px;}
.y1d8{bottom:806.833350px;}
.y20{bottom:808.712850px;}
.y185{bottom:810.556350px;}
.y11c{bottom:811.095300px;}
.y216{bottom:811.633350px;}
.y193{bottom:814.726350px;}
.y32{bottom:816.456150px;}
.y25e{bottom:816.605100px;}
.y146{bottom:816.714000px;}
.y279{bottom:818.810100px;}
.y8b{bottom:819.571350px;}
.y1d7{bottom:821.233350px;}
.yf4{bottom:822.154500px;}
.ybf{bottom:823.171350px;}
.y1f{bottom:825.209850px;}
.yd{bottom:827.583000px;}
.y184{bottom:828.556350px;}
.y25d{bottom:829.351350px;}
.y215{bottom:832.033350px;}
.y278{bottom:832.040100px;}
.y192{bottom:832.726350px;}
.y31{bottom:832.953150px;}
.y1d6{bottom:835.633350px;}
.y8a{bottom:837.571350px;}
.y145{bottom:838.354500px;}
.ybe{bottom:841.171350px;}
.y1e{bottom:841.715850px;}
.y25c{bottom:842.097600px;}
.yc{bottom:842.583000px;}
.yf3{bottom:843.795000px;}
.y277{bottom:845.270100px;}
.y214{bottom:846.433350px;}
.y183{bottom:846.556350px;}
.y30{bottom:849.450150px;}
.y1d5{bottom:850.033350px;}
.y191{bottom:850.726350px;}
.y10d{bottom:850.946100px;}
.y25b{bottom:854.843850px;}
.y89{bottom:855.571350px;}
.yb{bottom:857.583000px;}
.y1d{bottom:858.212850px;}
.y276{bottom:858.500100px;}
.ybd{bottom:859.171350px;}
.y144{bottom:859.995000px;}
.y213{bottom:860.833350px;}
.y1d4{bottom:864.433350px;}
.y182{bottom:864.556350px;}
.yf2{bottom:865.435500px;}
.y2f{bottom:865.947150px;}
.y10c{bottom:867.146100px;}
.y25a{bottom:867.590100px;}
.y275{bottom:871.730100px;}
.ya{bottom:872.583000px;}
.y88{bottom:873.571350px;}
.y1c{bottom:874.709850px;}
.y212{bottom:875.233350px;}
.ybc{bottom:877.171350px;}
.y1d3{bottom:878.833350px;}
.y259{bottom:880.336350px;}
.y143{bottom:881.635500px;}
.y2e{bottom:882.444150px;}
.y181{bottom:882.556350px;}
.y10b{bottom:883.346100px;}
.y274{bottom:884.960100px;}
.yf1{bottom:887.076000px;}
.y9{bottom:887.583000px;}
.y211{bottom:889.633350px;}
.y87{bottom:891.571350px;}
.y258{bottom:893.082600px;}
.y1d2{bottom:893.233350px;}
.ybb{bottom:895.171350px;}
.y273{bottom:898.190100px;}
.y2d{bottom:898.941150px;}
.y10a{bottom:899.546100px;}
.y180{bottom:900.556350px;}
.y8{bottom:902.583000px;}
.y142{bottom:903.276000px;}
.y210{bottom:904.033350px;}
.y257{bottom:905.828850px;}
.y1b{bottom:906.441150px;}
.y1d1{bottom:907.633350px;}
.yf0{bottom:908.716500px;}
.y86{bottom:909.571350px;}
.y272{bottom:911.420100px;}
.yba{bottom:913.171350px;}
.y2c{bottom:915.441150px;}
.y7{bottom:917.583000px;}
.y20f{bottom:918.433350px;}
.y17f{bottom:918.556350px;}
.y256{bottom:918.575100px;}
.y1d0{bottom:922.033350px;}
.y271{bottom:924.650100px;}
.y141{bottom:924.916500px;}
.y85{bottom:927.571350px;}
.yef{bottom:930.357000px;}
.yb9{bottom:931.171350px;}
.y255{bottom:931.321350px;}
.y1cf{bottom:936.433350px;}
.y17e{bottom:936.556350px;}
.y270{bottom:937.880100px;}
.y20e{bottom:938.833350px;}
.y254{bottom:944.067600px;}
.y84{bottom:945.571350px;}
.y140{bottom:946.557000px;}
.yb8{bottom:949.171350px;}
.y1ce{bottom:950.833350px;}
.y26f{bottom:951.110100px;}
.yee{bottom:951.997500px;}
.y20d{bottom:953.233350px;}
.y17d{bottom:954.556350px;}
.y253{bottom:956.813850px;}
.y83{bottom:963.571350px;}
.y26e{bottom:964.340100px;}
.y1cd{bottom:965.233350px;}
.yb7{bottom:967.171350px;}
.y20c{bottom:967.633350px;}
.y13f{bottom:968.197500px;}
.y252{bottom:969.560100px;}
.yed{bottom:973.638000px;}
.y26d{bottom:977.570100px;}
.y1cc{bottom:979.633350px;}
.y82{bottom:981.571350px;}
.y20b{bottom:982.033350px;}
.y251{bottom:982.306350px;}
.yb6{bottom:985.171350px;}
.y5{bottom:986.944950px;}
.y13e{bottom:989.838000px;}
.y26c{bottom:990.800100px;}
.y1cb{bottom:994.033350px;}
.y250{bottom:995.052600px;}
.yec{bottom:995.278500px;}
.y81{bottom:999.571350px;}
.yb5{bottom:1003.171350px;}
.y26b{bottom:1004.030100px;}
.y24f{bottom:1007.798850px;}
.y1ca{bottom:1008.433350px;}
.yeb{bottom:1011.478500px;}
.y26a{bottom:1017.260100px;}
.y80{bottom:1017.571350px;}
.y24e{bottom:1020.545100px;}
.yb4{bottom:1021.171350px;}
.y1c9{bottom:1022.833350px;}
.y269{bottom:1030.490100px;}
.y13d{bottom:1031.620500px;}
.yea{bottom:1033.119000px;}
.y24d{bottom:1033.291350px;}
.y7f{bottom:1035.571350px;}
.y1c8{bottom:1037.233350px;}
.yb3{bottom:1039.171350px;}
.y268{bottom:1043.720100px;}
.y24c{bottom:1046.037600px;}
.y4{bottom:1051.084650px;}
.y1c7{bottom:1051.633350px;}
.ye9{bottom:1053.261000px;}
.y7e{bottom:1053.571350px;}
.y13c{bottom:1056.258000px;}
.y267{bottom:1056.950100px;}
.yb2{bottom:1057.171350px;}
.y24b{bottom:1058.783850px;}
.y1c6{bottom:1066.033350px;}
.y266{bottom:1070.180100px;}
.y24a{bottom:1071.530100px;}
.y7d{bottom:1071.571350px;}
.ye8{bottom:1077.898500px;}
.y1c5{bottom:1080.433350px;}
.y265{bottom:1083.410100px;}
.y249{bottom:1084.276350px;}
.y7c{bottom:1089.571350px;}
.y3{bottom:1090.090650px;}
.y1c4{bottom:1094.833350px;}
.y264{bottom:1096.640100px;}
.y248{bottom:1097.022600px;}
.ye7{bottom:1099.912350px;}
.y7b{bottom:1107.571350px;}
.y1c3{bottom:1109.233350px;}
.y247{bottom:1109.768850px;}
.y263{bottom:1109.870100px;}
.y7a{bottom:1140.046200px;}
.y139{bottom:1140.046350px;}
.y6{bottom:1140.946200px;}
.h15{height:32.895000px;}
.h7{height:34.944000px;}
.h12{height:35.088000px;}
.hf{height:39.474000px;}
.h14{height:41.667000px;}
.h3{height:42.384000px;}
.h2{height:43.680000px;}
.he{height:43.740000px;}
.h6{height:43.860000px;}
.h9{height:44.040000px;}
.h8{height:47.682000px;}
.h5{height:48.246000px;}
.hb{height:56.173920px;}
.h10{height:56.181720px;}
.h13{height:56.187720px;}
.ha{height:56.198520px;}
.h11{height:56.199120px;}
.hd{height:56.210520px;}
.h4{height:95.841797px;}
.hc{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:63.000000px;}
.xc{left:68.700000px;}
.xd{left:76.503150px;}
.x14{left:86.925000px;}
.x2{left:215.286450px;}
.x3{left:219.755850px;}
.x11{left:348.295500px;}
.xe{left:460.331550px;}
.x12{left:466.331850px;}
.xf{left:473.831700px;}
.x13{left:484.495200px;}
.x9{left:534.212700px;}
.x6{left:543.210000px;}
.xa{left:547.714050px;}
.x7{left:555.087000px;}
.x8{left:561.210000px;}
.x10{left:675.324900px;}
.x4{left:758.169450px;}
.x1{left:766.500000px;}
.xb{left:853.499955px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.v2{vertical-align:48.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.530133pt;}
.ls7{letter-spacing:0.530400pt;}
.ls9{letter-spacing:0.600000pt;}
.ls6{letter-spacing:0.697067pt;}
.ls5{letter-spacing:0.800000pt;}
.ls2{letter-spacing:3.360000pt;}
.ls4{letter-spacing:3.466667pt;}
.ls0{letter-spacing:21.770667pt;}
.ls3{letter-spacing:1057.326400pt;}
.ws95{word-spacing:-14.666667pt;}
.wsc5{word-spacing:-14.666133pt;}
.wse8{word-spacing:-14.085333pt;}
.ws30{word-spacing:-13.866667pt;}
.ws2{word-spacing:-13.344000pt;}
.ws0{word-spacing:-12.800000pt;}
.wse9{word-spacing:-11.120000pt;}
.wsf0{word-spacing:-10.999600pt;}
.ws6{word-spacing:-10.240427pt;}
.ws96{word-spacing:-9.724000pt;}
.ws1{word-spacing:-9.193600pt;}
.wse2{word-spacing:-6.986667pt;}
.wse3{word-spacing:-5.812800pt;}
.ws5a{word-spacing:-3.840533pt;}
.ws8c{word-spacing:-3.680000pt;}
.ws7e{word-spacing:-3.626133pt;}
.ws4{word-spacing:-3.360000pt;}
.wsbf{word-spacing:-3.093333pt;}
.ws7a{word-spacing:-2.719467pt;}
.ws77{word-spacing:-2.613333pt;}
.ws89{word-spacing:-2.453867pt;}
.wsbc{word-spacing:-2.293333pt;}
.ws6b{word-spacing:-2.240533pt;}
.wsf{word-spacing:-1.968000pt;}
.ws6a{word-spacing:-1.920000pt;}
.ws5{word-spacing:-1.578667pt;}
.wsd8{word-spacing:-1.547200pt;}
.wsb1{word-spacing:-1.439467pt;}
.ws2a{word-spacing:-1.332800pt;}
.wsdb{word-spacing:-1.280000pt;}
.ws48{word-spacing:-1.226133pt;}
.wsbe{word-spacing:-1.173333pt;}
.ws20{word-spacing:-1.120000pt;}
.ws84{word-spacing:-1.066667pt;}
.wsd7{word-spacing:-1.013333pt;}
.ws8e{word-spacing:-0.960533pt;}
.ws10{word-spacing:-0.864480pt;}
.ws43{word-spacing:-0.800000pt;}
.ws2b{word-spacing:-0.639467pt;}
.wsf1{word-spacing:-0.600000pt;}
.ws4d{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.532800pt;}
.wsda{word-spacing:-0.530400pt;}
.ws9b{word-spacing:-0.373333pt;}
.ws1e{word-spacing:-0.320000pt;}
.ws8d{word-spacing:-0.213333pt;}
.wse7{word-spacing:-0.128427pt;}
.ws7{word-spacing:-0.096000pt;}
.wsea{word-spacing:-0.043093pt;}
.ws3{word-spacing:0.000000pt;}
.wsec{word-spacing:0.043093pt;}
.ws35{word-spacing:0.106667pt;}
.wsc8{word-spacing:0.160533pt;}
.ws4e{word-spacing:0.213333pt;}
.ws14{word-spacing:0.320000pt;}
.wsc{word-spacing:0.479520pt;}
.ws9f{word-spacing:0.480000pt;}
.wsbd{word-spacing:0.532800pt;}
.ws7d{word-spacing:0.639467pt;}
.ws68{word-spacing:0.693333pt;}
.ws8f{word-spacing:0.747200pt;}
.ws11{word-spacing:0.816000pt;}
.ws5f{word-spacing:0.906667pt;}
.ws3f{word-spacing:1.066667pt;}
.ws74{word-spacing:1.173333pt;}
.wsdd{word-spacing:1.226133pt;}
.ws63{word-spacing:1.280000pt;}
.ws34{word-spacing:1.379040pt;}
.ws7c{word-spacing:1.386667pt;}
.wsab{word-spacing:1.439467pt;}
.ws88{word-spacing:1.706667pt;}
.wsd9{word-spacing:1.760000pt;}
.ws90{word-spacing:1.838720pt;}
.wsef{word-spacing:1.877760pt;}
.ws39{word-spacing:1.973333pt;}
.ws8{word-spacing:2.064000pt;}
.ws33{word-spacing:2.080000pt;}
.ws79{word-spacing:2.132800pt;}
.wse1{word-spacing:2.240533pt;}
.wscc{word-spacing:2.293333pt;}
.ws17{word-spacing:2.400000pt;}
.ws67{word-spacing:2.506667pt;}
.ws71{word-spacing:2.560000pt;}
.ws9d{word-spacing:2.666667pt;}
.ws44{word-spacing:2.773333pt;}
.wsb2{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.932800pt;}
.ws83{word-spacing:3.217760pt;}
.ws60{word-spacing:3.360000pt;}
.wsa0{word-spacing:3.413333pt;}
.ws50{word-spacing:3.519467pt;}
.ws7b{word-spacing:3.626133pt;}
.ws58{word-spacing:3.733867pt;}
.ws2f{word-spacing:3.786667pt;}
.wsb3{word-spacing:3.840533pt;}
.ws97{word-spacing:4.053333pt;}
.ws21{word-spacing:4.212800pt;}
.ws62{word-spacing:4.266667pt;}
.wsb4{word-spacing:4.319467pt;}
.wsce{word-spacing:4.373333pt;}
.ws85{word-spacing:4.426133pt;}
.wsed{word-spacing:4.564907pt;}
.ws56{word-spacing:4.640533pt;}
.wscf{word-spacing:4.693333pt;}
.ws4f{word-spacing:4.746667pt;}
.ws3d{word-spacing:4.800000pt;}
.ws82{word-spacing:4.853333pt;}
.wse0{word-spacing:4.906667pt;}
.ws52{word-spacing:4.960000pt;}
.ws61{word-spacing:5.012800pt;}
.ws8b{word-spacing:5.173333pt;}
.ws4c{word-spacing:5.227200pt;}
.ws45{word-spacing:5.333867pt;}
.wseb{word-spacing:5.418667pt;}
.ws13{word-spacing:5.440533pt;}
.wsee{word-spacing:5.461760pt;}
.ws99{word-spacing:5.600000pt;}
.ws9c{word-spacing:5.653333pt;}
.ws4a{word-spacing:5.760000pt;}
.wsa8{word-spacing:5.973333pt;}
.wse{word-spacing:6.000000pt;}
.ws40{word-spacing:6.080000pt;}
.ws2d{word-spacing:6.133867pt;}
.wsc2{word-spacing:6.186667pt;}
.wsb7{word-spacing:6.240000pt;}
.ws9e{word-spacing:6.346667pt;}
.ws64{word-spacing:6.400000pt;}
.ws73{word-spacing:6.666667pt;}
.ws32{word-spacing:6.720533pt;}
.wsa5{word-spacing:6.773333pt;}
.ws54{word-spacing:6.880000pt;}
.ws6e{word-spacing:6.933333pt;}
.ws12{word-spacing:6.986667pt;}
.ws6c{word-spacing:7.093333pt;}
.ws53{word-spacing:7.199467pt;}
.wsc0{word-spacing:7.360000pt;}
.ws19{word-spacing:7.466667pt;}
.wsb8{word-spacing:7.520533pt;}
.wsa{word-spacing:7.536000pt;}
.ws80{word-spacing:7.573333pt;}
.ws28{word-spacing:7.627200pt;}
.ws42{word-spacing:7.892800pt;}
.wsc4{word-spacing:7.946667pt;}
.wse5{word-spacing:8.053333pt;}
.wsc1{word-spacing:8.213867pt;}
.wsba{word-spacing:8.266667pt;}
.wsd0{word-spacing:8.320533pt;}
.wsaa{word-spacing:8.480000pt;}
.wsdc{word-spacing:8.586667pt;}
.wsd4{word-spacing:8.627840pt;}
.wscd{word-spacing:8.799467pt;}
.wse4{word-spacing:8.907200pt;}
.wsb{word-spacing:9.024000pt;}
.wsc7{word-spacing:9.066667pt;}
.wsd6{word-spacing:9.120533pt;}
.ws29{word-spacing:9.173333pt;}
.ws47{word-spacing:9.440000pt;}
.ws25{word-spacing:9.546667pt;}
.ws49{word-spacing:9.599467pt;}
.wsa4{word-spacing:9.653333pt;}
.ws75{word-spacing:9.760000pt;}
.ws72{word-spacing:9.920000pt;}
.ws78{word-spacing:9.973333pt;}
.wsbb{word-spacing:10.240000pt;}
.ws9a{word-spacing:10.292800pt;}
.wsa1{word-spacing:10.453333pt;}
.ws3c{word-spacing:10.507200pt;}
.ws3b{word-spacing:10.613867pt;}
.ws87{word-spacing:11.092800pt;}
.wsde{word-spacing:11.360000pt;}
.wsb9{word-spacing:11.413333pt;}
.ws98{word-spacing:11.679467pt;}
.ws70{word-spacing:11.733333pt;}
.ws18{word-spacing:11.840000pt;}
.wsa2{word-spacing:11.946667pt;}
.ws1b{word-spacing:12.053333pt;}
.ws81{word-spacing:12.426667pt;}
.ws7f{word-spacing:12.640000pt;}
.ws9{word-spacing:12.720000pt;}
.ws57{word-spacing:12.800533pt;}
.wsb0{word-spacing:12.906667pt;}
.wsb6{word-spacing:13.013333pt;}
.wsd3{word-spacing:13.066667pt;}
.ws15{word-spacing:13.226667pt;}
.ws6d{word-spacing:13.333333pt;}
.wsb5{word-spacing:13.706667pt;}
.ws16{word-spacing:13.972800pt;}
.wsd5{word-spacing:14.187200pt;}
.ws31{word-spacing:14.293867pt;}
.ws3e{word-spacing:14.453333pt;}
.ws55{word-spacing:14.559467pt;}
.ws69{word-spacing:14.613333pt;}
.ws1f{word-spacing:14.720000pt;}
.ws4b{word-spacing:14.933333pt;}
.wsc9{word-spacing:14.987200pt;}
.ws5b{word-spacing:15.146667pt;}
.ws86{word-spacing:15.200000pt;}
.ws5e{word-spacing:15.253333pt;}
.wsac{word-spacing:15.306667pt;}
.wsc3{word-spacing:15.466133pt;}
.wsa6{word-spacing:15.520000pt;}
.ws59{word-spacing:15.893333pt;}
.wsaf{word-spacing:16.213333pt;}
.ws2e{word-spacing:16.480533pt;}
.wsd2{word-spacing:16.852800pt;}
.ws5c{word-spacing:16.906667pt;}
.ws8a{word-spacing:17.386667pt;}
.ws1a{word-spacing:17.652800pt;}
.ws36{word-spacing:17.920000pt;}
.wsc6{word-spacing:18.186667pt;}
.ws27{word-spacing:18.720000pt;}
.wsa9{word-spacing:18.773867pt;}
.wsa3{word-spacing:19.093333pt;}
.ws6f{word-spacing:19.200000pt;}
.wscb{word-spacing:19.520000pt;}
.ws22{word-spacing:19.573333pt;}
.wsae{word-spacing:20.160533pt;}
.ws1d{word-spacing:20.853867pt;}
.wsca{word-spacing:21.226133pt;}
.ws26{word-spacing:21.280000pt;}
.ws3a{word-spacing:21.493333pt;}
.ws46{word-spacing:22.026133pt;}
.ws51{word-spacing:22.240533pt;}
.wsd{word-spacing:22.560000pt;}
.wsad{word-spacing:22.613333pt;}
.ws41{word-spacing:22.773333pt;}
.ws5d{word-spacing:23.147200pt;}
.wse6{word-spacing:24.693333pt;}
.wsdf{word-spacing:24.853333pt;}
.ws66{word-spacing:26.027200pt;}
.ws24{word-spacing:27.253333pt;}
.ws76{word-spacing:27.733333pt;}
.ws37{word-spacing:27.892800pt;}
.ws1c{word-spacing:29.813867pt;}
.ws38{word-spacing:31.893867pt;}
.ws65{word-spacing:34.346667pt;}
.wsd1{word-spacing:35.680533pt;}
.ws23{word-spacing:41.013333pt;}
.ws93{word-spacing:69.216000pt;}
.ws94{word-spacing:85.248000pt;}
.ws92{word-spacing:95.904000pt;}
.ws91{word-spacing:282.624000pt;}
._b{margin-left:-2635.916160pt;}
._a{margin-left:-1683.311040pt;}
._5{margin-left:-52.480000pt;}
._37{margin-left:-40.213333pt;}
._d{margin-left:-19.573333pt;}
._17{margin-left:-13.536000pt;}
._3d{margin-left:-11.000000pt;}
._3a{margin-left:-9.382400pt;}
._3{margin-left:-7.573867pt;}
._3c{margin-left:-6.682667pt;}
._7{margin-left:-5.520000pt;}
._8{margin-left:-4.298667pt;}
._1{margin-left:-3.204267pt;}
._6{margin-left:-2.076800pt;}
._2{margin-left:-1.156267pt;}
._4{width:1.186133pt;}
._c{width:2.181333pt;}
._39{width:6.272853pt;}
._3b{width:10.240000pt;}
._38{width:11.225600pt;}
._15{width:13.344000pt;}
._3f{width:15.240000pt;}
._36{width:17.701333pt;}
._28{width:26.640000pt;}
._3e{width:29.239200pt;}
._25{width:33.792000pt;}
._f{width:34.848000pt;}
._29{width:44.496000pt;}
._12{width:48.000000pt;}
._2e{width:98.592000pt;}
._26{width:104.484267pt;}
._30{width:109.248000pt;}
._2b{width:125.280000pt;}
._27{width:130.656000pt;}
._31{width:168.864000pt;}
._0{width:187.093333pt;}
._9{width:198.862080pt;}
._32{width:221.328000pt;}
._21{width:238.944000pt;}
._35{width:243.168000pt;}
._34{width:247.968000pt;}
._2c{width:269.280000pt;}
._2f{width:288.912000pt;}
._2d{width:291.168000pt;}
._2a{width:295.968000pt;}
._33{width:298.656000pt;}
._20{width:326.160000pt;}
._1f{width:423.072000pt;}
._19{width:481.632000pt;}
._18{width:482.592000pt;}
._1c{width:493.344000pt;}
._1b{width:524.448000pt;}
._1e{width:634.656000pt;}
._1a{width:673.728000pt;}
._16{width:682.656000pt;}
._10{width:711.072000pt;}
._1d{width:711.984000pt;}
._11{width:749.328000pt;}
._23{width:813.264000pt;}
._22{width:839.952000pt;}
._24{width:861.840000pt;}
._14{width:888.528000pt;}
._13{width:917.328000pt;}
._e{width:1057.805867pt;}
.fs5{font-size:35.360000pt;}
.fs7{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.798400pt;}
.ye6{bottom:36.798533pt;}
.y79{bottom:36.811467pt;}
.y138{bottom:36.811600pt;}
.y1{bottom:36.811867pt;}
.y14{bottom:72.461333pt;}
.y10f{bottom:72.466400pt;}
.y1c2{bottom:72.467867pt;}
.y5b{bottom:72.472133pt;}
.y17c{bottom:72.478800pt;}
.y77{bottom:72.480000pt;}
.y11b{bottom:72.480267pt;}
.y190{bottom:72.481200pt;}
.ye5{bottom:72.489200pt;}
.yb1{bottom:72.494533pt;}
.y246{bottom:72.568533pt;}
.y20a{bottom:77.185200pt;}
.y245{bottom:83.898533pt;}
.y1c1{bottom:85.267867pt;}
.y13{bottom:85.794667pt;}
.y10e{bottom:86.866400pt;}
.y5a{bottom:88.472133pt;}
.y17b{bottom:88.478800pt;}
.y76{bottom:88.480000pt;}
.y11a{bottom:88.480267pt;}
.y18f{bottom:88.481200pt;}
.ye4{bottom:88.489200pt;}
.yb0{bottom:88.494533pt;}
.y209{bottom:89.985200pt;}
.y244{bottom:95.228533pt;}
.y1c0{bottom:98.067867pt;}
.y12{bottom:99.128000pt;}
.y208{bottom:102.785200pt;}
.y59{bottom:104.472133pt;}
.y75{bottom:104.480000pt;}
.y119{bottom:104.480267pt;}
.y17a{bottom:104.481200pt;}
.ye3{bottom:104.489200pt;}
.yaf{bottom:104.494533pt;}
.y243{bottom:106.558533pt;}
.y1bf{bottom:110.867867pt;}
.y207{bottom:115.585200pt;}
.y1a{bottom:116.082533pt;}
.y242{bottom:117.888533pt;}
.y58{bottom:120.472133pt;}
.y74{bottom:120.480000pt;}
.y118{bottom:120.480267pt;}
.y179{bottom:120.481200pt;}
.ye2{bottom:120.489200pt;}
.yae{bottom:120.494533pt;}
.y1be{bottom:123.667867pt;}
.y206{bottom:128.385200pt;}
.y19{bottom:128.882533pt;}
.y241{bottom:129.218533pt;}
.y1bd{bottom:136.467867pt;}
.y57{bottom:136.472133pt;}
.y73{bottom:136.480000pt;}
.y117{bottom:136.480267pt;}
.y178{bottom:136.481200pt;}
.ye1{bottom:136.489200pt;}
.yad{bottom:136.494533pt;}
.y240{bottom:140.548533pt;}
.y205{bottom:141.185200pt;}
.y18{bottom:141.682533pt;}
.y1bc{bottom:149.267867pt;}
.y23f{bottom:151.878533pt;}
.y56{bottom:152.472133pt;}
.y72{bottom:152.480000pt;}
.y116{bottom:152.480267pt;}
.y177{bottom:152.481200pt;}
.ye0{bottom:152.489200pt;}
.yac{bottom:152.494533pt;}
.y204{bottom:153.985200pt;}
.y17{bottom:154.482533pt;}
.y1bb{bottom:162.067867pt;}
.y23e{bottom:163.208533pt;}
.y203{bottom:166.785200pt;}
.y16{bottom:167.282533pt;}
.y71{bottom:168.480000pt;}
.y115{bottom:168.480267pt;}
.y176{bottom:168.481200pt;}
.ydf{bottom:168.489200pt;}
.yab{bottom:168.494533pt;}
.y23d{bottom:174.538533pt;}
.y1ba{bottom:174.867867pt;}
.y202{bottom:179.585200pt;}
.y15{bottom:180.082533pt;}
.y70{bottom:184.480000pt;}
.y114{bottom:184.480267pt;}
.y175{bottom:184.481200pt;}
.yde{bottom:184.489200pt;}
.yaa{bottom:184.494533pt;}
.y23c{bottom:185.868533pt;}
.y1b9{bottom:187.667867pt;}
.y201{bottom:192.385200pt;}
.y23b{bottom:197.198533pt;}
.y1b8{bottom:200.467867pt;}
.y6f{bottom:200.480000pt;}
.y113{bottom:200.480267pt;}
.y174{bottom:200.481200pt;}
.ydd{bottom:200.489200pt;}
.ya9{bottom:200.494533pt;}
.y200{bottom:205.185200pt;}
.y23a{bottom:208.528533pt;}
.y55{bottom:212.498800pt;}
.y1b7{bottom:213.267867pt;}
.y6e{bottom:216.480000pt;}
.y112{bottom:216.480267pt;}
.y173{bottom:216.481200pt;}
.ya8{bottom:216.494533pt;}
.y1ff{bottom:217.985200pt;}
.y239{bottom:219.858533pt;}
.y1b6{bottom:226.067867pt;}
.y54{bottom:227.162800pt;}
.y1fe{bottom:230.785200pt;}
.y238{bottom:231.188533pt;}
.y6d{bottom:232.480000pt;}
.y172{bottom:232.481200pt;}
.ya7{bottom:232.494533pt;}
.y1b5{bottom:238.867867pt;}
.y53{bottom:241.826800pt;}
.ydc{bottom:242.102533pt;}
.y237{bottom:242.518533pt;}
.y1fd{bottom:243.585200pt;}
.y6c{bottom:248.480000pt;}
.y171{bottom:248.481200pt;}
.ya6{bottom:248.494533pt;}
.y1b4{bottom:251.667867pt;}
.y236{bottom:253.848533pt;}
.y1fc{bottom:256.385200pt;}
.y111{bottom:256.480267pt;}
.y52{bottom:256.490800pt;}
.ydb{bottom:258.102533pt;}
.y1b3{bottom:264.467867pt;}
.y6b{bottom:264.480000pt;}
.y170{bottom:264.481200pt;}
.ya5{bottom:264.494533pt;}
.y235{bottom:265.178533pt;}
.y1fb{bottom:269.185200pt;}
.y51{bottom:271.154800pt;}
.y110{bottom:272.480267pt;}
.yda{bottom:274.102533pt;}
.y234{bottom:276.508533pt;}
.y1b2{bottom:277.267867pt;}
.y6a{bottom:280.480000pt;}
.y16f{bottom:280.481200pt;}
.ya4{bottom:280.494533pt;}
.y1fa{bottom:281.985200pt;}
.y50{bottom:285.818800pt;}
.y233{bottom:287.838533pt;}
.y137{bottom:288.970000pt;}
.y1b1{bottom:290.067867pt;}
.yd9{bottom:290.102533pt;}
.y1f9{bottom:294.785200pt;}
.y69{bottom:296.480000pt;}
.y16e{bottom:296.481200pt;}
.ya3{bottom:296.494533pt;}
.y232{bottom:299.168533pt;}
.y4f{bottom:300.482800pt;}
.y1b0{bottom:302.867867pt;}
.y136{bottom:304.969867pt;}
.yd8{bottom:306.102533pt;}
.y1f8{bottom:307.585200pt;}
.y231{bottom:310.498533pt;}
.y68{bottom:312.480000pt;}
.y16d{bottom:312.481200pt;}
.y4e{bottom:315.146800pt;}
.y1af{bottom:315.667867pt;}
.y1f7{bottom:320.385200pt;}
.y135{bottom:320.969867pt;}
.y230{bottom:321.828533pt;}
.yd7{bottom:322.102533pt;}
.ya2{bottom:324.494533pt;}
.y109{bottom:328.180000pt;}
.y1ae{bottom:328.467867pt;}
.y67{bottom:328.480000pt;}
.y16c{bottom:328.481200pt;}
.y4d{bottom:329.810800pt;}
.y22f{bottom:333.158533pt;}
.y1f6{bottom:333.185200pt;}
.y134{bottom:336.969867pt;}
.yd6{bottom:338.102533pt;}
.ya1{bottom:340.494533pt;}
.y1ad{bottom:341.267867pt;}
.y4c{bottom:344.474800pt;}
.y66{bottom:344.480000pt;}
.y16b{bottom:344.481200pt;}
.y22e{bottom:344.488533pt;}
.y1f5{bottom:345.985200pt;}
.y108{bottom:346.084000pt;}
.y133{bottom:352.969867pt;}
.y1ac{bottom:354.067867pt;}
.yd5{bottom:354.102533pt;}
.y22d{bottom:355.818533pt;}
.ya0{bottom:356.494533pt;}
.y1f4{bottom:358.785200pt;}
.y4b{bottom:359.138800pt;}
.y65{bottom:360.480000pt;}
.y16a{bottom:360.481200pt;}
.y107{bottom:365.320000pt;}
.y160{bottom:365.774533pt;}
.y1ab{bottom:366.867867pt;}
.y22c{bottom:367.148533pt;}
.y18e{bottom:368.494533pt;}
.y132{bottom:368.969867pt;}
.yd4{bottom:370.102533pt;}
.y1f3{bottom:371.585200pt;}
.y9f{bottom:372.494533pt;}
.y4a{bottom:373.802800pt;}
.y64{bottom:376.480000pt;}
.y169{bottom:376.481200pt;}
.y22b{bottom:378.478533pt;}
.y1aa{bottom:379.667867pt;}
.y15f{bottom:381.774533pt;}
.y1f2{bottom:384.385200pt;}
.y18d{bottom:384.494533pt;}
.y106{bottom:384.556000pt;}
.y131{bottom:384.969867pt;}
.yd3{bottom:386.102533pt;}
.y49{bottom:388.466800pt;}
.y9e{bottom:388.494533pt;}
.y22a{bottom:389.811867pt;}
.y1a9{bottom:392.467867pt;}
.y63{bottom:392.480000pt;}
.y168{bottom:392.481200pt;}
.y1f1{bottom:397.185200pt;}
.y15e{bottom:397.774533pt;}
.y18c{bottom:400.494533pt;}
.y130{bottom:400.969867pt;}
.yd2{bottom:402.102533pt;}
.y48{bottom:403.130800pt;}
.y105{bottom:403.792000pt;}
.y9d{bottom:404.494533pt;}
.y1a8{bottom:405.267867pt;}
.y62{bottom:408.480000pt;}
.y167{bottom:408.481200pt;}
.y1f0{bottom:409.985200pt;}
.y15d{bottom:413.774533pt;}
.y18b{bottom:416.494533pt;}
.y12f{bottom:416.969867pt;}
.y47{bottom:417.794800pt;}
.y1a7{bottom:418.067867pt;}
.yd1{bottom:418.102533pt;}
.y9c{bottom:420.494533pt;}
.y1ef{bottom:422.785200pt;}
.y104{bottom:423.028000pt;}
.y61{bottom:424.480000pt;}
.y166{bottom:424.481200pt;}
.y15c{bottom:429.774533pt;}
.y1a6{bottom:430.867867pt;}
.y46{bottom:432.458800pt;}
.y18a{bottom:432.494533pt;}
.y12e{bottom:432.969867pt;}
.yd0{bottom:434.102533pt;}
.y1ee{bottom:435.585200pt;}
.y9b{bottom:436.494533pt;}
.y60{bottom:440.480000pt;}
.y165{bottom:440.481200pt;}
.y103{bottom:442.264000pt;}
.y1a5{bottom:443.667867pt;}
.y15b{bottom:445.774533pt;}
.y229{bottom:446.251867pt;}
.y45{bottom:447.122800pt;}
.y1ed{bottom:448.385200pt;}
.y189{bottom:448.494533pt;}
.y12d{bottom:448.969867pt;}
.ycf{bottom:450.102533pt;}
.y9a{bottom:452.494533pt;}
.y1a4{bottom:456.467867pt;}
.y5f{bottom:456.480000pt;}
.y164{bottom:456.481200pt;}
.y228{bottom:459.051867pt;}
.y1ec{bottom:461.185200pt;}
.y102{bottom:461.500000pt;}
.y15a{bottom:461.774533pt;}
.y44{bottom:461.786800pt;}
.y188{bottom:464.494533pt;}
.y12c{bottom:464.969867pt;}
.yce{bottom:466.102533pt;}
.y99{bottom:468.494533pt;}
.y1a3{bottom:469.267867pt;}
.y227{bottom:471.851867pt;}
.y163{bottom:472.481200pt;}
.y5e{bottom:472.485467pt;}
.y1eb{bottom:473.985200pt;}
.y43{bottom:476.450800pt;}
.y159{bottom:477.774533pt;}
.y187{bottom:480.494533pt;}
.y101{bottom:480.736000pt;}
.y12b{bottom:480.969867pt;}
.y1a2{bottom:482.067867pt;}
.ycd{bottom:482.102533pt;}
.y226{bottom:484.651867pt;}
.y1ea{bottom:486.785200pt;}
.y162{bottom:488.481200pt;}
.y5d{bottom:488.485467pt;}
.y42{bottom:491.114800pt;}
.y158{bottom:493.774533pt;}
.y98{bottom:496.494533pt;}
.y12a{bottom:496.969867pt;}
.y225{bottom:497.451867pt;}
.ycc{bottom:498.102533pt;}
.y1e9{bottom:499.585200pt;}
.y100{bottom:499.972000pt;}
.y1a1{bottom:500.201200pt;}
.y161{bottom:504.481200pt;}
.y5c{bottom:504.485467pt;}
.y41{bottom:505.778800pt;}
.y157{bottom:509.774533pt;}
.y224{bottom:510.251867pt;}
.y1e8{bottom:512.385200pt;}
.y97{bottom:512.494533pt;}
.y129{bottom:512.969867pt;}
.ycb{bottom:514.102533pt;}
.y1a0{bottom:516.201200pt;}
.yff{bottom:519.208000pt;}
.y40{bottom:520.442800pt;}
.y1e7{bottom:525.185200pt;}
.y156{bottom:525.774533pt;}
.y223{bottom:528.385200pt;}
.y96{bottom:528.494533pt;}
.y128{bottom:528.969867pt;}
.yca{bottom:530.102533pt;}
.y19f{bottom:532.201200pt;}
.y3f{bottom:535.106800pt;}
.y1e6{bottom:537.985200pt;}
.yfe{bottom:538.444000pt;}
.y222{bottom:541.185200pt;}
.y155{bottom:541.774533pt;}
.y95{bottom:544.494533pt;}
.y127{bottom:544.969867pt;}
.yc9{bottom:546.102533pt;}
.y19e{bottom:548.201200pt;}
.y3e{bottom:549.770800pt;}
.y14f{bottom:549.825333pt;}
.y1e5{bottom:550.785200pt;}
.y221{bottom:553.985200pt;}
.y2b{bottom:557.525200pt;}
.yfd{bottom:557.680000pt;}
.y154{bottom:557.774533pt;}
.y94{bottom:560.494533pt;}
.y126{bottom:560.969867pt;}
.yc8{bottom:562.102533pt;}
.y1e4{bottom:563.585200pt;}
.y19d{bottom:564.201200pt;}
.y3d{bottom:564.434800pt;}
.y220{bottom:566.785200pt;}
.y2a{bottom:572.189200pt;}
.y14e{bottom:573.412000pt;}
.y153{bottom:573.774533pt;}
.y1e3{bottom:576.385200pt;}
.y93{bottom:576.494533pt;}
.yfc{bottom:576.916000pt;}
.y125{bottom:576.969867pt;}
.yc7{bottom:578.102533pt;}
.y3c{bottom:579.098800pt;}
.y19c{bottom:580.201200pt;}
.y21f{bottom:584.918533pt;}
.y29{bottom:586.853200pt;}
.y1e2{bottom:589.185200pt;}
.y14d{bottom:591.316000pt;}
.y92{bottom:592.494533pt;}
.y124{bottom:592.973600pt;}
.y3b{bottom:593.762800pt;}
.yc6{bottom:594.102533pt;}
.yfb{bottom:596.152000pt;}
.y19b{bottom:596.201200pt;}
.y28{bottom:601.527867pt;}
.y1e1{bottom:601.985200pt;}
.y21e{bottom:603.051867pt;}
.y3a{bottom:608.426800pt;}
.y91{bottom:608.494533pt;}
.y123{bottom:608.973600pt;}
.yc5{bottom:610.102533pt;}
.y14c{bottom:610.552000pt;}
.y19a{bottom:612.201200pt;}
.y152{bottom:613.774533pt;}
.y1e0{bottom:614.785200pt;}
.yfa{bottom:615.388000pt;}
.y21d{bottom:615.851867pt;}
.y27{bottom:616.191867pt;}
.y39{bottom:623.090800pt;}
.y90{bottom:624.494533pt;}
.y122{bottom:624.973600pt;}
.yc4{bottom:626.102533pt;}
.y1df{bottom:627.585200pt;}
.y199{bottom:628.201200pt;}
.y21c{bottom:628.651867pt;}
.y151{bottom:629.774533pt;}
.y14b{bottom:629.788000pt;}
.y26{bottom:630.855867pt;}
.yf9{bottom:634.624000pt;}
.y38{bottom:637.754800pt;}
.y1de{bottom:640.385200pt;}
.y8f{bottom:640.494533pt;}
.y121{bottom:640.973600pt;}
.y21b{bottom:641.451867pt;}
.y198{bottom:644.201200pt;}
.y25{bottom:645.519867pt;}
.y150{bottom:645.774533pt;}
.y14a{bottom:649.024000pt;}
.y78{bottom:649.050440pt;}
.y37{bottom:652.418800pt;}
.y11{bottom:652.824000pt;}
.y1dd{bottom:653.185200pt;}
.yf8{bottom:653.860000pt;}
.y8e{bottom:656.494533pt;}
.y120{bottom:656.973600pt;}
.y21a{bottom:659.585200pt;}
.y24{bottom:660.189200pt;}
.y197{bottom:660.201200pt;}
.y1dc{bottom:665.985200pt;}
.y10{bottom:666.157333pt;}
.y36{bottom:667.082800pt;}
.yc3{bottom:667.707867pt;}
.y149{bottom:668.260000pt;}
.y8d{bottom:672.494533pt;}
.y11f{bottom:672.973600pt;}
.yf7{bottom:673.096000pt;}
.y23{bottom:674.853200pt;}
.y196{bottom:676.201200pt;}
.y219{bottom:677.718533pt;}
.y1db{bottom:678.785200pt;}
.yf{bottom:679.490667pt;}
.y262{bottom:680.551200pt;}
.y27d{bottom:680.791200pt;}
.y35{bottom:681.746800pt;}
.y13b{bottom:682.401067pt;}
.yc2{bottom:683.707867pt;}
.y148{bottom:687.496000pt;}
.y8c{bottom:688.494533pt;}
.y11e{bottom:688.973600pt;}
.y22{bottom:689.527867pt;}
.y1da{bottom:691.585200pt;}
.y261{bottom:691.881200pt;}
.y195{bottom:692.201200pt;}
.yf6{bottom:692.332000pt;}
.y27c{bottom:692.551200pt;}
.y218{bottom:695.851867pt;}
.y34{bottom:696.410800pt;}
.y13a{bottom:696.801067pt;}
.yc1{bottom:699.707867pt;}
.y260{bottom:703.211200pt;}
.y21{bottom:704.191867pt;}
.y27b{bottom:704.311200pt;}
.y1d9{bottom:704.385200pt;}
.y186{bottom:704.494533pt;}
.y11d{bottom:704.973600pt;}
.ye{bottom:705.496000pt;}
.y147{bottom:706.732000pt;}
.y194{bottom:708.201200pt;}
.y217{bottom:708.651867pt;}
.y33{bottom:711.074800pt;}
.yf5{bottom:711.568000pt;}
.y25f{bottom:714.541200pt;}
.yc0{bottom:715.707867pt;}
.y27a{bottom:716.071200pt;}
.y1d8{bottom:717.185200pt;}
.y20{bottom:718.855867pt;}
.y185{bottom:720.494533pt;}
.y11c{bottom:720.973600pt;}
.y216{bottom:721.451867pt;}
.y193{bottom:724.201200pt;}
.y32{bottom:725.738800pt;}
.y25e{bottom:725.871200pt;}
.y146{bottom:725.968000pt;}
.y279{bottom:727.831200pt;}
.y8b{bottom:728.507867pt;}
.y1d7{bottom:729.985200pt;}
.yf4{bottom:730.804000pt;}
.ybf{bottom:731.707867pt;}
.y1f{bottom:733.519867pt;}
.yd{bottom:735.629333pt;}
.y184{bottom:736.494533pt;}
.y25d{bottom:737.201200pt;}
.y215{bottom:739.585200pt;}
.y278{bottom:739.591200pt;}
.y192{bottom:740.201200pt;}
.y31{bottom:740.402800pt;}
.y1d6{bottom:742.785200pt;}
.y8a{bottom:744.507867pt;}
.y145{bottom:745.204000pt;}
.ybe{bottom:747.707867pt;}
.y1e{bottom:748.191867pt;}
.y25c{bottom:748.531200pt;}
.yc{bottom:748.962667pt;}
.yf3{bottom:750.040000pt;}
.y277{bottom:751.351200pt;}
.y214{bottom:752.385200pt;}
.y183{bottom:752.494533pt;}
.y30{bottom:755.066800pt;}
.y1d5{bottom:755.585200pt;}
.y191{bottom:756.201200pt;}
.y10d{bottom:756.396533pt;}
.y25b{bottom:759.861200pt;}
.y89{bottom:760.507867pt;}
.yb{bottom:762.296000pt;}
.y1d{bottom:762.855867pt;}
.y276{bottom:763.111200pt;}
.ybd{bottom:763.707867pt;}
.y144{bottom:764.440000pt;}
.y213{bottom:765.185200pt;}
.y1d4{bottom:768.385200pt;}
.y182{bottom:768.494533pt;}
.yf2{bottom:769.276000pt;}
.y2f{bottom:769.730800pt;}
.y10c{bottom:770.796533pt;}
.y25a{bottom:771.191200pt;}
.y275{bottom:774.871200pt;}
.ya{bottom:775.629333pt;}
.y88{bottom:776.507867pt;}
.y1c{bottom:777.519867pt;}
.y212{bottom:777.985200pt;}
.ybc{bottom:779.707867pt;}
.y1d3{bottom:781.185200pt;}
.y259{bottom:782.521200pt;}
.y143{bottom:783.676000pt;}
.y2e{bottom:784.394800pt;}
.y181{bottom:784.494533pt;}
.y10b{bottom:785.196533pt;}
.y274{bottom:786.631200pt;}
.yf1{bottom:788.512000pt;}
.y9{bottom:788.962667pt;}
.y211{bottom:790.785200pt;}
.y87{bottom:792.507867pt;}
.y258{bottom:793.851200pt;}
.y1d2{bottom:793.985200pt;}
.ybb{bottom:795.707867pt;}
.y273{bottom:798.391200pt;}
.y2d{bottom:799.058800pt;}
.y10a{bottom:799.596533pt;}
.y180{bottom:800.494533pt;}
.y8{bottom:802.296000pt;}
.y142{bottom:802.912000pt;}
.y210{bottom:803.585200pt;}
.y257{bottom:805.181200pt;}
.y1b{bottom:805.725467pt;}
.y1d1{bottom:806.785200pt;}
.yf0{bottom:807.748000pt;}
.y86{bottom:808.507867pt;}
.y272{bottom:810.151200pt;}
.yba{bottom:811.707867pt;}
.y2c{bottom:813.725467pt;}
.y7{bottom:815.629333pt;}
.y20f{bottom:816.385200pt;}
.y17f{bottom:816.494533pt;}
.y256{bottom:816.511200pt;}
.y1d0{bottom:819.585200pt;}
.y271{bottom:821.911200pt;}
.y141{bottom:822.148000pt;}
.y85{bottom:824.507867pt;}
.yef{bottom:826.984000pt;}
.yb9{bottom:827.707867pt;}
.y255{bottom:827.841200pt;}
.y1cf{bottom:832.385200pt;}
.y17e{bottom:832.494533pt;}
.y270{bottom:833.671200pt;}
.y20e{bottom:834.518533pt;}
.y254{bottom:839.171200pt;}
.y84{bottom:840.507867pt;}
.y140{bottom:841.384000pt;}
.yb8{bottom:843.707867pt;}
.y1ce{bottom:845.185200pt;}
.y26f{bottom:845.431200pt;}
.yee{bottom:846.220000pt;}
.y20d{bottom:847.318533pt;}
.y17d{bottom:848.494533pt;}
.y253{bottom:850.501200pt;}
.y83{bottom:856.507867pt;}
.y26e{bottom:857.191200pt;}
.y1cd{bottom:857.985200pt;}
.yb7{bottom:859.707867pt;}
.y20c{bottom:860.118533pt;}
.y13f{bottom:860.620000pt;}
.y252{bottom:861.831200pt;}
.yed{bottom:865.456000pt;}
.y26d{bottom:868.951200pt;}
.y1cc{bottom:870.785200pt;}
.y82{bottom:872.507867pt;}
.y20b{bottom:872.918533pt;}
.y251{bottom:873.161200pt;}
.yb6{bottom:875.707867pt;}
.y5{bottom:877.284400pt;}
.y13e{bottom:879.856000pt;}
.y26c{bottom:880.711200pt;}
.y1cb{bottom:883.585200pt;}
.y250{bottom:884.491200pt;}
.yec{bottom:884.692000pt;}
.y81{bottom:888.507867pt;}
.yb5{bottom:891.707867pt;}
.y26b{bottom:892.471200pt;}
.y24f{bottom:895.821200pt;}
.y1ca{bottom:896.385200pt;}
.yeb{bottom:899.092000pt;}
.y26a{bottom:904.231200pt;}
.y80{bottom:904.507867pt;}
.y24e{bottom:907.151200pt;}
.yb4{bottom:907.707867pt;}
.y1c9{bottom:909.185200pt;}
.y269{bottom:915.991200pt;}
.y13d{bottom:916.996000pt;}
.yea{bottom:918.328000pt;}
.y24d{bottom:918.481200pt;}
.y7f{bottom:920.507867pt;}
.y1c8{bottom:921.985200pt;}
.yb3{bottom:923.707867pt;}
.y268{bottom:927.751200pt;}
.y24c{bottom:929.811200pt;}
.y4{bottom:934.297467pt;}
.y1c7{bottom:934.785200pt;}
.ye9{bottom:936.232000pt;}
.y7e{bottom:936.507867pt;}
.y13c{bottom:938.896000pt;}
.y267{bottom:939.511200pt;}
.yb2{bottom:939.707867pt;}
.y24b{bottom:941.141200pt;}
.y1c6{bottom:947.585200pt;}
.y266{bottom:951.271200pt;}
.y24a{bottom:952.471200pt;}
.y7d{bottom:952.507867pt;}
.ye8{bottom:958.132000pt;}
.y1c5{bottom:960.385200pt;}
.y265{bottom:963.031200pt;}
.y249{bottom:963.801200pt;}
.y7c{bottom:968.507867pt;}
.y3{bottom:968.969467pt;}
.y1c4{bottom:973.185200pt;}
.y264{bottom:974.791200pt;}
.y248{bottom:975.131200pt;}
.ye7{bottom:977.699867pt;}
.y7b{bottom:984.507867pt;}
.y1c3{bottom:985.985200pt;}
.y247{bottom:986.461200pt;}
.y263{bottom:986.551200pt;}
.y7a{bottom:1013.374400pt;}
.y139{bottom:1013.374533pt;}
.y6{bottom:1014.174400pt;}
.h15{height:29.240000pt;}
.h7{height:31.061333pt;}
.h12{height:31.189333pt;}
.hf{height:35.088000pt;}
.h14{height:37.037333pt;}
.h3{height:37.674667pt;}
.h2{height:38.826667pt;}
.he{height:38.880000pt;}
.h6{height:38.986667pt;}
.h9{height:39.146667pt;}
.h8{height:42.384000pt;}
.h5{height:42.885333pt;}
.hb{height:49.932373pt;}
.h10{height:49.939307pt;}
.h13{height:49.944640pt;}
.ha{height:49.954240pt;}
.h11{height:49.954773pt;}
.hd{height:49.964907pt;}
.h4{height:85.192708pt;}
.hc{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:56.000000pt;}
.xc{left:61.066667pt;}
.xd{left:68.002800pt;}
.x14{left:77.266667pt;}
.x2{left:191.365733pt;}
.x3{left:195.338533pt;}
.x11{left:309.596000pt;}
.xe{left:409.183600pt;}
.x12{left:414.517200pt;}
.xf{left:421.183733pt;}
.x13{left:430.662400pt;}
.x9{left:474.855733pt;}
.x6{left:482.853333pt;}
.xa{left:486.856933pt;}
.x7{left:493.410667pt;}
.x8{left:498.853333pt;}
.x10{left:600.288800pt;}
.x4{left:673.928400pt;}
.x1{left:681.333333pt;}
.xb{left:758.666627pt;}
}




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