
    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_1e292c0afc1d33c0e80f9bff.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_a81024f6284cf3a2fbdae4c0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.902344;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_e15496a5928d5901069750f5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.907715;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_5aa28e30bc50494357b8bed1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_83e3a4575dfa950c9951b2ff.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_883863902eeb52c561bf7865.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_54cc4f4cda9ba86837b3a15f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907715;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_d41a0279d8ca9a44f14b8921.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_4750d5191b72b9e5667e38f1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_7cf2ddce9c1b8371da8b4ca4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_1bf543f040a6e2b82a7e102f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.v3{vertical-align:-22.200000px;}
.v4{vertical-align:-14.304000px;}
.v5{vertical-align:-13.206000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.ls6c{letter-spacing:-6.600000px;}
.ls6f{letter-spacing:-6.270000px;}
.ls3b{letter-spacing:-4.248000px;}
.ls3c{letter-spacing:-3.600000px;}
.ls33{letter-spacing:-2.808000px;}
.ls51{letter-spacing:-2.244000px;}
.ls43{letter-spacing:-2.088000px;}
.ls26{letter-spacing:-1.800000px;}
.ls27{letter-spacing:-1.512000px;}
.ls53{letter-spacing:-1.254000px;}
.ls54{letter-spacing:-1.188000px;}
.ls24{letter-spacing:-1.152000px;}
.ls66{letter-spacing:-1.056000px;}
.ls36{letter-spacing:-1.008000px;}
.ls67{letter-spacing:-0.990000px;}
.ls37{letter-spacing:-0.936000px;}
.ls70{letter-spacing:-0.924000px;}
.ls22{letter-spacing:-0.864000px;}
.ls56{letter-spacing:-0.858000px;}
.ls23{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls55{letter-spacing:-0.660000px;}
.ls25{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.594000px;}
.ls21{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls45{letter-spacing:-0.330000px;}
.ls16{letter-spacing:-0.288000px;}
.ls5b{letter-spacing:-0.264000px;}
.ls20{letter-spacing:-0.216000px;}
.ls59{letter-spacing:-0.198000px;}
.ls14{letter-spacing:-0.144000px;}
.ls57{letter-spacing:-0.132000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls52{letter-spacing:-0.066000px;}
.lsa{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.011400px;}
.ls2f{letter-spacing:0.012000px;}
.ls2d{letter-spacing:0.055200px;}
.ls5f{letter-spacing:0.066000px;}
.ls10{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.132000px;}
.ls18{letter-spacing:0.144000px;}
.ls62{letter-spacing:0.198000px;}
.ls4a{letter-spacing:0.208200px;}
.ls11{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.227400px;}
.lsd{letter-spacing:0.264000px;}
.ls28{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.314400px;}
.ls49{letter-spacing:0.330000px;}
.lsf{letter-spacing:0.360000px;}
.ls72{letter-spacing:0.396000px;}
.lse{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.443400px;}
.ls6{letter-spacing:0.462000px;}
.ls1e{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.528000px;}
.ls3a{letter-spacing:0.546600px;}
.ls3f{letter-spacing:0.554400px;}
.ls40{letter-spacing:0.574200px;}
.ls1d{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.594000px;}
.ls29{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.720000px;}
.ls50{letter-spacing:0.726000px;}
.ls1a{letter-spacing:0.792000px;}
.ls6b{letter-spacing:0.858000px;}
.ls31{letter-spacing:0.864000px;}
.ls60{letter-spacing:0.924000px;}
.ls1f{letter-spacing:0.936000px;}
.ls4e{letter-spacing:0.990000px;}
.ls47{letter-spacing:1.008000px;}
.ls65{letter-spacing:1.056000px;}
.ls42{letter-spacing:1.224000px;}
.ls3e{letter-spacing:1.368000px;}
.ls6e{letter-spacing:2.640000px;}
.ls2a{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.200000px;}
.ls6d{letter-spacing:4.488000px;}
.ls44{letter-spacing:5.130000px;}
.ls46{letter-spacing:5.400000px;}
.ls34{letter-spacing:5.700000px;}
.ls48{letter-spacing:5.832000px;}
.ls4{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls1{letter-spacing:6.616667px;}
.ls3d{letter-spacing:6.624000px;}
.ls5{letter-spacing:7.200000px;}
.ls2b{letter-spacing:7.344000px;}
.ls2e{letter-spacing:7.488000px;}
.ls38{letter-spacing:9.576000px;}
.ls4c{letter-spacing:10.098000px;}
.ls19{letter-spacing:10.152000px;}
.ls3{letter-spacing:10.200000px;}
.ls2c{letter-spacing:10.224000px;}
.ls69{letter-spacing:10.296000px;}
.ls68{letter-spacing:10.362000px;}
.ls5d{letter-spacing:10.428000px;}
.ls64{letter-spacing:10.626000px;}
.ls5a{letter-spacing:10.692000px;}
.ls61{letter-spacing:10.758000px;}
.ls4d{letter-spacing:10.824000px;}
.ls4b{letter-spacing:10.890000px;}
.ls32{letter-spacing:10.944000px;}
.ls4f{letter-spacing:10.956000px;}
.ls5e{letter-spacing:11.022000px;}
.ls63{letter-spacing:11.286000px;}
.ls5c{letter-spacing:11.550000px;}
.ls6a{letter-spacing:11.880000px;}
.ls58{letter-spacing:11.946000px;}
.ls71{letter-spacing:19.800000px;}
.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;}
}
.ws96{word-spacing:-38.346000px;}
.ws69{word-spacing:-29.436000px;}
.ws1{word-spacing:-27.432000px;}
.ws64{word-spacing:-22.860000px;}
.ws94{word-spacing:-21.186000px;}
.ws44{word-spacing:-21.096000px;}
.ws43{word-spacing:-21.024000px;}
.ws4e{word-spacing:-20.952000px;}
.ws46{word-spacing:-20.880000px;}
.ws42{word-spacing:-20.808000px;}
.ws3c{word-spacing:-20.592000px;}
.ws36{word-spacing:-20.304000px;}
.ws35{word-spacing:-20.232000px;}
.ws45{word-spacing:-19.872000px;}
.ws9b{word-spacing:-19.800000px;}
.ws4f{word-spacing:-19.008000px;}
.ws65{word-spacing:-18.876000px;}
.ws61{word-spacing:-18.720000px;}
.ws38{word-spacing:-18.576000px;}
.ws53{word-spacing:-18.546000px;}
.ws3e{word-spacing:-18.504000px;}
.ws60{word-spacing:-18.432000px;}
.ws47{word-spacing:-18.360000px;}
.ws68{word-spacing:-18.348000px;}
.ws3f{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.144000px;}
.ws66{word-spacing:-17.886000px;}
.ws37{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.640000px;}
.ws93{word-spacing:-17.622000px;}
.ws4c{word-spacing:-17.568000px;}
.ws4d{word-spacing:-17.424000px;}
.ws5c{word-spacing:-17.352000px;}
.ws3d{word-spacing:-17.280000px;}
.ws5f{word-spacing:-17.208000px;}
.ws97{word-spacing:-17.094000px;}
.ws0{word-spacing:-16.860000px;}
.ws98{word-spacing:-16.698000px;}
.ws92{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.302000px;}
.ws7c{word-spacing:-16.170000px;}
.ws67{word-spacing:-15.510000px;}
.ws1d{word-spacing:-14.079000px;}
.ws2f{word-spacing:-12.139200px;}
.ws76{word-spacing:-11.946000px;}
.ws90{word-spacing:-11.880000px;}
.ws7e{word-spacing:-11.550000px;}
.ws7f{word-spacing:-11.286000px;}
.ws84{word-spacing:-11.022000px;}
.ws7a{word-spacing:-10.956000px;}
.ws6e{word-spacing:-10.890000px;}
.ws74{word-spacing:-10.824000px;}
.ws8a{word-spacing:-10.758000px;}
.ws78{word-spacing:-10.692000px;}
.ws82{word-spacing:-10.626000px;}
.ws80{word-spacing:-10.428000px;}
.ws8d{word-spacing:-10.362000px;}
.ws8e{word-spacing:-10.296000px;}
.ws6{word-spacing:-10.200000px;}
.ws72{word-spacing:-10.098000px;}
.ws8c{word-spacing:-9.702000px;}
.ws25{word-spacing:-7.200000px;}
.ws5{word-spacing:-6.600000px;}
.ws8{word-spacing:-6.000000px;}
.ws63{word-spacing:-5.832000px;}
.ws3b{word-spacing:-5.700000px;}
.ws5d{word-spacing:-5.400000px;}
.ws5a{word-spacing:-5.130000px;}
.ws3{word-spacing:-4.200000px;}
.ws33{word-spacing:-3.600000px;}
.ws4a{word-spacing:-1.368000px;}
.ws52{word-spacing:-1.224000px;}
.ws87{word-spacing:-1.056000px;}
.ws62{word-spacing:-1.008000px;}
.ws77{word-spacing:-0.990000px;}
.ws2e{word-spacing:-0.936000px;}
.ws86{word-spacing:-0.924000px;}
.ws3a{word-spacing:-0.864000px;}
.ws91{word-spacing:-0.858000px;}
.ws20{word-spacing:-0.792000px;}
.ws7b{word-spacing:-0.726000px;}
.ws21{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.648000px;}
.wse{word-spacing:-0.594000px;}
.ws24{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.462000px;}
.ws19{word-spacing:-0.432000px;}
.ws9a{word-spacing:-0.396000px;}
.ws31{word-spacing:-0.360000px;}
.ws6b{word-spacing:-0.330000px;}
.ws30{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.264000px;}
.ws11{word-spacing:-0.216000px;}
.ws7d{word-spacing:-0.198000px;}
.ws1e{word-spacing:-0.144000px;}
.wsb{word-spacing:-0.132000px;}
.ws1a{word-spacing:-0.072000px;}
.ws85{word-spacing:-0.066000px;}
.ws1c{word-spacing:-0.043200px;}
.ws4{word-spacing:0.000000px;}
.ws6f{word-spacing:0.066000px;}
.ws1f{word-spacing:0.072000px;}
.ws75{word-spacing:0.132000px;}
.ws14{word-spacing:0.144000px;}
.ws8b{word-spacing:0.198000px;}
.ws26{word-spacing:0.216000px;}
.ws79{word-spacing:0.264000px;}
.ws17{word-spacing:0.288000px;}
.ws5b{word-spacing:0.330000px;}
.ws13{word-spacing:0.360000px;}
.ws15{word-spacing:0.432000px;}
.ws12{word-spacing:0.504000px;}
.ws81{word-spacing:0.528000px;}
.ws27{word-spacing:0.576000px;}
.wsc{word-spacing:0.594000px;}
.ws2b{word-spacing:0.648000px;}
.ws8f{word-spacing:0.660000px;}
.ws18{word-spacing:0.720000px;}
.ws29{word-spacing:0.792000px;}
.ws73{word-spacing:0.858000px;}
.ws28{word-spacing:0.864000px;}
.ws41{word-spacing:0.936000px;}
.ws89{word-spacing:0.990000px;}
.ws40{word-spacing:1.008000px;}
.ws88{word-spacing:1.056000px;}
.ws2a{word-spacing:1.152000px;}
.ws71{word-spacing:1.188000px;}
.ws70{word-spacing:1.254000px;}
.ws2d{word-spacing:1.512000px;}
.ws2c{word-spacing:1.800000px;}
.ws51{word-spacing:2.088000px;}
.ws6a{word-spacing:2.244000px;}
.ws83{word-spacing:2.376000px;}
.ws16{word-spacing:2.520000px;}
.ws39{word-spacing:2.808000px;}
.ws22{word-spacing:3.096000px;}
.ws49{word-spacing:3.600000px;}
.ws5e{word-spacing:4.092000px;}
.ws48{word-spacing:4.248000px;}
.ws6d{word-spacing:4.422000px;}
.ws4b{word-spacing:4.464000px;}
.ws34{word-spacing:5.040000px;}
.ws99{word-spacing:5.940000px;}
.ws6c{word-spacing:6.072000px;}
.ws95{word-spacing:6.270000px;}
.ws7{word-spacing:6.324000px;}
.ws50{word-spacing:7.560000px;}
.ws57{word-spacing:295.482000px;}
.ws54{word-spacing:356.532000px;}
.ws55{word-spacing:419.166000px;}
.ws56{word-spacing:423.970800px;}
.ws59{word-spacing:427.944000px;}
.ws58{word-spacing:455.268000px;}
._12{margin-left:-20.240133px;}
._16{margin-left:-14.980200px;}
._14{margin-left:-13.866067px;}
._15{margin-left:-12.480000px;}
._a{margin-left:-10.593000px;}
._10{margin-left:-9.453600px;}
._7{margin-left:-8.400000px;}
._f{margin-left:-7.387200px;}
._6{margin-left:-6.018000px;}
._5{margin-left:-4.283400px;}
._1{margin-left:-2.717400px;}
._2{margin-left:-1.380867px;}
._3{width:1.464000px;}
._8{width:3.108000px;}
._0{width:4.200000px;}
._d{width:6.036000px;}
._e{width:7.048800px;}
._c{width:8.814000px;}
._b{width:10.157400px;}
._4{width:11.259600px;}
._13{width:13.220400px;}
._17{width:14.775267px;}
._20{width:16.128600px;}
._9{width:17.641200px;}
._1e{width:20.355600px;}
._1f{width:22.649400px;}
._11{width:56.923200px;}
._1b{width:460.680000px;}
._1a{width:462.132000px;}
._19{width:463.584000px;}
._18{width:466.747200px;}
._1d{width:508.002000px;}
._1c{width:509.454000px;}
.fc3{color:rgb(26,27,29);}
.fc2{color:rgb(20,20,19);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:81.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:60.941850px;}
.y1{bottom:75.341850px;}
.y3{bottom:76.339350px;}
.y6b{bottom:140.310450px;}
.yc5{bottom:140.311950px;}
.y1ec{bottom:141.070050px;}
.y47{bottom:141.610350px;}
.y22{bottom:142.158150px;}
.y212{bottom:142.713600px;}
.y1c2{bottom:142.918200px;}
.y25f{bottom:144.334800px;}
.y79{bottom:144.610350px;}
.y10b{bottom:144.768300px;}
.y9d{bottom:144.930300px;}
.y16d{bottom:145.122300px;}
.y14e{bottom:145.158300px;}
.y12a{bottom:145.206300px;}
.ye9{bottom:145.864950px;}
.y183{bottom:145.914300px;}
.y238{bottom:146.710800px;}
.ye8{bottom:156.810450px;}
.y6a{bottom:156.811950px;}
.yc4{bottom:156.813450px;}
.y1eb{bottom:162.670050px;}
.y211{bottom:162.810600px;}
.y46{bottom:163.210350px;}
.y21{bottom:163.311150px;}
.y25e{bottom:164.728800px;}
.y1c1{bottom:165.868200px;}
.y78{bottom:166.210350px;}
.y10a{bottom:166.512300px;}
.y14d{bottom:166.554300px;}
.y16c{bottom:166.578300px;}
.y9c{bottom:166.674300px;}
.y129{bottom:166.950300px;}
.y182{bottom:167.514300px;}
.y237{bottom:171.757800px;}
.ye7{bottom:173.311950px;}
.y69{bottom:173.313450px;}
.yc3{bottom:178.864950px;}
.y210{bottom:182.907600px;}
.y1ea{bottom:184.270050px;}
.y20{bottom:184.464150px;}
.y45{bottom:184.810350px;}
.y25d{bottom:185.122800px;}
.y77{bottom:187.810350px;}
.y14c{bottom:188.010300px;}
.y16b{bottom:188.034300px;}
.y109{bottom:188.256300px;}
.y9b{bottom:188.418300px;}
.y128{bottom:188.694300px;}
.y1c0{bottom:188.818200px;}
.y181{bottom:189.114300px;}
.ye6{bottom:189.813450px;}
.y1a3{bottom:191.238300px;}
.y236{bottom:192.300300px;}
.y289{bottom:194.559450px;}
.y68{bottom:195.364950px;}
.y20f{bottom:203.004600px;}
.y25c{bottom:205.516800px;}
.y1f{bottom:205.617150px;}
.y1e9{bottom:205.870050px;}
.yba{bottom:206.313450px;}
.y44{bottom:206.410350px;}
.y76{bottom:209.410350px;}
.y14b{bottom:209.466300px;}
.y16a{bottom:209.490300px;}
.y108{bottom:210.000300px;}
.y9a{bottom:210.162300px;}
.y127{bottom:210.438300px;}
.y180{bottom:210.714300px;}
.y1bf{bottom:211.768200px;}
.ye5{bottom:211.864950px;}
.y235{bottom:212.842800px;}
.y1a2{bottom:213.432300px;}
.y288{bottom:213.609450px;}
.ye4{bottom:222.813450px;}
.y20e{bottom:223.101600px;}
.y25b{bottom:225.613800px;}
.yc2{bottom:226.210350px;}
.y1e{bottom:226.770150px;}
.y1e8{bottom:227.470050px;}
.y43{bottom:228.010350px;}
.yb9{bottom:228.364950px;}
.y14a{bottom:230.922300px;}
.y169{bottom:230.946300px;}
.y107{bottom:231.744300px;}
.y99{bottom:231.906300px;}
.y126{bottom:232.182300px;}
.y17f{bottom:232.314300px;}
.y287{bottom:232.659450px;}
.y234{bottom:233.385300px;}
.y1be{bottom:234.718200px;}
.y1a1{bottom:235.626300px;}
.y28f{bottom:236.259450px;}
.y67{bottom:236.514300px;}
.y75{bottom:239.514300px;}
.y20d{bottom:242.901600px;}
.ye3{bottom:244.864950px;}
.y25a{bottom:245.710800px;}
.yc1{bottom:247.810350px;}
.y1d{bottom:247.923150px;}
.y1e7{bottom:249.070050px;}
.y42{bottom:249.610350px;}
.y286{bottom:251.709450px;}
.y149{bottom:252.378300px;}
.y168{bottom:252.402300px;}
.y106{bottom:253.488300px;}
.y98{bottom:253.650300px;}
.y17e{bottom:253.914300px;}
.y125{bottom:253.926300px;}
.y233{bottom:253.927800px;}
.y28e{bottom:255.309450px;}
.y1bd{bottom:257.668200px;}
.y1a0{bottom:257.820300px;}
.y66{bottom:258.114300px;}
.y20c{bottom:262.998600px;}
.y259{bottom:265.807800px;}
.y1c{bottom:269.076150px;}
.yc0{bottom:269.410350px;}
.y26a{bottom:270.213300px;}
.y41{bottom:271.210350px;}
.y148{bottom:273.834300px;}
.y167{bottom:273.858300px;}
.y28d{bottom:274.359450px;}
.y232{bottom:274.470300px;}
.y105{bottom:275.232300px;}
.yb8{bottom:275.310300px;}
.y97{bottom:275.394300px;}
.y17d{bottom:275.514300px;}
.y65{bottom:279.714300px;}
.y19f{bottom:280.056300px;}
.y1bc{bottom:280.618200px;}
.y20b{bottom:283.095600px;}
.y258{bottom:285.904800px;}
.y124{bottom:286.326300px;}
.y269{bottom:287.911800px;}
.y1b{bottom:290.229150px;}
.ybf{bottom:291.010350px;}
.ye2{bottom:292.566300px;}
.y40{bottom:292.810350px;}
.y285{bottom:293.403450px;}
.y28c{bottom:293.409450px;}
.y231{bottom:295.012800px;}
.y147{bottom:295.290300px;}
.y166{bottom:295.296300px;}
.y104{bottom:296.976300px;}
.yb7{bottom:297.054300px;}
.y1e6{bottom:297.082950px;}
.y17c{bottom:297.114300px;}
.y96{bottom:297.138300px;}
.y64{bottom:301.314300px;}
.y19e{bottom:302.250300px;}
.y20a{bottom:303.192600px;}
.y1bb{bottom:303.568200px;}
.y74{bottom:304.068300px;}
.y257{bottom:306.001800px;}
.y123{bottom:308.070300px;}
.y1a{bottom:311.382150px;}
.ybe{bottom:312.610350px;}
.y284{bottom:314.259450px;}
.y3f{bottom:314.410350px;}
.ye1{bottom:314.472300px;}
.y230{bottom:315.555300px;}
.y146{bottom:316.746300px;}
.y165{bottom:316.752300px;}
.y268{bottom:316.891800px;}
.y1e5{bottom:318.087450px;}
.y17b{bottom:318.714300px;}
.y103{bottom:318.720300px;}
.yb6{bottom:318.798300px;}
.y95{bottom:318.882300px;}
.y63{bottom:322.914300px;}
.y209{bottom:323.289600px;}
.y19d{bottom:324.444300px;}
.y73{bottom:325.362300px;}
.y256{bottom:326.098800px;}
.y1ba{bottom:326.518200px;}
.y122{bottom:329.946300px;}
.y19{bottom:332.535150px;}
.ybd{bottom:334.210350px;}
.y28b{bottom:335.103450px;}
.y3e{bottom:336.010350px;}
.y22f{bottom:336.097800px;}
.ye0{bottom:336.378300px;}
.y267{bottom:337.285800px;}
.y145{bottom:338.202300px;}
.y164{bottom:338.208300px;}
.y17a{bottom:340.314300px;}
.y102{bottom:340.524300px;}
.yb5{bottom:340.542300px;}
.y94{bottom:340.626300px;}
.y208{bottom:343.386600px;}
.y62{bottom:344.514300px;}
.y255{bottom:346.195800px;}
.y19c{bottom:346.638300px;}
.y72{bottom:346.656300px;}
.y1b9{bottom:349.468200px;}
.y1e4{bottom:350.316000px;}
.y121{bottom:351.690300px;}
.ybc{bottom:355.810350px;}
.y28a{bottom:355.959450px;}
.y22e{bottom:356.640300px;}
.y3d{bottom:357.610350px;}
.y283{bottom:357.639450px;}
.y266{bottom:357.679800px;}
.ydf{bottom:358.284300px;}
.y144{bottom:359.658300px;}
.y179{bottom:361.914300px;}
.y18{bottom:362.189100px;}
.y101{bottom:362.268300px;}
.yb4{bottom:362.286300px;}
.y93{bottom:362.370300px;}
.y207{bottom:363.483600px;}
.y61{bottom:366.114300px;}
.y254{bottom:366.292800px;}
.y71{bottom:367.950300px;}
.y19b{bottom:368.832300px;}
.y163{bottom:369.942300px;}
.y1e3{bottom:371.320500px;}
.y1b8{bottom:372.418200px;}
.y120{bottom:373.434300px;}
.y22d{bottom:377.182800px;}
.y265{bottom:378.073800px;}
.y282{bottom:378.495450px;}
.y3c{bottom:379.210350px;}
.yde{bottom:380.190300px;}
.y143{bottom:381.024300px;}
.y178{bottom:383.514300px;}
.y206{bottom:383.580600px;}
.y100{bottom:384.012300px;}
.yb3{bottom:384.030300px;}
.y92{bottom:384.114300px;}
.y253{bottom:386.389800px;}
.y60{bottom:387.714300px;}
.y70{bottom:389.244300px;}
.y19a{bottom:391.026300px;}
.y162{bottom:391.398300px;}
.ybb{bottom:392.410350px;}
.y11f{bottom:395.178300px;}
.y1b7{bottom:395.368200px;}
.y22c{bottom:397.725300px;}
.y264{bottom:398.467800px;}
.y281{bottom:399.351450px;}
.y3b{bottom:400.810350px;}
.ydd{bottom:402.096300px;}
.y142{bottom:402.480300px;}
.y1e2{bottom:403.548900px;}
.y205{bottom:403.677600px;}
.y177{bottom:405.114300px;}
.yff{bottom:405.756300px;}
.yb2{bottom:405.774300px;}
.y91{bottom:405.858300px;}
.y252{bottom:406.486800px;}
.y5f{bottom:409.314300px;}
.y6f{bottom:410.538300px;}
.y161{bottom:412.854300px;}
.y199{bottom:413.220300px;}
.y11e{bottom:416.922300px;}
.y17{bottom:417.820950px;}
.y22b{bottom:418.267800px;}
.y1b6{bottom:418.318200px;}
.y263{bottom:418.861800px;}
.y280{bottom:420.207450px;}
.y3a{bottom:422.410350px;}
.y204{bottom:423.774600px;}
.y141{bottom:423.936300px;}
.ydc{bottom:424.002300px;}
.y1e1{bottom:424.553400px;}
.y251{bottom:426.583800px;}
.y176{bottom:426.714300px;}
.yfe{bottom:427.500300px;}
.yb1{bottom:427.518300px;}
.y90{bottom:427.602300px;}
.y5e{bottom:430.914300px;}
.y6e{bottom:431.832300px;}
.y160{bottom:434.310300px;}
.y198{bottom:435.432300px;}
.y11d{bottom:438.666300px;}
.y22a{bottom:438.810300px;}
.y16{bottom:438.973950px;}
.y262{bottom:439.255800px;}
.y27f{bottom:441.063450px;}
.y1b5{bottom:441.268200px;}
.y203{bottom:443.871600px;}
.y39{bottom:444.010350px;}
.y140{bottom:445.392300px;}
.ydb{bottom:445.908300px;}
.y250{bottom:446.680800px;}
.y175{bottom:448.314300px;}
.yfd{bottom:449.244300px;}
.yb0{bottom:449.262300px;}
.y8f{bottom:449.346300px;}
.y5d{bottom:452.514300px;}
.y6d{bottom:453.126300px;}
.y15f{bottom:455.766300px;}
.y1e0{bottom:456.781950px;}
.y197{bottom:457.626300px;}
.y229{bottom:459.352800px;}
.y261{bottom:459.649800px;}
.y15{bottom:460.126950px;}
.y11c{bottom:460.410300px;}
.y27e{bottom:461.919450px;}
.y202{bottom:463.968600px;}
.y1b4{bottom:464.218200px;}
.y38{bottom:465.610350px;}
.y24f{bottom:466.777800px;}
.y13f{bottom:466.848300px;}
.yda{bottom:467.778300px;}
.y174{bottom:469.914300px;}
.yfc{bottom:470.988300px;}
.yaf{bottom:471.006300px;}
.y8e{bottom:471.090300px;}
.y5c{bottom:474.114300px;}
.y6c{bottom:474.420300px;}
.y15e{bottom:477.222300px;}
.y1df{bottom:477.786450px;}
.y196{bottom:479.820300px;}
.y228{bottom:479.895300px;}
.y260{bottom:480.043800px;}
.y14{bottom:481.279950px;}
.y11b{bottom:482.154300px;}
.y27d{bottom:482.775450px;}
.y201{bottom:484.065600px;}
.y24e{bottom:486.874800px;}
.y37{bottom:487.210350px;}
.y13e{bottom:488.304300px;}
.yd9{bottom:489.684300px;}
.y173{bottom:491.514300px;}
.yfb{bottom:492.732300px;}
.yae{bottom:492.750300px;}
.y8d{bottom:492.834300px;}
.y5b{bottom:495.714300px;}
.y15d{bottom:498.678300px;}
.y227{bottom:500.437800px;}
.y195{bottom:502.086300px;}
.y13{bottom:502.432950px;}
.y27c{bottom:503.631450px;}
.y11a{bottom:503.898300px;}
.y200{bottom:504.162600px;}
.y24d{bottom:506.971800px;}
.y36{bottom:508.810350px;}
.y13d{bottom:509.760300px;}
.y1de{bottom:510.014850px;}
.yd8{bottom:511.590300px;}
.y1b3{bottom:512.353800px;}
.y172{bottom:513.114300px;}
.yfa{bottom:514.476300px;}
.yad{bottom:514.494300px;}
.y8c{bottom:514.578300px;}
.y5a{bottom:517.314300px;}
.y15c{bottom:520.134300px;}
.y226{bottom:520.831800px;}
.y12{bottom:523.585950px;}
.y1ff{bottom:524.259600px;}
.y194{bottom:524.280300px;}
.y27b{bottom:524.487450px;}
.y119{bottom:525.642300px;}
.y24c{bottom:527.068800px;}
.y35{bottom:530.410350px;}
.y1dd{bottom:531.019350px;}
.y13c{bottom:531.216300px;}
.y1b2{bottom:532.450800px;}
.yd7{bottom:533.496300px;}
.y171{bottom:534.714300px;}
.yf9{bottom:536.220300px;}
.yac{bottom:536.238300px;}
.y8b{bottom:536.322300px;}
.y59{bottom:538.914300px;}
.y225{bottom:541.225800px;}
.y15b{bottom:541.590300px;}
.y1fe{bottom:544.356600px;}
.y11{bottom:544.738950px;}
.y27a{bottom:545.343450px;}
.y193{bottom:546.474300px;}
.y24b{bottom:547.165800px;}
.y118{bottom:547.386300px;}
.y34{bottom:552.010350px;}
.y13b{bottom:552.672300px;}
.yd6{bottom:555.402300px;}
.y170{bottom:556.314300px;}
.yab{bottom:557.982300px;}
.yf8{bottom:558.054300px;}
.y8a{bottom:558.066300px;}
.y1b1{bottom:560.434800px;}
.y58{bottom:560.514300px;}
.y224{bottom:561.619800px;}
.y15a{bottom:563.046300px;}
.y1dc{bottom:563.247900px;}
.y1fd{bottom:564.453600px;}
.y279{bottom:566.199450px;}
.y24a{bottom:567.262800px;}
.y192{bottom:568.668300px;}
.y117{bottom:569.130300px;}
.y33{bottom:573.610350px;}
.y10{bottom:574.392900px;}
.yd5{bottom:577.308300px;}
.y16f{bottom:577.914300px;}
.yaa{bottom:579.726300px;}
.yf7{bottom:579.798300px;}
.y89{bottom:579.810300px;}
.y1b0{bottom:580.531800px;}
.y223{bottom:582.013800px;}
.y57{bottom:582.114300px;}
.y1db{bottom:584.252400px;}
.y13a{bottom:584.478300px;}
.y159{bottom:584.502300px;}
.y1fc{bottom:584.550600px;}
.y278{bottom:587.055450px;}
.y249{bottom:587.359800px;}
.y191{bottom:590.862300px;}
.y116{bottom:590.874300px;}
.y32{bottom:595.210350px;}
.yd4{bottom:599.208300px;}
.y1af{bottom:600.628800px;}
.ya9{bottom:601.470300px;}
.yf6{bottom:601.542300px;}
.y88{bottom:601.554300px;}
.y222{bottom:602.407800px;}
.y56{bottom:603.714300px;}
.y1fb{bottom:604.647600px;}
.y139{bottom:605.934300px;}
.y158{bottom:605.958300px;}
.y248{bottom:607.456800px;}
.y277{bottom:607.911450px;}
.y115{bottom:612.618300px;}
.y190{bottom:613.056300px;}
.y16e{bottom:614.664300px;}
.y1da{bottom:616.480800px;}
.y31{bottom:616.810350px;}
.yd3{bottom:621.060300px;}
.y221{bottom:622.801800px;}
.ya8{bottom:623.280300px;}
.yf5{bottom:623.286300px;}
.y87{bottom:623.298300px;}
.y55{bottom:625.314300px;}
.y157{bottom:627.366300px;}
.y138{bottom:627.390300px;}
.y247{bottom:627.553800px;}
.y1ae{bottom:628.612800px;}
.y276{bottom:628.767450px;}
.yf{bottom:630.039900px;}
.y1fa{bottom:633.251550px;}
.y114{bottom:634.362300px;}
.y18f{bottom:635.250300px;}
.y1d9{bottom:637.485300px;}
.y30{bottom:638.410350px;}
.yd2{bottom:642.966300px;}
.y220{bottom:643.195800px;}
.ya7{bottom:645.024300px;}
.yf4{bottom:645.030300px;}
.y86{bottom:645.042300px;}
.y54{bottom:646.914300px;}
.y246{bottom:647.650800px;}
.y156{bottom:648.822300px;}
.y137{bottom:648.846300px;}
.y275{bottom:649.623450px;}
.ye{bottom:651.192900px;}
.y113{bottom:656.106300px;}
.y1ad{bottom:656.596800px;}
.y2f{bottom:660.010350px;}
.y21f{bottom:663.589800px;}
.yd1{bottom:664.872300px;}
.ya6{bottom:666.768300px;}
.yf3{bottom:666.774300px;}
.y85{bottom:666.786300px;}
.y245{bottom:667.747800px;}
.y53{bottom:668.514300px;}
.y18e{bottom:668.550300px;}
.y1d8{bottom:669.713850px;}
.y155{bottom:670.278300px;}
.y136{bottom:670.302300px;}
.y274{bottom:670.479450px;}
.y112{bottom:677.850300px;}
.y2e{bottom:681.610350px;}
.y1f9{bottom:681.820500px;}
.y21e{bottom:683.983800px;}
.y1ac{bottom:684.580800px;}
.yd0{bottom:686.778300px;}
.y244{bottom:687.844800px;}
.ya5{bottom:688.512300px;}
.yf2{bottom:688.518300px;}
.y84{bottom:688.530300px;}
.y52{bottom:690.114300px;}
.y1d7{bottom:690.718350px;}
.y18d{bottom:690.744300px;}
.y273{bottom:691.335450px;}
.y154{bottom:691.734300px;}
.y135{bottom:691.758300px;}
.yd{bottom:695.289900px;}
.y111{bottom:699.594300px;}
.y1f8{bottom:701.769000px;}
.y2d{bottom:703.210350px;}
.y21d{bottom:704.377800px;}
.y243{bottom:707.941800px;}
.ycf{bottom:708.684300px;}
.ya4{bottom:710.256300px;}
.yf1{bottom:710.262300px;}
.y83{bottom:710.274300px;}
.y51{bottom:711.714300px;}
.y272{bottom:712.191450px;}
.y1ab{bottom:712.564800px;}
.y18c{bottom:712.938300px;}
.y153{bottom:713.190300px;}
.y134{bottom:713.196300px;}
.y110{bottom:721.338300px;}
.y1f7{bottom:721.717500px;}
.y1d6{bottom:722.946900px;}
.y21c{bottom:724.771800px;}
.y2c{bottom:724.810350px;}
.yc{bottom:727.241400px;}
.y242{bottom:728.038800px;}
.yce{bottom:730.590300px;}
.ya3{bottom:732.000300px;}
.yf0{bottom:732.006300px;}
.y82{bottom:732.018300px;}
.y271{bottom:733.047450px;}
.y50{bottom:733.314300px;}
.y152{bottom:734.646300px;}
.y133{bottom:734.652300px;}
.y18b{bottom:735.132300px;}
.y1aa{bottom:740.548800px;}
.y1f6{bottom:741.666000px;}
.y10f{bottom:743.082300px;}
.y1d5{bottom:743.951400px;}
.y21b{bottom:745.165800px;}
.y2b{bottom:746.410350px;}
.y241{bottom:748.135800px;}
.ycd{bottom:752.496300px;}
.ya2{bottom:753.744300px;}
.yef{bottom:753.750300px;}
.y81{bottom:753.762300px;}
.y270{bottom:753.903450px;}
.y4f{bottom:754.914300px;}
.y151{bottom:756.102300px;}
.y132{bottom:756.108300px;}
.y18a{bottom:757.326300px;}
.yb{bottom:759.192900px;}
.y1a9{bottom:760.645800px;}
.y1f5{bottom:761.614500px;}
.y21a{bottom:765.559800px;}
.y2a{bottom:768.010350px;}
.y240{bottom:768.232800px;}
.ycc{bottom:774.402300px;}
.y26f{bottom:774.759450px;}
.y10e{bottom:775.482300px;}
.ya1{bottom:775.488300px;}
.yee{bottom:775.494300px;}
.y80{bottom:775.506300px;}
.y1d4{bottom:776.179800px;}
.y4e{bottom:776.514300px;}
.y131{bottom:777.522300px;}
.y150{bottom:777.558300px;}
.y189{bottom:779.520300px;}
.y1f4{bottom:781.563000px;}
.y219{bottom:785.953800px;}
.y23f{bottom:788.329800px;}
.y29{bottom:789.610350px;}
.y1a8{bottom:794.814300px;}
.ycb{bottom:796.308300px;}
.y1d3{bottom:797.184300px;}
.y10d{bottom:797.226300px;}
.ya0{bottom:797.232300px;}
.yed{bottom:797.238300px;}
.y7f{bottom:797.250300px;}
.y4d{bottom:798.114300px;}
.y130{bottom:798.978300px;}
.y14f{bottom:799.008300px;}
.y1f3{bottom:801.511500px;}
.y188{bottom:801.720300px;}
.y218{bottom:806.347800px;}
.y23e{bottom:808.426800px;}
.y28{bottom:811.210350px;}
.ya{bottom:815.804400px;}
.yca{bottom:818.190300px;}
.y26e{bottom:818.259450px;}
.y10c{bottom:818.970300px;}
.y9f{bottom:818.976300px;}
.yec{bottom:818.982300px;}
.y7e{bottom:818.994300px;}
.y4c{bottom:819.714300px;}
.y12f{bottom:820.434300px;}
.y1f2{bottom:821.460000px;}
.y187{bottom:823.932300px;}
.y217{bottom:826.741800px;}
.y23d{bottom:828.523800px;}
.y1d2{bottom:829.354350px;}
.y1ce{bottom:829.370850px;}
.y1ca{bottom:829.387350px;}
.y1c6{bottom:829.403850px;}
.y27{bottom:832.810350px;}
.y9{bottom:835.154400px;}
.y1a7{bottom:838.020300px;}
.yc9{bottom:840.096300px;}
.y9e{bottom:840.720300px;}
.yeb{bottom:840.726300px;}
.y7d{bottom:840.738300px;}
.y4b{bottom:841.314300px;}
.y1f1{bottom:841.408500px;}
.y12e{bottom:841.890300px;}
.y186{bottom:846.126300px;}
.y216{bottom:847.135800px;}
.y23c{bottom:848.620800px;}
.y1d1{bottom:850.358850px;}
.y1cd{bottom:850.375350px;}
.y1c9{bottom:850.391850px;}
.y1c5{bottom:850.408350px;}
.y26{bottom:854.410350px;}
.y8{bottom:854.504400px;}
.y1a6{bottom:860.520300px;}
.y1f0{bottom:861.357000px;}
.y26d{bottom:861.771450px;}
.yc8{bottom:862.002300px;}
.yea{bottom:862.470300px;}
.y7c{bottom:862.482300px;}
.y4a{bottom:862.914300px;}
.y12d{bottom:863.346300px;}
.y215{bottom:867.529800px;}
.y185{bottom:868.320300px;}
.y23b{bottom:868.717800px;}
.y1d0{bottom:871.363350px;}
.y1cc{bottom:871.379850px;}
.y1c8{bottom:871.396350px;}
.y1c4{bottom:871.412850px;}
.y7{bottom:873.854400px;}
.y6{bottom:873.856800px;}
.y25{bottom:876.010350px;}
.y1ef{bottom:881.307000px;}
.y1a5{bottom:883.020300px;}
.yc7{bottom:883.908300px;}
.y7b{bottom:884.226300px;}
.y26c{bottom:884.415450px;}
.y49{bottom:884.514300px;}
.y12c{bottom:884.802300px;}
.y214{bottom:887.923800px;}
.y23a{bottom:888.814800px;}
.y184{bottom:890.514300px;}
.y1cf{bottom:892.367850px;}
.y1cb{bottom:892.384350px;}
.y1c7{bottom:892.400850px;}
.y1c3{bottom:892.417350px;}
.y24{bottom:897.610350px;}
.y1ee{bottom:901.255500px;}
.y1a4{bottom:905.520300px;}
.yc6{bottom:905.808300px;}
.y7a{bottom:905.970300px;}
.y48{bottom:906.114300px;}
.y12b{bottom:906.258300px;}
.y26b{bottom:907.059450px;}
.y213{bottom:908.317800px;}
.y239{bottom:908.911800px;}
.y5{bottom:909.361800px;}
.y23{bottom:927.714300px;}
.y4{bottom:928.711800px;}
.y1ed{bottom:929.709450px;}
.hb{height:30.568359px;}
.ha{height:35.663086px;}
.h4{height:39.990234px;}
.h3{height:40.757812px;}
.h2{height:43.989258px;}
.h10{height:47.988281px;}
.hc{height:48.399902px;}
.h6{height:50.947266px;}
.h5{height:56.041992px;}
.h9{height:61.136719px;}
.h11{height:61.160719px;}
.h16{height:61.208719px;}
.h12{height:61.232719px;}
.h19{height:61.256719px;}
.h14{height:61.280719px;}
.h15{height:61.304719px;}
.h1a{height:61.328719px;}
.h18{height:61.376719px;}
.h1b{height:61.424719px;}
.h17{height:61.496719px;}
.he{height:63.058031px;}
.hd{height:63.250031px;}
.hf{height:63.322031px;}
.h13{height:63.538031px;}
.h1c{height:67.782809px;}
.h8{height:67.983398px;}
.h7{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:76.535400px;}
.x23{left:84.822900px;}
.x6{left:97.811400px;}
.x11{left:106.079400px;}
.x14{left:111.285300px;}
.x9{left:119.071350px;}
.x13{left:124.023300px;}
.xa{left:140.314950px;}
.x5{left:142.216050px;}
.xb{left:145.514400px;}
.x8{left:150.670350px;}
.xc{left:160.182900px;}
.x29{left:177.163650px;}
.x7{left:239.097450px;}
.x2a{left:260.357400px;}
.x15{left:273.348300px;}
.x16{left:275.146800px;}
.x17{left:279.172800px;}
.xd{left:301.026900px;}
.x1{left:316.089450px;}
.xe{left:317.411400px;}
.x2{left:358.366500px;}
.x24{left:381.740400px;}
.x18{left:386.208300px;}
.x1a{left:389.805300px;}
.x1b{left:393.715800px;}
.x19{left:396.157800px;}
.x12{left:420.536400px;}
.x25{left:462.408900px;}
.x1c{left:463.494300px;}
.x1d{left:468.922800px;}
.x1e{left:473.476800px;}
.x1f{left:477.634800px;}
.xf{left:494.769900px;}
.x10{left:501.749400px;}
.x28{left:531.240300px;}
.x27{left:540.203550px;}
.x26{left:549.578400px;}
.x20{left:552.066300px;}
.x22{left:562.048800px;}
.x21{left:565.084800px;}
.x3{left:602.539350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v4{vertical-align:-12.714667pt;}
.v5{vertical-align:-11.738667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.ls6c{letter-spacing:-5.866667pt;}
.ls6f{letter-spacing:-5.573333pt;}
.ls3b{letter-spacing:-3.776000pt;}
.ls3c{letter-spacing:-3.200000pt;}
.ls33{letter-spacing:-2.496000pt;}
.ls51{letter-spacing:-1.994667pt;}
.ls43{letter-spacing:-1.856000pt;}
.ls26{letter-spacing:-1.600000pt;}
.ls27{letter-spacing:-1.344000pt;}
.ls53{letter-spacing:-1.114667pt;}
.ls54{letter-spacing:-1.056000pt;}
.ls24{letter-spacing:-1.024000pt;}
.ls66{letter-spacing:-0.938667pt;}
.ls36{letter-spacing:-0.896000pt;}
.ls67{letter-spacing:-0.880000pt;}
.ls37{letter-spacing:-0.832000pt;}
.ls70{letter-spacing:-0.821333pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls56{letter-spacing:-0.762667pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls55{letter-spacing:-0.586667pt;}
.ls25{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.528000pt;}
.ls21{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls45{letter-spacing:-0.293333pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls5b{letter-spacing:-0.234667pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls59{letter-spacing:-0.176000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls57{letter-spacing:-0.117333pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls52{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.010133pt;}
.ls2f{letter-spacing:0.010667pt;}
.ls2d{letter-spacing:0.049067pt;}
.ls5f{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.117333pt;}
.ls18{letter-spacing:0.128000pt;}
.ls62{letter-spacing:0.176000pt;}
.ls4a{letter-spacing:0.185067pt;}
.ls11{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.202133pt;}
.lsd{letter-spacing:0.234667pt;}
.ls28{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.279467pt;}
.ls49{letter-spacing:0.293333pt;}
.lsf{letter-spacing:0.320000pt;}
.ls72{letter-spacing:0.352000pt;}
.lse{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.394133pt;}
.ls6{letter-spacing:0.410667pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.469333pt;}
.ls3a{letter-spacing:0.485867pt;}
.ls3f{letter-spacing:0.492800pt;}
.ls40{letter-spacing:0.510400pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.528000pt;}
.ls29{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls50{letter-spacing:0.645333pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls6b{letter-spacing:0.762667pt;}
.ls31{letter-spacing:0.768000pt;}
.ls60{letter-spacing:0.821333pt;}
.ls1f{letter-spacing:0.832000pt;}
.ls4e{letter-spacing:0.880000pt;}
.ls47{letter-spacing:0.896000pt;}
.ls65{letter-spacing:0.938667pt;}
.ls42{letter-spacing:1.088000pt;}
.ls3e{letter-spacing:1.216000pt;}
.ls6e{letter-spacing:2.346667pt;}
.ls2a{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls6d{letter-spacing:3.989333pt;}
.ls44{letter-spacing:4.560000pt;}
.ls46{letter-spacing:4.800000pt;}
.ls34{letter-spacing:5.066667pt;}
.ls48{letter-spacing:5.184000pt;}
.ls4{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls1{letter-spacing:5.881481pt;}
.ls3d{letter-spacing:5.888000pt;}
.ls5{letter-spacing:6.400000pt;}
.ls2b{letter-spacing:6.528000pt;}
.ls2e{letter-spacing:6.656000pt;}
.ls38{letter-spacing:8.512000pt;}
.ls4c{letter-spacing:8.976000pt;}
.ls19{letter-spacing:9.024000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls2c{letter-spacing:9.088000pt;}
.ls69{letter-spacing:9.152000pt;}
.ls68{letter-spacing:9.210667pt;}
.ls5d{letter-spacing:9.269333pt;}
.ls64{letter-spacing:9.445333pt;}
.ls5a{letter-spacing:9.504000pt;}
.ls61{letter-spacing:9.562667pt;}
.ls4d{letter-spacing:9.621333pt;}
.ls4b{letter-spacing:9.680000pt;}
.ls32{letter-spacing:9.728000pt;}
.ls4f{letter-spacing:9.738667pt;}
.ls5e{letter-spacing:9.797333pt;}
.ls63{letter-spacing:10.032000pt;}
.ls5c{letter-spacing:10.266667pt;}
.ls6a{letter-spacing:10.560000pt;}
.ls58{letter-spacing:10.618667pt;}
.ls71{letter-spacing:17.600000pt;}
.ws96{word-spacing:-34.085333pt;}
.ws69{word-spacing:-26.165333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws64{word-spacing:-20.320000pt;}
.ws94{word-spacing:-18.832000pt;}
.ws44{word-spacing:-18.752000pt;}
.ws43{word-spacing:-18.688000pt;}
.ws4e{word-spacing:-18.624000pt;}
.ws46{word-spacing:-18.560000pt;}
.ws42{word-spacing:-18.496000pt;}
.ws3c{word-spacing:-18.304000pt;}
.ws36{word-spacing:-18.048000pt;}
.ws35{word-spacing:-17.984000pt;}
.ws45{word-spacing:-17.664000pt;}
.ws9b{word-spacing:-17.600000pt;}
.ws4f{word-spacing:-16.896000pt;}
.ws65{word-spacing:-16.778667pt;}
.ws61{word-spacing:-16.640000pt;}
.ws38{word-spacing:-16.512000pt;}
.ws53{word-spacing:-16.485333pt;}
.ws3e{word-spacing:-16.448000pt;}
.ws60{word-spacing:-16.384000pt;}
.ws47{word-spacing:-16.320000pt;}
.ws68{word-spacing:-16.309333pt;}
.ws3f{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws66{word-spacing:-15.898667pt;}
.ws37{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.680000pt;}
.ws93{word-spacing:-15.664000pt;}
.ws4c{word-spacing:-15.616000pt;}
.ws4d{word-spacing:-15.488000pt;}
.ws5c{word-spacing:-15.424000pt;}
.ws3d{word-spacing:-15.360000pt;}
.ws5f{word-spacing:-15.296000pt;}
.ws97{word-spacing:-15.194667pt;}
.ws0{word-spacing:-14.986667pt;}
.ws98{word-spacing:-14.842667pt;}
.ws92{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.490667pt;}
.ws7c{word-spacing:-14.373333pt;}
.ws67{word-spacing:-13.786667pt;}
.ws1d{word-spacing:-12.514667pt;}
.ws2f{word-spacing:-10.790400pt;}
.ws76{word-spacing:-10.618667pt;}
.ws90{word-spacing:-10.560000pt;}
.ws7e{word-spacing:-10.266667pt;}
.ws7f{word-spacing:-10.032000pt;}
.ws84{word-spacing:-9.797333pt;}
.ws7a{word-spacing:-9.738667pt;}
.ws6e{word-spacing:-9.680000pt;}
.ws74{word-spacing:-9.621333pt;}
.ws8a{word-spacing:-9.562667pt;}
.ws78{word-spacing:-9.504000pt;}
.ws82{word-spacing:-9.445333pt;}
.ws80{word-spacing:-9.269333pt;}
.ws8d{word-spacing:-9.210667pt;}
.ws8e{word-spacing:-9.152000pt;}
.ws6{word-spacing:-9.066667pt;}
.ws72{word-spacing:-8.976000pt;}
.ws8c{word-spacing:-8.624000pt;}
.ws25{word-spacing:-6.400000pt;}
.ws5{word-spacing:-5.866667pt;}
.ws8{word-spacing:-5.333333pt;}
.ws63{word-spacing:-5.184000pt;}
.ws3b{word-spacing:-5.066667pt;}
.ws5d{word-spacing:-4.800000pt;}
.ws5a{word-spacing:-4.560000pt;}
.ws3{word-spacing:-3.733333pt;}
.ws33{word-spacing:-3.200000pt;}
.ws4a{word-spacing:-1.216000pt;}
.ws52{word-spacing:-1.088000pt;}
.ws87{word-spacing:-0.938667pt;}
.ws62{word-spacing:-0.896000pt;}
.ws77{word-spacing:-0.880000pt;}
.ws2e{word-spacing:-0.832000pt;}
.ws86{word-spacing:-0.821333pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws91{word-spacing:-0.762667pt;}
.ws20{word-spacing:-0.704000pt;}
.ws7b{word-spacing:-0.645333pt;}
.ws21{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.528000pt;}
.ws24{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.410667pt;}
.ws19{word-spacing:-0.384000pt;}
.ws9a{word-spacing:-0.352000pt;}
.ws31{word-spacing:-0.320000pt;}
.ws6b{word-spacing:-0.293333pt;}
.ws30{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.234667pt;}
.ws11{word-spacing:-0.192000pt;}
.ws7d{word-spacing:-0.176000pt;}
.ws1e{word-spacing:-0.128000pt;}
.wsb{word-spacing:-0.117333pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws85{word-spacing:-0.058667pt;}
.ws1c{word-spacing:-0.038400pt;}
.ws4{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.058667pt;}
.ws1f{word-spacing:0.064000pt;}
.ws75{word-spacing:0.117333pt;}
.ws14{word-spacing:0.128000pt;}
.ws8b{word-spacing:0.176000pt;}
.ws26{word-spacing:0.192000pt;}
.ws79{word-spacing:0.234667pt;}
.ws17{word-spacing:0.256000pt;}
.ws5b{word-spacing:0.293333pt;}
.ws13{word-spacing:0.320000pt;}
.ws15{word-spacing:0.384000pt;}
.ws12{word-spacing:0.448000pt;}
.ws81{word-spacing:0.469333pt;}
.ws27{word-spacing:0.512000pt;}
.wsc{word-spacing:0.528000pt;}
.ws2b{word-spacing:0.576000pt;}
.ws8f{word-spacing:0.586667pt;}
.ws18{word-spacing:0.640000pt;}
.ws29{word-spacing:0.704000pt;}
.ws73{word-spacing:0.762667pt;}
.ws28{word-spacing:0.768000pt;}
.ws41{word-spacing:0.832000pt;}
.ws89{word-spacing:0.880000pt;}
.ws40{word-spacing:0.896000pt;}
.ws88{word-spacing:0.938667pt;}
.ws2a{word-spacing:1.024000pt;}
.ws71{word-spacing:1.056000pt;}
.ws70{word-spacing:1.114667pt;}
.ws2d{word-spacing:1.344000pt;}
.ws2c{word-spacing:1.600000pt;}
.ws51{word-spacing:1.856000pt;}
.ws6a{word-spacing:1.994667pt;}
.ws83{word-spacing:2.112000pt;}
.ws16{word-spacing:2.240000pt;}
.ws39{word-spacing:2.496000pt;}
.ws22{word-spacing:2.752000pt;}
.ws49{word-spacing:3.200000pt;}
.ws5e{word-spacing:3.637333pt;}
.ws48{word-spacing:3.776000pt;}
.ws6d{word-spacing:3.930667pt;}
.ws4b{word-spacing:3.968000pt;}
.ws34{word-spacing:4.480000pt;}
.ws99{word-spacing:5.280000pt;}
.ws6c{word-spacing:5.397333pt;}
.ws95{word-spacing:5.573333pt;}
.ws7{word-spacing:5.621333pt;}
.ws50{word-spacing:6.720000pt;}
.ws57{word-spacing:262.650667pt;}
.ws54{word-spacing:316.917333pt;}
.ws55{word-spacing:372.592000pt;}
.ws56{word-spacing:376.862933pt;}
.ws59{word-spacing:380.394667pt;}
.ws58{word-spacing:404.682667pt;}
._12{margin-left:-17.991230pt;}
._16{margin-left:-13.315733pt;}
._14{margin-left:-12.325393pt;}
._15{margin-left:-11.093333pt;}
._a{margin-left:-9.416000pt;}
._10{margin-left:-8.403200pt;}
._7{margin-left:-7.466667pt;}
._f{margin-left:-6.566400pt;}
._6{margin-left:-5.349333pt;}
._5{margin-left:-3.807467pt;}
._1{margin-left:-2.415467pt;}
._2{margin-left:-1.227437pt;}
._3{width:1.301333pt;}
._8{width:2.762667pt;}
._0{width:3.733333pt;}
._d{width:5.365333pt;}
._e{width:6.265600pt;}
._c{width:7.834667pt;}
._b{width:9.028800pt;}
._4{width:10.008533pt;}
._13{width:11.751467pt;}
._17{width:13.133570pt;}
._20{width:14.336533pt;}
._9{width:15.681067pt;}
._1e{width:18.093867pt;}
._1f{width:20.132800pt;}
._11{width:50.598400pt;}
._1b{width:409.493333pt;}
._1a{width:410.784000pt;}
._19{width:412.074667pt;}
._18{width:414.886400pt;}
._1d{width:451.557333pt;}
._1c{width:452.848000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:72.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:54.170533pt;}
.y1{bottom:66.970533pt;}
.y3{bottom:67.857200pt;}
.y6b{bottom:124.720400pt;}
.yc5{bottom:124.721733pt;}
.y1ec{bottom:125.395600pt;}
.y47{bottom:125.875867pt;}
.y22{bottom:126.362800pt;}
.y212{bottom:126.856533pt;}
.y1c2{bottom:127.038400pt;}
.y25f{bottom:128.297600pt;}
.y79{bottom:128.542533pt;}
.y10b{bottom:128.682933pt;}
.y9d{bottom:128.826933pt;}
.y16d{bottom:128.997600pt;}
.y14e{bottom:129.029600pt;}
.y12a{bottom:129.072267pt;}
.ye9{bottom:129.657733pt;}
.y183{bottom:129.701600pt;}
.y238{bottom:130.409600pt;}
.ye8{bottom:139.387067pt;}
.y6a{bottom:139.388400pt;}
.yc4{bottom:139.389733pt;}
.y1eb{bottom:144.595600pt;}
.y211{bottom:144.720533pt;}
.y46{bottom:145.075867pt;}
.y21{bottom:145.165467pt;}
.y25e{bottom:146.425600pt;}
.y1c1{bottom:147.438400pt;}
.y78{bottom:147.742533pt;}
.y10a{bottom:148.010933pt;}
.y14d{bottom:148.048267pt;}
.y16c{bottom:148.069600pt;}
.y9c{bottom:148.154933pt;}
.y129{bottom:148.400267pt;}
.y182{bottom:148.901600pt;}
.y237{bottom:152.673600pt;}
.ye7{bottom:154.055067pt;}
.y69{bottom:154.056400pt;}
.yc3{bottom:158.991067pt;}
.y210{bottom:162.584533pt;}
.y1ea{bottom:163.795600pt;}
.y20{bottom:163.968133pt;}
.y45{bottom:164.275867pt;}
.y25d{bottom:164.553600pt;}
.y77{bottom:166.942533pt;}
.y14c{bottom:167.120267pt;}
.y16b{bottom:167.141600pt;}
.y109{bottom:167.338933pt;}
.y9b{bottom:167.482933pt;}
.y128{bottom:167.728267pt;}
.y1c0{bottom:167.838400pt;}
.y181{bottom:168.101600pt;}
.ye6{bottom:168.723067pt;}
.y1a3{bottom:169.989600pt;}
.y236{bottom:170.933600pt;}
.y289{bottom:172.941733pt;}
.y68{bottom:173.657733pt;}
.y20f{bottom:180.448533pt;}
.y25c{bottom:182.681600pt;}
.y1f{bottom:182.770800pt;}
.y1e9{bottom:182.995600pt;}
.yba{bottom:183.389733pt;}
.y44{bottom:183.475867pt;}
.y76{bottom:186.142533pt;}
.y14b{bottom:186.192267pt;}
.y16a{bottom:186.213600pt;}
.y108{bottom:186.666933pt;}
.y9a{bottom:186.810933pt;}
.y127{bottom:187.056267pt;}
.y180{bottom:187.301600pt;}
.y1bf{bottom:188.238400pt;}
.ye5{bottom:188.324400pt;}
.y235{bottom:189.193600pt;}
.y1a2{bottom:189.717600pt;}
.y288{bottom:189.875067pt;}
.ye4{bottom:198.056400pt;}
.y20e{bottom:198.312533pt;}
.y25b{bottom:200.545600pt;}
.yc2{bottom:201.075867pt;}
.y1e{bottom:201.573467pt;}
.y1e8{bottom:202.195600pt;}
.y43{bottom:202.675867pt;}
.yb9{bottom:202.991067pt;}
.y14a{bottom:205.264267pt;}
.y169{bottom:205.285600pt;}
.y107{bottom:205.994933pt;}
.y99{bottom:206.138933pt;}
.y126{bottom:206.384267pt;}
.y17f{bottom:206.501600pt;}
.y287{bottom:206.808400pt;}
.y234{bottom:207.453600pt;}
.y1be{bottom:208.638400pt;}
.y1a1{bottom:209.445600pt;}
.y28f{bottom:210.008400pt;}
.y67{bottom:210.234933pt;}
.y75{bottom:212.901600pt;}
.y20d{bottom:215.912533pt;}
.ye3{bottom:217.657733pt;}
.y25a{bottom:218.409600pt;}
.yc1{bottom:220.275867pt;}
.y1d{bottom:220.376133pt;}
.y1e7{bottom:221.395600pt;}
.y42{bottom:221.875867pt;}
.y286{bottom:223.741733pt;}
.y149{bottom:224.336267pt;}
.y168{bottom:224.357600pt;}
.y106{bottom:225.322933pt;}
.y98{bottom:225.466933pt;}
.y17e{bottom:225.701600pt;}
.y125{bottom:225.712267pt;}
.y233{bottom:225.713600pt;}
.y28e{bottom:226.941733pt;}
.y1bd{bottom:229.038400pt;}
.y1a0{bottom:229.173600pt;}
.y66{bottom:229.434933pt;}
.y20c{bottom:233.776533pt;}
.y259{bottom:236.273600pt;}
.y1c{bottom:239.178800pt;}
.yc0{bottom:239.475867pt;}
.y26a{bottom:240.189600pt;}
.y41{bottom:241.075867pt;}
.y148{bottom:243.408267pt;}
.y167{bottom:243.429600pt;}
.y28d{bottom:243.875067pt;}
.y232{bottom:243.973600pt;}
.y105{bottom:244.650933pt;}
.yb8{bottom:244.720267pt;}
.y97{bottom:244.794933pt;}
.y17d{bottom:244.901600pt;}
.y65{bottom:248.634933pt;}
.y19f{bottom:248.938933pt;}
.y1bc{bottom:249.438400pt;}
.y20b{bottom:251.640533pt;}
.y258{bottom:254.137600pt;}
.y124{bottom:254.512267pt;}
.y269{bottom:255.921600pt;}
.y1b{bottom:257.981467pt;}
.ybf{bottom:258.675867pt;}
.ye2{bottom:260.058933pt;}
.y40{bottom:260.275867pt;}
.y285{bottom:260.803067pt;}
.y28c{bottom:260.808400pt;}
.y231{bottom:262.233600pt;}
.y147{bottom:262.480267pt;}
.y166{bottom:262.485600pt;}
.y104{bottom:263.978933pt;}
.yb7{bottom:264.048267pt;}
.y1e6{bottom:264.073733pt;}
.y17c{bottom:264.101600pt;}
.y96{bottom:264.122933pt;}
.y64{bottom:267.834933pt;}
.y19e{bottom:268.666933pt;}
.y20a{bottom:269.504533pt;}
.y1bb{bottom:269.838400pt;}
.y74{bottom:270.282933pt;}
.y257{bottom:272.001600pt;}
.y123{bottom:273.840267pt;}
.y1a{bottom:276.784133pt;}
.ybe{bottom:277.875867pt;}
.y284{bottom:279.341733pt;}
.y3f{bottom:279.475867pt;}
.ye1{bottom:279.530933pt;}
.y230{bottom:280.493600pt;}
.y146{bottom:281.552267pt;}
.y165{bottom:281.557600pt;}
.y268{bottom:281.681600pt;}
.y1e5{bottom:282.744400pt;}
.y17b{bottom:283.301600pt;}
.y103{bottom:283.306933pt;}
.yb6{bottom:283.376267pt;}
.y95{bottom:283.450933pt;}
.y63{bottom:287.034933pt;}
.y209{bottom:287.368533pt;}
.y19d{bottom:288.394933pt;}
.y73{bottom:289.210933pt;}
.y256{bottom:289.865600pt;}
.y1ba{bottom:290.238400pt;}
.y122{bottom:293.285600pt;}
.y19{bottom:295.586800pt;}
.ybd{bottom:297.075867pt;}
.y28b{bottom:297.869733pt;}
.y3e{bottom:298.675867pt;}
.y22f{bottom:298.753600pt;}
.ye0{bottom:299.002933pt;}
.y267{bottom:299.809600pt;}
.y145{bottom:300.624267pt;}
.y164{bottom:300.629600pt;}
.y17a{bottom:302.501600pt;}
.y102{bottom:302.688267pt;}
.yb5{bottom:302.704267pt;}
.y94{bottom:302.778933pt;}
.y208{bottom:305.232533pt;}
.y62{bottom:306.234933pt;}
.y255{bottom:307.729600pt;}
.y19c{bottom:308.122933pt;}
.y72{bottom:308.138933pt;}
.y1b9{bottom:310.638400pt;}
.y1e4{bottom:311.392000pt;}
.y121{bottom:312.613600pt;}
.ybc{bottom:316.275867pt;}
.y28a{bottom:316.408400pt;}
.y22e{bottom:317.013600pt;}
.y3d{bottom:317.875867pt;}
.y283{bottom:317.901733pt;}
.y266{bottom:317.937600pt;}
.ydf{bottom:318.474933pt;}
.y144{bottom:319.696267pt;}
.y179{bottom:321.701600pt;}
.y18{bottom:321.945867pt;}
.y101{bottom:322.016267pt;}
.yb4{bottom:322.032267pt;}
.y93{bottom:322.106933pt;}
.y207{bottom:323.096533pt;}
.y61{bottom:325.434933pt;}
.y254{bottom:325.593600pt;}
.y71{bottom:327.066933pt;}
.y19b{bottom:327.850933pt;}
.y163{bottom:328.837600pt;}
.y1e3{bottom:330.062667pt;}
.y1b8{bottom:331.038400pt;}
.y120{bottom:331.941600pt;}
.y22d{bottom:335.273600pt;}
.y265{bottom:336.065600pt;}
.y282{bottom:336.440400pt;}
.y3c{bottom:337.075867pt;}
.yde{bottom:337.946933pt;}
.y143{bottom:338.688267pt;}
.y178{bottom:340.901600pt;}
.y206{bottom:340.960533pt;}
.y100{bottom:341.344267pt;}
.yb3{bottom:341.360267pt;}
.y92{bottom:341.434933pt;}
.y253{bottom:343.457600pt;}
.y60{bottom:344.634933pt;}
.y70{bottom:345.994933pt;}
.y19a{bottom:347.578933pt;}
.y162{bottom:347.909600pt;}
.ybb{bottom:348.809200pt;}
.y11f{bottom:351.269600pt;}
.y1b7{bottom:351.438400pt;}
.y22c{bottom:353.533600pt;}
.y264{bottom:354.193600pt;}
.y281{bottom:354.979067pt;}
.y3b{bottom:356.275867pt;}
.ydd{bottom:357.418933pt;}
.y142{bottom:357.760267pt;}
.y1e2{bottom:358.710133pt;}
.y205{bottom:358.824533pt;}
.y177{bottom:360.101600pt;}
.yff{bottom:360.672267pt;}
.yb2{bottom:360.688267pt;}
.y91{bottom:360.762933pt;}
.y252{bottom:361.321600pt;}
.y5f{bottom:363.834933pt;}
.y6f{bottom:364.922933pt;}
.y161{bottom:366.981600pt;}
.y199{bottom:367.306933pt;}
.y11e{bottom:370.597600pt;}
.y17{bottom:371.396400pt;}
.y22b{bottom:371.793600pt;}
.y1b6{bottom:371.838400pt;}
.y263{bottom:372.321600pt;}
.y280{bottom:373.517733pt;}
.y3a{bottom:375.475867pt;}
.y204{bottom:376.688533pt;}
.y141{bottom:376.832267pt;}
.ydc{bottom:376.890933pt;}
.y1e1{bottom:377.380800pt;}
.y251{bottom:379.185600pt;}
.y176{bottom:379.301600pt;}
.yfe{bottom:380.000267pt;}
.yb1{bottom:380.016267pt;}
.y90{bottom:380.090933pt;}
.y5e{bottom:383.034933pt;}
.y6e{bottom:383.850933pt;}
.y160{bottom:386.053600pt;}
.y198{bottom:387.050933pt;}
.y11d{bottom:389.925600pt;}
.y22a{bottom:390.053600pt;}
.y16{bottom:390.199067pt;}
.y262{bottom:390.449600pt;}
.y27f{bottom:392.056400pt;}
.y1b5{bottom:392.238400pt;}
.y203{bottom:394.552533pt;}
.y39{bottom:394.675867pt;}
.y140{bottom:395.904267pt;}
.ydb{bottom:396.362933pt;}
.y250{bottom:397.049600pt;}
.y175{bottom:398.501600pt;}
.yfd{bottom:399.328267pt;}
.yb0{bottom:399.344267pt;}
.y8f{bottom:399.418933pt;}
.y5d{bottom:402.234933pt;}
.y6d{bottom:402.778933pt;}
.y15f{bottom:405.125600pt;}
.y1e0{bottom:406.028400pt;}
.y197{bottom:406.778933pt;}
.y229{bottom:408.313600pt;}
.y261{bottom:408.577600pt;}
.y15{bottom:409.001733pt;}
.y11c{bottom:409.253600pt;}
.y27e{bottom:410.595067pt;}
.y202{bottom:412.416533pt;}
.y1b4{bottom:412.638400pt;}
.y38{bottom:413.875867pt;}
.y24f{bottom:414.913600pt;}
.y13f{bottom:414.976267pt;}
.yda{bottom:415.802933pt;}
.y174{bottom:417.701600pt;}
.yfc{bottom:418.656267pt;}
.yaf{bottom:418.672267pt;}
.y8e{bottom:418.746933pt;}
.y5c{bottom:421.434933pt;}
.y6c{bottom:421.706933pt;}
.y15e{bottom:424.197600pt;}
.y1df{bottom:424.699067pt;}
.y196{bottom:426.506933pt;}
.y228{bottom:426.573600pt;}
.y260{bottom:426.705600pt;}
.y14{bottom:427.804400pt;}
.y11b{bottom:428.581600pt;}
.y27d{bottom:429.133733pt;}
.y201{bottom:430.280533pt;}
.y24e{bottom:432.777600pt;}
.y37{bottom:433.075867pt;}
.y13e{bottom:434.048267pt;}
.yd9{bottom:435.274933pt;}
.y173{bottom:436.901600pt;}
.yfb{bottom:437.984267pt;}
.yae{bottom:438.000267pt;}
.y8d{bottom:438.074933pt;}
.y5b{bottom:440.634933pt;}
.y15d{bottom:443.269600pt;}
.y227{bottom:444.833600pt;}
.y195{bottom:446.298933pt;}
.y13{bottom:446.607067pt;}
.y27c{bottom:447.672400pt;}
.y11a{bottom:447.909600pt;}
.y200{bottom:448.144533pt;}
.y24d{bottom:450.641600pt;}
.y36{bottom:452.275867pt;}
.y13d{bottom:453.120267pt;}
.y1de{bottom:453.346533pt;}
.yd8{bottom:454.746933pt;}
.y1b3{bottom:455.425600pt;}
.y172{bottom:456.101600pt;}
.yfa{bottom:457.312267pt;}
.yad{bottom:457.328267pt;}
.y8c{bottom:457.402933pt;}
.y5a{bottom:459.834933pt;}
.y15c{bottom:462.341600pt;}
.y226{bottom:462.961600pt;}
.y12{bottom:465.409733pt;}
.y1ff{bottom:466.008533pt;}
.y194{bottom:466.026933pt;}
.y27b{bottom:466.211067pt;}
.y119{bottom:467.237600pt;}
.y24c{bottom:468.505600pt;}
.y35{bottom:471.475867pt;}
.y1dd{bottom:472.017200pt;}
.y13c{bottom:472.192267pt;}
.y1b2{bottom:473.289600pt;}
.yd7{bottom:474.218933pt;}
.y171{bottom:475.301600pt;}
.yf9{bottom:476.640267pt;}
.yac{bottom:476.656267pt;}
.y8b{bottom:476.730933pt;}
.y59{bottom:479.034933pt;}
.y225{bottom:481.089600pt;}
.y15b{bottom:481.413600pt;}
.y1fe{bottom:483.872533pt;}
.y11{bottom:484.212400pt;}
.y27a{bottom:484.749733pt;}
.y193{bottom:485.754933pt;}
.y24b{bottom:486.369600pt;}
.y118{bottom:486.565600pt;}
.y34{bottom:490.675867pt;}
.y13b{bottom:491.264267pt;}
.yd6{bottom:493.690933pt;}
.y170{bottom:494.501600pt;}
.yab{bottom:495.984267pt;}
.yf8{bottom:496.048267pt;}
.y8a{bottom:496.058933pt;}
.y1b1{bottom:498.164267pt;}
.y58{bottom:498.234933pt;}
.y224{bottom:499.217600pt;}
.y15a{bottom:500.485600pt;}
.y1dc{bottom:500.664800pt;}
.y1fd{bottom:501.736533pt;}
.y279{bottom:503.288400pt;}
.y24a{bottom:504.233600pt;}
.y192{bottom:505.482933pt;}
.y117{bottom:505.893600pt;}
.y33{bottom:509.875867pt;}
.y10{bottom:510.571467pt;}
.yd5{bottom:513.162933pt;}
.y16f{bottom:513.701600pt;}
.yaa{bottom:515.312267pt;}
.yf7{bottom:515.376267pt;}
.y89{bottom:515.386933pt;}
.y1b0{bottom:516.028267pt;}
.y223{bottom:517.345600pt;}
.y57{bottom:517.434933pt;}
.y1db{bottom:519.335467pt;}
.y13a{bottom:519.536267pt;}
.y159{bottom:519.557600pt;}
.y1fc{bottom:519.600533pt;}
.y278{bottom:521.827067pt;}
.y249{bottom:522.097600pt;}
.y191{bottom:525.210933pt;}
.y116{bottom:525.221600pt;}
.y32{bottom:529.075867pt;}
.yd4{bottom:532.629600pt;}
.y1af{bottom:533.892267pt;}
.ya9{bottom:534.640267pt;}
.yf6{bottom:534.704267pt;}
.y88{bottom:534.714933pt;}
.y222{bottom:535.473600pt;}
.y56{bottom:536.634933pt;}
.y1fb{bottom:537.464533pt;}
.y139{bottom:538.608267pt;}
.y158{bottom:538.629600pt;}
.y248{bottom:539.961600pt;}
.y277{bottom:540.365733pt;}
.y115{bottom:544.549600pt;}
.y190{bottom:544.938933pt;}
.y16e{bottom:546.368267pt;}
.y1da{bottom:547.982933pt;}
.y31{bottom:548.275867pt;}
.yd3{bottom:552.053600pt;}
.y221{bottom:553.601600pt;}
.ya8{bottom:554.026933pt;}
.yf5{bottom:554.032267pt;}
.y87{bottom:554.042933pt;}
.y55{bottom:555.834933pt;}
.y157{bottom:557.658933pt;}
.y138{bottom:557.680267pt;}
.y247{bottom:557.825600pt;}
.y1ae{bottom:558.766933pt;}
.y276{bottom:558.904400pt;}
.yf{bottom:560.035467pt;}
.y1fa{bottom:562.890267pt;}
.y114{bottom:563.877600pt;}
.y18f{bottom:564.666933pt;}
.y1d9{bottom:566.653600pt;}
.y30{bottom:567.475867pt;}
.yd2{bottom:571.525600pt;}
.y220{bottom:571.729600pt;}
.ya7{bottom:573.354933pt;}
.yf4{bottom:573.360267pt;}
.y86{bottom:573.370933pt;}
.y54{bottom:575.034933pt;}
.y246{bottom:575.689600pt;}
.y156{bottom:576.730933pt;}
.y137{bottom:576.752267pt;}
.y275{bottom:577.443067pt;}
.ye{bottom:578.838133pt;}
.y113{bottom:583.205600pt;}
.y1ad{bottom:583.641600pt;}
.y2f{bottom:586.675867pt;}
.y21f{bottom:589.857600pt;}
.yd1{bottom:590.997600pt;}
.ya6{bottom:592.682933pt;}
.yf3{bottom:592.688267pt;}
.y85{bottom:592.698933pt;}
.y245{bottom:593.553600pt;}
.y53{bottom:594.234933pt;}
.y18e{bottom:594.266933pt;}
.y1d8{bottom:595.301200pt;}
.y155{bottom:595.802933pt;}
.y136{bottom:595.824267pt;}
.y274{bottom:595.981733pt;}
.y112{bottom:602.533600pt;}
.y2e{bottom:605.875867pt;}
.y1f9{bottom:606.062667pt;}
.y21e{bottom:607.985600pt;}
.y1ac{bottom:608.516267pt;}
.yd0{bottom:610.469600pt;}
.y244{bottom:611.417600pt;}
.ya5{bottom:612.010933pt;}
.yf2{bottom:612.016267pt;}
.y84{bottom:612.026933pt;}
.y52{bottom:613.434933pt;}
.y1d7{bottom:613.971867pt;}
.y18d{bottom:613.994933pt;}
.y273{bottom:614.520400pt;}
.y154{bottom:614.874933pt;}
.y135{bottom:614.896267pt;}
.yd{bottom:618.035467pt;}
.y111{bottom:621.861600pt;}
.y1f8{bottom:623.794667pt;}
.y2d{bottom:625.075867pt;}
.y21d{bottom:626.113600pt;}
.y243{bottom:629.281600pt;}
.ycf{bottom:629.941600pt;}
.ya4{bottom:631.338933pt;}
.yf1{bottom:631.344267pt;}
.y83{bottom:631.354933pt;}
.y51{bottom:632.634933pt;}
.y272{bottom:633.059067pt;}
.y1ab{bottom:633.390933pt;}
.y18c{bottom:633.722933pt;}
.y153{bottom:633.946933pt;}
.y134{bottom:633.952267pt;}
.y110{bottom:641.189600pt;}
.y1f7{bottom:641.526667pt;}
.y1d6{bottom:642.619467pt;}
.y21c{bottom:644.241600pt;}
.y2c{bottom:644.275867pt;}
.yc{bottom:646.436800pt;}
.y242{bottom:647.145600pt;}
.yce{bottom:649.413600pt;}
.ya3{bottom:650.666933pt;}
.yf0{bottom:650.672267pt;}
.y82{bottom:650.682933pt;}
.y271{bottom:651.597733pt;}
.y50{bottom:651.834933pt;}
.y152{bottom:653.018933pt;}
.y133{bottom:653.024267pt;}
.y18b{bottom:653.450933pt;}
.y1aa{bottom:658.265600pt;}
.y1f6{bottom:659.258667pt;}
.y10f{bottom:660.517600pt;}
.y1d5{bottom:661.290133pt;}
.y21b{bottom:662.369600pt;}
.y2b{bottom:663.475867pt;}
.y241{bottom:665.009600pt;}
.ycd{bottom:668.885600pt;}
.ya2{bottom:669.994933pt;}
.yef{bottom:670.000267pt;}
.y81{bottom:670.010933pt;}
.y270{bottom:670.136400pt;}
.y4f{bottom:671.034933pt;}
.y151{bottom:672.090933pt;}
.y132{bottom:672.096267pt;}
.y18a{bottom:673.178933pt;}
.yb{bottom:674.838133pt;}
.y1a9{bottom:676.129600pt;}
.y1f5{bottom:676.990667pt;}
.y21a{bottom:680.497600pt;}
.y2a{bottom:682.675867pt;}
.y240{bottom:682.873600pt;}
.ycc{bottom:688.357600pt;}
.y26f{bottom:688.675067pt;}
.y10e{bottom:689.317600pt;}
.ya1{bottom:689.322933pt;}
.yee{bottom:689.328267pt;}
.y80{bottom:689.338933pt;}
.y1d4{bottom:689.937600pt;}
.y4e{bottom:690.234933pt;}
.y131{bottom:691.130933pt;}
.y150{bottom:691.162933pt;}
.y189{bottom:692.906933pt;}
.y1f4{bottom:694.722667pt;}
.y219{bottom:698.625600pt;}
.y23f{bottom:700.737600pt;}
.y29{bottom:701.875867pt;}
.y1a8{bottom:706.501600pt;}
.ycb{bottom:707.829600pt;}
.y1d3{bottom:708.608267pt;}
.y10d{bottom:708.645600pt;}
.ya0{bottom:708.650933pt;}
.yed{bottom:708.656267pt;}
.y7f{bottom:708.666933pt;}
.y4d{bottom:709.434933pt;}
.y130{bottom:710.202933pt;}
.y14f{bottom:710.229600pt;}
.y1f3{bottom:712.454667pt;}
.y188{bottom:712.640267pt;}
.y218{bottom:716.753600pt;}
.y23e{bottom:718.601600pt;}
.y28{bottom:721.075867pt;}
.ya{bottom:725.159467pt;}
.yca{bottom:727.280267pt;}
.y26e{bottom:727.341733pt;}
.y10c{bottom:727.973600pt;}
.y9f{bottom:727.978933pt;}
.yec{bottom:727.984267pt;}
.y7e{bottom:727.994933pt;}
.y4c{bottom:728.634933pt;}
.y12f{bottom:729.274933pt;}
.y1f2{bottom:730.186667pt;}
.y187{bottom:732.384267pt;}
.y217{bottom:734.881600pt;}
.y23d{bottom:736.465600pt;}
.y1d2{bottom:737.203867pt;}
.y1ce{bottom:737.218533pt;}
.y1ca{bottom:737.233200pt;}
.y1c6{bottom:737.247867pt;}
.y27{bottom:740.275867pt;}
.y9{bottom:742.359467pt;}
.y1a7{bottom:744.906933pt;}
.yc9{bottom:746.752267pt;}
.y9e{bottom:747.306933pt;}
.yeb{bottom:747.312267pt;}
.y7d{bottom:747.322933pt;}
.y4b{bottom:747.834933pt;}
.y1f1{bottom:747.918667pt;}
.y12e{bottom:748.346933pt;}
.y186{bottom:752.112267pt;}
.y216{bottom:753.009600pt;}
.y23c{bottom:754.329600pt;}
.y1d1{bottom:755.874533pt;}
.y1cd{bottom:755.889200pt;}
.y1c9{bottom:755.903867pt;}
.y1c5{bottom:755.918533pt;}
.y26{bottom:759.475867pt;}
.y8{bottom:759.559467pt;}
.y1a6{bottom:764.906933pt;}
.y1f0{bottom:765.650667pt;}
.y26d{bottom:766.019067pt;}
.yc8{bottom:766.224267pt;}
.yea{bottom:766.640267pt;}
.y7c{bottom:766.650933pt;}
.y4a{bottom:767.034933pt;}
.y12d{bottom:767.418933pt;}
.y215{bottom:771.137600pt;}
.y185{bottom:771.840267pt;}
.y23b{bottom:772.193600pt;}
.y1d0{bottom:774.545200pt;}
.y1cc{bottom:774.559867pt;}
.y1c8{bottom:774.574533pt;}
.y1c4{bottom:774.589200pt;}
.y7{bottom:776.759467pt;}
.y6{bottom:776.761600pt;}
.y25{bottom:778.675867pt;}
.y1ef{bottom:783.384000pt;}
.y1a5{bottom:784.906933pt;}
.yc7{bottom:785.696267pt;}
.y7b{bottom:785.978933pt;}
.y26c{bottom:786.147067pt;}
.y49{bottom:786.234933pt;}
.y12c{bottom:786.490933pt;}
.y214{bottom:789.265600pt;}
.y23a{bottom:790.057600pt;}
.y184{bottom:791.568267pt;}
.y1cf{bottom:793.215867pt;}
.y1cb{bottom:793.230533pt;}
.y1c7{bottom:793.245200pt;}
.y1c3{bottom:793.259867pt;}
.y24{bottom:797.875867pt;}
.y1ee{bottom:801.116000pt;}
.y1a4{bottom:804.906933pt;}
.yc6{bottom:805.162933pt;}
.y7a{bottom:805.306933pt;}
.y48{bottom:805.434933pt;}
.y12b{bottom:805.562933pt;}
.y26b{bottom:806.275067pt;}
.y213{bottom:807.393600pt;}
.y239{bottom:807.921600pt;}
.y5{bottom:808.321600pt;}
.y23{bottom:824.634933pt;}
.y4{bottom:825.521600pt;}
.y1ed{bottom:826.408400pt;}
.hb{height:27.171875pt;}
.ha{height:31.700521pt;}
.h4{height:35.546875pt;}
.h3{height:36.229167pt;}
.h2{height:39.101562pt;}
.h10{height:42.656250pt;}
.hc{height:43.022135pt;}
.h6{height:45.286458pt;}
.h5{height:49.815104pt;}
.h9{height:54.343750pt;}
.h11{height:54.365083pt;}
.h16{height:54.407750pt;}
.h12{height:54.429083pt;}
.h19{height:54.450417pt;}
.h14{height:54.471750pt;}
.h15{height:54.493083pt;}
.h1a{height:54.514417pt;}
.h18{height:54.557083pt;}
.h1b{height:54.599750pt;}
.h17{height:54.663750pt;}
.he{height:56.051583pt;}
.hd{height:56.222250pt;}
.hf{height:56.286250pt;}
.h13{height:56.478250pt;}
.h1c{height:60.251385pt;}
.h8{height:60.429688pt;}
.h7{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:68.031467pt;}
.x23{left:75.398133pt;}
.x6{left:86.943467pt;}
.x11{left:94.292800pt;}
.x14{left:98.920267pt;}
.x9{left:105.841200pt;}
.x13{left:110.242933pt;}
.xa{left:124.724400pt;}
.x5{left:126.414267pt;}
.xb{left:129.346133pt;}
.x8{left:133.929200pt;}
.xc{left:142.384800pt;}
.x29{left:157.478800pt;}
.x7{left:212.531067pt;}
.x2a{left:231.428800pt;}
.x15{left:242.976267pt;}
.x16{left:244.574933pt;}
.x17{left:248.153600pt;}
.xd{left:267.579467pt;}
.x1{left:280.968400pt;}
.xe{left:282.143467pt;}
.x2{left:318.548000pt;}
.x24{left:339.324800pt;}
.x18{left:343.296267pt;}
.x1a{left:346.493600pt;}
.x1b{left:349.969600pt;}
.x19{left:352.140267pt;}
.x12{left:373.810133pt;}
.x25{left:411.030133pt;}
.x1c{left:411.994933pt;}
.x1d{left:416.820267pt;}
.x1e{left:420.868267pt;}
.x1f{left:424.564267pt;}
.xf{left:439.795467pt;}
.x10{left:445.999467pt;}
.x28{left:472.213600pt;}
.x27{left:480.180933pt;}
.x26{left:488.514133pt;}
.x20{left:490.725600pt;}
.x22{left:499.598933pt;}
.x21{left:502.297600pt;}
.x3{left:535.590533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  