
    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_a9511d1ae0a9274d99015032.woff')format("woff");}.ff1{font-family:ff1;line-height:1.239000;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_ecaee66de6622d3c56000738.woff')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_a9511d1ae0a9274d99015032.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_948e2eaa754a21bf2a933fac.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_4205e407bff3c5c4868ec0a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_948e2eaa754a21bf2a933fac.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ff8{font-family:ff8;line-height:1.203000;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_78b81b6627267565cdf59cf0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_948e2eaa754a21bf2a933fac.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202000;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_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ffb{font-family:ffb;line-height:1.203000;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_a23bad1537e8f811e06d4db8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.444000;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_948e2eaa754a21bf2a933fac.woff')format("woff");}.ffd{font-family:ffd;line-height:1.202000;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_161fbcd5e175dd9fd7905a78.woff')format("woff");}.ffe{font-family:ffe;line-height:1.203000;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_9d4378b8a4feb26be25952db.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_09ebb308a5cf38d7b240c1db.woff')format("woff");}.ff10{font-family:ff10;line-height:1.222000;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_5c0a1a1cd5c819478fd8a05f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.629000;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_e820df80e33b904abb9f424a.woff')format("woff");}.ff12{font-family:ff12;line-height:1.587000;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_b8a73b3070bce8fdcb17d6c3.woff')format("woff");}.ff13{font-family:ff13;line-height:1.587000;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_398e21c74bf93901b0392ed0.woff')format("woff");}.ff14{font-family:ff14;line-height:1.183000;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;}
