
    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_c89a64f43937ec6b376c35c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923000;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_974500b485b2875966e0b92b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fcab17a921f4c3faff14b8f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fcab17a921f4c3faff14b8f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9a0777ec096ad00c74ba9bb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071000;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_974500b485b2875966e0b92b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7a2713632fb6adcf0cd65e72.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715000;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_8a3f3d8a20160eed85dc86f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_f601c97b4ecabc43c9fc3444.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bdbbdccf52e250c45cda36bb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c89a64f43937ec6b376c35c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923000;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_946acb9fbc520d95f3e0c14c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.731445;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_3da0d140d592f9dbe3123677.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933000;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_dddf807a8fcf65c651d6df3b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.862720px;}
.ls3a{letter-spacing:-1.600560px;}
.ls24{letter-spacing:-1.592640px;}
.ls25{letter-spacing:-1.535760px;}
.ls39{letter-spacing:-1.432080px;}
.ls85{letter-spacing:-0.864000px;}
.ls73{letter-spacing:-0.725760px;}
.ls21{letter-spacing:-0.680400px;}
.ls4f{letter-spacing:-0.613440px;}
.ls1{letter-spacing:-0.528000px;}
.ls4d{letter-spacing:-0.460080px;}
.ls81{letter-spacing:-0.421200px;}
.ls82{letter-spacing:-0.398160px;}
.ls6a{letter-spacing:-0.362880px;}
.ls23{letter-spacing:-0.341280px;}
.ls22{letter-spacing:-0.324000px;}
.ls6c{letter-spacing:-0.317520px;}
.ls5d{letter-spacing:-0.306720px;}
.ls37{letter-spacing:-0.284400px;}
.lsf{letter-spacing:-0.282000px;}
.ls1d{letter-spacing:-0.272160px;}
.ls5b{letter-spacing:-0.255600px;}
.ls5{letter-spacing:-0.233280px;}
.lse{letter-spacing:-0.228000px;}
.lsd{letter-spacing:-0.227520px;}
.ls1e{letter-spacing:-0.226800px;}
.ls5a{letter-spacing:-0.204480px;}
.ls53{letter-spacing:-0.170640px;}
.ls40{letter-spacing:-0.168480px;}
.ls4e{letter-spacing:-0.153360px;}
.ls41{letter-spacing:-0.136080px;}
.ls4{letter-spacing:-0.131760px;}
.ls7b{letter-spacing:-0.113760px;}
.ls20{letter-spacing:-0.090720px;}
.ls6{letter-spacing:-0.077760px;}
.ls11{letter-spacing:-0.060000px;}
.ls69{letter-spacing:-0.056880px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000120px;}
.ls12{letter-spacing:0.045360px;}
.ls4c{letter-spacing:0.051120px;}
.ls9{letter-spacing:0.056880px;}
.ls68{letter-spacing:0.068256px;}
.ls6b{letter-spacing:0.083520px;}
.ls66{letter-spacing:0.089280px;}
.ls43{letter-spacing:0.102240px;}
.ls3f{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.108072px;}
.ls47{letter-spacing:0.113760px;}
.ls1f{letter-spacing:0.136080px;}
.ls49{letter-spacing:0.144000px;}
.ls80{letter-spacing:0.168480px;}
.ls19{letter-spacing:0.169920px;}
.ls27{letter-spacing:0.170640px;}
.ls10{letter-spacing:0.174000px;}
.lsb{letter-spacing:0.174120px;}
.ls48{letter-spacing:0.181440px;}
.ls51{letter-spacing:0.204480px;}
.ls29{letter-spacing:0.216144px;}
.ls26{letter-spacing:0.227520px;}
.ls2{letter-spacing:0.233280px;}
.ls35{letter-spacing:0.244584px;}
.ls52{letter-spacing:0.252720px;}
.ls50{letter-spacing:0.255600px;}
.ls7e{letter-spacing:0.255960px;}
.ls36{letter-spacing:0.267336px;}
.ls3c{letter-spacing:0.267624px;}
.ls71{letter-spacing:0.276696px;}
.ls33{letter-spacing:0.278712px;}
.ls2d{letter-spacing:0.284400px;}
.ls4b{letter-spacing:0.294840px;}
.ls3d{letter-spacing:0.295776px;}
.ls15{letter-spacing:0.301464px;}
.ls5c{letter-spacing:0.306720px;}
.ls77{letter-spacing:0.307152px;}
.ls3{letter-spacing:0.311040px;}
.ls13{letter-spacing:0.312840px;}
.ls7c{letter-spacing:0.324216px;}
.ls54{letter-spacing:0.329904px;}
.ls16{letter-spacing:0.335592px;}
.ls14{letter-spacing:0.341280px;}
.lsa{letter-spacing:0.341760px;}
.ls65{letter-spacing:0.342000px;}
.ls32{letter-spacing:0.346968px;}
.ls30{letter-spacing:0.352656px;}
.ls18{letter-spacing:0.358344px;}
.ls60{letter-spacing:0.362880px;}
.ls6f{letter-spacing:0.364032px;}
.ls79{letter-spacing:0.369720px;}
.ls5f{letter-spacing:0.372960px;}
.ls2f{letter-spacing:0.375408px;}
.ls3b{letter-spacing:0.381096px;}
.ls58{letter-spacing:0.386784px;}
.ls7{letter-spacing:0.388800px;}
.ls2e{letter-spacing:0.392472px;}
.ls8{letter-spacing:0.398160px;}
.ls62{letter-spacing:0.407664px;}
.ls55{letter-spacing:0.409536px;}
.ls78{letter-spacing:0.420912px;}
.ls59{letter-spacing:0.449352px;}
.ls2b{letter-spacing:0.477792px;}
.ls61{letter-spacing:0.479520px;}
.ls45{letter-spacing:0.500544px;}
.ls74{letter-spacing:0.682560px;}
.ls38{letter-spacing:0.796320px;}
.ls57{letter-spacing:0.972648px;}
.ls44{letter-spacing:1.023840px;}
.ls6d{letter-spacing:1.043280px;}
.ls7f{letter-spacing:1.046592px;}
.ls34{letter-spacing:1.057968px;}
.ls5e{letter-spacing:1.080720px;}
.ls70{letter-spacing:1.126224px;}
.ls7d{letter-spacing:1.291176px;}
.ls67{letter-spacing:1.905120px;}
.ls17{letter-spacing:2.531160px;}
.ls4a{letter-spacing:2.988000px;}
.ls2c{letter-spacing:3.242160px;}
.ls3e{letter-spacing:3.981600px;}
.ls42{letter-spacing:4.664160px;}
.ls83{letter-spacing:5.403600px;}
.ls75{letter-spacing:6.143040px;}
.ls64{letter-spacing:7.565040px;}
.ls46{letter-spacing:8.987040px;}
.ls63{letter-spacing:9.726480px;}
.ls84{letter-spacing:13.309920px;}
.ls6e{letter-spacing:15.471360px;}
.ls72{letter-spacing:16.210800px;}
.ls56{letter-spacing:17.632800px;}
.ls76{letter-spacing:21.955680px;}
.ls7a{letter-spacing:28.440000px;}
.ls28{letter-spacing:41.361840px;}
.ls31{letter-spacing:42.120000px;}
.ls1a{letter-spacing:87.269760px;}
.ls1b{letter-spacing:88.709760px;}
.ls1c{letter-spacing:848.194560px;}
.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;}
}
.ws0{word-spacing:-25.344000px;}
.ws117{word-spacing:-21.168000px;}
.ws3b{word-spacing:-20.844000px;}
.ws118{word-spacing:-20.304000px;}
.ws7c{word-spacing:-17.100720px;}
.ws6d{word-spacing:-16.679520px;}
.wsf5{word-spacing:-16.342560px;}
.ws55{word-spacing:-16.174080px;}
.wsd4{word-spacing:-16.005600px;}
.ws3{word-spacing:-15.940800px;}
.ws51{word-spacing:-15.921360px;}
.wsf6{word-spacing:-15.752880px;}
.ws54{word-spacing:-14.742000px;}
.ws40{word-spacing:-11.489760px;}
.ws53{word-spacing:-11.432880px;}
.ws52{word-spacing:-11.376000px;}
.wsf7{word-spacing:-11.319120px;}
.ws7{word-spacing:-11.205360px;}
.wsc{word-spacing:-11.148480px;}
.wsd5{word-spacing:-11.091600px;}
.ws3f{word-spacing:-10.977840px;}
.ws3a{word-spacing:-10.920960px;}
.ws8{word-spacing:-10.920480px;}
.wsb{word-spacing:-10.866480px;}
.wse9{word-spacing:-10.864080px;}
.ws3d{word-spacing:-10.750320px;}
.wsa{word-spacing:-10.690320px;}
.ws9{word-spacing:-10.468320px;}
.ws3c{word-spacing:-10.409040px;}
.ws98{word-spacing:-10.275120px;}
.ws97{word-spacing:-10.224000px;}
.ws76{word-spacing:-10.121760px;}
.ws79{word-spacing:-10.019520px;}
.ws78{word-spacing:-9.866160px;}
.ws73{word-spacing:-9.840240px;}
.wsb6{word-spacing:-9.783360px;}
.ws99{word-spacing:-9.763920px;}
.ws95{word-spacing:-9.726480px;}
.wsb9{word-spacing:-9.712800px;}
.wsf8{word-spacing:-9.669600px;}
.wse8{word-spacing:-9.612720px;}
.wsd6{word-spacing:-9.555840px;}
.wsd7{word-spacing:-9.498960px;}
.ws3e{word-spacing:-9.157680px;}
.ws75{word-spacing:-9.026640px;}
.ws96{word-spacing:-8.997120px;}
.wsd2{word-spacing:-8.935920px;}
.ws74{word-spacing:-8.890560px;}
.ws7b{word-spacing:-8.843760px;}
.wsbd{word-spacing:-8.799840px;}
.wsd3{word-spacing:-8.754480px;}
.ws7a{word-spacing:-8.588160px;}
.wsb8{word-spacing:-8.485920px;}
.ws39{word-spacing:-8.210160px;}
.ws77{word-spacing:-8.128080px;}
.wsbb{word-spacing:-7.801920px;}
.wsb7{word-spacing:-7.756560px;}
.wsbc{word-spacing:-7.439040px;}
.wsb5{word-spacing:-7.393680px;}
.ws61{word-spacing:-3.014640px;}
.wsec{word-spacing:-2.844000px;}
.ws10b{word-spacing:-2.559600px;}
.wsc5{word-spacing:-2.351520px;}
.ws57{word-spacing:-2.275200px;}
.ws10{word-spacing:-2.274000px;}
.wscc{word-spacing:-2.198160px;}
.wsdc{word-spacing:-2.104560px;}
.ws100{word-spacing:-1.763280px;}
.ws56{word-spacing:-1.535760px;}
.ws80{word-spacing:-1.482480px;}
.wsb4{word-spacing:-1.088640px;}
.wsd1{word-spacing:-1.043280px;}
.wsdf{word-spacing:-0.952560px;}
.wsc8{word-spacing:-0.920160px;}
.ws111{word-spacing:-0.861840px;}
.ws49{word-spacing:-0.853200px;}
.ws6a{word-spacing:-0.796320px;}
.ws88{word-spacing:-0.766800px;}
.ws5c{word-spacing:-0.682560px;}
.ws10d{word-spacing:-0.568800px;}
.ws115{word-spacing:-0.511920px;}
.ws20{word-spacing:-0.462000px;}
.wsfb{word-spacing:-0.455040px;}
.ws50{word-spacing:-0.398160px;}
.ws43{word-spacing:-0.362880px;}
.wsc2{word-spacing:-0.357840px;}
.ws48{word-spacing:-0.341280px;}
.ws6e{word-spacing:-0.336960px;}
.wsc3{word-spacing:-0.311040px;}
.ws45{word-spacing:-0.272160px;}
.ws86{word-spacing:-0.255600px;}
.wse1{word-spacing:-0.252720px;}
.wsfa{word-spacing:-0.227520px;}
.ws46{word-spacing:-0.226800px;}
.ws89{word-spacing:-0.204480px;}
.ws19{word-spacing:-0.174000px;}
.ws6b{word-spacing:-0.168480px;}
.ws7e{word-spacing:-0.153360px;}
.ws44{word-spacing:-0.136080px;}
.wsba{word-spacing:-0.125280px;}
.ws12{word-spacing:-0.114000px;}
.wse{word-spacing:-0.113760px;}
.ws72{word-spacing:-0.090720px;}
.wsf1{word-spacing:-0.084240px;}
.ws4e{word-spacing:-0.056880px;}
.ws82{word-spacing:-0.051120px;}
.ws2{word-spacing:0.000000px;}
.ws1d{word-spacing:0.006000px;}
.ws1c{word-spacing:0.024000px;}
.ws41{word-spacing:0.045360px;}
.ws8a{word-spacing:0.051120px;}
.ws1a{word-spacing:0.054000px;}
.ws60{word-spacing:0.056880px;}
.ws1e{word-spacing:0.084000px;}
.ws35{word-spacing:0.090000px;}
.ws9d{word-spacing:0.102240px;}
.wsce{word-spacing:0.136080px;}
.ws15{word-spacing:0.162000px;}
.ws25{word-spacing:0.168000px;}
.ws81{word-spacing:0.204480px;}
.ws42{word-spacing:0.226800px;}
.wsd{word-spacing:0.227520px;}
.ws38{word-spacing:0.228000px;}
.ws65{word-spacing:0.284400px;}
.wscb{word-spacing:0.306720px;}
.ws1b{word-spacing:0.330000px;}
.wsff{word-spacing:0.341280px;}
.ws2d{word-spacing:0.348000px;}
.ws2a{word-spacing:0.366000px;}
.ws27{word-spacing:0.378000px;}
.ws6{word-spacing:0.388800px;}
.ws4{word-spacing:0.395280px;}
.ws26{word-spacing:0.396000px;}
.wsde{word-spacing:0.398160px;}
.ws36{word-spacing:0.426000px;}
.ws24{word-spacing:0.438000px;}
.ws7f{word-spacing:0.460080px;}
.ws18{word-spacing:0.480000px;}
.wse0{word-spacing:0.498960px;}
.ws9e{word-spacing:0.511200px;}
.ws90{word-spacing:0.511920px;}
.ws5{word-spacing:0.544320px;}
.ws10c{word-spacing:0.568800px;}
.ws14{word-spacing:0.570000px;}
.ws23{word-spacing:0.588000px;}
.ws13{word-spacing:0.594000px;}
.ws16{word-spacing:0.600000px;}
.ws29{word-spacing:0.606000px;}
.ws5a{word-spacing:0.625680px;}
.ws2b{word-spacing:0.684000px;}
.ws17{word-spacing:0.696000px;}
.wsbe{word-spacing:0.739440px;}
.ws28{word-spacing:0.756000px;}
.ws22{word-spacing:0.768000px;}
.ws37{word-spacing:0.810000px;}
.ws4f{word-spacing:0.853200px;}
.ws21{word-spacing:0.888000px;}
.ws105{word-spacing:0.966960px;}
.ws1f{word-spacing:1.014000px;}
.ws104{word-spacing:1.023840px;}
.ws1{word-spacing:1.056000px;}
.wsfd{word-spacing:1.080720px;}
.wsa8{word-spacing:1.226880px;}
.ws94{word-spacing:1.270080px;}
.ws85{word-spacing:1.278000px;}
.ws11{word-spacing:1.308000px;}
.ws5e{word-spacing:1.308240px;}
.ws10e{word-spacing:1.478880px;}
.ws2c{word-spacing:1.596000px;}
.ws93{word-spacing:1.814400px;}
.ws92{word-spacing:1.859760px;}
.ws91{word-spacing:1.905120px;}
.ws84{word-spacing:1.942560px;}
.wsd0{word-spacing:1.995840px;}
.ws9c{word-spacing:2.047680px;}
.wsac{word-spacing:2.095920px;}
.wscf{word-spacing:2.177280px;}
.ws109{word-spacing:2.502720px;}
.wsaf{word-spacing:2.709360px;}
.ws4c{word-spacing:2.787120px;}
.ws63{word-spacing:3.469680px;}
.ws70{word-spacing:3.981600px;}
.ws62{word-spacing:4.209120px;}
.wsfe{word-spacing:4.266000px;}
.ws4d{word-spacing:4.948560px;}
.ws4a{word-spacing:5.631120px;}
.wsf9{word-spacing:6.086160px;}
.ws10a{word-spacing:6.143040px;}
.ws58{word-spacing:6.370560px;}
.wsa3{word-spacing:6.696720px;}
.wsa9{word-spacing:7.003440px;}
.ws5f{word-spacing:7.110000px;}
.wsaa{word-spacing:7.156800px;}
.wsc1{word-spacing:7.565040px;}
.ws64{word-spacing:7.792560px;}
.ws114{word-spacing:8.304480px;}
.wsad{word-spacing:8.434800px;}
.ws6c{word-spacing:8.532000px;}
.ws8f{word-spacing:8.873280px;}
.wse5{word-spacing:8.930160px;}
.wse6{word-spacing:8.987040px;}
.wsa5{word-spacing:9.150480px;}
.ws67{word-spacing:9.214560px;}
.wsae{word-spacing:9.559440px;}
.wsbf{word-spacing:9.954000px;}
.wsab{word-spacing:10.632960px;}
.ws2f{word-spacing:10.692000px;}
.ws47{word-spacing:10.693440px;}
.ws33{word-spacing:10.896000px;}
.ws32{word-spacing:10.968000px;}
.ws34{word-spacing:11.046000px;}
.ws31{word-spacing:11.100000px;}
.wsa6{word-spacing:11.348640px;}
.ws8e{word-spacing:11.376000px;}
.ws30{word-spacing:11.400000px;}
.ws2e{word-spacing:11.802000px;}
.wsd8{word-spacing:12.115440px;}
.ws87{word-spacing:12.217680px;}
.wsea{word-spacing:12.570480px;}
.ws5d{word-spacing:12.854880px;}
.ws10f{word-spacing:13.309920px;}
.ws113{word-spacing:13.480560px;}
.wsa7{word-spacing:13.495680px;}
.wsf{word-spacing:13.536000px;}
.ws5b{word-spacing:13.537440px;}
.ws112{word-spacing:13.594320px;}
.wsdd{word-spacing:14.276880px;}
.wsa2{word-spacing:14.927040px;}
.ws6f{word-spacing:15.016320px;}
.wsdb{word-spacing:15.130080px;}
.wse7{word-spacing:15.471360px;}
.ws9f{word-spacing:15.642720px;}
.ws7d{word-spacing:15.698880px;}
.wsa1{word-spacing:15.796080px;}
.ws116{word-spacing:16.153920px;}
.wsf4{word-spacing:16.438320px;}
.wscd{word-spacing:16.767360px;}
.ws110{word-spacing:16.836480px;}
.wsed{word-spacing:17.177760px;}
.ws9b{word-spacing:17.291520px;}
.ws9a{word-spacing:17.860320px;}
.ws59{word-spacing:19.339200px;}
.wsfc{word-spacing:19.794240px;}
.ws119{word-spacing:19.964880px;}
.wsee{word-spacing:20.021760px;}
.ws66{word-spacing:20.761200px;}
.ws69{word-spacing:20.931840px;}
.ws68{word-spacing:21.500640px;}
.wsf0{word-spacing:21.898800px;}
.wsc4{word-spacing:22.134960px;}
.wsef{word-spacing:22.183200px;}
.wsc7{word-spacing:22.288320px;}
.wse4{word-spacing:22.353840px;}
.ws8d{word-spacing:22.850640px;}
.wse2{word-spacing:22.922640px;}
.wse3{word-spacing:22.979520px;}
.ws8c{word-spacing:23.566320px;}
.ws103{word-spacing:23.889600px;}
.ws101{word-spacing:24.344640px;}
.ws102{word-spacing:24.458400px;}
.wsa4{word-spacing:24.997680px;}
.ws71{word-spacing:25.084080px;}
.wsc6{word-spacing:25.151040px;}
.ws83{word-spacing:25.406640px;}
.wsb2{word-spacing:25.662240px;}
.wsb3{word-spacing:26.275680px;}
.ws8b{word-spacing:26.429040px;}
.ws4b{word-spacing:27.984960px;}
.wsf2{word-spacing:28.667520px;}
.wsf3{word-spacing:29.406960px;}
.wseb{word-spacing:30.828960px;}
.wsda{word-spacing:41.636160px;}
.wsc0{word-spacing:42.375600px;}
.wsc9{word-spacing:42.991920px;}
.wsa0{word-spacing:43.860960px;}
.wsca{word-spacing:44.116560px;}
.ws108{word-spacing:46.812240px;}
.ws107{word-spacing:47.153520px;}
.ws106{word-spacing:47.381040px;}
.wsd9{word-spacing:57.505680px;}
.wsb1{word-spacing:146.663280px;}
.wsb0{word-spacing:147.072240px;}
._9{margin-left:-10.783440px;}
._0{margin-left:-9.108000px;}
._a{margin-left:-7.625040px;}
._5{margin-left:-6.204000px;}
._6{margin-left:-4.620000px;}
._8{margin-left:-3.213120px;}
._4{margin-left:-1.716000px;}
._2{width:1.452000px;}
._1{width:3.432000px;}
._3{width:4.488000px;}
._10{width:6.136080px;}
._b{width:7.136880px;}
._c{width:8.780160px;}
._d{width:15.126960px;}
._e{width:16.294560px;}
._f{width:25.714800px;}
._7{width:318.244080px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(179,25,147);}
.fc1{color:rgb(200,66,22);}
.fc0{color:rgb(207,24,31);}
.fs9{font-size:33.120000px;}
.fsb{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fs5{font-size:45.360000px;}
.fsa{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:79.500000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y114{bottom:13.320000px;}
.y99{bottom:13.500000px;}
.y92{bottom:13.680000px;}
.y113{bottom:14.760000px;}
.y94{bottom:29.340000px;}
.y9f{bottom:29.520000px;}
.y1f{bottom:32.761980px;}
.yc3{bottom:38.340000px;}
.ybf{bottom:38.520000px;}
.y137{bottom:38.880000px;}
.yc7{bottom:45.180000px;}
.y100{bottom:45.359850px;}
.y106{bottom:45.360000px;}
.y17c{bottom:78.298920px;}
.y8a{bottom:78.300000px;}
.y12c{bottom:78.300360px;}
.yf0{bottom:78.300900px;}
.ybb{bottom:79.738380px;}
.y3{bottom:85.039350px;}
.y69{bottom:85.335480px;}
.y89{bottom:91.800000px;}
.y12b{bottom:93.779460px;}
.yef{bottom:93.780000px;}
.yba{bottom:97.200000px;}
.y17b{bottom:98.280000px;}
.yee{bottom:107.280000px;}
.y12a{bottom:109.440000px;}
.y17a{bottom:111.780000px;}
.y68{bottom:114.130980px;}
.yb9{bottom:115.379460px;}
.y2{bottom:121.339350px;}
.y129{bottom:122.940000px;}
.y1a9{bottom:129.506220px;}
.yb8{bottom:131.040000px;}
.y67{bottom:133.754580px;}
.y151{bottom:138.607920px;}
.yb7{bottom:144.540000px;}
.y1a8{bottom:149.300460px;}
.y128{bottom:151.740000px;}
.y66{bottom:153.548820px;}
.y88{bottom:155.527920px;}
.y1{bottom:157.639350px;}
.y150{bottom:158.402160px;}
.y179{bottom:168.150240px;}
.y1a7{bottom:168.924060px;}
.y65{bottom:173.172420px;}
.y87{bottom:175.322160px;}
.y126{bottom:177.120000px;}
.y14f{bottom:178.025760px;}
.yb6{bottom:180.365760px;}
.yed{bottom:186.125760px;}
.y178{bottom:187.944480px;}
.y1a6{bottom:188.718300px;}
.y127{bottom:190.800000px;}
.y1d{bottom:193.663500px;}
.y86{bottom:195.116400px;}
.y14e{bottom:197.816400px;}
.yb5{bottom:200.170080px;}
.y64{bottom:201.967920px;}
.yec{bottom:205.920000px;}
.y177{bottom:207.568080px;}
.y1a5{bottom:208.512540px;}
.y1c{bottom:213.286500px;}
.y85{bottom:214.744320px;}
.y14d{bottom:217.440000px;}
.y125{bottom:218.520000px;}
.yb4{bottom:219.793680px;}
.y63{bottom:221.591520px;}
.y176{bottom:227.362320px;}
.y1a4{bottom:228.136140px;}
.yeb{bottom:233.100000px;}
.y84{bottom:234.538560px;}
.yb3{bottom:239.587920px;}
.y62{bottom:241.385760px;}
.y1b{bottom:242.082000px;}
.y14c{bottom:244.800000px;}
.y175{bottom:246.985920px;}
.y1a3{bottom:247.930380px;}
.ye9{bottom:252.720000px;}
.y83{bottom:254.162160px;}
.y124{bottom:258.660000px;}
.yb2{bottom:259.211520px;}
.y61{bottom:261.180000px;}
.yea{bottom:266.400000px;}
.y174{bottom:266.780160px;}
.y14b{bottom:267.130440px;}
.y1a2{bottom:267.553980px;}
.y1a{bottom:268.318500px;}
.y82{bottom:273.956400px;}
.yb1{bottom:279.005760px;}
.y123{bottom:284.762160px;}
.y173{bottom:286.574400px;}
.y1a1{bottom:287.348220px;}
.y60{bottom:293.220000px;}
.y81{bottom:293.580000px;}
.ye5{bottom:294.120000px;}
.y19{bottom:297.298500px;}
.yb0{bottom:298.800000px;}
.y122{bottom:304.385760px;}
.y172{bottom:306.198000px;}
.y1a0{bottom:306.971820px;}
.ye7{bottom:307.625580px;}
.ye8{bottom:314.460000px;}
.ye6{bottom:323.460000px;}
.y121{bottom:324.180000px;}
.y80{bottom:325.800000px;}
.y171{bottom:325.992240px;}
.y18{bottom:326.094000px;}
.y19f{bottom:326.766060px;}
.y5f{bottom:328.388760px;}
.yaf{bottom:330.840000px;}
.y170{bottom:345.615840px;}
.y19e{bottom:346.560300px;}
.y5e{bottom:348.012360px;}
.ye2{bottom:351.180000px;}
.y120{bottom:351.359460px;}
.y17{bottom:354.718500px;}
.ye4{bottom:364.680000px;}
.y16f{bottom:365.410080px;}
.y19d{bottom:366.183900px;}
.y11f{bottom:367.020000px;}
.y5d{bottom:367.806600px;}
.y7f{bottom:372.422160px;}
.ye3{bottom:373.680000px;}
.yae{bottom:376.020000px;}
.y16{bottom:383.514000px;}
.y16e{bottom:385.033680px;}
.y19c{bottom:385.978140px;}
.y11d{bottom:386.640000px;}
.y5c{bottom:387.600840px;}
.y7e{bottom:392.045760px;}
.yad{bottom:395.640000px;}
.y11e{bottom:400.320000px;}
.ydf{bottom:401.400000px;}
.y16d{bottom:404.827920px;}
.y19b{bottom:405.601740px;}
.y5b{bottom:407.224440px;}
.y7d{bottom:411.840000px;}
.y15{bottom:412.494000px;}
.ye1{bottom:415.080000px;}
.yab{bottom:421.200000px;}
.ye0{bottom:424.080000px;}
.y16c{bottom:424.622160px;}
.y19a{bottom:425.395980px;}
.y5a{bottom:427.018680px;}
.y11a{bottom:428.040000px;}
.yac{bottom:434.880000px;}
.y14{bottom:441.289500px;}
.y11c{bottom:441.540000px;}
.y7c{bottom:444.060000px;}
.y16b{bottom:444.245760px;}
.y199{bottom:445.019580px;}
.y59{bottom:446.642280px;}
.y11b{bottom:450.540000px;}
.ydb{bottom:451.800000px;}
.y13{bottom:460.969500px;}
.ya9{bottom:462.600000px;}
.y16a{bottom:464.040000px;}
.y198{bottom:464.813820px;}
.ydd{bottom:465.484500px;}
.y58{bottom:466.436520px;}
.yde{bottom:472.140000px;}
.yaa{bottom:476.100000px;}
.y7b{bottom:477.540000px;}
.y116{bottom:478.260000px;}
.y12{bottom:480.649500px;}
.ydc{bottom:481.140000px;}
.y197{bottom:484.608060px;}
.y57{bottom:486.060120px;}
.y118{bottom:491.945580px;}
.y169{bottom:496.260000px;}
.y119{bottom:498.780000px;}
.y7a{bottom:500.263920px;}
.y11{bottom:500.329500px;}
.ya8{bottom:503.820000px;}
.y196{bottom:504.231660px;}
.y56{bottom:505.854360px;}
.y14a{bottom:506.168640px;}
.y117{bottom:507.780000px;}
.yda{bottom:508.860000px;}
.y195{bottom:524.025900px;}
.y55{bottom:525.648600px;}
.y149{bottom:525.792240px;}
.ya7{bottom:529.380000px;}
.yd7{bottom:534.420000px;}
.y112{bottom:535.500000px;}
.y168{bottom:542.718000px;}
.y194{bottom:543.649500px;}
.y54{bottom:545.272200px;}
.y148{bottom:545.586480px;}
.yd9{bottom:548.100000px;}
.y115{bottom:548.820000px;}
.ya6{bottom:554.940000px;}
.yd8{bottom:557.100000px;}
.y35{bottom:561.960000px;}
.y110{bottom:562.320000px;}
.y167{bottom:562.512240px;}
.y193{bottom:563.443740px;}
.y53{bottom:565.066440px;}
.y147{bottom:565.210080px;}
.y111{bottom:575.820000px;}
.ya5{bottom:580.500000px;}
.y166{bottom:582.135840px;}
.y192{bottom:583.067340px;}
.y52{bottom:584.690040px;}
.yd4{bottom:584.820000px;}
.y146{bottom:585.004320px;}
.y34{bottom:589.500000px;}
.yd6{bottom:598.500000px;}
.y165{bottom:601.930080px;}
.y191{bottom:602.861580px;}
.y10d{bottom:603.540000px;}
.y51{bottom:604.484280px;}
.y145{bottom:604.627920px;}
.ya4{bottom:605.880000px;}
.yd5{bottom:607.500000px;}
.y33{bottom:617.040000px;}
.y10f{bottom:617.220000px;}
.y164{bottom:621.553680px;}
.y190{bottom:622.485180px;}
.y50{bottom:624.107880px;}
.y144{bottom:624.422160px;}
.y10e{bottom:626.220000px;}
.ya2{bottom:631.440000px;}
.yd1{bottom:635.220000px;}
.y163{bottom:641.347920px;}
.y18f{bottom:642.279420px;}
.y4f{bottom:643.902120px;}
.y143{bottom:644.216400px;}
.y32{bottom:644.405580px;}
.ya3{bottom:645.120000px;}
.yd3{bottom:648.720000px;}
.y10a{bottom:653.940000px;}
.yd2{bottom:657.720000px;}
.y162{bottom:661.142160px;}
.y18e{bottom:662.073660px;}
.y4e{bottom:663.696360px;}
.y142{bottom:663.840000px;}
.y10c{bottom:667.620000px;}
.y31{bottom:671.580000px;}
.y10b{bottom:676.620000px;}
.y161{bottom:680.765760px;}
.yd{bottom:681.433200px;}
.y18d{bottom:681.697260px;}
.y4d{bottom:683.319960px;}
.ycd{bottom:685.440000px;}
.ya1{bottom:686.340000px;}
.y141{bottom:696.060000px;}
.y9e{bottom:698.220000px;}
.y30{bottom:698.760000px;}
.ycf{bottom:699.125580px;}
.y160{bottom:700.560000px;}
.y18c{bottom:701.491500px;}
.y105{bottom:704.160000px;}
.yd0{bottom:705.960000px;}
.ya0{bottom:711.900000px;}
.y4c{bottom:712.115460px;}
.yce{bottom:714.960000px;}
.y108{bottom:717.840000px;}
.y18b{bottom:721.115100px;}
.y109{bottom:724.680000px;}
.y2f{bottom:726.300000px;}
.y4b{bottom:731.739060px;}
.y15f{bottom:732.780000px;}
.y107{bottom:733.680000px;}
.y9d{bottom:739.620000px;}
.y18a{bottom:740.909340px;}
.y140{bottom:742.676400px;}
.ycb{bottom:742.680000px;}
.y4a{bottom:751.533300px;}
.y2e{bottom:753.840000px;}
.ycc{bottom:756.180000px;}
.y189{bottom:760.532940px;}
.y102{bottom:761.400000px;}
.y13f{bottom:762.300000px;}
.y9c{bottom:765.180000px;}
.y49{bottom:771.156900px;}
.y104{bottom:775.080000px;}
.y15e{bottom:779.248080px;}
.y188{bottom:780.327180px;}
.y2d{bottom:781.020000px;}
.y103{bottom:784.080000px;}
.y9a{bottom:790.740000px;}
.y48{bottom:790.951140px;}
.yc6{bottom:792.900000px;}
.y13e{bottom:794.520000px;}
.y15d{bottom:799.042320px;}
.y187{bottom:800.121420px;}
.y9b{bottom:804.420000px;}
.yc9{bottom:806.585580px;}
.y2c{bottom:808.200000px;}
.y47{bottom:810.745380px;}
.yff{bottom:811.620000px;}
.yca{bottom:813.420000px;}
.y15c{bottom:818.665920px;}
.y79{bottom:818.678160px;}
.y186{bottom:819.745020px;}
.yc8{bottom:822.420000px;}
.y101{bottom:825.300000px;}
.y13d{bottom:828.176940px;}
.y46{bottom:830.368980px;}
.y98{bottom:832.140000px;}
.y2b{bottom:835.380000px;}
.y15b{bottom:838.460160px;}
.y78{bottom:838.472400px;}
.y185{bottom:839.539260px;}
.y6{bottom:840.545550px;}
.yc2{bottom:850.140000px;}
.y45{bottom:850.163220px;}
.y13c{bottom:852.660000px;}
.y97{bottom:857.520000px;}
.y15a{bottom:858.083760px;}
.y77{bottom:858.096000px;}
.y184{bottom:859.162860px;}
.y2a{bottom:862.920000px;}
.yc5{bottom:863.640000px;}
.yfc{bottom:868.860000px;}
.y44{bottom:869.786820px;}
.y13b{bottom:872.280000px;}
.yc4{bottom:872.640000px;}
.y159{bottom:877.878000px;}
.y76{bottom:877.890240px;}
.y183{bottom:878.957100px;}
.yfe{bottom:882.540000px;}
.y96{bottom:883.080000px;}
.y5{bottom:887.042550px;}
.y43{bottom:889.581060px;}
.y29{bottom:890.460000px;}
.yfd{bottom:891.540000px;}
.yc{bottom:897.100560px;}
.y158{bottom:897.672240px;}
.y75{bottom:897.684480px;}
.y139{bottom:897.840000px;}
.y182{bottom:898.580700px;}
.ybe{bottom:900.360000px;}
.y93{bottom:908.640000px;}
.y42{bottom:909.204660px;}
.y13a{bottom:911.520000px;}
.yc1{bottom:914.040000px;}
.y157{bottom:917.295840px;}
.y74{bottom:917.308080px;}
.y181{bottom:918.374940px;}
.yf9{bottom:919.080000px;}
.y95{bottom:922.140000px;}
.yc0{bottom:923.040000px;}
.y41{bottom:928.998900px;}
.yfb{bottom:932.760000px;}
.yb{bottom:933.103440px;}
.y28{bottom:935.640000px;}
.y156{bottom:937.090080px;}
.y73{bottom:937.102320px;}
.y180{bottom:938.169180px;}
.y136{bottom:939.240000px;}
.yfa{bottom:941.760000px;}
.y4{bottom:945.542550px;}
.y91{bottom:949.860000px;}
.ybd{bottom:950.760000px;}
.y155{bottom:956.713680px;}
.y72{bottom:956.725920px;}
.y40{bottom:957.794400px;}
.y17f{bottom:957.963420px;}
.y138{bottom:964.620000px;}
.ya{bottom:969.106320px;}
.yf7{bottom:969.480000px;}
.y154{bottom:976.507920px;}
.y71{bottom:976.520160px;}
.y17e{bottom:977.402160px;}
.y3f{bottom:977.418000px;}
.yf8{bottom:982.980000px;}
.y27{bottom:987.486480px;}
.y90{bottom:990.000000px;}
.ybc{bottom:990.900000px;}
.y153{bottom:996.131520px;}
.y70{bottom:996.143760px;}
.y17d{bottom:997.196400px;}
.y3e{bottom:997.212240px;}
.y135{bottom:1004.760000px;}
.y9{bottom:1004.934300px;}
.y26{bottom:1007.110080px;}
.yf6{bottom:1009.620000px;}
.y152{bottom:1015.925760px;}
.y6f{bottom:1015.938000px;}
.y8f{bottom:1016.096400px;}
.y3d{bottom:1016.835840px;}
.y25{bottom:1026.904320px;}
.y134{bottom:1030.866480px;}
.yf5{bottom:1035.722160px;}
.y8e{bottom:1035.731520px;}
.y6e{bottom:1035.732240px;}
.y3c{bottom:1036.630080px;}
.y24{bottom:1046.527920px;}
.y133{bottom:1050.490080px;}
.yf4{bottom:1055.345760px;}
.y6d{bottom:1055.355840px;}
.y8d{bottom:1055.525760px;}
.y3b{bottom:1056.253680px;}
.y23{bottom:1066.322160px;}
.y1af{bottom:1069.200900px;}
.y132{bottom:1070.284320px;}
.yf3{bottom:1075.138560px;}
.y6c{bottom:1075.150080px;}
.y8c{bottom:1075.320000px;}
.y3a{bottom:1076.047920px;}
.y8{bottom:1076.940000px;}
.y22{bottom:1085.945760px;}
.y131{bottom:1089.907920px;}
.yf2{bottom:1094.762160px;}
.y6b{bottom:1094.773680px;}
.y1ab{bottom:1094.944320px;}
.y39{bottom:1095.842160px;}
.y1ae{bottom:1097.640900px;}
.y21{bottom:1105.740000px;}
.y8b{bottom:1107.360000px;}
.y130{bottom:1109.702160px;}
.yf1{bottom:1114.556400px;}
.y6a{bottom:1114.567920px;}
.y38{bottom:1115.465760px;}
.y1ad{bottom:1117.620000px;}
.y12f{bottom:1129.496400px;}
.y10{bottom:1134.191520px;}
.y1aa{bottom:1134.362160px;}
.y37{bottom:1135.260000px;}
.y12e{bottom:1149.120000px;}
.y20{bottom:1150.740000px;}
.yf{bottom:1153.985760px;}
.y7{bottom:1157.580000px;}
.y1ac{bottom:1162.620000px;}
.y36{bottom:1167.480000px;}
.ye{bottom:1173.780000px;}
.y12d{bottom:1176.480360px;}
.y1e{bottom:1218.960000px;}
.h18{height:24.658500px;}
.h15{height:24.660000px;}
.h11{height:24.840000px;}
.h1a{height:25.875000px;}
.h25{height:25.920000px;}
.h23{height:27.799200px;}
.h12{height:36.550800px;}
.hb{height:37.240560px;}
.h26{height:38.654297px;}
.h1b{height:38.818980px;}
.ha{height:39.816000px;}
.h13{height:40.500000px;}
.h2b{height:40.669200px;}
.h16{height:40.680000px;}
.h17{height:40.681500px;}
.h14{height:41.969520px;}
.h9{height:42.660000px;}
.hd{height:44.149219px;}
.h8{height:46.698480px;}
.h22{height:46.704240px;}
.h1c{height:48.008160px;}
.h10{height:48.025440px;}
.h19{height:48.031200px;}
.hf{height:48.054240px;}
.h2a{height:48.062880px;}
.h21{height:48.071520px;}
.h29{height:48.085920px;}
.h27{height:49.498500px;}
.h1e{height:49.500000px;}
.h1d{height:49.680000px;}
.h28{height:50.040000px;}
.h20{height:56.340000px;}
.h1f{height:56.341500px;}
.h24{height:56.520000px;}
.h7{height:58.320000px;}
.h4{height:59.625000px;}
.he{height:63.180000px;}
.hc{height:88.668000px;}
.h2{height:93.060000px;}
.h6{height:98.820000px;}
.h3{height:99.000000px;}
.h0{height:1262.835000px;}
.h5{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:52.380000px;}
.w8{width:52.560000px;}
.w5{width:89.820000px;}
.w9{width:183.418500px;}
.wa{width:183.420000px;}
.wb{width:183.600000px;}
.w6{width:339.120000px;}
.wc{width:367.740000px;}
.w4{width:370.980000px;}
.w3{width:552.060000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1e{left:12.600000px;}
.x1c{left:15.840000px;}
.x16{left:19.620000px;}
.x14{left:21.600000px;}
.xd{left:25.560000px;}
.x19{left:30.420000px;}
.xf{left:34.560000px;}
.x11{left:44.820000px;}
.x29{left:79.200000px;}
.x28{left:82.440000px;}
.x24{left:84.420000px;}
.x22{left:87.840000px;}
.x27{left:89.820000px;}
.x2{left:111.614100px;}
.x26{left:134.640000px;}
.x3{left:139.500000px;}
.xb{left:156.589380px;}
.x5{left:160.740000px;}
.x8{left:212.580000px;}
.xa{left:220.320000px;}
.x20{left:279.540000px;}
.x7{left:355.500000px;}
.x21{left:396.900000px;}
.x25{left:483.283440px;}
.x4{left:485.800920px;}
.x13{left:552.420000px;}
.x1d{left:578.700000px;}
.x23{left:581.040000px;}
.xc{left:584.280000px;}
.x15{left:605.700000px;}
.x10{left:629.100000px;}
.x1f{left:631.800000px;}
.x1{left:639.908400px;}
.x17{left:658.800000px;}
.xe{left:674.820000px;}
.x18{left:687.060000px;}
.x1a{left:712.080000px;}
.x12{left:719.640000px;}
.x1b{left:737.820000px;}
.x6{left:823.510440px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.544640pt;}
.ls3a{letter-spacing:-1.422720pt;}
.ls24{letter-spacing:-1.415680pt;}
.ls25{letter-spacing:-1.365120pt;}
.ls39{letter-spacing:-1.272960pt;}
.ls85{letter-spacing:-0.768000pt;}
.ls73{letter-spacing:-0.645120pt;}
.ls21{letter-spacing:-0.604800pt;}
.ls4f{letter-spacing:-0.545280pt;}
.ls1{letter-spacing:-0.469333pt;}
.ls4d{letter-spacing:-0.408960pt;}
.ls81{letter-spacing:-0.374400pt;}
.ls82{letter-spacing:-0.353920pt;}
.ls6a{letter-spacing:-0.322560pt;}
.ls23{letter-spacing:-0.303360pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls6c{letter-spacing:-0.282240pt;}
.ls5d{letter-spacing:-0.272640pt;}
.ls37{letter-spacing:-0.252800pt;}
.lsf{letter-spacing:-0.250667pt;}
.ls1d{letter-spacing:-0.241920pt;}
.ls5b{letter-spacing:-0.227200pt;}
.ls5{letter-spacing:-0.207360pt;}
.lse{letter-spacing:-0.202667pt;}
.lsd{letter-spacing:-0.202240pt;}
.ls1e{letter-spacing:-0.201600pt;}
.ls5a{letter-spacing:-0.181760pt;}
.ls53{letter-spacing:-0.151680pt;}
.ls40{letter-spacing:-0.149760pt;}
.ls4e{letter-spacing:-0.136320pt;}
.ls41{letter-spacing:-0.120960pt;}
.ls4{letter-spacing:-0.117120pt;}
.ls7b{letter-spacing:-0.101120pt;}
.ls20{letter-spacing:-0.080640pt;}
.ls6{letter-spacing:-0.069120pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls69{letter-spacing:-0.050560pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000107pt;}
.ls12{letter-spacing:0.040320pt;}
.ls4c{letter-spacing:0.045440pt;}
.ls9{letter-spacing:0.050560pt;}
.ls68{letter-spacing:0.060672pt;}
.ls6b{letter-spacing:0.074240pt;}
.ls66{letter-spacing:0.079360pt;}
.ls43{letter-spacing:0.090880pt;}
.ls3f{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.096064pt;}
.ls47{letter-spacing:0.101120pt;}
.ls1f{letter-spacing:0.120960pt;}
.ls49{letter-spacing:0.128000pt;}
.ls80{letter-spacing:0.149760pt;}
.ls19{letter-spacing:0.151040pt;}
.ls27{letter-spacing:0.151680pt;}
.ls10{letter-spacing:0.154667pt;}
.lsb{letter-spacing:0.154773pt;}
.ls48{letter-spacing:0.161280pt;}
.ls51{letter-spacing:0.181760pt;}
.ls29{letter-spacing:0.192128pt;}
.ls26{letter-spacing:0.202240pt;}
.ls2{letter-spacing:0.207360pt;}
.ls35{letter-spacing:0.217408pt;}
.ls52{letter-spacing:0.224640pt;}
.ls50{letter-spacing:0.227200pt;}
.ls7e{letter-spacing:0.227520pt;}
.ls36{letter-spacing:0.237632pt;}
.ls3c{letter-spacing:0.237888pt;}
.ls71{letter-spacing:0.245952pt;}
.ls33{letter-spacing:0.247744pt;}
.ls2d{letter-spacing:0.252800pt;}
.ls4b{letter-spacing:0.262080pt;}
.ls3d{letter-spacing:0.262912pt;}
.ls15{letter-spacing:0.267968pt;}
.ls5c{letter-spacing:0.272640pt;}
.ls77{letter-spacing:0.273024pt;}
.ls3{letter-spacing:0.276480pt;}
.ls13{letter-spacing:0.278080pt;}
.ls7c{letter-spacing:0.288192pt;}
.ls54{letter-spacing:0.293248pt;}
.ls16{letter-spacing:0.298304pt;}
.ls14{letter-spacing:0.303360pt;}
.lsa{letter-spacing:0.303787pt;}
.ls65{letter-spacing:0.304000pt;}
.ls32{letter-spacing:0.308416pt;}
.ls30{letter-spacing:0.313472pt;}
.ls18{letter-spacing:0.318528pt;}
.ls60{letter-spacing:0.322560pt;}
.ls6f{letter-spacing:0.323584pt;}
.ls79{letter-spacing:0.328640pt;}
.ls5f{letter-spacing:0.331520pt;}
.ls2f{letter-spacing:0.333696pt;}
.ls3b{letter-spacing:0.338752pt;}
.ls58{letter-spacing:0.343808pt;}
.ls7{letter-spacing:0.345600pt;}
.ls2e{letter-spacing:0.348864pt;}
.ls8{letter-spacing:0.353920pt;}
.ls62{letter-spacing:0.362368pt;}
.ls55{letter-spacing:0.364032pt;}
.ls78{letter-spacing:0.374144pt;}
.ls59{letter-spacing:0.399424pt;}
.ls2b{letter-spacing:0.424704pt;}
.ls61{letter-spacing:0.426240pt;}
.ls45{letter-spacing:0.444928pt;}
.ls74{letter-spacing:0.606720pt;}
.ls38{letter-spacing:0.707840pt;}
.ls57{letter-spacing:0.864576pt;}
.ls44{letter-spacing:0.910080pt;}
.ls6d{letter-spacing:0.927360pt;}
.ls7f{letter-spacing:0.930304pt;}
.ls34{letter-spacing:0.940416pt;}
.ls5e{letter-spacing:0.960640pt;}
.ls70{letter-spacing:1.001088pt;}
.ls7d{letter-spacing:1.147712pt;}
.ls67{letter-spacing:1.693440pt;}
.ls17{letter-spacing:2.249920pt;}
.ls4a{letter-spacing:2.656000pt;}
.ls2c{letter-spacing:2.881920pt;}
.ls3e{letter-spacing:3.539200pt;}
.ls42{letter-spacing:4.145920pt;}
.ls83{letter-spacing:4.803200pt;}
.ls75{letter-spacing:5.460480pt;}
.ls64{letter-spacing:6.724480pt;}
.ls46{letter-spacing:7.988480pt;}
.ls63{letter-spacing:8.645760pt;}
.ls84{letter-spacing:11.831040pt;}
.ls6e{letter-spacing:13.752320pt;}
.ls72{letter-spacing:14.409600pt;}
.ls56{letter-spacing:15.673600pt;}
.ls76{letter-spacing:19.516160pt;}
.ls7a{letter-spacing:25.280000pt;}
.ls28{letter-spacing:36.766080pt;}
.ls31{letter-spacing:37.440000pt;}
.ls1a{letter-spacing:77.573120pt;}
.ls1b{letter-spacing:78.853120pt;}
.ls1c{letter-spacing:753.950720pt;}
.ws0{word-spacing:-22.528000pt;}
.ws117{word-spacing:-18.816000pt;}
.ws3b{word-spacing:-18.528000pt;}
.ws118{word-spacing:-18.048000pt;}
.ws7c{word-spacing:-15.200640pt;}
.ws6d{word-spacing:-14.826240pt;}
.wsf5{word-spacing:-14.526720pt;}
.ws55{word-spacing:-14.376960pt;}
.wsd4{word-spacing:-14.227200pt;}
.ws3{word-spacing:-14.169600pt;}
.ws51{word-spacing:-14.152320pt;}
.wsf6{word-spacing:-14.002560pt;}
.ws54{word-spacing:-13.104000pt;}
.ws40{word-spacing:-10.213120pt;}
.ws53{word-spacing:-10.162560pt;}
.ws52{word-spacing:-10.112000pt;}
.wsf7{word-spacing:-10.061440pt;}
.ws7{word-spacing:-9.960320pt;}
.wsc{word-spacing:-9.909760pt;}
.wsd5{word-spacing:-9.859200pt;}
.ws3f{word-spacing:-9.758080pt;}
.ws3a{word-spacing:-9.707520pt;}
.ws8{word-spacing:-9.707093pt;}
.wsb{word-spacing:-9.659093pt;}
.wse9{word-spacing:-9.656960pt;}
.ws3d{word-spacing:-9.555840pt;}
.wsa{word-spacing:-9.502507pt;}
.ws9{word-spacing:-9.305173pt;}
.ws3c{word-spacing:-9.252480pt;}
.ws98{word-spacing:-9.133440pt;}
.ws97{word-spacing:-9.088000pt;}
.ws76{word-spacing:-8.997120pt;}
.ws79{word-spacing:-8.906240pt;}
.ws78{word-spacing:-8.769920pt;}
.ws73{word-spacing:-8.746880pt;}
.wsb6{word-spacing:-8.696320pt;}
.ws99{word-spacing:-8.679040pt;}
.ws95{word-spacing:-8.645760pt;}
.wsb9{word-spacing:-8.633600pt;}
.wsf8{word-spacing:-8.595200pt;}
.wse8{word-spacing:-8.544640pt;}
.wsd6{word-spacing:-8.494080pt;}
.wsd7{word-spacing:-8.443520pt;}
.ws3e{word-spacing:-8.140160pt;}
.ws75{word-spacing:-8.023680pt;}
.ws96{word-spacing:-7.997440pt;}
.wsd2{word-spacing:-7.943040pt;}
.ws74{word-spacing:-7.902720pt;}
.ws7b{word-spacing:-7.861120pt;}
.wsbd{word-spacing:-7.822080pt;}
.wsd3{word-spacing:-7.781760pt;}
.ws7a{word-spacing:-7.633920pt;}
.wsb8{word-spacing:-7.543040pt;}
.ws39{word-spacing:-7.297920pt;}
.ws77{word-spacing:-7.224960pt;}
.wsbb{word-spacing:-6.935040pt;}
.wsb7{word-spacing:-6.894720pt;}
.wsbc{word-spacing:-6.612480pt;}
.wsb5{word-spacing:-6.572160pt;}
.ws61{word-spacing:-2.679680pt;}
.wsec{word-spacing:-2.528000pt;}
.ws10b{word-spacing:-2.275200pt;}
.wsc5{word-spacing:-2.090240pt;}
.ws57{word-spacing:-2.022400pt;}
.ws10{word-spacing:-2.021333pt;}
.wscc{word-spacing:-1.953920pt;}
.wsdc{word-spacing:-1.870720pt;}
.ws100{word-spacing:-1.567360pt;}
.ws56{word-spacing:-1.365120pt;}
.ws80{word-spacing:-1.317760pt;}
.wsb4{word-spacing:-0.967680pt;}
.wsd1{word-spacing:-0.927360pt;}
.wsdf{word-spacing:-0.846720pt;}
.wsc8{word-spacing:-0.817920pt;}
.ws111{word-spacing:-0.766080pt;}
.ws49{word-spacing:-0.758400pt;}
.ws6a{word-spacing:-0.707840pt;}
.ws88{word-spacing:-0.681600pt;}
.ws5c{word-spacing:-0.606720pt;}
.ws10d{word-spacing:-0.505600pt;}
.ws115{word-spacing:-0.455040pt;}
.ws20{word-spacing:-0.410667pt;}
.wsfb{word-spacing:-0.404480pt;}
.ws50{word-spacing:-0.353920pt;}
.ws43{word-spacing:-0.322560pt;}
.wsc2{word-spacing:-0.318080pt;}
.ws48{word-spacing:-0.303360pt;}
.ws6e{word-spacing:-0.299520pt;}
.wsc3{word-spacing:-0.276480pt;}
.ws45{word-spacing:-0.241920pt;}
.ws86{word-spacing:-0.227200pt;}
.wse1{word-spacing:-0.224640pt;}
.wsfa{word-spacing:-0.202240pt;}
.ws46{word-spacing:-0.201600pt;}
.ws89{word-spacing:-0.181760pt;}
.ws19{word-spacing:-0.154667pt;}
.ws6b{word-spacing:-0.149760pt;}
.ws7e{word-spacing:-0.136320pt;}
.ws44{word-spacing:-0.120960pt;}
.wsba{word-spacing:-0.111360pt;}
.ws12{word-spacing:-0.101333pt;}
.wse{word-spacing:-0.101120pt;}
.ws72{word-spacing:-0.080640pt;}
.wsf1{word-spacing:-0.074880pt;}
.ws4e{word-spacing:-0.050560pt;}
.ws82{word-spacing:-0.045440pt;}
.ws2{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.005333pt;}
.ws1c{word-spacing:0.021333pt;}
.ws41{word-spacing:0.040320pt;}
.ws8a{word-spacing:0.045440pt;}
.ws1a{word-spacing:0.048000pt;}
.ws60{word-spacing:0.050560pt;}
.ws1e{word-spacing:0.074667pt;}
.ws35{word-spacing:0.080000pt;}
.ws9d{word-spacing:0.090880pt;}
.wsce{word-spacing:0.120960pt;}
.ws15{word-spacing:0.144000pt;}
.ws25{word-spacing:0.149333pt;}
.ws81{word-spacing:0.181760pt;}
.ws42{word-spacing:0.201600pt;}
.wsd{word-spacing:0.202240pt;}
.ws38{word-spacing:0.202667pt;}
.ws65{word-spacing:0.252800pt;}
.wscb{word-spacing:0.272640pt;}
.ws1b{word-spacing:0.293333pt;}
.wsff{word-spacing:0.303360pt;}
.ws2d{word-spacing:0.309333pt;}
.ws2a{word-spacing:0.325333pt;}
.ws27{word-spacing:0.336000pt;}
.ws6{word-spacing:0.345600pt;}
.ws4{word-spacing:0.351360pt;}
.ws26{word-spacing:0.352000pt;}
.wsde{word-spacing:0.353920pt;}
.ws36{word-spacing:0.378667pt;}
.ws24{word-spacing:0.389333pt;}
.ws7f{word-spacing:0.408960pt;}
.ws18{word-spacing:0.426667pt;}
.wse0{word-spacing:0.443520pt;}
.ws9e{word-spacing:0.454400pt;}
.ws90{word-spacing:0.455040pt;}
.ws5{word-spacing:0.483840pt;}
.ws10c{word-spacing:0.505600pt;}
.ws14{word-spacing:0.506667pt;}
.ws23{word-spacing:0.522667pt;}
.ws13{word-spacing:0.528000pt;}
.ws16{word-spacing:0.533333pt;}
.ws29{word-spacing:0.538667pt;}
.ws5a{word-spacing:0.556160pt;}
.ws2b{word-spacing:0.608000pt;}
.ws17{word-spacing:0.618667pt;}
.wsbe{word-spacing:0.657280pt;}
.ws28{word-spacing:0.672000pt;}
.ws22{word-spacing:0.682667pt;}
.ws37{word-spacing:0.720000pt;}
.ws4f{word-spacing:0.758400pt;}
.ws21{word-spacing:0.789333pt;}
.ws105{word-spacing:0.859520pt;}
.ws1f{word-spacing:0.901333pt;}
.ws104{word-spacing:0.910080pt;}
.ws1{word-spacing:0.938667pt;}
.wsfd{word-spacing:0.960640pt;}
.wsa8{word-spacing:1.090560pt;}
.ws94{word-spacing:1.128960pt;}
.ws85{word-spacing:1.136000pt;}
.ws11{word-spacing:1.162667pt;}
.ws5e{word-spacing:1.162880pt;}
.ws10e{word-spacing:1.314560pt;}
.ws2c{word-spacing:1.418667pt;}
.ws93{word-spacing:1.612800pt;}
.ws92{word-spacing:1.653120pt;}
.ws91{word-spacing:1.693440pt;}
.ws84{word-spacing:1.726720pt;}
.wsd0{word-spacing:1.774080pt;}
.ws9c{word-spacing:1.820160pt;}
.wsac{word-spacing:1.863040pt;}
.wscf{word-spacing:1.935360pt;}
.ws109{word-spacing:2.224640pt;}
.wsaf{word-spacing:2.408320pt;}
.ws4c{word-spacing:2.477440pt;}
.ws63{word-spacing:3.084160pt;}
.ws70{word-spacing:3.539200pt;}
.ws62{word-spacing:3.741440pt;}
.wsfe{word-spacing:3.792000pt;}
.ws4d{word-spacing:4.398720pt;}
.ws4a{word-spacing:5.005440pt;}
.wsf9{word-spacing:5.409920pt;}
.ws10a{word-spacing:5.460480pt;}
.ws58{word-spacing:5.662720pt;}
.wsa3{word-spacing:5.952640pt;}
.wsa9{word-spacing:6.225280pt;}
.ws5f{word-spacing:6.320000pt;}
.wsaa{word-spacing:6.361600pt;}
.wsc1{word-spacing:6.724480pt;}
.ws64{word-spacing:6.926720pt;}
.ws114{word-spacing:7.381760pt;}
.wsad{word-spacing:7.497600pt;}
.ws6c{word-spacing:7.584000pt;}
.ws8f{word-spacing:7.887360pt;}
.wse5{word-spacing:7.937920pt;}
.wse6{word-spacing:7.988480pt;}
.wsa5{word-spacing:8.133760pt;}
.ws67{word-spacing:8.190720pt;}
.wsae{word-spacing:8.497280pt;}
.wsbf{word-spacing:8.848000pt;}
.wsab{word-spacing:9.451520pt;}
.ws2f{word-spacing:9.504000pt;}
.ws47{word-spacing:9.505280pt;}
.ws33{word-spacing:9.685333pt;}
.ws32{word-spacing:9.749333pt;}
.ws34{word-spacing:9.818667pt;}
.ws31{word-spacing:9.866667pt;}
.wsa6{word-spacing:10.087680pt;}
.ws8e{word-spacing:10.112000pt;}
.ws30{word-spacing:10.133333pt;}
.ws2e{word-spacing:10.490667pt;}
.wsd8{word-spacing:10.769280pt;}
.ws87{word-spacing:10.860160pt;}
.wsea{word-spacing:11.173760pt;}
.ws5d{word-spacing:11.426560pt;}
.ws10f{word-spacing:11.831040pt;}
.ws113{word-spacing:11.982720pt;}
.wsa7{word-spacing:11.996160pt;}
.wsf{word-spacing:12.032000pt;}
.ws5b{word-spacing:12.033280pt;}
.ws112{word-spacing:12.083840pt;}
.wsdd{word-spacing:12.690560pt;}
.wsa2{word-spacing:13.268480pt;}
.ws6f{word-spacing:13.347840pt;}
.wsdb{word-spacing:13.448960pt;}
.wse7{word-spacing:13.752320pt;}
.ws9f{word-spacing:13.904640pt;}
.ws7d{word-spacing:13.954560pt;}
.wsa1{word-spacing:14.040960pt;}
.ws116{word-spacing:14.359040pt;}
.wsf4{word-spacing:14.611840pt;}
.wscd{word-spacing:14.904320pt;}
.ws110{word-spacing:14.965760pt;}
.wsed{word-spacing:15.269120pt;}
.ws9b{word-spacing:15.370240pt;}
.ws9a{word-spacing:15.875840pt;}
.ws59{word-spacing:17.190400pt;}
.wsfc{word-spacing:17.594880pt;}
.ws119{word-spacing:17.746560pt;}
.wsee{word-spacing:17.797120pt;}
.ws66{word-spacing:18.454400pt;}
.ws69{word-spacing:18.606080pt;}
.ws68{word-spacing:19.111680pt;}
.wsf0{word-spacing:19.465600pt;}
.wsc4{word-spacing:19.675520pt;}
.wsef{word-spacing:19.718400pt;}
.wsc7{word-spacing:19.811840pt;}
.wse4{word-spacing:19.870080pt;}
.ws8d{word-spacing:20.311680pt;}
.wse2{word-spacing:20.375680pt;}
.wse3{word-spacing:20.426240pt;}
.ws8c{word-spacing:20.947840pt;}
.ws103{word-spacing:21.235200pt;}
.ws101{word-spacing:21.639680pt;}
.ws102{word-spacing:21.740800pt;}
.wsa4{word-spacing:22.220160pt;}
.ws71{word-spacing:22.296960pt;}
.wsc6{word-spacing:22.356480pt;}
.ws83{word-spacing:22.583680pt;}
.wsb2{word-spacing:22.810880pt;}
.wsb3{word-spacing:23.356160pt;}
.ws8b{word-spacing:23.492480pt;}
.ws4b{word-spacing:24.875520pt;}
.wsf2{word-spacing:25.482240pt;}
.wsf3{word-spacing:26.139520pt;}
.wseb{word-spacing:27.403520pt;}
.wsda{word-spacing:37.009920pt;}
.wsc0{word-spacing:37.667200pt;}
.wsc9{word-spacing:38.215040pt;}
.wsa0{word-spacing:38.987520pt;}
.wsca{word-spacing:39.214720pt;}
.ws108{word-spacing:41.610880pt;}
.ws107{word-spacing:41.914240pt;}
.ws106{word-spacing:42.116480pt;}
.wsd9{word-spacing:51.116160pt;}
.wsb1{word-spacing:130.367360pt;}
.wsb0{word-spacing:130.730880pt;}
._9{margin-left:-9.585280pt;}
._0{margin-left:-8.096000pt;}
._a{margin-left:-6.777813pt;}
._5{margin-left:-5.514667pt;}
._6{margin-left:-4.106667pt;}
._8{margin-left:-2.856107pt;}
._4{margin-left:-1.525333pt;}
._2{width:1.290667pt;}
._1{width:3.050667pt;}
._3{width:3.989333pt;}
._10{width:5.454293pt;}
._b{width:6.343893pt;}
._c{width:7.804587pt;}
._d{width:13.446187pt;}
._e{width:14.484053pt;}
._f{width:22.857600pt;}
._7{width:282.883627pt;}
.fs9{font-size:29.440000pt;}
.fsb{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fs5{font-size:40.320000pt;}
.fsa{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:70.666667pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:11.840000pt;}
.y99{bottom:12.000000pt;}
.y92{bottom:12.160000pt;}
.y113{bottom:13.120000pt;}
.y94{bottom:26.080000pt;}
.y9f{bottom:26.240000pt;}
.y1f{bottom:29.121760pt;}
.yc3{bottom:34.080000pt;}
.ybf{bottom:34.240000pt;}
.y137{bottom:34.560000pt;}
.yc7{bottom:40.160000pt;}
.y100{bottom:40.319867pt;}
.y106{bottom:40.320000pt;}
.y17c{bottom:69.599040pt;}
.y8a{bottom:69.600000pt;}
.y12c{bottom:69.600320pt;}
.yf0{bottom:69.600800pt;}
.ybb{bottom:70.878560pt;}
.y3{bottom:75.590533pt;}
.y69{bottom:75.853760pt;}
.y89{bottom:81.600000pt;}
.y12b{bottom:83.359520pt;}
.yef{bottom:83.360000pt;}
.yba{bottom:86.400000pt;}
.y17b{bottom:87.360000pt;}
.yee{bottom:95.360000pt;}
.y12a{bottom:97.280000pt;}
.y17a{bottom:99.360000pt;}
.y68{bottom:101.449760pt;}
.yb9{bottom:102.559520pt;}
.y2{bottom:107.857200pt;}
.y129{bottom:109.280000pt;}
.y1a9{bottom:115.116640pt;}
.yb8{bottom:116.480000pt;}
.y67{bottom:118.892960pt;}
.y151{bottom:123.207040pt;}
.yb7{bottom:128.480000pt;}
.y1a8{bottom:132.711520pt;}
.y128{bottom:134.880000pt;}
.y66{bottom:136.487840pt;}
.y88{bottom:138.247040pt;}
.y1{bottom:140.123867pt;}
.y150{bottom:140.801920pt;}
.y179{bottom:149.466880pt;}
.y1a7{bottom:150.154720pt;}
.y65{bottom:153.931040pt;}
.y87{bottom:155.841920pt;}
.y126{bottom:157.440000pt;}
.y14f{bottom:158.245120pt;}
.yb6{bottom:160.325120pt;}
.yed{bottom:165.445120pt;}
.y178{bottom:167.061760pt;}
.y1a6{bottom:167.749600pt;}
.y127{bottom:169.600000pt;}
.y1d{bottom:172.145333pt;}
.y86{bottom:173.436800pt;}
.y14e{bottom:175.836800pt;}
.yb5{bottom:177.928960pt;}
.y64{bottom:179.527040pt;}
.yec{bottom:183.040000pt;}
.y177{bottom:184.504960pt;}
.y1a5{bottom:185.344480pt;}
.y1c{bottom:189.588000pt;}
.y85{bottom:190.883840pt;}
.y14d{bottom:193.280000pt;}
.y125{bottom:194.240000pt;}
.yb4{bottom:195.372160pt;}
.y63{bottom:196.970240pt;}
.y176{bottom:202.099840pt;}
.y1a4{bottom:202.787680pt;}
.yeb{bottom:207.200000pt;}
.y84{bottom:208.478720pt;}
.yb3{bottom:212.967040pt;}
.y62{bottom:214.565120pt;}
.y1b{bottom:215.184000pt;}
.y14c{bottom:217.600000pt;}
.y175{bottom:219.543040pt;}
.y1a3{bottom:220.382560pt;}
.ye9{bottom:224.640000pt;}
.y83{bottom:225.921920pt;}
.y124{bottom:229.920000pt;}
.yb2{bottom:230.410240pt;}
.y61{bottom:232.160000pt;}
.yea{bottom:236.800000pt;}
.y174{bottom:237.137920pt;}
.y14b{bottom:237.449280pt;}
.y1a2{bottom:237.825760pt;}
.y1a{bottom:238.505333pt;}
.y82{bottom:243.516800pt;}
.yb1{bottom:248.005120pt;}
.y123{bottom:253.121920pt;}
.y173{bottom:254.732800pt;}
.y1a1{bottom:255.420640pt;}
.y60{bottom:260.640000pt;}
.y81{bottom:260.960000pt;}
.ye5{bottom:261.440000pt;}
.y19{bottom:264.265333pt;}
.yb0{bottom:265.600000pt;}
.y122{bottom:270.565120pt;}
.y172{bottom:272.176000pt;}
.y1a0{bottom:272.863840pt;}
.ye7{bottom:273.444960pt;}
.ye8{bottom:279.520000pt;}
.ye6{bottom:287.520000pt;}
.y121{bottom:288.160000pt;}
.y80{bottom:289.600000pt;}
.y171{bottom:289.770880pt;}
.y18{bottom:289.861333pt;}
.y19f{bottom:290.458720pt;}
.y5f{bottom:291.901120pt;}
.yaf{bottom:294.080000pt;}
.y170{bottom:307.214080pt;}
.y19e{bottom:308.053600pt;}
.y5e{bottom:309.344320pt;}
.ye2{bottom:312.160000pt;}
.y120{bottom:312.319520pt;}
.y17{bottom:315.305333pt;}
.ye4{bottom:324.160000pt;}
.y16f{bottom:324.808960pt;}
.y19d{bottom:325.496800pt;}
.y11f{bottom:326.240000pt;}
.y5d{bottom:326.939200pt;}
.y7f{bottom:331.041920pt;}
.ye3{bottom:332.160000pt;}
.yae{bottom:334.240000pt;}
.y16{bottom:340.901333pt;}
.y16e{bottom:342.252160pt;}
.y19c{bottom:343.091680pt;}
.y11d{bottom:343.680000pt;}
.y5c{bottom:344.534080pt;}
.y7e{bottom:348.485120pt;}
.yad{bottom:351.680000pt;}
.y11e{bottom:355.840000pt;}
.ydf{bottom:356.800000pt;}
.y16d{bottom:359.847040pt;}
.y19b{bottom:360.534880pt;}
.y5b{bottom:361.977280pt;}
.y7d{bottom:366.080000pt;}
.y15{bottom:366.661333pt;}
.ye1{bottom:368.960000pt;}
.yab{bottom:374.400000pt;}
.ye0{bottom:376.960000pt;}
.y16c{bottom:377.441920pt;}
.y19a{bottom:378.129760pt;}
.y5a{bottom:379.572160pt;}
.y11a{bottom:380.480000pt;}
.yac{bottom:386.560000pt;}
.y14{bottom:392.257333pt;}
.y11c{bottom:392.480000pt;}
.y7c{bottom:394.720000pt;}
.y16b{bottom:394.885120pt;}
.y199{bottom:395.572960pt;}
.y59{bottom:397.015360pt;}
.y11b{bottom:400.480000pt;}
.ydb{bottom:401.600000pt;}
.y13{bottom:409.750667pt;}
.ya9{bottom:411.200000pt;}
.y16a{bottom:412.480000pt;}
.y198{bottom:413.167840pt;}
.ydd{bottom:413.764000pt;}
.y58{bottom:414.610240pt;}
.yde{bottom:419.680000pt;}
.yaa{bottom:423.200000pt;}
.y7b{bottom:424.480000pt;}
.y116{bottom:425.120000pt;}
.y12{bottom:427.244000pt;}
.ydc{bottom:427.680000pt;}
.y197{bottom:430.762720pt;}
.y57{bottom:432.053440pt;}
.y118{bottom:437.284960pt;}
.y169{bottom:441.120000pt;}
.y119{bottom:443.360000pt;}
.y7a{bottom:444.679040pt;}
.y11{bottom:444.737333pt;}
.ya8{bottom:447.840000pt;}
.y196{bottom:448.205920pt;}
.y56{bottom:449.648320pt;}
.y14a{bottom:449.927680pt;}
.y117{bottom:451.360000pt;}
.yda{bottom:452.320000pt;}
.y195{bottom:465.800800pt;}
.y55{bottom:467.243200pt;}
.y149{bottom:467.370880pt;}
.ya7{bottom:470.560000pt;}
.yd7{bottom:475.040000pt;}
.y112{bottom:476.000000pt;}
.y168{bottom:482.416000pt;}
.y194{bottom:483.244000pt;}
.y54{bottom:484.686400pt;}
.y148{bottom:484.965760pt;}
.yd9{bottom:487.200000pt;}
.y115{bottom:487.840000pt;}
.ya6{bottom:493.280000pt;}
.yd8{bottom:495.200000pt;}
.y35{bottom:499.520000pt;}
.y110{bottom:499.840000pt;}
.y167{bottom:500.010880pt;}
.y193{bottom:500.838880pt;}
.y53{bottom:502.281280pt;}
.y147{bottom:502.408960pt;}
.y111{bottom:511.840000pt;}
.ya5{bottom:516.000000pt;}
.y166{bottom:517.454080pt;}
.y192{bottom:518.282080pt;}
.y52{bottom:519.724480pt;}
.yd4{bottom:519.840000pt;}
.y146{bottom:520.003840pt;}
.y34{bottom:524.000000pt;}
.yd6{bottom:532.000000pt;}
.y165{bottom:535.048960pt;}
.y191{bottom:535.876960pt;}
.y10d{bottom:536.480000pt;}
.y51{bottom:537.319360pt;}
.y145{bottom:537.447040pt;}
.ya4{bottom:538.560000pt;}
.yd5{bottom:540.000000pt;}
.y33{bottom:548.480000pt;}
.y10f{bottom:548.640000pt;}
.y164{bottom:552.492160pt;}
.y190{bottom:553.320160pt;}
.y50{bottom:554.762560pt;}
.y144{bottom:555.041920pt;}
.y10e{bottom:556.640000pt;}
.ya2{bottom:561.280000pt;}
.yd1{bottom:564.640000pt;}
.y163{bottom:570.087040pt;}
.y18f{bottom:570.915040pt;}
.y4f{bottom:572.357440pt;}
.y143{bottom:572.636800pt;}
.y32{bottom:572.804960pt;}
.ya3{bottom:573.440000pt;}
.yd3{bottom:576.640000pt;}
.y10a{bottom:581.280000pt;}
.yd2{bottom:584.640000pt;}
.y162{bottom:587.681920pt;}
.y18e{bottom:588.509920pt;}
.y4e{bottom:589.952320pt;}
.y142{bottom:590.080000pt;}
.y10c{bottom:593.440000pt;}
.y31{bottom:596.960000pt;}
.y10b{bottom:601.440000pt;}
.y161{bottom:605.125120pt;}
.yd{bottom:605.718400pt;}
.y18d{bottom:605.953120pt;}
.y4d{bottom:607.395520pt;}
.ycd{bottom:609.280000pt;}
.ya1{bottom:610.080000pt;}
.y141{bottom:618.720000pt;}
.y9e{bottom:620.640000pt;}
.y30{bottom:621.120000pt;}
.ycf{bottom:621.444960pt;}
.y160{bottom:622.720000pt;}
.y18c{bottom:623.548000pt;}
.y105{bottom:625.920000pt;}
.yd0{bottom:627.520000pt;}
.ya0{bottom:632.800000pt;}
.y4c{bottom:632.991520pt;}
.yce{bottom:635.520000pt;}
.y108{bottom:638.080000pt;}
.y18b{bottom:640.991200pt;}
.y109{bottom:644.160000pt;}
.y2f{bottom:645.600000pt;}
.y4b{bottom:650.434720pt;}
.y15f{bottom:651.360000pt;}
.y107{bottom:652.160000pt;}
.y9d{bottom:657.440000pt;}
.y18a{bottom:658.586080pt;}
.y140{bottom:660.156800pt;}
.ycb{bottom:660.160000pt;}
.y4a{bottom:668.029600pt;}
.y2e{bottom:670.080000pt;}
.ycc{bottom:672.160000pt;}
.y189{bottom:676.029280pt;}
.y102{bottom:676.800000pt;}
.y13f{bottom:677.600000pt;}
.y9c{bottom:680.160000pt;}
.y49{bottom:685.472800pt;}
.y104{bottom:688.960000pt;}
.y15e{bottom:692.664960pt;}
.y188{bottom:693.624160pt;}
.y2d{bottom:694.240000pt;}
.y103{bottom:696.960000pt;}
.y9a{bottom:702.880000pt;}
.y48{bottom:703.067680pt;}
.yc6{bottom:704.800000pt;}
.y13e{bottom:706.240000pt;}
.y15d{bottom:710.259840pt;}
.y187{bottom:711.219040pt;}
.y9b{bottom:715.040000pt;}
.yc9{bottom:716.964960pt;}
.y2c{bottom:718.400000pt;}
.y47{bottom:720.662560pt;}
.yff{bottom:721.440000pt;}
.yca{bottom:723.040000pt;}
.y15c{bottom:727.703040pt;}
.y79{bottom:727.713920pt;}
.y186{bottom:728.662240pt;}
.yc8{bottom:731.040000pt;}
.y101{bottom:733.600000pt;}
.y13d{bottom:736.157280pt;}
.y46{bottom:738.105760pt;}
.y98{bottom:739.680000pt;}
.y2b{bottom:742.560000pt;}
.y15b{bottom:745.297920pt;}
.y78{bottom:745.308800pt;}
.y185{bottom:746.257120pt;}
.y6{bottom:747.151600pt;}
.yc2{bottom:755.680000pt;}
.y45{bottom:755.700640pt;}
.y13c{bottom:757.920000pt;}
.y97{bottom:762.240000pt;}
.y15a{bottom:762.741120pt;}
.y77{bottom:762.752000pt;}
.y184{bottom:763.700320pt;}
.y2a{bottom:767.040000pt;}
.yc5{bottom:767.680000pt;}
.yfc{bottom:772.320000pt;}
.y44{bottom:773.143840pt;}
.y13b{bottom:775.360000pt;}
.yc4{bottom:775.680000pt;}
.y159{bottom:780.336000pt;}
.y76{bottom:780.346880pt;}
.y183{bottom:781.295200pt;}
.yfe{bottom:784.480000pt;}
.y96{bottom:784.960000pt;}
.y5{bottom:788.482267pt;}
.y43{bottom:790.738720pt;}
.y29{bottom:791.520000pt;}
.yfd{bottom:792.480000pt;}
.yc{bottom:797.422720pt;}
.y158{bottom:797.930880pt;}
.y75{bottom:797.941760pt;}
.y139{bottom:798.080000pt;}
.y182{bottom:798.738400pt;}
.ybe{bottom:800.320000pt;}
.y93{bottom:807.680000pt;}
.y42{bottom:808.181920pt;}
.y13a{bottom:810.240000pt;}
.yc1{bottom:812.480000pt;}
.y157{bottom:815.374080pt;}
.y74{bottom:815.384960pt;}
.y181{bottom:816.333280pt;}
.yf9{bottom:816.960000pt;}
.y95{bottom:819.680000pt;}
.yc0{bottom:820.480000pt;}
.y41{bottom:825.776800pt;}
.yfb{bottom:829.120000pt;}
.yb{bottom:829.425280pt;}
.y28{bottom:831.680000pt;}
.y156{bottom:832.968960pt;}
.y73{bottom:832.979840pt;}
.y180{bottom:833.928160pt;}
.y136{bottom:834.880000pt;}
.yfa{bottom:837.120000pt;}
.y4{bottom:840.482267pt;}
.y91{bottom:844.320000pt;}
.ybd{bottom:845.120000pt;}
.y155{bottom:850.412160pt;}
.y72{bottom:850.423040pt;}
.y40{bottom:851.372800pt;}
.y17f{bottom:851.523040pt;}
.y138{bottom:857.440000pt;}
.ya{bottom:861.427840pt;}
.yf7{bottom:861.760000pt;}
.y154{bottom:868.007040pt;}
.y71{bottom:868.017920pt;}
.y17e{bottom:868.801920pt;}
.y3f{bottom:868.816000pt;}
.yf8{bottom:873.760000pt;}
.y27{bottom:877.765760pt;}
.y90{bottom:880.000000pt;}
.ybc{bottom:880.800000pt;}
.y153{bottom:885.450240pt;}
.y70{bottom:885.461120pt;}
.y17d{bottom:886.396800pt;}
.y3e{bottom:886.410880pt;}
.y135{bottom:893.120000pt;}
.y9{bottom:893.274933pt;}
.y26{bottom:895.208960pt;}
.yf6{bottom:897.440000pt;}
.y152{bottom:903.045120pt;}
.y6f{bottom:903.056000pt;}
.y8f{bottom:903.196800pt;}
.y3d{bottom:903.854080pt;}
.y25{bottom:912.803840pt;}
.y134{bottom:916.325760pt;}
.yf5{bottom:920.641920pt;}
.y8e{bottom:920.650240pt;}
.y6e{bottom:920.650880pt;}
.y3c{bottom:921.448960pt;}
.y24{bottom:930.247040pt;}
.y133{bottom:933.768960pt;}
.yf4{bottom:938.085120pt;}
.y6d{bottom:938.094080pt;}
.y8d{bottom:938.245120pt;}
.y3b{bottom:938.892160pt;}
.y23{bottom:947.841920pt;}
.y1af{bottom:950.400800pt;}
.y132{bottom:951.363840pt;}
.yf3{bottom:955.678720pt;}
.y6c{bottom:955.688960pt;}
.y8c{bottom:955.840000pt;}
.y3a{bottom:956.487040pt;}
.y8{bottom:957.280000pt;}
.y22{bottom:965.285120pt;}
.y131{bottom:968.807040pt;}
.yf2{bottom:973.121920pt;}
.y6b{bottom:973.132160pt;}
.y1ab{bottom:973.283840pt;}
.y39{bottom:974.081920pt;}
.y1ae{bottom:975.680800pt;}
.y21{bottom:982.880000pt;}
.y8b{bottom:984.320000pt;}
.y130{bottom:986.401920pt;}
.yf1{bottom:990.716800pt;}
.y6a{bottom:990.727040pt;}
.y38{bottom:991.525120pt;}
.y1ad{bottom:993.440000pt;}
.y12f{bottom:1003.996800pt;}
.y10{bottom:1008.170240pt;}
.y1aa{bottom:1008.321920pt;}
.y37{bottom:1009.120000pt;}
.y12e{bottom:1021.440000pt;}
.y20{bottom:1022.880000pt;}
.yf{bottom:1025.765120pt;}
.y7{bottom:1028.960000pt;}
.y1ac{bottom:1033.440000pt;}
.y36{bottom:1037.760000pt;}
.ye{bottom:1043.360000pt;}
.y12d{bottom:1045.760320pt;}
.y1e{bottom:1083.520000pt;}
.h18{height:21.918667pt;}
.h15{height:21.920000pt;}
.h11{height:22.080000pt;}
.h1a{height:23.000000pt;}
.h25{height:23.040000pt;}
.h23{height:24.710400pt;}
.h12{height:32.489600pt;}
.hb{height:33.102720pt;}
.h26{height:34.359375pt;}
.h1b{height:34.505760pt;}
.ha{height:35.392000pt;}
.h13{height:36.000000pt;}
.h2b{height:36.150400pt;}
.h16{height:36.160000pt;}
.h17{height:36.161333pt;}
.h14{height:37.306240pt;}
.h9{height:37.920000pt;}
.hd{height:39.243750pt;}
.h8{height:41.509760pt;}
.h22{height:41.514880pt;}
.h1c{height:42.673920pt;}
.h10{height:42.689280pt;}
.h19{height:42.694400pt;}
.hf{height:42.714880pt;}
.h2a{height:42.722560pt;}
.h21{height:42.730240pt;}
.h29{height:42.743040pt;}
.h27{height:43.998667pt;}
.h1e{height:44.000000pt;}
.h1d{height:44.160000pt;}
.h28{height:44.480000pt;}
.h20{height:50.080000pt;}
.h1f{height:50.081333pt;}
.h24{height:50.240000pt;}
.h7{height:51.840000pt;}
.h4{height:53.000000pt;}
.he{height:56.160000pt;}
.hc{height:78.816000pt;}
.h2{height:82.720000pt;}
.h6{height:87.840000pt;}
.h3{height:88.000000pt;}
.h0{height:1122.520000pt;}
.h5{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.560000pt;}
.w8{width:46.720000pt;}
.w5{width:79.840000pt;}
.w9{width:163.038667pt;}
.wa{width:163.040000pt;}
.wb{width:163.200000pt;}
.w6{width:301.440000pt;}
.wc{width:326.880000pt;}
.w4{width:329.760000pt;}
.w3{width:490.720000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1e{left:11.200000pt;}
.x1c{left:14.080000pt;}
.x16{left:17.440000pt;}
.x14{left:19.200000pt;}
.xd{left:22.720000pt;}
.x19{left:27.040000pt;}
.xf{left:30.720000pt;}
.x11{left:39.840000pt;}
.x29{left:70.400000pt;}
.x28{left:73.280000pt;}
.x24{left:75.040000pt;}
.x22{left:78.080000pt;}
.x27{left:79.840000pt;}
.x2{left:99.212533pt;}
.x26{left:119.680000pt;}
.x3{left:124.000000pt;}
.xb{left:139.190560pt;}
.x5{left:142.880000pt;}
.x8{left:188.960000pt;}
.xa{left:195.840000pt;}
.x20{left:248.480000pt;}
.x7{left:316.000000pt;}
.x21{left:352.800000pt;}
.x25{left:429.585280pt;}
.x4{left:431.823040pt;}
.x13{left:491.040000pt;}
.x1d{left:514.400000pt;}
.x23{left:516.480000pt;}
.xc{left:519.360000pt;}
.x15{left:538.400000pt;}
.x10{left:559.200000pt;}
.x1f{left:561.600000pt;}
.x1{left:568.807467pt;}
.x17{left:585.600000pt;}
.xe{left:599.840000pt;}
.x18{left:610.720000pt;}
.x1a{left:632.960000pt;}
.x12{left:639.680000pt;}
.x1b{left:655.840000pt;}
.x6{left:732.009280pt;}
}




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