.m3{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);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v3{vertical-align:26.399780px;}
.ls7{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-1.050000px;}
.ls3{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.495000px;}
.ls8{letter-spacing:-0.432000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000009px;}
.ls5{letter-spacing:0.000100px;}
.ls0{letter-spacing:9.360000px;}
.ls6{letter-spacing:48.538800px;}
.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;}
}
.ws5{word-spacing:-14.454000px;}
.wsa6{word-spacing:-13.935600px;}
.ws13{word-spacing:-13.818000px;}
.ws9{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.483600px;}
.ws8{word-spacing:-11.880000px;}
.wsf3{word-spacing:-11.448000px;}
.ws129{word-spacing:-11.426400px;}
.wsd7{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.wsd6{word-spacing:-9.936000px;}
.ws3{word-spacing:-9.855000px;}
.wsd5{word-spacing:-9.504000px;}
.ws12a{word-spacing:-9.360000px;}
.ws128{word-spacing:-9.315000px;}
.wsd3{word-spacing:-8.784000px;}
.wsd4{word-spacing:-8.736000px;}
.ws1{word-spacing:-8.148000px;}
.ws12b{word-spacing:-8.100000px;}
.ws4{word-spacing:-6.898500px;}
.wsaf{word-spacing:-6.585600px;}
.wsad{word-spacing:-3.998400px;}
.wsb7{word-spacing:-3.410400px;}
.wsc8{word-spacing:-3.057600px;}
.ws11c{word-spacing:-2.881200px;}
.wsa8{word-spacing:-2.763600px;}
.wsc6{word-spacing:-2.587200px;}
.wsf0{word-spacing:-2.400000px;}
.wsae{word-spacing:-2.352000px;}
.wsf1{word-spacing:-2.016000px;}
.ws11{word-spacing:-1.890000px;}
.wsef{word-spacing:-1.728000px;}
.ws12d{word-spacing:-1.575000px;}
.ws119{word-spacing:-1.528800px;}
.ws118{word-spacing:-1.470000px;}
.wsab{word-spacing:-1.411200px;}
.wsb0{word-spacing:-1.058400px;}
.ws55{word-spacing:-0.999600px;}
.wsd{word-spacing:-0.882000px;}
.ws6c{word-spacing:-0.823200px;}
.wsb8{word-spacing:-0.705600px;}
.ws94{word-spacing:-0.646800px;}
.ws31{word-spacing:-0.588000px;}
.wsa2{word-spacing:-0.529200px;}
.ws9e{word-spacing:-0.470400px;}
.ws43{word-spacing:-0.411600px;}
.ws6d{word-spacing:-0.352800px;}
.ws86{word-spacing:-0.294000px;}
.wsf5{word-spacing:-0.288000px;}
.wsf4{word-spacing:-0.240000px;}
.ws5f{word-spacing:-0.235200px;}
.wsf2{word-spacing:-0.192000px;}
.ws67{word-spacing:-0.176400px;}
.ws40{word-spacing:-0.117600px;}
.ws19{word-spacing:-0.058800px;}
.ws12c{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.wsce{word-spacing:0.058800px;}
.ws27{word-spacing:0.117600px;}
.ws10{word-spacing:0.168000px;}
.wsa0{word-spacing:0.176400px;}
.ws78{word-spacing:0.235200px;}
.wse{word-spacing:0.252000px;}
.wsb5{word-spacing:0.294000px;}
.ws47{word-spacing:0.352800px;}
.ws6e{word-spacing:0.411600px;}
.ws113{word-spacing:0.470400px;}
.ws36{word-spacing:0.529200px;}
.ws70{word-spacing:0.588000px;}
.ws9d{word-spacing:0.646800px;}
.ws84{word-spacing:0.764400px;}
.wsa4{word-spacing:0.823200px;}
.ws22{word-spacing:0.882000px;}
.wsa5{word-spacing:0.940800px;}
.wsf{word-spacing:0.966000px;}
.ws28{word-spacing:0.999600px;}
.ws99{word-spacing:1.058400px;}
.wse3{word-spacing:1.117200px;}
.ws24{word-spacing:1.176000px;}
.ws3c{word-spacing:1.234800px;}
.wscf{word-spacing:1.293600px;}
.wsdd{word-spacing:1.352400px;}
.ws9c{word-spacing:1.411200px;}
.ws4d{word-spacing:1.470000px;}
.ws102{word-spacing:1.528800px;}
.wsa9{word-spacing:1.587600px;}
.wsc{word-spacing:1.638000px;}
.ws58{word-spacing:1.646400px;}
.ws87{word-spacing:1.705200px;}
.wsb{word-spacing:1.764000px;}
.ws63{word-spacing:1.822800px;}
.wsbc{word-spacing:1.881600px;}
.ws8b{word-spacing:1.940400px;}
.wsb9{word-spacing:1.999200px;}
.wsf9{word-spacing:2.058000px;}
.ws90{word-spacing:2.116800px;}
.ws62{word-spacing:2.175600px;}
.ws30{word-spacing:2.234400px;}
.wse0{word-spacing:2.293200px;}
.ws8a{word-spacing:2.352000px;}
.wsdf{word-spacing:2.410800px;}
.ws42{word-spacing:2.469600px;}
.ws4f{word-spacing:2.528400px;}
.ws85{word-spacing:2.587200px;}
.ws15{word-spacing:2.640000px;}
.ws5e{word-spacing:2.646000px;}
.ws23{word-spacing:2.704800px;}
.ws2d{word-spacing:2.763600px;}
.ws92{word-spacing:2.822400px;}
.ws88{word-spacing:2.881200px;}
.ws1a{word-spacing:2.940000px;}
.ws34{word-spacing:2.998800px;}
.ws44{word-spacing:3.057600px;}
.ws14{word-spacing:3.072000px;}
.ws51{word-spacing:3.116400px;}
.ws60{word-spacing:3.175200px;}
.wscc{word-spacing:3.234000px;}
.wsd1{word-spacing:3.292800px;}
.ws2c{word-spacing:3.351600px;}
.ws72{word-spacing:3.410400px;}
.ws7f{word-spacing:3.469200px;}
.wse9{word-spacing:3.528000px;}
.ws1f{word-spacing:3.586800px;}
.wsde{word-spacing:3.645600px;}
.wsca{word-spacing:3.704400px;}
.ws126{word-spacing:3.763200px;}
.ws32{word-spacing:3.822000px;}
.ws100{word-spacing:3.880800px;}
.ws93{word-spacing:3.939600px;}
.ws12{word-spacing:3.960000px;}
.ws3f{word-spacing:3.998400px;}
.wsa1{word-spacing:4.057200px;}
.ws35{word-spacing:4.116000px;}
.ws81{word-spacing:4.174800px;}
.ws1d{word-spacing:4.233600px;}
.ws66{word-spacing:4.292400px;}
.ws29{word-spacing:4.351200px;}
.ws3d{word-spacing:4.410000px;}
.ws2f{word-spacing:4.468800px;}
.ws57{word-spacing:4.527600px;}
.ws76{word-spacing:4.586400px;}
.ws1b{word-spacing:4.645200px;}
.ws49{word-spacing:4.704000px;}
.ws10d{word-spacing:4.762800px;}
.ws2e{word-spacing:4.821600px;}
.ws2a{word-spacing:4.880400px;}
.ws3a{word-spacing:4.939200px;}
.wsdc{word-spacing:4.998000px;}
.wsc9{word-spacing:5.056800px;}
.ws61{word-spacing:5.115600px;}
.ws109{word-spacing:5.174400px;}
.wsf6{word-spacing:5.233200px;}
.ws6b{word-spacing:5.292000px;}
.ws52{word-spacing:5.350800px;}
.ws5c{word-spacing:5.409600px;}
.ws4e{word-spacing:5.468400px;}
.ws95{word-spacing:5.527200px;}
.ws2b{word-spacing:5.586000px;}
.ws73{word-spacing:5.644800px;}
.ws53{word-spacing:5.703600px;}
.ws33{word-spacing:5.762400px;}
.ws10a{word-spacing:5.821200px;}
.ws7a{word-spacing:5.880000px;}
.ws3e{word-spacing:5.938800px;}
.ws26{word-spacing:5.997600px;}
.ws5d{word-spacing:6.056400px;}
.ws69{word-spacing:6.115200px;}
.ws7c{word-spacing:6.174000px;}
.ws89{word-spacing:6.232800px;}
.ws106{word-spacing:6.291600px;}
.ws10e{word-spacing:6.350400px;}
.ws41{word-spacing:6.409200px;}
.ws65{word-spacing:6.468000px;}
.ws75{word-spacing:6.526800px;}
.ws17{word-spacing:6.585600px;}
.ws10c{word-spacing:6.644400px;}
.wsa3{word-spacing:6.703200px;}
.ws77{word-spacing:6.762000px;}
.wse7{word-spacing:6.820800px;}
.ws25{word-spacing:6.879600px;}
.wsbb{word-spacing:6.938400px;}
.ws80{word-spacing:6.997200px;}
.ws5a{word-spacing:7.056000px;}
.ws37{word-spacing:7.114800px;}
.ws79{word-spacing:7.173600px;}
.ws1e{word-spacing:7.232400px;}
.ws68{word-spacing:7.291200px;}
.ws97{word-spacing:7.350000px;}
.ws20{word-spacing:7.408800px;}
.ws8e{word-spacing:7.467600px;}
.wsd2{word-spacing:7.526400px;}
.ws6a{word-spacing:7.585200px;}
.wsb3{word-spacing:7.644000px;}
.ws4a{word-spacing:7.702800px;}
.ws56{word-spacing:7.761600px;}
.ws8f{word-spacing:7.820400px;}
.ws8c{word-spacing:7.879200px;}
.ws64{word-spacing:7.938000px;}
.wsfd{word-spacing:7.996800px;}
.ws39{word-spacing:8.055600px;}
.ws7b{word-spacing:8.114400px;}
.ws59{word-spacing:8.173200px;}
.ws50{word-spacing:8.232000px;}
.ws101{word-spacing:8.349600px;}
.wsac{word-spacing:8.408400px;}
.ws6f{word-spacing:8.467200px;}
.ws9f{word-spacing:8.526000px;}
.wsc5{word-spacing:8.584800px;}
.ws54{word-spacing:8.643600px;}
.wsc4{word-spacing:8.702400px;}
.ws21{word-spacing:8.761200px;}
.wse1{word-spacing:8.878800px;}
.ws98{word-spacing:8.937600px;}
.ws45{word-spacing:8.996400px;}
.ws46{word-spacing:9.055200px;}
.ws83{word-spacing:9.172800px;}
.ws9a{word-spacing:9.231600px;}
.wscd{word-spacing:9.290400px;}
.wsd0{word-spacing:9.408000px;}
.ws71{word-spacing:9.466800px;}
.ws4b{word-spacing:9.584400px;}
.ws7d{word-spacing:9.760800px;}
.wsbe{word-spacing:9.819600px;}
.wsa7{word-spacing:9.878400px;}
.wsfa{word-spacing:9.937200px;}
.ws4c{word-spacing:9.996000px;}
.wsc7{word-spacing:10.054800px;}
.ws107{word-spacing:10.231200px;}
.ws108{word-spacing:10.290000px;}
.ws9b{word-spacing:10.407600px;}
.ws74{word-spacing:10.466400px;}
.ws104{word-spacing:10.525200px;}
.ws18{word-spacing:10.642800px;}
.wsdb{word-spacing:10.701600px;}
.wse5{word-spacing:10.819200px;}
.ws91{word-spacing:10.936800px;}
.wsb6{word-spacing:11.113200px;}
.ws96{word-spacing:11.172000px;}
.ws114{word-spacing:11.230800px;}
.wsee{word-spacing:11.348400px;}
.ws112{word-spacing:11.407200px;}
.wsff{word-spacing:11.524800px;}
.wse8{word-spacing:11.583600px;}
.wsb2{word-spacing:11.701200px;}
.ws105{word-spacing:11.760000px;}
.ws5b{word-spacing:11.818800px;}
.wsc2{word-spacing:11.936400px;}
.wsed{word-spacing:11.995200px;}
.wsea{word-spacing:12.054000px;}
.wsbd{word-spacing:12.171600px;}
.ws10b{word-spacing:12.230400px;}
.wsec{word-spacing:12.348000px;}
.ws11b{word-spacing:12.406800px;}
.wsb4{word-spacing:12.524400px;}
.ws103{word-spacing:12.583200px;}
.ws123{word-spacing:12.642000px;}
.wseb{word-spacing:12.700800px;}
.wsaa{word-spacing:12.759600px;}
.ws122{word-spacing:12.818400px;}
.ws127{word-spacing:13.171200px;}
.wse2{word-spacing:13.288800px;}
.ws115{word-spacing:13.347600px;}
.ws3b{word-spacing:13.406400px;}
.ws7e{word-spacing:13.641600px;}
.ws82{word-spacing:13.759200px;}
.ws117{word-spacing:13.818000px;}
.ws1c{word-spacing:14.170800px;}
.wsf7{word-spacing:14.464800px;}
.ws11a{word-spacing:14.700000px;}
.ws8d{word-spacing:14.758800px;}
.ws48{word-spacing:14.876400px;}
.ws116{word-spacing:14.994000px;}
.ws110{word-spacing:15.052800px;}
.wscb{word-spacing:15.111600px;}
.wsf8{word-spacing:15.229200px;}
.wsb1{word-spacing:15.640800px;}
.ws10f{word-spacing:16.173600px;}
.ws11f{word-spacing:16.287600px;}
.ws38{word-spacing:16.405200px;}
.ws120{word-spacing:16.875600px;}
.ws125{word-spacing:16.993200px;}
.wsc1{word-spacing:17.110800px;}
.wse4{word-spacing:17.463600px;}
.wsfb{word-spacing:17.581200px;}
.wse6{word-spacing:17.698800px;}
.ws16{word-spacing:18.416400px;}
.ws111{word-spacing:18.522000px;}
.ws11d{word-spacing:18.698400px;}
.ws11e{word-spacing:18.933600px;}
.wsfe{word-spacing:19.227600px;}
.ws124{word-spacing:20.462400px;}
.wsba{word-spacing:20.638800px;}
.wsfc{word-spacing:21.226800px;}
.wsbf{word-spacing:21.462000px;}
.ws121{word-spacing:22.226400px;}
.wsc3{word-spacing:27.930000px;}
.wsc0{word-spacing:31.634400px;}
.ws6{word-spacing:45.687354px;}
.wsd8{word-spacing:57.102048px;}
.wsd9{word-spacing:80.526048px;}
.wsda{word-spacing:88.878048px;}
.ws0{word-spacing:1945.846745px;}
._8{margin-left:-2890.932630px;}
._14{margin-left:-38.160663px;}
._1a{margin-left:-36.867600px;}
._19{margin-left:-31.634400px;}
._17{margin-left:-29.576400px;}
._12{margin-left:-21.697200px;}
._11{margin-left:-18.816000px;}
._18{margin-left:-17.254800px;}
._15{margin-left:-16.111200px;}
._13{margin-left:-13.582800px;}
._e{margin-left:-10.593120px;}
._16{margin-left:-9.584400px;}
._b{margin-left:-8.459520px;}
._6{margin-left:-7.074000px;}
._5{margin-left:-5.778600px;}
._9{margin-left:-4.460280px;}
._2{margin-left:-2.902200px;}
._0{margin-left:-1.716000px;}
._1{width:1.161600px;}
._3{width:2.251500px;}
._4{width:3.312000px;}
._a{width:5.311816px;}
._c{width:6.585600px;}
._f{width:7.726787px;}
._2c{width:10.110560px;}
._2b{width:11.746223px;}
._10{width:13.426223px;}
._d{width:16.170000px;}
._7{width:17.775617px;}
._2e{width:33.120000px;}
._23{width:38.988642px;}
._2d{width:55.080000px;}
._2a{width:72.357597px;}
._29{width:81.305568px;}
._24{width:84.505768px;}
._22{width:86.853592px;}
._26{width:90.271648px;}
._25{width:95.781592px;}
._27{width:97.680768px;}
._1b{width:102.317371px;}
._28{width:108.431968px;}
._1e{width:151.421348px;}
._1f{width:174.845348px;}
._20{width:190.328331px;}
._1d{width:213.752331px;}
._1c{width:631.186859px;}
._21{width:1308.050430px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:31.500000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fsa{font-size:60.000000px;}
.fs9{font-size:61.800000px;}
.fs6{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fs8{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:87.650099px;}
.ybe{bottom:88.500452px;}
.y15c{bottom:88.500600px;}
.y18d{bottom:89.702099px;}
.y155{bottom:92.865000px;}
.y1cd{bottom:96.858604px;}
.y63{bottom:97.840199px;}
.ybd{bottom:98.623352px;}
.y140{bottom:99.077705px;}
.y8f{bottom:101.024849px;}
.y7{bottom:109.869598px;}
.y1cc{bottom:110.358604px;}
.y154{bottom:110.368950px;}
.y18c{bottom:110.927100px;}
.y211{bottom:111.115196px;}
.yfe{bottom:112.946548px;}
.y184{bottom:114.961200px;}
.yeb{bottom:115.420956px;}
.y62{bottom:119.065200px;}
.ybc{bottom:119.848354px;}
.y13f{bottom:120.302696px;}
.y6{bottom:121.869598px;}
.y8e{bottom:122.249850px;}
.y1cb{bottom:123.858604px;}
.y210{bottom:124.615196px;}
.y153{bottom:125.368950px;}
.y190{bottom:129.361050px;}
.y18b{bottom:132.152103px;}
.y5{bottom:133.869598px;}
.yfd{bottom:134.171700px;}
.y183{bottom:136.186203px;}
.yea{bottom:136.646095px;}
.y1ca{bottom:137.358604px;}
.y20f{bottom:138.115196px;}
.y61{bottom:140.290203px;}
.ybb{bottom:141.073505px;}
.y13e{bottom:141.527699px;}
.y152{bottom:142.872894px;}
.y8d{bottom:143.474854px;}
.yd1{bottom:143.547146px;}
.y4{bottom:145.869598px;}
.y1c9{bottom:150.858604px;}
.y18f{bottom:151.365005px;}
.y20e{bottom:151.615196px;}
.y18a{bottom:153.377106px;}
.yfc{bottom:155.396553px;}
.y182{bottom:157.411205px;}
.y3{bottom:157.869598px;}
.ye9{bottom:157.871098px;}
.y151{bottom:157.872894px;}
.y60{bottom:161.515205px;}
.yba{bottom:162.298347px;}
.y13d{bottom:162.752700px;}
.y1c8{bottom:164.358604px;}
.y8c{bottom:164.699844px;}
.y115{bottom:164.772148px;}
.y20d{bottom:165.115196px;}
.y2{bottom:169.869598px;}
.y163{bottom:171.240898px;}
.y15a{bottom:172.091250px;}
.y150{bottom:172.872894px;}
.yd0{bottom:174.147755px;}
.y189{bottom:174.602097px;}
.yfb{bottom:176.621555px;}
.y1c7{bottom:177.858604px;}
.y20c{bottom:178.615196px;}
.y181{bottom:178.636196px;}
.ye8{bottom:179.095950px;}
.y18e{bottom:181.872746px;}
.y5f{bottom:182.740196px;}
.y165{bottom:182.938499px;}
.yb9{bottom:183.523350px;}
.y13c{bottom:183.977703px;}
.y8b{bottom:185.924847px;}
.y114{bottom:185.997150px;}
.y14f{bottom:187.872894px;}
.y1c6{bottom:191.358604px;}
.y20b{bottom:192.115196px;}
.ycf{bottom:195.372757px;}
.yfa{bottom:197.846695px;}
.y180{bottom:199.861198px;}
.ye7{bottom:200.321091px;}
.y14e{bottom:202.872894px;}
.y5e{bottom:203.965210px;}
.yb8{bottom:204.748352px;}
.y1c5{bottom:204.858604px;}
.y13b{bottom:205.202705px;}
.y20a{bottom:205.615196px;}
.y8a{bottom:207.149849px;}
.y113{bottom:207.222153px;}
.yce{bottom:216.597908px;}
.y1c4{bottom:218.358604px;}
.yf9{bottom:219.071548px;}
.y209{bottom:219.115196px;}
.y14d{bottom:220.376700px;}
.y17f{bottom:221.086189px;}
.ye6{bottom:221.545944px;}
.y5d{bottom:225.190200px;}
.yb7{bottom:225.973343px;}
.y13a{bottom:226.427696px;}
.y89{bottom:228.374840px;}
.y112{bottom:228.447304px;}
.y1c3{bottom:231.858604px;}
.y208{bottom:232.615196px;}
.y164{bottom:233.764046px;}
.y15b{bottom:234.614410px;}
.y14c{bottom:235.376700px;}
.ycd{bottom:237.822739px;}
.yf8{bottom:240.296700px;}
.y17e{bottom:242.311203px;}
.y1c2{bottom:245.358604px;}
.y207{bottom:246.115196px;}
.y5c{bottom:246.415192px;}
.yb6{bottom:247.198494px;}
.y139{bottom:247.652710px;}
.y88{bottom:249.599854px;}
.y14b{bottom:250.376700px;}
.ye5{bottom:252.146553px;}
.y1c1{bottom:258.858604px;}
.ycc{bottom:259.047752px;}
.y206{bottom:259.615196px;}
.y17d{bottom:263.536194px;}
.y5b{bottom:267.640205px;}
.y14a{bottom:267.880646px;}
.yb5{bottom:268.423347px;}
.y138{bottom:268.877700px;}
.y87{bottom:270.824844px;}
.y111{bottom:270.897148px;}
.y213{bottom:271.165192px;}
.y1c0{bottom:272.358604px;}
.y205{bottom:273.115196px;}
.ye4{bottom:273.371544px;}
.ycb{bottom:280.272743px;}
.yf7{bottom:282.746544px;}
.y149{bottom:282.880646px;}
.y212{bottom:284.665192px;}
.y17c{bottom:284.761208px;}
.y1bf{bottom:285.858604px;}
.y204{bottom:286.615196px;}
.y5a{bottom:288.865196px;}
.yb4{bottom:289.648361px;}
.y137{bottom:290.102692px;}
.y110{bottom:292.122139px;}
.ye3{bottom:294.596695px;}
.y148{bottom:297.880646px;}
.y1be{bottom:299.358604px;}
.y203{bottom:300.115196px;}
.yca{bottom:301.497757px;}
.yf6{bottom:303.971558px;}
.y17b{bottom:305.986198px;}
.y59{bottom:310.090210px;}
.yb3{bottom:310.873352px;}
.y136{bottom:311.327705px;}
.y1bd{bottom:312.858604px;}
.y147{bottom:312.880646px;}
.y86{bottom:313.274849px;}
.y10f{bottom:313.347153px;}
.y202{bottom:313.615196px;}
.y34{bottom:314.586296px;}
.ye2{bottom:315.821548px;}
.yc9{bottom:322.722748px;}
.yf5{bottom:325.196548px;}
.y1bc{bottom:326.358604px;}
.y201{bottom:327.115196px;}
.y17a{bottom:327.211189px;}
.y146{bottom:327.880646px;}
.y58{bottom:331.315200px;}
.yb2{bottom:332.098343px;}
.y135{bottom:332.552696px;}
.y33{bottom:332.586296px;}
.y85{bottom:334.499840px;}
.y10e{bottom:334.572144px;}
.y1bb{bottom:339.858604px;}
.y200{bottom:340.615196px;}
.yc8{bottom:343.947739px;}
.y145{bottom:345.497108px;}
.yf4{bottom:346.421700px;}
.ye1{bottom:346.422295px;}
.y179{bottom:348.436203px;}
.y15f{bottom:351.384911px;}
.y156{bottom:352.235252px;}
.y57{bottom:352.540192px;}
.yb1{bottom:353.323357px;}
.y1ba{bottom:353.358604px;}
.y134{bottom:353.777710px;}
.y1ff{bottom:354.115196px;}
.y32{bottom:355.086296px;}
.y84{bottom:355.724854px;}
.y10d{bottom:355.797295px;}
.y144{bottom:360.497108px;}
.yc7{bottom:365.172752px;}
.y1b9{bottom:366.858604px;}
.y1fe{bottom:367.615196px;}
.yf3{bottom:367.646553px;}
.ye0{bottom:367.647148px;}
.y178{bottom:369.661194px;}
.y31{bottom:373.086296px;}
.y56{bottom:373.765205px;}
.yb0{bottom:374.548347px;}
.y133{bottom:375.002700px;}
.y143{bottom:375.497108px;}
.y83{bottom:376.949844px;}
.y1b8{bottom:380.358604px;}
.y1fd{bottom:381.115196px;}
.yc6{bottom:386.397766px;}
.yf2{bottom:388.871567px;}
.ydf{bottom:388.872162px;}
.y142{bottom:390.497086px;}
.y177{bottom:390.886185px;}
.y30{bottom:391.086319px;}
.y1b7{bottom:393.858582px;}
.y1fc{bottom:394.615219px;}
.y55{bottom:394.990219px;}
.yaf{bottom:395.773361px;}
.y132{bottom:396.227692px;}
.y10c{bottom:398.247162px;}
.y1b6{bottom:407.358582px;}
.y82{bottom:407.550430px;}
.yc5{bottom:407.622757px;}
.y141{bottom:408.001053px;}
.y1fb{bottom:408.115219px;}
.y2f{bottom:409.086319px;}
.yf1{bottom:410.096558px;}
.yde{bottom:410.097153px;}
.y176{bottom:412.111221px;}
.y54{bottom:416.215210px;}
.yae{bottom:416.998352px;}
.y131{bottom:417.452682px;}
.y10b{bottom:419.472153px;}
.y1b5{bottom:420.858582px;}
.y1fa{bottom:421.615219px;}
.y2e{bottom:427.086319px;}
.y81{bottom:428.775467px;}
.yc4{bottom:428.847748px;}
.yf0{bottom:431.321548px;}
.ydd{bottom:431.322144px;}
.ybf{bottom:431.968643px;}
.y175{bottom:433.336212px;}
.y1b4{bottom:434.358582px;}
.y1f9{bottom:435.115219px;}
.y53{bottom:437.440200px;}
.yad{bottom:438.223343px;}
.y130{bottom:438.677719px;}
.y10a{bottom:440.697144px;}
.y2d{bottom:445.086319px;}
.y1b3{bottom:447.858582px;}
.y1f8{bottom:448.615219px;}
.y80{bottom:450.000458px;}
.yef{bottom:452.546722px;}
.ydc{bottom:452.547318px;}
.y174{bottom:454.561203px;}
.y52{bottom:458.665192px;}
.yac{bottom:459.448334px;}
.y188{bottom:459.902710px;}
.y1b2{bottom:461.358582px;}
.y109{bottom:461.922318px;}
.y1f7{bottom:462.115219px;}
.y2c{bottom:463.086319px;}
.y7f{bottom:471.225449px;}
.yc3{bottom:471.297729px;}
.yee{bottom:473.771530px;}
.ydb{bottom:473.772171px;}
.y1b1{bottom:474.858582px;}
.y1f6{bottom:475.615219px;}
.y173{bottom:475.786194px;}
.y51{bottom:479.890182px;}
.yab{bottom:480.673370px;}
.y2b{bottom:481.086319px;}
.y12f{bottom:481.127700px;}
.y108{bottom:483.147171px;}
.y1b0{bottom:488.358582px;}
.y1f5{bottom:489.115219px;}
.y160{bottom:490.738632px;}
.y157{bottom:491.589020px;}
.yc2{bottom:492.522766px;}
.yed{bottom:494.996567px;}
.yda{bottom:494.997162px;}
.y172{bottom:497.011185px;}
.y2a{bottom:499.086319px;}
.y50{bottom:501.115219px;}
.y7e{bottom:501.826035px;}
.y1af{bottom:501.858582px;}
.yaa{bottom:501.898361px;}
.y12e{bottom:502.352692px;}
.y1f4{bottom:502.615219px;}
.yc1{bottom:513.747757px;}
.y1ae{bottom:515.358582px;}
.y1f3{bottom:516.115219px;}
.y29{bottom:517.086319px;}
.y171{bottom:518.236221px;}
.y4f{bottom:522.340210px;}
.y7d{bottom:523.051071px;}
.ya9{bottom:523.123352px;}
.y12d{bottom:523.577682px;}
.yec{bottom:525.597153px;}
.y1ad{bottom:528.858582px;}
.y1f2{bottom:529.615219px;}
.yc0{bottom:534.972748px;}
.y28{bottom:535.086319px;}
.y170{bottom:539.461212px;}
.y1ac{bottom:542.358582px;}
.y1f1{bottom:543.115219px;}
.y4e{bottom:543.565200px;}
.y7c{bottom:544.276062px;}
.ya8{bottom:544.348343px;}
.y12c{bottom:544.802719px;}
.y107{bottom:546.822144px;}
.y27{bottom:553.086319px;}
.y1ab{bottom:555.858582px;}
.yd9{bottom:556.197739px;}
.y1f0{bottom:556.615219px;}
.y16f{bottom:560.686203px;}
.y4d{bottom:564.790192px;}
.y7b{bottom:565.501053px;}
.ya7{bottom:565.573334px;}
.y12b{bottom:566.027710px;}
.y106{bottom:568.047318px;}
.y1aa{bottom:569.358582px;}
.y1ef{bottom:570.115219px;}
.y26{bottom:571.086319px;}
.yd8{bottom:577.422729px;}
.y16e{bottom:581.911194px;}
.y1a9{bottom:582.858582px;}
.y1ee{bottom:583.615219px;}
.y4c{bottom:586.015182px;}
.y7a{bottom:586.726044px;}
.ya6{bottom:586.798370px;}
.y12a{bottom:587.252700px;}
.y25{bottom:589.086319px;}
.y1ed{bottom:597.115219px;}
.yd7{bottom:598.647766px;}
.y16d{bottom:603.136185px;}
.y24{bottom:607.086319px;}
.y4b{bottom:607.240219px;}
.y79{bottom:607.951035px;}
.ya5{bottom:608.023361px;}
.y129{bottom:608.477692px;}
.y105{bottom:610.497162px;}
.y1ec{bottom:610.615219px;}
.yd6{bottom:619.872757px;}
.y1eb{bottom:624.115219px;}
.y16c{bottom:624.361221px;}
.y23{bottom:625.086319px;}
.y4a{bottom:628.465210px;}
.y78{bottom:629.176071px;}
.ya4{bottom:629.248352px;}
.y128{bottom:629.702682px;}
.y104{bottom:631.722153px;}
.y1ea{bottom:637.615219px;}
.yd5{bottom:641.097748px;}
.y22{bottom:643.086319px;}
.y16b{bottom:645.586212px;}
.y49{bottom:649.690200px;}
.y77{bottom:650.401062px;}
.ya3{bottom:650.473343px;}
.y127{bottom:650.927719px;}
.y1e9{bottom:651.115219px;}
.y103{bottom:652.947144px;}
.y1a8{bottom:655.083618px;}
.y21{bottom:661.086319px;}
.yd4{bottom:662.322739px;}
.y1e8{bottom:664.615219px;}
.y16a{bottom:666.811203px;}
.y48{bottom:670.915192px;}
.y76{bottom:671.626053px;}
.ya2{bottom:671.698334px;}
.y126{bottom:672.152710px;}
.y102{bottom:674.172318px;}
.y1e7{bottom:678.115219px;}
.y20{bottom:679.086319px;}
.yd3{bottom:683.547729px;}
.y1a7{bottom:685.591507px;}
.y169{bottom:688.036194px;}
.y1e6{bottom:691.615219px;}
.y47{bottom:692.140182px;}
.y75{bottom:692.851044px;}
.ya1{bottom:692.923370px;}
.y125{bottom:693.377700px;}
.y101{bottom:695.397171px;}
.y1f{bottom:697.086319px;}
.y1a6{bottom:699.091507px;}
.yd2{bottom:704.772766px;}
.y1e5{bottom:705.115219px;}
.y168{bottom:709.261185px;}
.y46{bottom:713.365219px;}
.y74{bottom:714.076035px;}
.ya0{bottom:714.148361px;}
.y124{bottom:714.602692px;}
.y1e{bottom:715.086319px;}
.y100{bottom:716.622162px;}
.y1e4{bottom:718.615219px;}
.y1a5{bottom:721.095428px;}
.y167{bottom:730.486221px;}
.y1e3{bottom:732.115219px;}
.y1d{bottom:733.086319px;}
.y45{bottom:734.590210px;}
.y1a4{bottom:734.595428px;}
.y73{bottom:735.301071px;}
.y9f{bottom:735.373352px;}
.y123{bottom:735.827682px;}
.y12{bottom:745.611465px;}
.y1e2{bottom:745.615219px;}
.yff{bottom:747.222748px;}
.y161{bottom:747.736359px;}
.y158{bottom:748.586700px;}
.y1c{bottom:751.086319px;}
.y166{bottom:751.711212px;}
.y44{bottom:755.815200px;}
.y72{bottom:756.526062px;}
.y9e{bottom:756.598343px;}
.y1a3{bottom:756.599396px;}
.y122{bottom:757.052719px;}
.y11{bottom:759.111465px;}
.y1e1{bottom:759.115219px;}
.y1b{bottom:769.086273px;}
.y1a2{bottom:770.099396px;}
.y1e0{bottom:772.615173px;}
.y43{bottom:777.040192px;}
.y10{bottom:777.111420px;}
.y71{bottom:777.751007px;}
.y9d{bottom:777.823517px;}
.y121{bottom:778.277710px;}
.y185{bottom:780.514069px;}
.y1a1{bottom:783.599396px;}
.yf{bottom:786.111420px;}
.y1df{bottom:786.115173px;}
.y1a{bottom:787.086273px;}
.y42{bottom:798.265228px;}
.y70{bottom:798.976044px;}
.y9c{bottom:799.048370px;}
.y120{bottom:799.502655px;}
.ye{bottom:799.611420px;}
.y1de{bottom:799.615173px;}
.y19{bottom:805.086273px;}
.y1a0{bottom:805.603363px;}
.y1dd{bottom:813.115173px;}
.yd{bottom:817.611420px;}
.y41{bottom:819.490173px;}
.y6f{bottom:820.201080px;}
.y9b{bottom:820.273315px;}
.y11f{bottom:820.727692px;}
.y18{bottom:823.086273px;}
.yc{bottom:826.611420px;}
.y1dc{bottom:826.615173px;}
.yb{bottom:840.111420px;}
.y1db{bottom:840.115173px;}
.y40{bottom:840.715210px;}
.y17{bottom:841.086273px;}
.y6e{bottom:841.426025px;}
.y9a{bottom:841.498352px;}
.y19f{bottom:841.603363px;}
.y187{bottom:841.952728px;}
.ya{bottom:853.611420px;}
.y1da{bottom:853.615173px;}
.y19e{bottom:855.103363px;}
.y162{bottom:856.318909px;}
.y159{bottom:857.169342px;}
.y3f{bottom:861.940155px;}
.y6d{bottom:862.651062px;}
.y99{bottom:862.723389px;}
.y11e{bottom:863.177673px;}
.y1d9{bottom:867.115173px;}
.y19d{bottom:868.603363px;}
.y1d8{bottom:880.615173px;}
.y19c{bottom:882.103363px;}
.y3e{bottom:883.165192px;}
.y6c{bottom:883.876007px;}
.y98{bottom:883.948517px;}
.y11d{bottom:884.402710px;}
.y1d7{bottom:894.115173px;}
.y15{bottom:900.316681px;}
.y19b{bottom:904.107330px;}
.y3d{bottom:904.390228px;}
.y6b{bottom:905.101044px;}
.y97{bottom:905.173370px;}
.y11c{bottom:905.627655px;}
.y1d6{bottom:907.615173px;}
.y19a{bottom:917.607330px;}
.y1d5{bottom:921.115173px;}
.y3c{bottom:925.615173px;}
.y6a{bottom:926.326080px;}
.y96{bottom:926.398315px;}
.y11b{bottom:926.852692px;}
.y1d4{bottom:934.615173px;}
.y14{bottom:936.316681px;}
.y199{bottom:939.611206px;}
.y3b{bottom:946.840210px;}
.y69{bottom:947.551025px;}
.y95{bottom:947.623352px;}
.y186{bottom:948.077728px;}
.y1d3{bottom:948.115173px;}
.y198{bottom:953.111206px;}
.y1d2{bottom:961.615173px;}
.y197{bottom:966.611206px;}
.y3a{bottom:968.065155px;}
.y68{bottom:968.776062px;}
.y94{bottom:968.848389px;}
.y11a{bottom:969.302673px;}
.y1d1{bottom:975.115173px;}
.y13{bottom:975.316681px;}
.y196{bottom:980.111206px;}
.y1d0{bottom:988.615173px;}
.y39{bottom:989.290192px;}
.y67{bottom:990.001007px;}
.y93{bottom:990.073517px;}
.y119{bottom:990.527710px;}
.y195{bottom:993.611206px;}
.y1cf{bottom:1002.115173px;}
.y194{bottom:1007.111206px;}
.y38{bottom:1010.515228px;}
.y66{bottom:1011.226044px;}
.y92{bottom:1011.298370px;}
.y118{bottom:1011.752655px;}
.y1ce{bottom:1015.615173px;}
.y193{bottom:1029.115173px;}
.y37{bottom:1031.740173px;}
.y65{bottom:1032.451080px;}
.y91{bottom:1032.523315px;}
.y117{bottom:1032.977692px;}
.y1{bottom:1036.426208px;}
.y192{bottom:1042.615173px;}
.y15d{bottom:1052.072205px;}
.y36{bottom:1052.965210px;}
.y64{bottom:1053.676025px;}
.y90{bottom:1053.748352px;}
.y116{bottom:1054.202728px;}
.y191{bottom:1056.115173px;}
.y9{bottom:1114.051208px;}
.y16{bottom:1125.484314px;}
.y8{bottom:1129.051208px;}
.y35{bottom:1129.426208px;}
.h8{height:29.452500px;}
.h4{height:39.270000px;}
.h3{height:41.538000px;}
.h7{height:42.075000px;}
.h1a{height:42.840000px;}
.h19{height:43.740000px;}
.h16{height:44.880000px;}
.h6{height:45.696000px;}
.h5{height:45.744000px;}
.h15{height:46.656000px;}
.h12{height:47.472000px;}
.h13{height:47.988281px;}
.h14{height:53.406000px;}
.h11{height:53.654399px;}
.h10{height:54.625200px;}
.hf{height:55.860000px;}
.hd{height:56.100000px;}
.he{height:58.320000px;}
.h18{height:59.211600px;}
.h17{height:60.564000px;}
.hc{height:61.120200px;}
.ha{height:69.596779px;}
.hb{height:71.000160px;}
.h2{height:78.896517px;}
.h9{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x7{left:176.456703px;}
.x5b{left:184.960648px;}
.x30{left:186.581703px;}
.x8{left:188.456703px;}
.x5c{left:198.956703px;}
.x12{left:204.723450px;}
.x9{left:206.456703px;}
.x31{left:208.975342px;}
.xa{left:211.093506px;}
.x13{left:219.723450px;}
.xb{left:223.228340px;}
.x14{left:234.723450px;}
.x32{left:238.975342px;}
.x15{left:249.723450px;}
.x33{left:253.975342px;}
.x11{left:257.347046px;}
.x2{left:267.254402px;}
.x34{left:271.479309px;}
.x5{left:277.004402px;}
.x16{left:282.339890px;}
.x35{left:286.479309px;}
.x17{left:297.339890px;}
.x36{left:301.479309px;}
.x18{left:312.339890px;}
.x37{left:316.479309px;}
.x19{left:327.339890px;}
.x38{left:331.479309px;}
.x4f{left:333.983253px;}
.x1a{left:342.339890px;}
.x39{left:346.479309px;}
.x50{left:348.983253px;}
.x1b{left:357.339890px;}
.x3a{left:361.479309px;}
.x51{left:363.983253px;}
.x1c{left:372.339890px;}
.x3b{left:376.479309px;}
.x52{left:378.983253px;}
.x1d{left:387.339890px;}
.x3c{left:391.479309px;}
.x53{left:393.983231px;}
.x1e{left:402.339890px;}
.x3d{left:406.479309px;}
.x54{left:411.487198px;}
.x1f{left:417.339890px;}
.x3e{left:421.479309px;}
.x55{left:426.487198px;}
.x20{left:434.843857px;}
.x3f{left:436.479309px;}
.x56{left:441.487198px;}
.x21{left:449.843857px;}
.x40{left:453.983231px;}
.x57{left:458.991165px;}
.x22{left:464.843857px;}
.x41{left:468.983231px;}
.x58{left:473.991165px;}
.x23{left:479.843857px;}
.x42{left:483.983231px;}
.x59{left:488.991165px;}
.x24{left:494.843857px;}
.x43{left:498.983231px;}
.x5a{left:503.991165px;}
.x25{left:509.843857px;}
.x44{left:513.983231px;}
.x26{left:524.843857px;}
.xd{left:526.407761px;}
.x45{left:528.983231px;}
.x27{left:542.347778px;}
.x46{left:543.983231px;}
.x28{left:557.347778px;}
.x47{left:558.983231px;}
.x29{left:572.347778px;}
.x48{left:573.983231px;}
.xe{left:585.701843px;}
.x2a{left:587.347778px;}
.x49{left:588.983231px;}
.x2b{left:602.347778px;}
.x4a{left:603.983231px;}
.x2c{left:617.347778px;}
.x4b{left:618.983231px;}
.xf{left:628.117355px;}
.x4{left:632.632507px;}
.x4c{left:636.487198px;}
.x2d{left:647.347778px;}
.x4d{left:651.487198px;}
.x2e{left:662.347778px;}
.x4e{left:666.487198px;}
.x10{left:677.684692px;}
.x2f{left:692.347778px;}
.xc{left:738.661789px;}
.x6{left:744.817657px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v3{vertical-align:23.466471pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.440000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000008pt;}
.ls5{letter-spacing:0.000089pt;}
.ls0{letter-spacing:8.320000pt;}
.ls6{letter-spacing:43.145600pt;}
.ws5{word-spacing:-12.848000pt;}
.wsa6{word-spacing:-12.387200pt;}
.ws13{word-spacing:-12.282667pt;}
.ws9{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.096533pt;}
.ws8{word-spacing:-10.560000pt;}
.wsf3{word-spacing:-10.176000pt;}
.ws129{word-spacing:-10.156800pt;}
.wsd7{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.wsd6{word-spacing:-8.832000pt;}
.ws3{word-spacing:-8.760000pt;}
.wsd5{word-spacing:-8.448000pt;}
.ws12a{word-spacing:-8.320000pt;}
.ws128{word-spacing:-8.280000pt;}
.wsd3{word-spacing:-7.808000pt;}
.wsd4{word-spacing:-7.765333pt;}
.ws1{word-spacing:-7.242667pt;}
.ws12b{word-spacing:-7.200000pt;}
.ws4{word-spacing:-6.132000pt;}
.wsaf{word-spacing:-5.853867pt;}
.wsad{word-spacing:-3.554133pt;}
.wsb7{word-spacing:-3.031467pt;}
.wsc8{word-spacing:-2.717867pt;}
.ws11c{word-spacing:-2.561067pt;}
.wsa8{word-spacing:-2.456533pt;}
.wsc6{word-spacing:-2.299733pt;}
.wsf0{word-spacing:-2.133333pt;}
.wsae{word-spacing:-2.090667pt;}
.wsf1{word-spacing:-1.792000pt;}
.ws11{word-spacing:-1.680000pt;}
.wsef{word-spacing:-1.536000pt;}
.ws12d{word-spacing:-1.400000pt;}
.ws119{word-spacing:-1.358933pt;}
.ws118{word-spacing:-1.306667pt;}
.wsab{word-spacing:-1.254400pt;}
.wsb0{word-spacing:-0.940800pt;}
.ws55{word-spacing:-0.888533pt;}
.wsd{word-spacing:-0.784000pt;}
.ws6c{word-spacing:-0.731733pt;}
.wsb8{word-spacing:-0.627200pt;}
.ws94{word-spacing:-0.574933pt;}
.ws31{word-spacing:-0.522667pt;}
.wsa2{word-spacing:-0.470400pt;}
.ws9e{word-spacing:-0.418133pt;}
.ws43{word-spacing:-0.365867pt;}
.ws6d{word-spacing:-0.313600pt;}
.ws86{word-spacing:-0.261333pt;}
.wsf5{word-spacing:-0.256000pt;}
.wsf4{word-spacing:-0.213333pt;}
.ws5f{word-spacing:-0.209067pt;}
.wsf2{word-spacing:-0.170667pt;}
.ws67{word-spacing:-0.156800pt;}
.ws40{word-spacing:-0.104533pt;}
.ws19{word-spacing:-0.052267pt;}
.ws12c{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.wsce{word-spacing:0.052267pt;}
.ws27{word-spacing:0.104533pt;}
.ws10{word-spacing:0.149333pt;}
.wsa0{word-spacing:0.156800pt;}
.ws78{word-spacing:0.209067pt;}
.wse{word-spacing:0.224000pt;}
.wsb5{word-spacing:0.261333pt;}
.ws47{word-spacing:0.313600pt;}
.ws6e{word-spacing:0.365867pt;}
.ws113{word-spacing:0.418133pt;}
.ws36{word-spacing:0.470400pt;}
.ws70{word-spacing:0.522667pt;}
.ws9d{word-spacing:0.574933pt;}
.ws84{word-spacing:0.679467pt;}
.wsa4{word-spacing:0.731733pt;}
.ws22{word-spacing:0.784000pt;}
.wsa5{word-spacing:0.836267pt;}
.wsf{word-spacing:0.858667pt;}
.ws28{word-spacing:0.888533pt;}
.ws99{word-spacing:0.940800pt;}
.wse3{word-spacing:0.993067pt;}
.ws24{word-spacing:1.045333pt;}
.ws3c{word-spacing:1.097600pt;}
.wscf{word-spacing:1.149867pt;}
.wsdd{word-spacing:1.202133pt;}
.ws9c{word-spacing:1.254400pt;}
.ws4d{word-spacing:1.306667pt;}
.ws102{word-spacing:1.358933pt;}
.wsa9{word-spacing:1.411200pt;}
.wsc{word-spacing:1.456000pt;}
.ws58{word-spacing:1.463467pt;}
.ws87{word-spacing:1.515733pt;}
.wsb{word-spacing:1.568000pt;}
.ws63{word-spacing:1.620267pt;}
.wsbc{word-spacing:1.672533pt;}
.ws8b{word-spacing:1.724800pt;}
.wsb9{word-spacing:1.777067pt;}
.wsf9{word-spacing:1.829333pt;}
.ws90{word-spacing:1.881600pt;}
.ws62{word-spacing:1.933867pt;}
.ws30{word-spacing:1.986133pt;}
.wse0{word-spacing:2.038400pt;}
.ws8a{word-spacing:2.090667pt;}
.wsdf{word-spacing:2.142933pt;}
.ws42{word-spacing:2.195200pt;}
.ws4f{word-spacing:2.247467pt;}
.ws85{word-spacing:2.299733pt;}
.ws15{word-spacing:2.346667pt;}
.ws5e{word-spacing:2.352000pt;}
.ws23{word-spacing:2.404267pt;}
.ws2d{word-spacing:2.456533pt;}
.ws92{word-spacing:2.508800pt;}
.ws88{word-spacing:2.561067pt;}
.ws1a{word-spacing:2.613333pt;}
.ws34{word-spacing:2.665600pt;}
.ws44{word-spacing:2.717867pt;}
.ws14{word-spacing:2.730667pt;}
.ws51{word-spacing:2.770133pt;}
.ws60{word-spacing:2.822400pt;}
.wscc{word-spacing:2.874667pt;}
.wsd1{word-spacing:2.926933pt;}
.ws2c{word-spacing:2.979200pt;}
.ws72{word-spacing:3.031467pt;}
.ws7f{word-spacing:3.083733pt;}
.wse9{word-spacing:3.136000pt;}
.ws1f{word-spacing:3.188267pt;}
.wsde{word-spacing:3.240533pt;}
.wsca{word-spacing:3.292800pt;}
.ws126{word-spacing:3.345067pt;}
.ws32{word-spacing:3.397333pt;}
.ws100{word-spacing:3.449600pt;}
.ws93{word-spacing:3.501867pt;}
.ws12{word-spacing:3.520000pt;}
.ws3f{word-spacing:3.554133pt;}
.wsa1{word-spacing:3.606400pt;}
.ws35{word-spacing:3.658667pt;}
.ws81{word-spacing:3.710933pt;}
.ws1d{word-spacing:3.763200pt;}
.ws66{word-spacing:3.815467pt;}
.ws29{word-spacing:3.867733pt;}
.ws3d{word-spacing:3.920000pt;}
.ws2f{word-spacing:3.972267pt;}
.ws57{word-spacing:4.024533pt;}
.ws76{word-spacing:4.076800pt;}
.ws1b{word-spacing:4.129067pt;}
.ws49{word-spacing:4.181333pt;}
.ws10d{word-spacing:4.233600pt;}
.ws2e{word-spacing:4.285867pt;}
.ws2a{word-spacing:4.338133pt;}
.ws3a{word-spacing:4.390400pt;}
.wsdc{word-spacing:4.442667pt;}
.wsc9{word-spacing:4.494933pt;}
.ws61{word-spacing:4.547200pt;}
.ws109{word-spacing:4.599467pt;}
.wsf6{word-spacing:4.651733pt;}
.ws6b{word-spacing:4.704000pt;}
.ws52{word-spacing:4.756267pt;}
.ws5c{word-spacing:4.808533pt;}
.ws4e{word-spacing:4.860800pt;}
.ws95{word-spacing:4.913067pt;}
.ws2b{word-spacing:4.965333pt;}
.ws73{word-spacing:5.017600pt;}
.ws53{word-spacing:5.069867pt;}
.ws33{word-spacing:5.122133pt;}
.ws10a{word-spacing:5.174400pt;}
.ws7a{word-spacing:5.226667pt;}
.ws3e{word-spacing:5.278933pt;}
.ws26{word-spacing:5.331200pt;}
.ws5d{word-spacing:5.383467pt;}
.ws69{word-spacing:5.435733pt;}
.ws7c{word-spacing:5.488000pt;}
.ws89{word-spacing:5.540267pt;}
.ws106{word-spacing:5.592533pt;}
.ws10e{word-spacing:5.644800pt;}
.ws41{word-spacing:5.697067pt;}
.ws65{word-spacing:5.749333pt;}
.ws75{word-spacing:5.801600pt;}
.ws17{word-spacing:5.853867pt;}
.ws10c{word-spacing:5.906133pt;}
.wsa3{word-spacing:5.958400pt;}
.ws77{word-spacing:6.010667pt;}
.wse7{word-spacing:6.062933pt;}
.ws25{word-spacing:6.115200pt;}
.wsbb{word-spacing:6.167467pt;}
.ws80{word-spacing:6.219733pt;}
.ws5a{word-spacing:6.272000pt;}
.ws37{word-spacing:6.324267pt;}
.ws79{word-spacing:6.376533pt;}
.ws1e{word-spacing:6.428800pt;}
.ws68{word-spacing:6.481067pt;}
.ws97{word-spacing:6.533333pt;}
.ws20{word-spacing:6.585600pt;}
.ws8e{word-spacing:6.637867pt;}
.wsd2{word-spacing:6.690133pt;}
.ws6a{word-spacing:6.742400pt;}
.wsb3{word-spacing:6.794667pt;}
.ws4a{word-spacing:6.846933pt;}
.ws56{word-spacing:6.899200pt;}
.ws8f{word-spacing:6.951467pt;}
.ws8c{word-spacing:7.003733pt;}
.ws64{word-spacing:7.056000pt;}
.wsfd{word-spacing:7.108267pt;}
.ws39{word-spacing:7.160533pt;}
.ws7b{word-spacing:7.212800pt;}
.ws59{word-spacing:7.265067pt;}
.ws50{word-spacing:7.317333pt;}
.ws101{word-spacing:7.421867pt;}
.wsac{word-spacing:7.474133pt;}
.ws6f{word-spacing:7.526400pt;}
.ws9f{word-spacing:7.578667pt;}
.wsc5{word-spacing:7.630933pt;}
.ws54{word-spacing:7.683200pt;}
.wsc4{word-spacing:7.735467pt;}
.ws21{word-spacing:7.787733pt;}
.wse1{word-spacing:7.892267pt;}
.ws98{word-spacing:7.944533pt;}
.ws45{word-spacing:7.996800pt;}
.ws46{word-spacing:8.049067pt;}
.ws83{word-spacing:8.153600pt;}
.ws9a{word-spacing:8.205867pt;}
.wscd{word-spacing:8.258133pt;}
.wsd0{word-spacing:8.362667pt;}
.ws71{word-spacing:8.414933pt;}
.ws4b{word-spacing:8.519467pt;}
.ws7d{word-spacing:8.676267pt;}
.wsbe{word-spacing:8.728533pt;}
.wsa7{word-spacing:8.780800pt;}
.wsfa{word-spacing:8.833067pt;}
.ws4c{word-spacing:8.885333pt;}
.wsc7{word-spacing:8.937600pt;}
.ws107{word-spacing:9.094400pt;}
.ws108{word-spacing:9.146667pt;}
.ws9b{word-spacing:9.251200pt;}
.ws74{word-spacing:9.303467pt;}
.ws104{word-spacing:9.355733pt;}
.ws18{word-spacing:9.460267pt;}
.wsdb{word-spacing:9.512533pt;}
.wse5{word-spacing:9.617067pt;}
.ws91{word-spacing:9.721600pt;}
.wsb6{word-spacing:9.878400pt;}
.ws96{word-spacing:9.930667pt;}
.ws114{word-spacing:9.982933pt;}
.wsee{word-spacing:10.087467pt;}
.ws112{word-spacing:10.139733pt;}
.wsff{word-spacing:10.244267pt;}
.wse8{word-spacing:10.296533pt;}
.wsb2{word-spacing:10.401067pt;}
.ws105{word-spacing:10.453333pt;}
.ws5b{word-spacing:10.505600pt;}
.wsc2{word-spacing:10.610133pt;}
.wsed{word-spacing:10.662400pt;}
.wsea{word-spacing:10.714667pt;}
.wsbd{word-spacing:10.819200pt;}
.ws10b{word-spacing:10.871467pt;}
.wsec{word-spacing:10.976000pt;}
.ws11b{word-spacing:11.028267pt;}
.wsb4{word-spacing:11.132800pt;}
.ws103{word-spacing:11.185067pt;}
.ws123{word-spacing:11.237333pt;}
.wseb{word-spacing:11.289600pt;}
.wsaa{word-spacing:11.341867pt;}
.ws122{word-spacing:11.394133pt;}
.ws127{word-spacing:11.707733pt;}
.wse2{word-spacing:11.812267pt;}
.ws115{word-spacing:11.864533pt;}
.ws3b{word-spacing:11.916800pt;}
.ws7e{word-spacing:12.125867pt;}
.ws82{word-spacing:12.230400pt;}
.ws117{word-spacing:12.282667pt;}
.ws1c{word-spacing:12.596267pt;}
.wsf7{word-spacing:12.857600pt;}
.ws11a{word-spacing:13.066667pt;}
.ws8d{word-spacing:13.118933pt;}
.ws48{word-spacing:13.223467pt;}
.ws116{word-spacing:13.328000pt;}
.ws110{word-spacing:13.380267pt;}
.wscb{word-spacing:13.432533pt;}
.wsf8{word-spacing:13.537067pt;}
.wsb1{word-spacing:13.902933pt;}
.ws10f{word-spacing:14.376533pt;}
.ws11f{word-spacing:14.477867pt;}
.ws38{word-spacing:14.582400pt;}
.ws120{word-spacing:15.000533pt;}
.ws125{word-spacing:15.105067pt;}
.wsc1{word-spacing:15.209600pt;}
.wse4{word-spacing:15.523200pt;}
.wsfb{word-spacing:15.627733pt;}
.wse6{word-spacing:15.732267pt;}
.ws16{word-spacing:16.370133pt;}
.ws111{word-spacing:16.464000pt;}
.ws11d{word-spacing:16.620800pt;}
.ws11e{word-spacing:16.829867pt;}
.wsfe{word-spacing:17.091200pt;}
.ws124{word-spacing:18.188800pt;}
.wsba{word-spacing:18.345600pt;}
.wsfc{word-spacing:18.868267pt;}
.wsbf{word-spacing:19.077333pt;}
.ws121{word-spacing:19.756800pt;}
.wsc3{word-spacing:24.826667pt;}
.wsc0{word-spacing:28.119467pt;}
.ws6{word-spacing:40.610982pt;}
.wsd8{word-spacing:50.757376pt;}
.wsd9{word-spacing:71.578710pt;}
.wsda{word-spacing:79.002710pt;}
.ws0{word-spacing:1729.641551pt;}
._8{margin-left:-2569.717893pt;}
._14{margin-left:-33.920589pt;}
._1a{margin-left:-32.771200pt;}
._19{margin-left:-28.119467pt;}
._17{margin-left:-26.290133pt;}
._12{margin-left:-19.286400pt;}
._11{margin-left:-16.725333pt;}
._18{margin-left:-15.337600pt;}
._15{margin-left:-14.321067pt;}
._13{margin-left:-12.073600pt;}
._e{margin-left:-9.416107pt;}
._16{margin-left:-8.519467pt;}
._b{margin-left:-7.519573pt;}
._6{margin-left:-6.288000pt;}
._5{margin-left:-5.136534pt;}
._9{margin-left:-3.964693pt;}
._2{margin-left:-2.579733pt;}
._0{margin-left:-1.525333pt;}
._1{width:1.032533pt;}
._3{width:2.001333pt;}
._4{width:2.944000pt;}
._a{width:4.721614pt;}
._c{width:5.853867pt;}
._f{width:6.868255pt;}
._2c{width:8.987165pt;}
._2b{width:10.441087pt;}
._10{width:11.934421pt;}
._d{width:14.373333pt;}
._7{width:15.800549pt;}
._2e{width:29.440000pt;}
._23{width:34.656570pt;}
._2d{width:48.960000pt;}
._2a{width:64.317864pt;}
._29{width:72.271616pt;}
._24{width:75.116238pt;}
._22{width:77.203193pt;}
._26{width:80.241465pt;}
._25{width:85.139193pt;}
._27{width:86.827349pt;}
._1b{width:90.948774pt;}
._28{width:96.383971pt;}
._1e{width:134.596754pt;}
._1f{width:155.418087pt;}
._20{width:169.180738pt;}
._1d{width:190.002072pt;}
._1c{width:561.054986pt;}
._21{width:1162.711493pt;}
.fs4{font-size:28.000000pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fsa{font-size:53.333333pt;}
.fs9{font-size:54.933333pt;}
.fs6{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fs8{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:77.911199pt;}
.ybe{bottom:78.667068pt;}
.y15c{bottom:78.667200pt;}
.y18d{bottom:79.735199pt;}
.y155{bottom:82.546666pt;}
.y1cd{bottom:86.096537pt;}
.y63{bottom:86.969065pt;}
.ybd{bottom:87.665202pt;}
.y140{bottom:88.069071pt;}
.y8f{bottom:89.799866pt;}
.y7{bottom:97.661865pt;}
.y1cc{bottom:98.096537pt;}
.y154{bottom:98.105733pt;}
.y18c{bottom:98.601867pt;}
.y211{bottom:98.769063pt;}
.yfe{bottom:100.396932pt;}
.y184{bottom:102.187733pt;}
.yeb{bottom:102.596405pt;}
.y62{bottom:105.835733pt;}
.ybc{bottom:106.531871pt;}
.y13f{bottom:106.935730pt;}
.y6{bottom:108.328532pt;}
.y8e{bottom:108.666533pt;}
.y1cb{bottom:110.096537pt;}
.y210{bottom:110.769063pt;}
.y153{bottom:111.439067pt;}
.y190{bottom:114.987600pt;}
.y18b{bottom:117.468536pt;}
.y5{bottom:118.995199pt;}
.yfd{bottom:119.263733pt;}
.y183{bottom:121.054403pt;}
.yea{bottom:121.463196pt;}
.y1ca{bottom:122.096537pt;}
.y20f{bottom:122.769063pt;}
.y61{bottom:124.702403pt;}
.ybb{bottom:125.398671pt;}
.y13e{bottom:125.802399pt;}
.y152{bottom:126.998128pt;}
.y8d{bottom:127.533203pt;}
.yd1{bottom:127.597463pt;}
.y4{bottom:129.661865pt;}
.y1c9{bottom:134.096537pt;}
.y18f{bottom:134.546672pt;}
.y20e{bottom:134.769063pt;}
.y18a{bottom:136.335205pt;}
.yfc{bottom:138.130269pt;}
.y182{bottom:139.921071pt;}
.y3{bottom:140.328532pt;}
.ye9{bottom:140.329865pt;}
.y151{bottom:140.331462pt;}
.y60{bottom:143.569071pt;}
.yba{bottom:144.265198pt;}
.y13d{bottom:144.669067pt;}
.y1c8{bottom:146.096537pt;}
.y8c{bottom:146.399862pt;}
.y115{bottom:146.464132pt;}
.y20d{bottom:146.769063pt;}
.y2{bottom:150.995199pt;}
.y163{bottom:152.214132pt;}
.y15a{bottom:152.970000pt;}
.y150{bottom:153.664795pt;}
.yd0{bottom:154.798004pt;}
.y189{bottom:155.201864pt;}
.yfb{bottom:156.996938pt;}
.y1c7{bottom:158.096537pt;}
.y20c{bottom:158.769063pt;}
.y181{bottom:158.787730pt;}
.ye8{bottom:159.196400pt;}
.y18e{bottom:161.664663pt;}
.y5f{bottom:162.435730pt;}
.y165{bottom:162.612000pt;}
.yb9{bottom:163.131866pt;}
.y13c{bottom:163.535736pt;}
.y8b{bottom:165.266530pt;}
.y114{bottom:165.330800pt;}
.y14f{bottom:166.998128pt;}
.y1c6{bottom:170.096537pt;}
.y20b{bottom:170.769063pt;}
.ycf{bottom:173.664673pt;}
.yfa{bottom:175.863729pt;}
.y180{bottom:177.654399pt;}
.ye7{bottom:178.063192pt;}
.y14e{bottom:180.331462pt;}
.y5e{bottom:181.302409pt;}
.yb8{bottom:181.998535pt;}
.y1c5{bottom:182.096537pt;}
.y13b{bottom:182.402405pt;}
.y20a{bottom:182.769063pt;}
.y8a{bottom:184.133199pt;}
.y113{bottom:184.197469pt;}
.yce{bottom:192.531474pt;}
.y1c4{bottom:194.096537pt;}
.yf9{bottom:194.730265pt;}
.y209{bottom:194.769063pt;}
.y14d{bottom:195.890400pt;}
.y17f{bottom:196.521057pt;}
.ye6{bottom:196.929728pt;}
.y5d{bottom:200.169067pt;}
.yb7{bottom:200.865194pt;}
.y13a{bottom:201.269063pt;}
.y89{bottom:202.999858pt;}
.y112{bottom:203.064270pt;}
.y1c3{bottom:206.096537pt;}
.y208{bottom:206.769063pt;}
.y164{bottom:207.790263pt;}
.y15b{bottom:208.546143pt;}
.y14c{bottom:209.223733pt;}
.ycd{bottom:211.397990pt;}
.yf8{bottom:213.597066pt;}
.y17e{bottom:215.387736pt;}
.y1c2{bottom:218.096537pt;}
.y207{bottom:218.769063pt;}
.y5c{bottom:219.035726pt;}
.yb6{bottom:219.731995pt;}
.y139{bottom:220.135742pt;}
.y88{bottom:221.866536pt;}
.y14b{bottom:222.557067pt;}
.ye5{bottom:224.130269pt;}
.y1c1{bottom:230.096537pt;}
.ycc{bottom:230.264669pt;}
.y206{bottom:230.769063pt;}
.y17d{bottom:234.254395pt;}
.y5b{bottom:237.902405pt;}
.y14a{bottom:238.116130pt;}
.yb5{bottom:238.598531pt;}
.y138{bottom:239.002400pt;}
.y87{bottom:240.733195pt;}
.y111{bottom:240.797465pt;}
.y213{bottom:241.035726pt;}
.y1c0{bottom:242.096537pt;}
.y205{bottom:242.769063pt;}
.ye4{bottom:242.996928pt;}
.ycb{bottom:249.131327pt;}
.yf7{bottom:251.330261pt;}
.y149{bottom:251.449463pt;}
.y212{bottom:253.035726pt;}
.y17c{bottom:253.121073pt;}
.y1bf{bottom:254.096537pt;}
.y204{bottom:254.769063pt;}
.y5a{bottom:256.769063pt;}
.yb4{bottom:257.465210pt;}
.y137{bottom:257.869059pt;}
.y110{bottom:259.664124pt;}
.ye3{bottom:261.863729pt;}
.y148{bottom:264.782796pt;}
.y1be{bottom:266.096537pt;}
.y203{bottom:266.769063pt;}
.yca{bottom:267.998006pt;}
.yf6{bottom:270.196940pt;}
.y17b{bottom:271.987732pt;}
.y59{bottom:275.635742pt;}
.yb3{bottom:276.331868pt;}
.y136{bottom:276.735738pt;}
.y1bd{bottom:278.096537pt;}
.y147{bottom:278.116130pt;}
.y86{bottom:278.466532pt;}
.y10f{bottom:278.530802pt;}
.y202{bottom:278.769063pt;}
.y34{bottom:279.632263pt;}
.ye2{bottom:280.730265pt;}
.yc9{bottom:286.864665pt;}
.yf5{bottom:289.063599pt;}
.y1bc{bottom:290.096537pt;}
.y201{bottom:290.769063pt;}
.y17a{bottom:290.854390pt;}
.y146{bottom:291.449463pt;}
.y58{bottom:294.502400pt;}
.yb2{bottom:295.198527pt;}
.y135{bottom:295.602397pt;}
.y33{bottom:295.632263pt;}
.y85{bottom:297.333191pt;}
.y10e{bottom:297.397461pt;}
.y1bb{bottom:302.096537pt;}
.y200{bottom:302.769063pt;}
.yc8{bottom:305.731323pt;}
.y145{bottom:307.108541pt;}
.yf4{bottom:307.930400pt;}
.ye1{bottom:307.930929pt;}
.y179{bottom:309.721069pt;}
.y15f{bottom:312.342143pt;}
.y156{bottom:313.098002pt;}
.y57{bottom:313.369059pt;}
.yb1{bottom:314.065206pt;}
.y1ba{bottom:314.096537pt;}
.y134{bottom:314.469076pt;}
.y1ff{bottom:314.769063pt;}
.y32{bottom:315.632263pt;}
.y84{bottom:316.199870pt;}
.y10d{bottom:316.264262pt;}
.y144{bottom:320.441874pt;}
.yc7{bottom:324.598002pt;}
.y1b9{bottom:326.096537pt;}
.y1fe{bottom:326.769063pt;}
.yf3{bottom:326.796936pt;}
.ye0{bottom:326.797465pt;}
.y178{bottom:328.587728pt;}
.y31{bottom:331.632263pt;}
.y56{bottom:332.235738pt;}
.yb0{bottom:332.931864pt;}
.y133{bottom:333.335733pt;}
.y143{bottom:333.775208pt;}
.y83{bottom:335.066528pt;}
.y1b8{bottom:338.096537pt;}
.y1fd{bottom:338.769063pt;}
.yc6{bottom:343.464681pt;}
.yf2{bottom:345.663615pt;}
.ydf{bottom:345.664144pt;}
.y142{bottom:347.108521pt;}
.y177{bottom:347.454386pt;}
.y30{bottom:347.632284pt;}
.y1b7{bottom:350.096517pt;}
.y1fc{bottom:350.769084pt;}
.y55{bottom:351.102417pt;}
.yaf{bottom:351.798543pt;}
.y132{bottom:352.202393pt;}
.y10c{bottom:353.997477pt;}
.y1b6{bottom:362.096517pt;}
.y82{bottom:362.267049pt;}
.yc5{bottom:362.331340pt;}
.y141{bottom:362.667603pt;}
.y1fb{bottom:362.769084pt;}
.y2f{bottom:363.632284pt;}
.yf1{bottom:364.530273pt;}
.yde{bottom:364.530802pt;}
.y176{bottom:366.321086pt;}
.y54{bottom:369.969076pt;}
.yae{bottom:370.665202pt;}
.y131{bottom:371.069051pt;}
.y10b{bottom:372.864136pt;}
.y1b5{bottom:374.096517pt;}
.y1fa{bottom:374.769084pt;}
.y2e{bottom:379.632284pt;}
.y81{bottom:381.133748pt;}
.yc4{bottom:381.197998pt;}
.yf0{bottom:383.396932pt;}
.ydd{bottom:383.397461pt;}
.ybf{bottom:383.972127pt;}
.y175{bottom:385.187744pt;}
.y1b4{bottom:386.096517pt;}
.y1f9{bottom:386.769084pt;}
.y53{bottom:388.835733pt;}
.yad{bottom:389.531860pt;}
.y130{bottom:389.935750pt;}
.y10a{bottom:391.730794pt;}
.y2d{bottom:395.632284pt;}
.y1b3{bottom:398.096517pt;}
.y1f8{bottom:398.769084pt;}
.y80{bottom:400.000407pt;}
.yef{bottom:402.263753pt;}
.ydc{bottom:402.264282pt;}
.y174{bottom:404.054403pt;}
.y52{bottom:407.702393pt;}
.yac{bottom:408.398519pt;}
.y188{bottom:408.802409pt;}
.y1b2{bottom:410.096517pt;}
.y109{bottom:410.597616pt;}
.y1f7{bottom:410.769084pt;}
.y2c{bottom:411.632284pt;}
.y7f{bottom:418.867065pt;}
.yc3{bottom:418.931315pt;}
.yee{bottom:421.130249pt;}
.ydb{bottom:421.130819pt;}
.y1b1{bottom:422.096517pt;}
.y1f6{bottom:422.769084pt;}
.y173{bottom:422.921061pt;}
.y51{bottom:426.569051pt;}
.yab{bottom:427.265218pt;}
.y2b{bottom:427.632284pt;}
.y12f{bottom:427.669067pt;}
.y108{bottom:429.464152pt;}
.y1b0{bottom:434.096517pt;}
.y1f5{bottom:434.769084pt;}
.y160{bottom:436.212118pt;}
.y157{bottom:436.968018pt;}
.yc2{bottom:437.798014pt;}
.yed{bottom:439.996948pt;}
.yda{bottom:439.997477pt;}
.y172{bottom:441.787720pt;}
.y2a{bottom:443.632284pt;}
.y50{bottom:445.435750pt;}
.y7e{bottom:446.067586pt;}
.y1af{bottom:446.096517pt;}
.yaa{bottom:446.131877pt;}
.y12e{bottom:446.535726pt;}
.y1f4{bottom:446.769084pt;}
.yc1{bottom:456.664673pt;}
.y1ae{bottom:458.096517pt;}
.y1f3{bottom:458.769084pt;}
.y29{bottom:459.632284pt;}
.y171{bottom:460.654419pt;}
.y4f{bottom:464.302409pt;}
.y7d{bottom:464.934285pt;}
.ya9{bottom:464.998535pt;}
.y12d{bottom:465.402384pt;}
.yec{bottom:467.197469pt;}
.y1ad{bottom:470.096517pt;}
.y1f2{bottom:470.769084pt;}
.yc0{bottom:475.531331pt;}
.y28{bottom:475.632284pt;}
.y170{bottom:479.521077pt;}
.y1ac{bottom:482.096517pt;}
.y1f1{bottom:482.769084pt;}
.y4e{bottom:483.169067pt;}
.y7c{bottom:483.800944pt;}
.ya8{bottom:483.865194pt;}
.y12c{bottom:484.269084pt;}
.y107{bottom:486.064128pt;}
.y27{bottom:491.632284pt;}
.y1ab{bottom:494.096517pt;}
.yd9{bottom:494.397990pt;}
.y1f0{bottom:494.769084pt;}
.y16f{bottom:498.387736pt;}
.y4d{bottom:502.035726pt;}
.y7b{bottom:502.667603pt;}
.ya7{bottom:502.731852pt;}
.y12b{bottom:503.135742pt;}
.y106{bottom:504.930949pt;}
.y1aa{bottom:506.096517pt;}
.y1ef{bottom:506.769084pt;}
.y26{bottom:507.632284pt;}
.yd8{bottom:513.264648pt;}
.y16e{bottom:517.254395pt;}
.y1a9{bottom:518.096517pt;}
.y1ee{bottom:518.769084pt;}
.y4c{bottom:520.902384pt;}
.y7a{bottom:521.534261pt;}
.ya6{bottom:521.598551pt;}
.y12a{bottom:522.002400pt;}
.y25{bottom:523.632284pt;}
.y1ed{bottom:530.769084pt;}
.yd7{bottom:532.131348pt;}
.y16d{bottom:536.121053pt;}
.y24{bottom:539.632284pt;}
.y4b{bottom:539.769084pt;}
.y79{bottom:540.400920pt;}
.ya5{bottom:540.465210pt;}
.y129{bottom:540.869059pt;}
.y105{bottom:542.664144pt;}
.y1ec{bottom:542.769084pt;}
.yd6{bottom:550.998006pt;}
.y1eb{bottom:554.769084pt;}
.y16c{bottom:554.987752pt;}
.y23{bottom:555.632284pt;}
.y4a{bottom:558.635742pt;}
.y78{bottom:559.267619pt;}
.ya4{bottom:559.331868pt;}
.y128{bottom:559.735718pt;}
.y104{bottom:561.530802pt;}
.y1ea{bottom:566.769084pt;}
.yd5{bottom:569.864665pt;}
.y22{bottom:571.632284pt;}
.y16b{bottom:573.854411pt;}
.y49{bottom:577.502400pt;}
.y77{bottom:578.134277pt;}
.ya3{bottom:578.198527pt;}
.y127{bottom:578.602417pt;}
.y1e9{bottom:578.769084pt;}
.y103{bottom:580.397461pt;}
.y1a8{bottom:582.296549pt;}
.y21{bottom:587.632284pt;}
.yd4{bottom:588.731323pt;}
.y1e8{bottom:590.769084pt;}
.y16a{bottom:592.721069pt;}
.y48{bottom:596.369059pt;}
.y76{bottom:597.000936pt;}
.ya2{bottom:597.065186pt;}
.y126{bottom:597.469076pt;}
.y102{bottom:599.264282pt;}
.y1e7{bottom:602.769084pt;}
.y20{bottom:603.632284pt;}
.yd3{bottom:607.597982pt;}
.y1a7{bottom:609.414673pt;}
.y169{bottom:611.587728pt;}
.y1e6{bottom:614.769084pt;}
.y47{bottom:615.235718pt;}
.y75{bottom:615.867594pt;}
.ya1{bottom:615.931885pt;}
.y125{bottom:616.335733pt;}
.y101{bottom:618.130819pt;}
.y1f{bottom:619.632284pt;}
.y1a6{bottom:621.414673pt;}
.yd2{bottom:626.464681pt;}
.y1e5{bottom:626.769084pt;}
.y168{bottom:630.454386pt;}
.y46{bottom:634.102417pt;}
.y74{bottom:634.734253pt;}
.ya0{bottom:634.798543pt;}
.y124{bottom:635.202393pt;}
.y1e{bottom:635.632284pt;}
.y100{bottom:636.997477pt;}
.y1e4{bottom:638.769084pt;}
.y1a5{bottom:640.973714pt;}
.y167{bottom:649.321086pt;}
.y1e3{bottom:650.769084pt;}
.y1d{bottom:651.632284pt;}
.y45{bottom:652.969076pt;}
.y1a4{bottom:652.973714pt;}
.y73{bottom:653.600952pt;}
.y9f{bottom:653.665202pt;}
.y123{bottom:654.069051pt;}
.y12{bottom:662.765747pt;}
.y1e2{bottom:662.769084pt;}
.yff{bottom:664.197998pt;}
.y161{bottom:664.654541pt;}
.y158{bottom:665.410400pt;}
.y1c{bottom:667.632284pt;}
.y166{bottom:668.187744pt;}
.y44{bottom:671.835733pt;}
.y72{bottom:672.467611pt;}
.y9e{bottom:672.531860pt;}
.y1a3{bottom:672.532796pt;}
.y122{bottom:672.935750pt;}
.y11{bottom:674.765747pt;}
.y1e1{bottom:674.769084pt;}
.y1b{bottom:683.632243pt;}
.y1a2{bottom:684.532796pt;}
.y1e0{bottom:686.769043pt;}
.y43{bottom:690.702393pt;}
.y10{bottom:690.765706pt;}
.y71{bottom:691.334229pt;}
.y9d{bottom:691.398682pt;}
.y121{bottom:691.802409pt;}
.y185{bottom:693.790283pt;}
.y1a1{bottom:696.532796pt;}
.yf{bottom:698.765706pt;}
.y1df{bottom:698.769043pt;}
.y1a{bottom:699.632243pt;}
.y42{bottom:709.569092pt;}
.y70{bottom:710.200928pt;}
.y9c{bottom:710.265218pt;}
.y120{bottom:710.669027pt;}
.ye{bottom:710.765706pt;}
.y1de{bottom:710.769043pt;}
.y19{bottom:715.632243pt;}
.y1a0{bottom:716.091878pt;}
.y1dd{bottom:722.769043pt;}
.yd{bottom:726.765706pt;}
.y41{bottom:728.435710pt;}
.y6f{bottom:729.067627pt;}
.y9b{bottom:729.131836pt;}
.y11f{bottom:729.535726pt;}
.y18{bottom:731.632243pt;}
.yc{bottom:734.765706pt;}
.y1dc{bottom:734.769043pt;}
.yb{bottom:746.765706pt;}
.y1db{bottom:746.769043pt;}
.y40{bottom:747.302409pt;}
.y17{bottom:747.632243pt;}
.y6e{bottom:747.934245pt;}
.y9a{bottom:747.998535pt;}
.y19f{bottom:748.091878pt;}
.y187{bottom:748.402425pt;}
.ya{bottom:758.765706pt;}
.y1da{bottom:758.769043pt;}
.y19e{bottom:760.091878pt;}
.y162{bottom:761.172363pt;}
.y159{bottom:761.928304pt;}
.y3f{bottom:766.169027pt;}
.y6d{bottom:766.800944pt;}
.y99{bottom:766.865234pt;}
.y11e{bottom:767.269043pt;}
.y1d9{bottom:770.769043pt;}
.y19d{bottom:772.091878pt;}
.y1d8{bottom:782.769043pt;}
.y19c{bottom:784.091878pt;}
.y3e{bottom:785.035726pt;}
.y6c{bottom:785.667562pt;}
.y98{bottom:785.732015pt;}
.y11d{bottom:786.135742pt;}
.y1d7{bottom:794.769043pt;}
.y15{bottom:800.281494pt;}
.y19b{bottom:803.650960pt;}
.y3d{bottom:803.902425pt;}
.y6b{bottom:804.534261pt;}
.y97{bottom:804.598551pt;}
.y11c{bottom:805.002360pt;}
.y1d6{bottom:806.769043pt;}
.y19a{bottom:815.650960pt;}
.y1d5{bottom:818.769043pt;}
.y3c{bottom:822.769043pt;}
.y6a{bottom:823.400960pt;}
.y96{bottom:823.465169pt;}
.y11b{bottom:823.869059pt;}
.y1d4{bottom:830.769043pt;}
.y14{bottom:832.281494pt;}
.y199{bottom:835.209961pt;}
.y3b{bottom:841.635742pt;}
.y69{bottom:842.267578pt;}
.y95{bottom:842.331868pt;}
.y186{bottom:842.735758pt;}
.y1d3{bottom:842.769043pt;}
.y198{bottom:847.209961pt;}
.y1d2{bottom:854.769043pt;}
.y197{bottom:859.209961pt;}
.y3a{bottom:860.502360pt;}
.y68{bottom:861.134277pt;}
.y94{bottom:861.198568pt;}
.y11a{bottom:861.602376pt;}
.y1d1{bottom:866.769043pt;}
.y13{bottom:866.948161pt;}
.y196{bottom:871.209961pt;}
.y1d0{bottom:878.769043pt;}
.y39{bottom:879.369059pt;}
.y67{bottom:880.000895pt;}
.y93{bottom:880.065348pt;}
.y119{bottom:880.469076pt;}
.y195{bottom:883.209961pt;}
.y1cf{bottom:890.769043pt;}
.y194{bottom:895.209961pt;}
.y38{bottom:898.235758pt;}
.y66{bottom:898.867594pt;}
.y92{bottom:898.931885pt;}
.y118{bottom:899.335693pt;}
.y1ce{bottom:902.769043pt;}
.y193{bottom:914.769043pt;}
.y37{bottom:917.102376pt;}
.y65{bottom:917.734294pt;}
.y91{bottom:917.798503pt;}
.y117{bottom:918.202393pt;}
.y1{bottom:921.267741pt;}
.y192{bottom:926.769043pt;}
.y15d{bottom:935.175293pt;}
.y36{bottom:935.969076pt;}
.y64{bottom:936.600911pt;}
.y90{bottom:936.665202pt;}
.y116{bottom:937.069092pt;}
.y191{bottom:938.769043pt;}
.y9{bottom:990.267741pt;}
.y16{bottom:1000.430501pt;}
.y8{bottom:1003.601074pt;}
.y35{bottom:1003.934408pt;}
.h8{height:26.180000pt;}
.h4{height:34.906667pt;}
.h3{height:36.922667pt;}
.h7{height:37.400000pt;}
.h1a{height:38.080000pt;}
.h19{height:38.880000pt;}
.h16{height:39.893333pt;}
.h6{height:40.618667pt;}
.h5{height:40.661333pt;}
.h15{height:41.472000pt;}
.h12{height:42.197333pt;}
.h13{height:42.656250pt;}
.h14{height:47.472000pt;}
.h11{height:47.692799pt;}
.h10{height:48.555733pt;}
.hf{height:49.653333pt;}
.hd{height:49.866667pt;}
.he{height:51.840000pt;}
.h18{height:52.632533pt;}
.h17{height:53.834667pt;}
.hc{height:54.329067pt;}
.ha{height:61.863804pt;}
.hb{height:63.111253pt;}
.h2{height:70.130237pt;}
.h9{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x7{left:156.850403pt;}
.x5b{left:164.409465pt;}
.x30{left:165.850403pt;}
.x8{left:167.517069pt;}
.x5c{left:176.850403pt;}
.x12{left:181.976400pt;}
.x9{left:183.517069pt;}
.x31{left:185.755859pt;}
.xa{left:187.638672pt;}
.x13{left:195.309733pt;}
.xb{left:198.425191pt;}
.x14{left:208.643066pt;}
.x32{left:212.422526pt;}
.x15{left:221.976400pt;}
.x33{left:225.755859pt;}
.x11{left:228.752930pt;}
.x2{left:237.559469pt;}
.x34{left:241.314941pt;}
.x5{left:246.226135pt;}
.x16{left:250.968791pt;}
.x35{left:254.648275pt;}
.x17{left:264.302124pt;}
.x36{left:267.981608pt;}
.x18{left:277.635457pt;}
.x37{left:281.314941pt;}
.x19{left:290.968791pt;}
.x38{left:294.648275pt;}
.x4f{left:296.874003pt;}
.x1a{left:304.302124pt;}
.x39{left:307.981608pt;}
.x50{left:310.207336pt;}
.x1b{left:317.635457pt;}
.x3a{left:321.314941pt;}
.x51{left:323.540670pt;}
.x1c{left:330.968791pt;}
.x3b{left:334.648275pt;}
.x52{left:336.874003pt;}
.x1d{left:344.302124pt;}
.x3c{left:347.981608pt;}
.x53{left:350.207316pt;}
.x1e{left:357.635457pt;}
.x3d{left:361.314941pt;}
.x54{left:365.766398pt;}
.x1f{left:370.968791pt;}
.x3e{left:374.648275pt;}
.x55{left:379.099731pt;}
.x20{left:386.527873pt;}
.x3f{left:387.981608pt;}
.x56{left:392.433065pt;}
.x21{left:399.861206pt;}
.x40{left:403.540649pt;}
.x57{left:407.992147pt;}
.x22{left:413.194539pt;}
.x41{left:416.873983pt;}
.x58{left:421.325480pt;}
.x23{left:426.527873pt;}
.x42{left:430.207316pt;}
.x59{left:434.658813pt;}
.x24{left:439.861206pt;}
.x43{left:443.540649pt;}
.x5a{left:447.992147pt;}
.x25{left:453.194539pt;}
.x44{left:456.873983pt;}
.x26{left:466.527873pt;}
.xd{left:467.918009pt;}
.x45{left:470.207316pt;}
.x27{left:482.086914pt;}
.x46{left:483.540649pt;}
.x28{left:495.420247pt;}
.x47{left:496.873983pt;}
.x29{left:508.753581pt;}
.x48{left:510.207316pt;}
.xe{left:520.623861pt;}
.x2a{left:522.086914pt;}
.x49{left:523.540649pt;}
.x2b{left:535.420247pt;}
.x4a{left:536.873983pt;}
.x2c{left:548.753581pt;}
.x4b{left:550.207316pt;}
.xf{left:558.326538pt;}
.x4{left:562.340007pt;}
.x4c{left:565.766398pt;}
.x2d{left:575.420247pt;}
.x4d{left:579.099731pt;}
.x2e{left:588.753581pt;}
.x4e{left:592.433065pt;}
.x10{left:602.386393pt;}
.x2f{left:615.420247pt;}
.xc{left:656.588257pt;}
.x6{left:662.060140pt;}
}




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