
    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_93d4078c2c16c987470fbf6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990200;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_7d8cd4e17757a75f501dca98.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_812669fb03833502a619462e.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_7d8cd4e17757a75f501dca98.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_f50a8d2761b7042cebe4a5f3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f2bcf88d70f166003c7d1e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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_56bf0e7d9aac4728edf9882e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_c0d26ca2c0cb96dc9c5c66a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_4f3aacee8dffcdd0a1278730.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_2eea34a713185578890d4a5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752000;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_97ecb002718e124dc72e2578.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995000;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_f32e351d1aea8dc0e32c653d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972000;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_8f053e36800611ae20e73875.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142000;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_56b8c1c4e10345e36e82b3e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_82589773653ac0ac53834437.woff2')format("woff");}.fff{font-family:fff;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_00a4580e412b335bbdd6bec3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891143;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-21.150600px;}
.v2{vertical-align:-17.550000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.937800px;}
.v3{vertical-align:17.995500px;}
.v1{vertical-align:21.510000px;}
.v6{vertical-align:31.999500px;}
.v5{vertical-align:63.940500px;}
.ls17{letter-spacing:-1.410000px;}
.ls46{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-0.705000px;}
.ls4c{letter-spacing:-0.702000px;}
.ls4a{letter-spacing:-0.594000px;}
.ls49{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.352500px;}
.ls33{letter-spacing:-0.229125px;}
.ls45{letter-spacing:-0.054000px;}
.ls8{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000300px;}
.ls1c{letter-spacing:0.009600px;}
.ls1f{letter-spacing:0.028500px;}
.ls2e{letter-spacing:0.058500px;}
.ls11{letter-spacing:0.064500px;}
.ls1e{letter-spacing:0.070500px;}
.ls37{letter-spacing:0.114075px;}
.lsf{letter-spacing:0.129000px;}
.ls3c{letter-spacing:0.141000px;}
.ls31{letter-spacing:0.170700px;}
.ls6{letter-spacing:0.175500px;}
.ls10{letter-spacing:0.193500px;}
.ls16{letter-spacing:0.211500px;}
.ls32{letter-spacing:0.263250px;}
.ls39{letter-spacing:0.292500px;}
.lsc{letter-spacing:0.322500px;}
.ls2f{letter-spacing:0.345300px;}
.ls5{letter-spacing:0.351000px;}
.ls15{letter-spacing:0.352500px;}
.ls48{letter-spacing:0.378000px;}
.ls36{letter-spacing:0.409500px;}
.ls3{letter-spacing:0.451500px;}
.ls7{letter-spacing:0.468000px;}
.ls30{letter-spacing:0.526500px;}
.ls3b{letter-spacing:0.532350px;}
.ls19{letter-spacing:0.564000px;}
.ls1a{letter-spacing:0.599250px;}
.ls25{letter-spacing:0.617700px;}
.ls1d{letter-spacing:0.634500px;}
.ls12{letter-spacing:0.645000px;}
.ls3d{letter-spacing:0.705000px;}
.ls38{letter-spacing:0.722475px;}
.lsa{letter-spacing:0.735000px;}
.ls23{letter-spacing:0.819000px;}
.lsb{letter-spacing:0.903000px;}
.ls26{letter-spacing:0.936000px;}
.ls22{letter-spacing:0.994500px;}
.ls20{letter-spacing:1.049100px;}
.lsd{letter-spacing:1.096500px;}
.ls35{letter-spacing:1.111500px;}
.ls27{letter-spacing:1.140750px;}
.ls29{letter-spacing:1.170000px;}
.ls1{letter-spacing:1.234800px;}
.ls2a{letter-spacing:1.268100px;}
.ls2d{letter-spacing:1.345500px;}
.ls2{letter-spacing:1.354500px;}
.lse{letter-spacing:1.483500px;}
.ls2c{letter-spacing:1.521000px;}
.ls21{letter-spacing:1.638000px;}
.ls0{letter-spacing:1.680000px;}
.ls2b{letter-spacing:1.930500px;}
.ls41{letter-spacing:2.268000px;}
.ls47{letter-spacing:2.538000px;}
.ls3e{letter-spacing:7.482000px;}
.ls42{letter-spacing:7.722000px;}
.ls44{letter-spacing:7.992000px;}
.ls28{letter-spacing:8.482500px;}
.ls1b{letter-spacing:9.675000px;}
.ls4b{letter-spacing:10.854000px;}
.ls4{letter-spacing:16.125000px;}
.ls43{letter-spacing:17.712000px;}
.ls3a{letter-spacing:153.416250px;}
.ls40{letter-spacing:239.148000px;}
.ls14{letter-spacing:242.137200px;}
.ls3f{letter-spacing:289.633500px;}
.ls13{letter-spacing:343.387800px;}
.ls9{letter-spacing:495.092400px;}
.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;}
}
.wscb{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.625000px;}
.wsd7{word-spacing:-16.125000px;}
.ws6c{word-spacing:-15.765750px;}
.wsd6{word-spacing:-13.500000px;}
.ws5b{word-spacing:-12.835500px;}
.wsce{word-spacing:-12.420000px;}
.ws31{word-spacing:-11.456250px;}
.ws85{word-spacing:-11.227125px;}
.wsd3{word-spacing:-10.854000px;}
.ws9e{word-spacing:-10.228725px;}
.wsa3{word-spacing:-10.038600px;}
.ws9d{word-spacing:-9.620325px;}
.ws32{word-spacing:-9.506250px;}
.wsc8{word-spacing:-7.992000px;}
.wsc7{word-spacing:-7.722000px;}
.ws5{word-spacing:-1.354500px;}
.ws4{word-spacing:-1.234800px;}
.ws82{word-spacing:-1.170000px;}
.ws22{word-spacing:-0.903000px;}
.ws2{word-spacing:-0.840000px;}
.wsb4{word-spacing:-0.705000px;}
.ws30{word-spacing:-0.645000px;}
.ws3{word-spacing:-0.617400px;}
.wsd4{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.451500px;}
.ws1b{word-spacing:-0.367500px;}
.ws4b{word-spacing:-0.352500px;}
.wsae{word-spacing:-0.292500px;}
.ws2e{word-spacing:-0.193500px;}
.ws81{word-spacing:-0.175500px;}
.wscd{word-spacing:-0.162000px;}
.ws26{word-spacing:-0.129000px;}
.wsb5{word-spacing:-0.070500px;}
.ws29{word-spacing:-0.064500px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.070500px;}
.ws17{word-spacing:0.096000px;}
.ws36{word-spacing:0.141000px;}
.ws94{word-spacing:0.175500px;}
.ws62{word-spacing:0.211500px;}
.wsbc{word-spacing:0.258000px;}
.wsaf{word-spacing:0.282000px;}
.ws97{word-spacing:0.292500px;}
.ws57{word-spacing:0.352500px;}
.ws91{word-spacing:0.423000px;}
.ws35{word-spacing:0.493500px;}
.wsd0{word-spacing:0.540000px;}
.wscf{word-spacing:0.594000px;}
.ws4c{word-spacing:0.634500px;}
.wsd8{word-spacing:0.702000px;}
.ws49{word-spacing:0.705000px;}
.ws16{word-spacing:0.720000px;}
.ws5d{word-spacing:0.775500px;}
.ws88{word-spacing:0.846000px;}
.ws71{word-spacing:0.916500px;}
.wsba{word-spacing:0.967500px;}
.ws6a{word-spacing:0.987000px;}
.ws7d{word-spacing:0.994500px;}
.ws51{word-spacing:1.057500px;}
.wsc9{word-spacing:1.080000px;}
.ws48{word-spacing:1.128000px;}
.ws54{word-spacing:1.198500px;}
.wsa9{word-spacing:1.269000px;}
.ws95{word-spacing:1.287000px;}
.wsb0{word-spacing:1.339500px;}
.wsda{word-spacing:1.404000px;}
.ws55{word-spacing:1.410000px;}
.ws1c{word-spacing:1.419000px;}
.ws99{word-spacing:1.462500px;}
.ws5e{word-spacing:1.480500px;}
.ws39{word-spacing:1.551000px;}
.wsa2{word-spacing:1.579500px;}
.ws7{word-spacing:1.612500px;}
.ws73{word-spacing:1.621500px;}
.ws8b{word-spacing:1.692000px;}
.ws5a{word-spacing:1.762500px;}
.ws9{word-spacing:1.806000px;}
.ws8d{word-spacing:1.833000px;}
.wsbe{word-spacing:1.870500px;}
.ws41{word-spacing:1.903500px;}
.ws6e{word-spacing:1.974000px;}
.wsc{word-spacing:1.999500px;}
.ws8f{word-spacing:2.044500px;}
.ws7b{word-spacing:2.115000px;}
.ws93{word-spacing:2.164500px;}
.ws40{word-spacing:2.185500px;}
.ws37{word-spacing:2.256000px;}
.wsa{word-spacing:2.322000px;}
.ws69{word-spacing:2.326500px;}
.ws34{word-spacing:2.397000px;}
.ws13{word-spacing:2.398500px;}
.wse{word-spacing:2.451000px;}
.ws5f{word-spacing:2.467500px;}
.ws24{word-spacing:2.515500px;}
.ws3c{word-spacing:2.538000px;}
.ws1d{word-spacing:2.580000px;}
.wsa5{word-spacing:2.608500px;}
.ws1f{word-spacing:2.644500px;}
.wsb1{word-spacing:2.679000px;}
.ws6d{word-spacing:2.749500px;}
.wsd9{word-spacing:2.754000px;}
.wsf{word-spacing:2.773500px;}
.ws56{word-spacing:2.820000px;}
.ws9a{word-spacing:2.890500px;}
.ws64{word-spacing:2.961000px;}
.ws1e{word-spacing:2.967000px;}
.ws8{word-spacing:3.031500px;}
.ws2b{word-spacing:3.096000px;}
.ws5c{word-spacing:3.102000px;}
.ws6b{word-spacing:3.172500px;}
.wsab{word-spacing:3.243000px;}
.ws61{word-spacing:3.313500px;}
.wsc0{word-spacing:3.354000px;}
.ws38{word-spacing:3.384000px;}
.ws4f{word-spacing:3.393000px;}
.ws3a{word-spacing:3.454500px;}
.wsb8{word-spacing:3.483000px;}
.wsb3{word-spacing:3.525000px;}
.wsbd{word-spacing:3.547500px;}
.ws83{word-spacing:3.568500px;}
.ws9c{word-spacing:3.595500px;}
.ws20{word-spacing:3.676500px;}
.ws70{word-spacing:3.736500px;}
.ws7f{word-spacing:3.802500px;}
.ws87{word-spacing:3.807000px;}
.ws3d{word-spacing:3.877500px;}
.ws2d{word-spacing:3.934500px;}
.ws25{word-spacing:3.999000px;}
.ws42{word-spacing:4.018500px;}
.ws3e{word-spacing:4.089000px;}
.wsb7{word-spacing:4.128000px;}
.ws80{word-spacing:4.153500px;}
.wsa7{word-spacing:4.159500px;}
.ws52{word-spacing:4.230000px;}
.ws84{word-spacing:4.270500px;}
.ws3f{word-spacing:4.300500px;}
.ws79{word-spacing:4.441500px;}
.wsad{word-spacing:4.446000px;}
.ws86{word-spacing:4.512000px;}
.ws15{word-spacing:4.563000px;}
.ws11{word-spacing:4.579500px;}
.ws8a{word-spacing:4.582500px;}
.ws2a{word-spacing:4.644000px;}
.ws60{word-spacing:4.653000px;}
.ws8e{word-spacing:4.723500px;}
.wsb{word-spacing:4.773000px;}
.wsaa{word-spacing:4.794000px;}
.ws76{word-spacing:4.864500px;}
.wsb9{word-spacing:4.902000px;}
.ws68{word-spacing:4.935000px;}
.ws50{word-spacing:4.972500px;}
.wsac{word-spacing:5.031000px;}
.wsa0{word-spacing:5.076000px;}
.ws27{word-spacing:5.095500px;}
.ws75{word-spacing:5.146500px;}
.ws4e{word-spacing:5.287500px;}
.wsa8{word-spacing:5.358000px;}
.ws10{word-spacing:5.418000px;}
.ws92{word-spacing:5.428500px;}
.ws89{word-spacing:5.499000px;}
.wsd{word-spacing:5.547000px;}
.wsb2{word-spacing:5.569500px;}
.ws12{word-spacing:5.611500px;}
.wsa1{word-spacing:5.640000px;}
.ws2f{word-spacing:5.676000px;}
.ws9b{word-spacing:5.781000px;}
.ws9f{word-spacing:5.851500px;}
.ws66{word-spacing:5.922000px;}
.ws7a{word-spacing:5.992500px;}
.ws8c{word-spacing:6.063000px;}
.ws63{word-spacing:6.133500px;}
.ws7e{word-spacing:6.201000px;}
.ws90{word-spacing:6.204000px;}
.wsa4{word-spacing:6.274500px;}
.ws2c{word-spacing:6.321000px;}
.ws4d{word-spacing:6.345000px;}
.ws47{word-spacing:6.556500px;}
.ws28{word-spacing:6.579000px;}
.wsbb{word-spacing:6.643500px;}
.ws74{word-spacing:6.697500px;}
.wscc{word-spacing:6.750000px;}
.ws77{word-spacing:6.768000px;}
.ws23{word-spacing:6.901500px;}
.ws72{word-spacing:6.909000px;}
.wsbf{word-spacing:6.966000px;}
.ws3b{word-spacing:6.979500px;}
.ws78{word-spacing:7.050000px;}
.ws96{word-spacing:7.078500px;}
.ws6f{word-spacing:7.120500px;}
.ws46{word-spacing:7.191000px;}
.ws67{word-spacing:7.261500px;}
.ws14{word-spacing:7.312500px;}
.ws65{word-spacing:7.332000px;}
.wsa6{word-spacing:7.402500px;}
.wsb6{word-spacing:7.417500px;}
.wsc6{word-spacing:7.560000px;}
.ws59{word-spacing:7.614000px;}
.ws53{word-spacing:7.684500px;}
.ws4a{word-spacing:7.966500px;}
.ws43{word-spacing:8.037000px;}
.ws6{word-spacing:8.062500px;}
.ws7c{word-spacing:8.107500px;}
.ws44{word-spacing:8.319000px;}
.ws45{word-spacing:8.601000px;}
.ws98{word-spacing:8.671500px;}
.ws33{word-spacing:8.812500px;}
.ws19{word-spacing:10.656000px;}
.wsca{word-spacing:12.042000px;}
.ws18{word-spacing:13.344000px;}
.ws1{word-spacing:14.178000px;}
.wsc1{word-spacing:51.246000px;}
.wsc2{word-spacing:108.985500px;}
.wsc3{word-spacing:115.596000px;}
.wsd5{word-spacing:178.740000px;}
.wsd1{word-spacing:263.790000px;}
.wsc5{word-spacing:853.848000px;}
.wsc4{word-spacing:1200.888000px;}
.wsd2{word-spacing:1469.286000px;}
._7{margin-left:-24.000000px;}
._c{margin-left:-22.771500px;}
._16{margin-left:-17.712000px;}
._1{margin-left:-14.178000px;}
._6{margin-left:-12.514800px;}
._15{margin-left:-7.722000px;}
._2{margin-left:-1.680000px;}
._3{width:1.354500px;}
._b{width:2.453400px;}
._10{width:4.230000px;}
._e{width:5.287500px;}
._a{width:6.323850px;}
._d{width:7.987650px;}
._f{width:10.471200px;}
._4{width:12.226500px;}
._5{width:13.344000px;}
._8{width:15.351000px;}
._2d{width:52.110000px;}
._1b{width:53.406000px;}
._12{width:75.055500px;}
._11{width:86.697000px;}
._30{width:101.682000px;}
._13{width:131.215500px;}
._2b{width:180.252000px;}
._38{width:193.752000px;}
._39{width:197.478000px;}
._27{width:206.982000px;}
._29{width:228.312000px;}
._3a{width:237.222000px;}
._37{width:270.594000px;}
._18{width:308.610000px;}
._35{width:321.624000px;}
._32{width:326.268000px;}
._23{width:463.482000px;}
._31{width:492.291000px;}
._33{width:522.612000px;}
._2a{width:562.950000px;}
._1a{width:587.898000px;}
._1c{width:619.542000px;}
._19{width:660.366000px;}
._22{width:703.026000px;}
._26{width:722.412000px;}
._2c{width:749.952000px;}
._3b{width:820.854000px;}
._20{width:865.782000px;}
._14{width:991.980000px;}
._34{width:1104.138000px;}
._2e{width:1282.824000px;}
._2f{width:1336.554000px;}
._17{width:1338.336000px;}
._28{width:1358.370000px;}
._24{width:1365.444000px;}
._25{width:1383.696000px;}
._1d{width:1391.688000px;}
._1f{width:1399.788000px;}
._21{width:1426.032000px;}
._1e{width:1434.348000px;}
._9{width:1435.497000px;}
._36{width:1482.786000px;}
._0{width:1961.001000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.100000px;}
.fsb{font-size:38.025000px;}
.fsa{font-size:45.825000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs9{font-size:52.500000px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:64.500000px;}
.fs8{font-size:69.000000px;}
.fs4{font-size:70.500000px;}
.fs3{font-size:88.200000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:75.319350px;}
.y2a{bottom:76.777350px;}
.y1ba{bottom:129.590550px;}
.y1b6{bottom:129.604050px;}
.y1b1{bottom:129.617550px;}
.y1ac{bottom:129.631050px;}
.y1a6{bottom:129.644550px;}
.y1a3{bottom:129.658050px;}
.y19d{bottom:129.671550px;}
.y198{bottom:129.685050px;}
.y1d1{bottom:131.805750px;}
.y1d0{bottom:131.811000px;}
.y28{bottom:131.812500px;}
.y92{bottom:131.813550px;}
.y11b{bottom:132.495450px;}
.y177{bottom:132.505275px;}
.y148{bottom:132.577725px;}
.y78{bottom:132.664050px;}
.y8d{bottom:132.804450px;}
.yeb{bottom:133.263600px;}
.y16e{bottom:133.767225px;}
.y12d{bottom:134.188050px;}
.y193{bottom:134.692200px;}
.y126{bottom:135.893325px;}
.ybe{bottom:137.817975px;}
.y27{bottom:144.604500px;}
.y196{bottom:146.362950px;}
.y11a{bottom:148.480575px;}
.y77{bottom:148.649175px;}
.yea{bottom:149.248725px;}
.y176{bottom:151.698900px;}
.y8c{bottom:151.998075px;}
.y197{bottom:152.183700px;}
.y147{bottom:152.950350px;}
.y16d{bottom:154.139850px;}
.ybd{bottom:155.181225px;}
.y125{bottom:156.265950px;}
.ybc{bottom:159.680100px;}
.y26{bottom:163.765350px;}
.y146{bottom:164.553600px;}
.y119{bottom:168.853200px;}
.y76{bottom:169.021800px;}
.ye9{bottom:169.621350px;}
.y175{bottom:170.892525px;}
.y8b{bottom:171.191700px;}
.y118{bottom:180.458325px;}
.y145{bottom:180.538725px;}
.ye8{bottom:181.226475px;}
.yf3{bottom:181.233975px;}
.y25{bottom:182.941350px;}
.y174{bottom:189.934200px;}
.y8a{bottom:190.385325px;}
.y117{bottom:196.443450px;}
.ybb{bottom:196.461225px;}
.ye7{bottom:197.211600px;}
.yf2{bottom:197.219100px;}
.y144{bottom:200.911350px;}
.y24{bottom:202.117350px;}
.y124{bottom:204.004350px;}
.y173{bottom:209.127825px;}
.y16c{bottom:209.135250px;}
.y89{bottom:209.578950px;}
.y116{bottom:212.428575px;}
.ye6{bottom:213.196725px;}
.yf1{bottom:213.204225px;}
.yba{bottom:214.053600px;}
.y23{bottom:214.909350px;}
.y1b7{bottom:227.398050px;}
.y1b2{bottom:227.411550px;}
.y1ad{bottom:227.425050px;}
.y1a7{bottom:227.438550px;}
.y1a4{bottom:227.452050px;}
.y19e{bottom:227.465550px;}
.y199{bottom:227.479050px;}
.y172{bottom:228.321450px;}
.y16b{bottom:228.328875px;}
.y75{bottom:228.393975px;}
.y88{bottom:228.772575px;}
.yf0{bottom:229.189350px;}
.yb9{bottom:231.645975px;}
.y115{bottom:232.801200px;}
.y192{bottom:233.204400px;}
.ye5{bottom:233.569350px;}
.y22{bottom:234.085350px;}
.ye4{bottom:245.172600px;}
.yef{bottom:245.174475px;}
.y21{bottom:246.877350px;}
.y171{bottom:247.515075px;}
.y16a{bottom:247.522500px;}
.y74{bottom:247.587600px;}
.yb8{bottom:249.238350px;}
.y191{bottom:250.796775px;}
.y87{bottom:257.554200px;}
.ye3{bottom:261.157725px;}
.yee{bottom:261.159600px;}
.y170{bottom:266.708700px;}
.y169{bottom:266.716125px;}
.y73{bottom:266.781225px;}
.y143{bottom:267.809325px;}
.y190{bottom:268.389150px;}
.yed{bottom:277.144725px;}
.ye2{bottom:281.530350px;}
.yb7{bottom:285.867075px;}
.y168{bottom:285.909750px;}
.y114{bottom:285.916575px;}
.y72{bottom:285.974850px;}
.y18f{bottom:285.981525px;}
.y142{bottom:286.986450px;}
.y20{bottom:289.986900px;}
.ye1{bottom:293.135475px;}
.yec{bottom:297.517350px;}
.y18e{bottom:303.573900px;}
.yb6{bottom:305.060700px;}
.y16f{bottom:305.078325px;}
.y167{bottom:305.103375px;}
.y113{bottom:305.110200px;}
.y71{bottom:305.168475px;}
.y86{bottom:305.529450px;}
.y1f{bottom:305.972025px;}
.y141{bottom:306.180075px;}
.ye0{bottom:309.120600px;}
.y18d{bottom:321.166275px;}
.y1e{bottom:321.957150px;}
.yb5{bottom:324.254325px;}
.y166{bottom:324.297000px;}
.y112{bottom:324.303825px;}
.y70{bottom:324.362100px;}
.y85{bottom:324.723075px;}
.ydf{bottom:325.105725px;}
.y1ae{bottom:325.219050px;}
.y1a8{bottom:325.232550px;}
.y19f{bottom:325.259550px;}
.y1cd{bottom:325.275600px;}
.y140{bottom:325.373700px;}
.y18c{bottom:338.758650px;}
.yb4{bottom:343.447950px;}
.y165{bottom:343.490625px;}
.y111{bottom:343.497450px;}
.y6f{bottom:343.555725px;}
.y84{bottom:343.916700px;}
.y13f{bottom:344.567325px;}
.yde{bottom:345.478350px;}
.y18b{bottom:356.351025px;}
.yb3{bottom:362.641575px;}
.y164{bottom:362.684250px;}
.y110{bottom:362.691075px;}
.y6e{bottom:362.749350px;}
.y83{bottom:363.110325px;}
.y4d{bottom:363.684075px;}
.y13e{bottom:363.699075px;}
.y18a{bottom:373.943400px;}
.yb2{bottom:381.835200px;}
.y163{bottom:381.877875px;}
.y10f{bottom:381.884700px;}
.y6d{bottom:381.942975px;}
.y82{bottom:382.303950px;}
.y13d{bottom:382.892700px;}
.y1d{bottom:386.088150px;}
.y4c{bottom:390.080700px;}
.ydd{bottom:391.481700px;}
.y189{bottom:391.535775px;}
.y1c1{bottom:399.860250px;}
.yb1{bottom:401.028825px;}
.y162{bottom:401.071500px;}
.y10e{bottom:401.078325px;}
.y6c{bottom:401.136600px;}
.y81{bottom:401.497575px;}
.y13c{bottom:402.086325px;}
.y1c{bottom:403.680525px;}
.y4b{bottom:407.673075px;}
.y188{bottom:409.128150px;}
.ydc{bottom:410.675325px;}
.y1aa{bottom:418.774050px;}
.y1c4{bottom:418.801050px;}
.y1be{bottom:418.814550px;}
.yb0{bottom:420.222450px;}
.y161{bottom:420.265125px;}
.y10d{bottom:420.271950px;}
.y6b{bottom:420.330225px;}
.y80{bottom:420.691200px;}
.y1b{bottom:421.272900px;}
.y13b{bottom:421.279950px;}
.y4a{bottom:425.265450px;}
.y187{bottom:426.720525px;}
.ydb{bottom:429.868950px;}
.y1a{bottom:438.865275px;}
.yaf{bottom:439.416075px;}
.y160{bottom:439.458750px;}
.y10c{bottom:439.465575px;}
.y6a{bottom:439.523850px;}
.y7f{bottom:439.884825px;}
.y13a{bottom:440.473575px;}
.y49{bottom:442.857825px;}
.y186{bottom:444.312900px;}
.yda{bottom:449.062575px;}
.y19{bottom:456.457650px;}
.yae{bottom:458.609700px;}
.y15f{bottom:458.652375px;}
.y10b{bottom:458.659200px;}
.y69{bottom:458.717475px;}
.y7e{bottom:459.078450px;}
.y139{bottom:459.667200px;}
.y48{bottom:460.450200px;}
.y185{bottom:461.905275px;}
.y194{bottom:461.941200px;}
.yd9{bottom:468.256200px;}
.y18{bottom:474.050025px;}
.yad{bottom:477.803325px;}
.y15e{bottom:477.846000px;}
.y10a{bottom:477.852825px;}
.y68{bottom:477.911100px;}
.y47{bottom:478.042575px;}
.y7d{bottom:478.272075px;}
.y138{bottom:478.860825px;}
.y184{bottom:479.497650px;}
.yd8{bottom:487.449825px;}
.y17{bottom:491.642400px;}
.y46{bottom:495.634950px;}
.yac{bottom:496.996950px;}
.y15d{bottom:497.039625px;}
.y109{bottom:497.046450px;}
.y183{bottom:497.090025px;}
.y67{bottom:497.104725px;}
.y137{bottom:498.054450px;}
.yd7{bottom:506.643450px;}
.y16{bottom:509.234775px;}
.y7c{bottom:510.226200px;}
.y45{bottom:513.227325px;}
.y182{bottom:514.682400px;}
.yab{bottom:516.190575px;}
.y66{bottom:516.208200px;}
.y15c{bottom:516.233250px;}
.y108{bottom:516.240075px;}
.y136{bottom:517.248075px;}
.y1bb{bottom:525.019050px;}
.y1b8{bottom:525.032550px;}
.y1b3{bottom:525.046050px;}
.y1af{bottom:525.059550px;}
.y1a9{bottom:525.073050px;}
.y1a5{bottom:525.086550px;}
.y1a0{bottom:525.100050px;}
.y19a{bottom:525.113550px;}
.y1ce{bottom:525.118050px;}
.yd6{bottom:525.837075px;}
.y15{bottom:526.827150px;}
.y44{bottom:530.819700px;}
.y181{bottom:532.274775px;}
.yaa{bottom:535.384200px;}
.y65{bottom:535.401825px;}
.y15b{bottom:535.426875px;}
.y107{bottom:535.433700px;}
.y135{bottom:536.441700px;}
.y123{bottom:540.337500px;}
.y14{bottom:544.419525px;}
.yd5{bottom:545.030700px;}
.y43{bottom:548.412075px;}
.y180{bottom:549.867150px;}
.ya9{bottom:554.577825px;}
.y64{bottom:554.595450px;}
.y15a{bottom:554.620500px;}
.y106{bottom:554.627325px;}
.y134{bottom:555.635325px;}
.y7b{bottom:558.124800px;}
.y122{bottom:559.531125px;}
.y13{bottom:562.011900px;}
.yd4{bottom:564.224325px;}
.y42{bottom:566.004450px;}
.y17f{bottom:567.459525px;}
.ya8{bottom:573.771450px;}
.y63{bottom:573.789075px;}
.y159{bottom:573.814125px;}
.y105{bottom:573.820950px;}
.y133{bottom:574.828950px;}
.y7a{bottom:575.717175px;}
.y12c{bottom:577.044975px;}
.y121{bottom:578.724750px;}
.y12{bottom:579.604275px;}
.yd3{bottom:583.417950px;}
.y41{bottom:583.596825px;}
.y17e{bottom:585.051900px;}
.ya7{bottom:592.965075px;}
.y62{bottom:592.982700px;}
.y158{bottom:593.007750px;}
.y104{bottom:593.014575px;}
.y79{bottom:593.309550px;}
.y132{bottom:594.022575px;}
.y12b{bottom:596.238600px;}
.y11{bottom:597.196650px;}
.y120{bottom:597.918375px;}
.y40{bottom:601.189200px;}
.yd2{bottom:602.611575px;}
.y17d{bottom:602.644275px;}
.ya6{bottom:612.158700px;}
.y61{bottom:612.176325px;}
.y157{bottom:612.201375px;}
.y103{bottom:612.208200px;}
.y131{bottom:613.216200px;}
.y10{bottom:614.789025px;}
.y12a{bottom:615.432225px;}
.y11f{bottom:617.112000px;}
.y3f{bottom:618.781575px;}
.y17c{bottom:620.236650px;}
.yd1{bottom:621.805200px;}
.ya5{bottom:631.352325px;}
.y60{bottom:631.369950px;}
.y156{bottom:631.395000px;}
.y102{bottom:631.401825px;}
.yf{bottom:632.381400px;}
.y130{bottom:632.409825px;}
.y91{bottom:634.088700px;}
.y129{bottom:634.625850px;}
.y1ca{bottom:635.597550px;}
.y1c9{bottom:635.611050px;}
.y1c8{bottom:635.624550px;}
.y1c6{bottom:635.638050px;}
.y1bf{bottom:635.665050px;}
.y11e{bottom:636.305625px;}
.y3e{bottom:636.373950px;}
.y17b{bottom:637.829025px;}
.yd0{bottom:640.998825px;}
.ye{bottom:649.973775px;}
.ya4{bottom:650.545950px;}
.y5f{bottom:650.563575px;}
.y155{bottom:650.588625px;}
.y101{bottom:650.595450px;}
.y12f{bottom:651.603450px;}
.y3d{bottom:653.966325px;}
.y17a{bottom:655.421400px;}
.ycf{bottom:660.192450px;}
.y11d{bottom:665.087250px;}
.yd{bottom:667.566150px;}
.ya3{bottom:669.739575px;}
.y5e{bottom:669.757200px;}
.y154{bottom:669.782250px;}
.y100{bottom:669.789075px;}
.y3c{bottom:671.558700px;}
.y128{bottom:673.004475px;}
.y179{bottom:673.013775px;}
.y195{bottom:678.800700px;}
.yce{bottom:679.386075px;}
.ya2{bottom:688.933200px;}
.y5d{bottom:688.950825px;}
.y153{bottom:688.975875px;}
.yff{bottom:688.982700px;}
.y3b{bottom:689.151075px;}
.y127{bottom:690.596850px;}
.y178{bottom:690.606150px;}
.ycd{bottom:698.579700px;}
.y3a{bottom:706.743450px;}
.ya1{bottom:708.126825px;}
.y5c{bottom:708.144450px;}
.y152{bottom:708.169500px;}
.yfe{bottom:708.176325px;}
.y12e{bottom:709.162650px;}
.ycc{bottom:717.773325px;}
.y39{bottom:724.335825px;}
.ya0{bottom:727.320450px;}
.y5b{bottom:727.338075px;}
.y151{bottom:727.363125px;}
.yfd{bottom:727.369950px;}
.y11c{bottom:734.314050px;}
.ycb{bottom:736.966950px;}
.y1bc{bottom:741.869550px;}
.y1cc{bottom:741.883050px;}
.y1cb{bottom:741.896550px;}
.y38{bottom:741.928200px;}
.y1c7{bottom:741.937050px;}
.y1c5{bottom:741.950550px;}
.y1c0{bottom:741.964050px;}
.y9f{bottom:746.514075px;}
.y5a{bottom:746.531700px;}
.y150{bottom:746.556750px;}
.yfc{bottom:746.563575px;}
.yc{bottom:753.772575px;}
.yca{bottom:756.160575px;}
.y37{bottom:759.520575px;}
.y9e{bottom:765.707700px;}
.y59{bottom:765.725325px;}
.yfb{bottom:765.736575px;}
.y14f{bottom:765.750375px;}
.yb{bottom:772.966200px;}
.yc9{bottom:775.350075px;}
.y36{bottom:777.112950px;}
.y9d{bottom:784.901325px;}
.y58{bottom:784.918950px;}
.yfa{bottom:784.930200px;}
.y14e{bottom:784.944000px;}
.yc8{bottom:794.535600px;}
.y35{bottom:794.705325px;}
.y9c{bottom:804.094950px;}
.y57{bottom:804.112575px;}
.yf9{bottom:804.123825px;}
.y14d{bottom:804.137625px;}
.y34{bottom:812.297700px;}
.ya{bottom:813.415575px;}
.yc7{bottom:813.729225px;}
.y9b{bottom:823.288575px;}
.y56{bottom:823.306200px;}
.yf8{bottom:823.317450px;}
.y14c{bottom:823.331250px;}
.y9{bottom:832.609200px;}
.yc6{bottom:832.918575px;}
.y1c3{bottom:839.717550px;}
.y1c2{bottom:839.731050px;}
.y1a1{bottom:839.744550px;}
.y19b{bottom:839.758050px;}
.y9a{bottom:842.482200px;}
.y55{bottom:842.499825px;}
.yf7{bottom:842.511075px;}
.y14b{bottom:842.524875px;}
.y33{bottom:847.482450px;}
.yc5{bottom:852.087825px;}
.y99{bottom:861.675825px;}
.yf6{bottom:861.692325px;}
.y54{bottom:861.693450px;}
.y14a{bottom:861.711075px;}
.y90{bottom:867.474450px;}
.yc4{bottom:871.281450px;}
.y8{bottom:873.069300px;}
.y32{bottom:873.879075px;}
.y98{bottom:880.869450px;}
.yf5{bottom:880.885950px;}
.y53{bottom:880.887075px;}
.y149{bottom:880.904700px;}
.y8f{bottom:886.668075px;}
.yc3{bottom:890.475075px;}
.y31{bottom:891.471450px;}
.y7{bottom:900.058500px;}
.y97{bottom:900.063075px;}
.yf4{bottom:900.079575px;}
.y52{bottom:900.080700px;}
.y8e{bottom:905.861700px;}
.y30{bottom:909.063825px;}
.yc2{bottom:909.668700px;}
.y96{bottom:919.256700px;}
.y51{bottom:919.274325px;}
.y1bd{bottom:924.700050px;}
.y1b9{bottom:924.713550px;}
.y1b4{bottom:924.727050px;}
.y1b0{bottom:924.740550px;}
.y1ab{bottom:924.754050px;}
.y1b5{bottom:924.767550px;}
.y1a2{bottom:924.781050px;}
.y19c{bottom:924.794550px;}
.y1cf{bottom:924.799050px;}
.y2f{bottom:926.656200px;}
.yc1{bottom:928.862325px;}
.y95{bottom:938.450325px;}
.y50{bottom:938.467950px;}
.y2e{bottom:944.248575px;}
.yc0{bottom:948.055950px;}
.y6{bottom:957.436500px;}
.y94{bottom:957.643950px;}
.y4f{bottom:957.661575px;}
.y2d{bottom:961.840950px;}
.ybf{bottom:967.249575px;}
.y93{bottom:976.837575px;}
.y2c{bottom:979.433325px;}
.y5{bottom:987.826500px;}
.y4e{bottom:996.031200px;}
.y2b{bottom:997.025700px;}
.y29{bottom:1028.954250px;}
.y2{bottom:1058.013000px;}
.y4{bottom:1082.778450px;}
.y3{bottom:1096.280700px;}
.he{height:32.935500px;}
.hb{height:35.328000px;}
.ha{height:36.000000px;}
.hc{height:36.567000px;}
.h4{height:37.536000px;}
.h3{height:38.250000px;}
.h22{height:41.133857px;}
.h2{height:42.792000px;}
.h25{height:45.144000px;}
.h24{height:46.602000px;}
.h23{height:47.142000px;}
.h18{height:48.906000px;}
.h9{height:50.485500px;}
.h8{height:55.663500px;}
.hf{height:56.308500px;}
.h11{height:57.476807px;}
.h7{height:60.841500px;}
.h16{height:60.858000px;}
.h14{height:60.858600px;}
.h1d{height:60.871200px;}
.h15{height:60.873900px;}
.h1a{height:60.891000px;}
.h19{height:60.907500px;}
.h1b{height:60.924000px;}
.h13{height:60.939000px;}
.h1c{height:61.089000px;}
.h17{height:61.171500px;}
.hd{height:61.202100px;}
.h1f{height:61.449300px;}
.h10{height:62.823486px;}
.h20{height:73.133357px;}
.h12{height:73.659000px;}
.h6{height:76.116600px;}
.h5{height:103.560000px;}
.h21{height:105.132857px;}
.h1e{height:114.426000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x12{left:85.039350px;}
.x2{left:93.883500px;}
.x1d{left:102.047250px;}
.x18{left:106.295100px;}
.x26{left:108.420600px;}
.xd{left:110.891400px;}
.x16{left:115.139250px;}
.x5{left:117.287700px;}
.xf{left:119.395500px;}
.x27{left:120.508500px;}
.x28{left:128.493750px;}
.x1b{left:142.594050px;}
.x4{left:143.843850px;}
.x3{left:152.243850px;}
.x10{left:154.039800px;}
.x11{left:160.039800px;}
.x29{left:170.365125px;}
.x17{left:174.330750px;}
.x47{left:176.720250px;}
.x15{left:180.970950px;}
.x64{left:185.564550px;}
.xc{left:189.814875px;}
.x48{left:192.704250px;}
.x2a{left:195.493650px;}
.x25{left:200.107650px;}
.x14{left:202.223700px;}
.x20{left:207.557400px;}
.x49{left:208.688250px;}
.xb{left:211.180500px;}
.x6b{left:217.787400px;}
.x2b{left:227.461650px;}
.x24{left:232.599300px;}
.x4a{left:233.771250px;}
.x65{left:242.629050px;}
.x4b{left:249.755250px;}
.x2c{left:252.558150px;}
.xa{left:255.661800px;}
.x66{left:258.613050px;}
.x4c{left:265.739250px;}
.x2d{left:268.542150px;}
.x19{left:274.975050px;}
.x1a{left:279.247950px;}
.x4d{left:281.723250px;}
.x2e{left:284.526150px;}
.x8{left:290.929425px;}
.x21{left:297.396150px;}
.x2f{left:300.510150px;}
.x6c{left:306.806400px;}
.x4e{left:322.790250px;}
.x30{left:325.579650px;}
.x7{left:334.762800px;}
.x9{left:338.693175px;}
.x31{left:341.563650px;}
.x4f{left:354.758250px;}
.x32{left:357.547650px;}
.x6{left:370.377600px;}
.x33{left:373.531650px;}
.x6d{left:379.854900px;}
.x50{left:386.726250px;}
.x6e{left:395.838900px;}
.x34{left:398.628150px;}
.x51{left:402.710250px;}
.x6f{left:411.822900px;}
.x35{left:414.612150px;}
.x22{left:421.221000px;}
.x52{left:427.793250px;}
.x23{left:429.847875px;}
.x7a{left:431.144250px;}
.x1f{left:439.958625px;}
.x53{left:443.777250px;}
.x36{left:446.580150px;}
.xe{left:448.802025px;}
.x70{left:452.903400px;}
.x1e{left:456.967500px;}
.x37{left:462.564150px;}
.x1c{left:465.811650px;}
.x54{left:468.873750px;}
.x67{left:471.714450px;}
.x7b{left:479.744250px;}
.x55{left:484.857750px;}
.x38{left:487.660650px;}
.x7c{left:495.944250px;}
.x56{left:500.841750px;}
.x39{left:503.644650px;}
.x57{left:516.825750px;}
.x3a{left:519.628650px;}
.x7d{left:522.338100px;}
.x71{left:525.951900px;}
.x68{left:528.778950px;}
.x3b{left:535.612650px;}
.x58{left:541.922250px;}
.x69{left:544.762950px;}
.x59{left:557.906250px;}
.x3c{left:560.695650px;}
.x5a{left:573.890250px;}
.x3d{left:576.679650px;}
.x72{left:583.016400px;}
.x5b{left:589.874250px;}
.x73{left:599.000400px;}
.x3e{left:601.776150px;}
.x5c{left:614.970750px;}
.x3f{left:617.760150px;}
.x13{left:629.624850px;}
.x5d{left:630.954750px;}
.x40{left:633.744150px;}
.x5e{left:646.938750px;}
.x41{left:649.728150px;}
.x74{left:656.051400px;}
.x5f{left:662.922750px;}
.x42{left:665.712150px;}
.x75{left:672.035400px;}
.x60{left:688.019250px;}
.x43{left:690.808650px;}
.x76{left:697.131900px;}
.x61{left:704.003250px;}
.x44{left:706.792650px;}
.x77{left:713.115900px;}
.x62{left:719.987250px;}
.x45{left:722.776650px;}
.x78{left:729.099900px;}
.x63{left:735.971250px;}
.x46{left:738.760650px;}
.x1{left:743.484750px;}
.x79{left:745.083900px;}
.x6a{left:754.782450px;}
@media print{
.v4{vertical-align:-18.800533pt;}
.v2{vertical-align:-15.600000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.166933pt;}
.v3{vertical-align:15.996000pt;}
.v1{vertical-align:19.120000pt;}
.v6{vertical-align:28.444000pt;}
.v5{vertical-align:56.836000pt;}
.ls17{letter-spacing:-1.253333pt;}
.ls46{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.626667pt;}
.ls4c{letter-spacing:-0.624000pt;}
.ls4a{letter-spacing:-0.528000pt;}
.ls49{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.313333pt;}
.ls33{letter-spacing:-0.203667pt;}
.ls45{letter-spacing:-0.048000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000267pt;}
.ls1c{letter-spacing:0.008533pt;}
.ls1f{letter-spacing:0.025333pt;}
.ls2e{letter-spacing:0.052000pt;}
.ls11{letter-spacing:0.057333pt;}
.ls1e{letter-spacing:0.062667pt;}
.ls37{letter-spacing:0.101400pt;}
.lsf{letter-spacing:0.114667pt;}
.ls3c{letter-spacing:0.125333pt;}
.ls31{letter-spacing:0.151733pt;}
.ls6{letter-spacing:0.156000pt;}
.ls10{letter-spacing:0.172000pt;}
.ls16{letter-spacing:0.188000pt;}
.ls32{letter-spacing:0.234000pt;}
.ls39{letter-spacing:0.260000pt;}
.lsc{letter-spacing:0.286667pt;}
.ls2f{letter-spacing:0.306933pt;}
.ls5{letter-spacing:0.312000pt;}
.ls15{letter-spacing:0.313333pt;}
.ls48{letter-spacing:0.336000pt;}
.ls36{letter-spacing:0.364000pt;}
.ls3{letter-spacing:0.401333pt;}
.ls7{letter-spacing:0.416000pt;}
.ls30{letter-spacing:0.468000pt;}
.ls3b{letter-spacing:0.473200pt;}
.ls19{letter-spacing:0.501333pt;}
.ls1a{letter-spacing:0.532667pt;}
.ls25{letter-spacing:0.549067pt;}
.ls1d{letter-spacing:0.564000pt;}
.ls12{letter-spacing:0.573333pt;}
.ls3d{letter-spacing:0.626667pt;}
.ls38{letter-spacing:0.642200pt;}
.lsa{letter-spacing:0.653333pt;}
.ls23{letter-spacing:0.728000pt;}
.lsb{letter-spacing:0.802667pt;}
.ls26{letter-spacing:0.832000pt;}
.ls22{letter-spacing:0.884000pt;}
.ls20{letter-spacing:0.932533pt;}
.lsd{letter-spacing:0.974667pt;}
.ls35{letter-spacing:0.988000pt;}
.ls27{letter-spacing:1.014000pt;}
.ls29{letter-spacing:1.040000pt;}
.ls1{letter-spacing:1.097600pt;}
.ls2a{letter-spacing:1.127200pt;}
.ls2d{letter-spacing:1.196000pt;}
.ls2{letter-spacing:1.204000pt;}
.lse{letter-spacing:1.318667pt;}
.ls2c{letter-spacing:1.352000pt;}
.ls21{letter-spacing:1.456000pt;}
.ls0{letter-spacing:1.493333pt;}
.ls2b{letter-spacing:1.716000pt;}
.ls41{letter-spacing:2.016000pt;}
.ls47{letter-spacing:2.256000pt;}
.ls3e{letter-spacing:6.650667pt;}
.ls42{letter-spacing:6.864000pt;}
.ls44{letter-spacing:7.104000pt;}
.ls28{letter-spacing:7.540000pt;}
.ls1b{letter-spacing:8.600000pt;}
.ls4b{letter-spacing:9.648000pt;}
.ls4{letter-spacing:14.333333pt;}
.ls43{letter-spacing:15.744000pt;}
.ls3a{letter-spacing:136.370000pt;}
.ls40{letter-spacing:212.576000pt;}
.ls14{letter-spacing:215.233067pt;}
.ls3f{letter-spacing:257.452000pt;}
.ls13{letter-spacing:305.233600pt;}
.ls9{letter-spacing:440.082133pt;}
.wscb{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.666667pt;}
.wsd7{word-spacing:-14.333333pt;}
.ws6c{word-spacing:-14.014000pt;}
.wsd6{word-spacing:-12.000000pt;}
.ws5b{word-spacing:-11.409333pt;}
.wsce{word-spacing:-11.040000pt;}
.ws31{word-spacing:-10.183333pt;}
.ws85{word-spacing:-9.979667pt;}
.wsd3{word-spacing:-9.648000pt;}
.ws9e{word-spacing:-9.092200pt;}
.wsa3{word-spacing:-8.923200pt;}
.ws9d{word-spacing:-8.551400pt;}
.ws32{word-spacing:-8.450000pt;}
.wsc8{word-spacing:-7.104000pt;}
.wsc7{word-spacing:-6.864000pt;}
.ws5{word-spacing:-1.204000pt;}
.ws4{word-spacing:-1.097600pt;}
.ws82{word-spacing:-1.040000pt;}
.ws22{word-spacing:-0.802667pt;}
.ws2{word-spacing:-0.746667pt;}
.wsb4{word-spacing:-0.626667pt;}
.ws30{word-spacing:-0.573333pt;}
.ws3{word-spacing:-0.548800pt;}
.wsd4{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.401333pt;}
.ws1b{word-spacing:-0.326667pt;}
.ws4b{word-spacing:-0.313333pt;}
.wsae{word-spacing:-0.260000pt;}
.ws2e{word-spacing:-0.172000pt;}
.ws81{word-spacing:-0.156000pt;}
.wscd{word-spacing:-0.144000pt;}
.ws26{word-spacing:-0.114667pt;}
.wsb5{word-spacing:-0.062667pt;}
.ws29{word-spacing:-0.057333pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.062667pt;}
.ws17{word-spacing:0.085333pt;}
.ws36{word-spacing:0.125333pt;}
.ws94{word-spacing:0.156000pt;}
.ws62{word-spacing:0.188000pt;}
.wsbc{word-spacing:0.229333pt;}
.wsaf{word-spacing:0.250667pt;}
.ws97{word-spacing:0.260000pt;}
.ws57{word-spacing:0.313333pt;}
.ws91{word-spacing:0.376000pt;}
.ws35{word-spacing:0.438667pt;}
.wsd0{word-spacing:0.480000pt;}
.wscf{word-spacing:0.528000pt;}
.ws4c{word-spacing:0.564000pt;}
.wsd8{word-spacing:0.624000pt;}
.ws49{word-spacing:0.626667pt;}
.ws16{word-spacing:0.640000pt;}
.ws5d{word-spacing:0.689333pt;}
.ws88{word-spacing:0.752000pt;}
.ws71{word-spacing:0.814667pt;}
.wsba{word-spacing:0.860000pt;}
.ws6a{word-spacing:0.877333pt;}
.ws7d{word-spacing:0.884000pt;}
.ws51{word-spacing:0.940000pt;}
.wsc9{word-spacing:0.960000pt;}
.ws48{word-spacing:1.002667pt;}
.ws54{word-spacing:1.065333pt;}
.wsa9{word-spacing:1.128000pt;}
.ws95{word-spacing:1.144000pt;}
.wsb0{word-spacing:1.190667pt;}
.wsda{word-spacing:1.248000pt;}
.ws55{word-spacing:1.253333pt;}
.ws1c{word-spacing:1.261333pt;}
.ws99{word-spacing:1.300000pt;}
.ws5e{word-spacing:1.316000pt;}
.ws39{word-spacing:1.378667pt;}
.wsa2{word-spacing:1.404000pt;}
.ws7{word-spacing:1.433333pt;}
.ws73{word-spacing:1.441333pt;}
.ws8b{word-spacing:1.504000pt;}
.ws5a{word-spacing:1.566667pt;}
.ws9{word-spacing:1.605333pt;}
.ws8d{word-spacing:1.629333pt;}
.wsbe{word-spacing:1.662667pt;}
.ws41{word-spacing:1.692000pt;}
.ws6e{word-spacing:1.754667pt;}
.wsc{word-spacing:1.777333pt;}
.ws8f{word-spacing:1.817333pt;}
.ws7b{word-spacing:1.880000pt;}
.ws93{word-spacing:1.924000pt;}
.ws40{word-spacing:1.942667pt;}
.ws37{word-spacing:2.005333pt;}
.wsa{word-spacing:2.064000pt;}
.ws69{word-spacing:2.068000pt;}
.ws34{word-spacing:2.130667pt;}
.ws13{word-spacing:2.132000pt;}
.wse{word-spacing:2.178667pt;}
.ws5f{word-spacing:2.193333pt;}
.ws24{word-spacing:2.236000pt;}
.ws3c{word-spacing:2.256000pt;}
.ws1d{word-spacing:2.293333pt;}
.wsa5{word-spacing:2.318667pt;}
.ws1f{word-spacing:2.350667pt;}
.wsb1{word-spacing:2.381333pt;}
.ws6d{word-spacing:2.444000pt;}
.wsd9{word-spacing:2.448000pt;}
.wsf{word-spacing:2.465333pt;}
.ws56{word-spacing:2.506667pt;}
.ws9a{word-spacing:2.569333pt;}
.ws64{word-spacing:2.632000pt;}
.ws1e{word-spacing:2.637333pt;}
.ws8{word-spacing:2.694667pt;}
.ws2b{word-spacing:2.752000pt;}
.ws5c{word-spacing:2.757333pt;}
.ws6b{word-spacing:2.820000pt;}
.wsab{word-spacing:2.882667pt;}
.ws61{word-spacing:2.945333pt;}
.wsc0{word-spacing:2.981333pt;}
.ws38{word-spacing:3.008000pt;}
.ws4f{word-spacing:3.016000pt;}
.ws3a{word-spacing:3.070667pt;}
.wsb8{word-spacing:3.096000pt;}
.wsb3{word-spacing:3.133333pt;}
.wsbd{word-spacing:3.153333pt;}
.ws83{word-spacing:3.172000pt;}
.ws9c{word-spacing:3.196000pt;}
.ws20{word-spacing:3.268000pt;}
.ws70{word-spacing:3.321333pt;}
.ws7f{word-spacing:3.380000pt;}
.ws87{word-spacing:3.384000pt;}
.ws3d{word-spacing:3.446667pt;}
.ws2d{word-spacing:3.497333pt;}
.ws25{word-spacing:3.554667pt;}
.ws42{word-spacing:3.572000pt;}
.ws3e{word-spacing:3.634667pt;}
.wsb7{word-spacing:3.669333pt;}
.ws80{word-spacing:3.692000pt;}
.wsa7{word-spacing:3.697333pt;}
.ws52{word-spacing:3.760000pt;}
.ws84{word-spacing:3.796000pt;}
.ws3f{word-spacing:3.822667pt;}
.ws79{word-spacing:3.948000pt;}
.wsad{word-spacing:3.952000pt;}
.ws86{word-spacing:4.010667pt;}
.ws15{word-spacing:4.056000pt;}
.ws11{word-spacing:4.070667pt;}
.ws8a{word-spacing:4.073333pt;}
.ws2a{word-spacing:4.128000pt;}
.ws60{word-spacing:4.136000pt;}
.ws8e{word-spacing:4.198667pt;}
.wsb{word-spacing:4.242667pt;}
.wsaa{word-spacing:4.261333pt;}
.ws76{word-spacing:4.324000pt;}
.wsb9{word-spacing:4.357333pt;}
.ws68{word-spacing:4.386667pt;}
.ws50{word-spacing:4.420000pt;}
.wsac{word-spacing:4.472000pt;}
.wsa0{word-spacing:4.512000pt;}
.ws27{word-spacing:4.529333pt;}
.ws75{word-spacing:4.574667pt;}
.ws4e{word-spacing:4.700000pt;}
.wsa8{word-spacing:4.762667pt;}
.ws10{word-spacing:4.816000pt;}
.ws92{word-spacing:4.825333pt;}
.ws89{word-spacing:4.888000pt;}
.wsd{word-spacing:4.930667pt;}
.wsb2{word-spacing:4.950667pt;}
.ws12{word-spacing:4.988000pt;}
.wsa1{word-spacing:5.013333pt;}
.ws2f{word-spacing:5.045333pt;}
.ws9b{word-spacing:5.138667pt;}
.ws9f{word-spacing:5.201333pt;}
.ws66{word-spacing:5.264000pt;}
.ws7a{word-spacing:5.326667pt;}
.ws8c{word-spacing:5.389333pt;}
.ws63{word-spacing:5.452000pt;}
.ws7e{word-spacing:5.512000pt;}
.ws90{word-spacing:5.514667pt;}
.wsa4{word-spacing:5.577333pt;}
.ws2c{word-spacing:5.618667pt;}
.ws4d{word-spacing:5.640000pt;}
.ws47{word-spacing:5.828000pt;}
.ws28{word-spacing:5.848000pt;}
.wsbb{word-spacing:5.905333pt;}
.ws74{word-spacing:5.953333pt;}
.wscc{word-spacing:6.000000pt;}
.ws77{word-spacing:6.016000pt;}
.ws23{word-spacing:6.134667pt;}
.ws72{word-spacing:6.141333pt;}
.wsbf{word-spacing:6.192000pt;}
.ws3b{word-spacing:6.204000pt;}
.ws78{word-spacing:6.266667pt;}
.ws96{word-spacing:6.292000pt;}
.ws6f{word-spacing:6.329333pt;}
.ws46{word-spacing:6.392000pt;}
.ws67{word-spacing:6.454667pt;}
.ws14{word-spacing:6.500000pt;}
.ws65{word-spacing:6.517333pt;}
.wsa6{word-spacing:6.580000pt;}
.wsb6{word-spacing:6.593333pt;}
.wsc6{word-spacing:6.720000pt;}
.ws59{word-spacing:6.768000pt;}
.ws53{word-spacing:6.830667pt;}
.ws4a{word-spacing:7.081333pt;}
.ws43{word-spacing:7.144000pt;}
.ws6{word-spacing:7.166667pt;}
.ws7c{word-spacing:7.206667pt;}
.ws44{word-spacing:7.394667pt;}
.ws45{word-spacing:7.645333pt;}
.ws98{word-spacing:7.708000pt;}
.ws33{word-spacing:7.833333pt;}
.ws19{word-spacing:9.472000pt;}
.wsca{word-spacing:10.704000pt;}
.ws18{word-spacing:11.861333pt;}
.ws1{word-spacing:12.602667pt;}
.wsc1{word-spacing:45.552000pt;}
.wsc2{word-spacing:96.876000pt;}
.wsc3{word-spacing:102.752000pt;}
.wsd5{word-spacing:158.880000pt;}
.wsd1{word-spacing:234.480000pt;}
.wsc5{word-spacing:758.976000pt;}
.wsc4{word-spacing:1067.456000pt;}
.wsd2{word-spacing:1306.032000pt;}
._7{margin-left:-21.333333pt;}
._c{margin-left:-20.241333pt;}
._16{margin-left:-15.744000pt;}
._1{margin-left:-12.602667pt;}
._6{margin-left:-11.124267pt;}
._15{margin-left:-6.864000pt;}
._2{margin-left:-1.493333pt;}
._3{width:1.204000pt;}
._b{width:2.180800pt;}
._10{width:3.760000pt;}
._e{width:4.700000pt;}
._a{width:5.621200pt;}
._d{width:7.100133pt;}
._f{width:9.307733pt;}
._4{width:10.868000pt;}
._5{width:11.861333pt;}
._8{width:13.645333pt;}
._2d{width:46.320000pt;}
._1b{width:47.472000pt;}
._12{width:66.716000pt;}
._11{width:77.064000pt;}
._30{width:90.384000pt;}
._13{width:116.636000pt;}
._2b{width:160.224000pt;}
._38{width:172.224000pt;}
._39{width:175.536000pt;}
._27{width:183.984000pt;}
._29{width:202.944000pt;}
._3a{width:210.864000pt;}
._37{width:240.528000pt;}
._18{width:274.320000pt;}
._35{width:285.888000pt;}
._32{width:290.016000pt;}
._23{width:411.984000pt;}
._31{width:437.592000pt;}
._33{width:464.544000pt;}
._2a{width:500.400000pt;}
._1a{width:522.576000pt;}
._1c{width:550.704000pt;}
._19{width:586.992000pt;}
._22{width:624.912000pt;}
._26{width:642.144000pt;}
._2c{width:666.624000pt;}
._3b{width:729.648000pt;}
._20{width:769.584000pt;}
._14{width:881.760000pt;}
._34{width:981.456000pt;}
._2e{width:1140.288000pt;}
._2f{width:1188.048000pt;}
._17{width:1189.632000pt;}
._28{width:1207.440000pt;}
._24{width:1213.728000pt;}
._25{width:1229.952000pt;}
._1d{width:1237.056000pt;}
._1f{width:1244.256000pt;}
._21{width:1267.584000pt;}
._1e{width:1274.976000pt;}
._9{width:1275.997333pt;}
._36{width:1318.032000pt;}
._0{width:1743.112000pt;}
.fsd{font-size:31.200000pt;}
.fsb{font-size:33.800000pt;}
.fsa{font-size:40.733333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs9{font-size:46.666667pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:57.333333pt;}
.fs8{font-size:61.333333pt;}
.fs4{font-size:62.666667pt;}
.fs3{font-size:78.400000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.950533pt;}
.y2a{bottom:68.246533pt;}
.y1ba{bottom:115.191600pt;}
.y1b6{bottom:115.203600pt;}
.y1b1{bottom:115.215600pt;}
.y1ac{bottom:115.227600pt;}
.y1a6{bottom:115.239600pt;}
.y1a3{bottom:115.251600pt;}
.y19d{bottom:115.263600pt;}
.y198{bottom:115.275600pt;}
.y1d1{bottom:117.160667pt;}
.y1d0{bottom:117.165333pt;}
.y28{bottom:117.166667pt;}
.y92{bottom:117.167600pt;}
.y11b{bottom:117.773733pt;}
.y177{bottom:117.782467pt;}
.y148{bottom:117.846867pt;}
.y78{bottom:117.923600pt;}
.y8d{bottom:118.048400pt;}
.yeb{bottom:118.456533pt;}
.y16e{bottom:118.904200pt;}
.y12d{bottom:119.278267pt;}
.y193{bottom:119.726400pt;}
.y126{bottom:120.794067pt;}
.ybe{bottom:122.504867pt;}
.y27{bottom:128.537333pt;}
.y196{bottom:130.100400pt;}
.y11a{bottom:131.982733pt;}
.y77{bottom:132.132600pt;}
.yea{bottom:132.665533pt;}
.y176{bottom:134.843467pt;}
.y8c{bottom:135.109400pt;}
.y197{bottom:135.274400pt;}
.y147{bottom:135.955867pt;}
.y16d{bottom:137.013200pt;}
.ybd{bottom:137.938867pt;}
.y125{bottom:138.903067pt;}
.ybc{bottom:141.937867pt;}
.y26{bottom:145.569200pt;}
.y146{bottom:146.269867pt;}
.y119{bottom:150.091733pt;}
.y76{bottom:150.241600pt;}
.ye9{bottom:150.774533pt;}
.y175{bottom:151.904467pt;}
.y8b{bottom:152.170400pt;}
.y118{bottom:160.407400pt;}
.y145{bottom:160.478867pt;}
.ye8{bottom:161.090200pt;}
.yf3{bottom:161.096867pt;}
.y25{bottom:162.614533pt;}
.y174{bottom:168.830400pt;}
.y8a{bottom:169.231400pt;}
.y117{bottom:174.616400pt;}
.ybb{bottom:174.632200pt;}
.ye7{bottom:175.299200pt;}
.yf2{bottom:175.305867pt;}
.y144{bottom:178.587867pt;}
.y24{bottom:179.659867pt;}
.y124{bottom:181.337200pt;}
.y173{bottom:185.891400pt;}
.y16c{bottom:185.898000pt;}
.y89{bottom:186.292400pt;}
.y116{bottom:188.825400pt;}
.ye6{bottom:189.508200pt;}
.yf1{bottom:189.514867pt;}
.yba{bottom:190.269867pt;}
.y23{bottom:191.030533pt;}
.y1b7{bottom:202.131600pt;}
.y1b2{bottom:202.143600pt;}
.y1ad{bottom:202.155600pt;}
.y1a7{bottom:202.167600pt;}
.y1a4{bottom:202.179600pt;}
.y19e{bottom:202.191600pt;}
.y199{bottom:202.203600pt;}
.y172{bottom:202.952400pt;}
.y16b{bottom:202.959000pt;}
.y75{bottom:203.016867pt;}
.y88{bottom:203.353400pt;}
.yf0{bottom:203.723867pt;}
.yb9{bottom:205.907533pt;}
.y115{bottom:206.934400pt;}
.y192{bottom:207.292800pt;}
.ye5{bottom:207.617200pt;}
.y22{bottom:208.075867pt;}
.ye4{bottom:217.931200pt;}
.yef{bottom:217.932867pt;}
.y21{bottom:219.446533pt;}
.y171{bottom:220.013400pt;}
.y16a{bottom:220.020000pt;}
.y74{bottom:220.077867pt;}
.yb8{bottom:221.545200pt;}
.y191{bottom:222.930467pt;}
.y87{bottom:228.937067pt;}
.ye3{bottom:232.140200pt;}
.yee{bottom:232.141867pt;}
.y170{bottom:237.074400pt;}
.y169{bottom:237.081000pt;}
.y73{bottom:237.138867pt;}
.y143{bottom:238.052733pt;}
.y190{bottom:238.568133pt;}
.yed{bottom:246.350867pt;}
.ye2{bottom:250.249200pt;}
.yb7{bottom:254.104067pt;}
.y168{bottom:254.142000pt;}
.y114{bottom:254.148067pt;}
.y72{bottom:254.199867pt;}
.y18f{bottom:254.205800pt;}
.y142{bottom:255.099067pt;}
.y20{bottom:257.766133pt;}
.ye1{bottom:260.564867pt;}
.yec{bottom:264.459867pt;}
.y18e{bottom:269.843467pt;}
.yb6{bottom:271.165067pt;}
.y16f{bottom:271.180733pt;}
.y167{bottom:271.203000pt;}
.y113{bottom:271.209067pt;}
.y71{bottom:271.260867pt;}
.y86{bottom:271.581733pt;}
.y1f{bottom:271.975133pt;}
.y141{bottom:272.160067pt;}
.ye0{bottom:274.773867pt;}
.y18d{bottom:285.481133pt;}
.y1e{bottom:286.184133pt;}
.yb5{bottom:288.226067pt;}
.y166{bottom:288.264000pt;}
.y112{bottom:288.270067pt;}
.y70{bottom:288.321867pt;}
.y85{bottom:288.642733pt;}
.ydf{bottom:288.982867pt;}
.y1ae{bottom:289.083600pt;}
.y1a8{bottom:289.095600pt;}
.y19f{bottom:289.119600pt;}
.y1cd{bottom:289.133867pt;}
.y140{bottom:289.221067pt;}
.y18c{bottom:301.118800pt;}
.yb4{bottom:305.287067pt;}
.y165{bottom:305.325000pt;}
.y111{bottom:305.331067pt;}
.y6f{bottom:305.382867pt;}
.y84{bottom:305.703733pt;}
.y13f{bottom:306.282067pt;}
.yde{bottom:307.091867pt;}
.y18b{bottom:316.756467pt;}
.yb3{bottom:322.348067pt;}
.y164{bottom:322.386000pt;}
.y110{bottom:322.392067pt;}
.y6e{bottom:322.443867pt;}
.y83{bottom:322.764733pt;}
.y4d{bottom:323.274733pt;}
.y13e{bottom:323.288067pt;}
.y18a{bottom:332.394133pt;}
.yb2{bottom:339.409067pt;}
.y163{bottom:339.447000pt;}
.y10f{bottom:339.453067pt;}
.y6d{bottom:339.504867pt;}
.y82{bottom:339.825733pt;}
.y13d{bottom:340.349067pt;}
.y1d{bottom:343.189467pt;}
.y4c{bottom:346.738400pt;}
.ydd{bottom:347.983733pt;}
.y189{bottom:348.031800pt;}
.y1c1{bottom:355.431333pt;}
.yb1{bottom:356.470067pt;}
.y162{bottom:356.508000pt;}
.y10e{bottom:356.514067pt;}
.y6c{bottom:356.565867pt;}
.y81{bottom:356.886733pt;}
.y13c{bottom:357.410067pt;}
.y1c{bottom:358.827133pt;}
.y4b{bottom:362.376067pt;}
.y188{bottom:363.669467pt;}
.ydc{bottom:365.044733pt;}
.y1aa{bottom:372.243600pt;}
.y1c4{bottom:372.267600pt;}
.y1be{bottom:372.279600pt;}
.yb0{bottom:373.531067pt;}
.y161{bottom:373.569000pt;}
.y10d{bottom:373.575067pt;}
.y6b{bottom:373.626867pt;}
.y80{bottom:373.947733pt;}
.y1b{bottom:374.464800pt;}
.y13b{bottom:374.471067pt;}
.y4a{bottom:378.013733pt;}
.y187{bottom:379.307133pt;}
.ydb{bottom:382.105733pt;}
.y1a{bottom:390.102467pt;}
.yaf{bottom:390.592067pt;}
.y160{bottom:390.630000pt;}
.y10c{bottom:390.636067pt;}
.y6a{bottom:390.687867pt;}
.y7f{bottom:391.008733pt;}
.y13a{bottom:391.532067pt;}
.y49{bottom:393.651400pt;}
.y186{bottom:394.944800pt;}
.yda{bottom:399.166733pt;}
.y19{bottom:405.740133pt;}
.yae{bottom:407.653067pt;}
.y15f{bottom:407.691000pt;}
.y10b{bottom:407.697067pt;}
.y69{bottom:407.748867pt;}
.y7e{bottom:408.069733pt;}
.y139{bottom:408.593067pt;}
.y48{bottom:409.289067pt;}
.y185{bottom:410.582467pt;}
.y194{bottom:410.614400pt;}
.yd9{bottom:416.227733pt;}
.y18{bottom:421.377800pt;}
.yad{bottom:424.714067pt;}
.y15e{bottom:424.752000pt;}
.y10a{bottom:424.758067pt;}
.y68{bottom:424.809867pt;}
.y47{bottom:424.926733pt;}
.y7d{bottom:425.130733pt;}
.y138{bottom:425.654067pt;}
.y184{bottom:426.220133pt;}
.yd8{bottom:433.288733pt;}
.y17{bottom:437.015467pt;}
.y46{bottom:440.564400pt;}
.yac{bottom:441.775067pt;}
.y15d{bottom:441.813000pt;}
.y109{bottom:441.819067pt;}
.y183{bottom:441.857800pt;}
.y67{bottom:441.870867pt;}
.y137{bottom:442.715067pt;}
.yd7{bottom:450.349733pt;}
.y16{bottom:452.653133pt;}
.y7c{bottom:453.534400pt;}
.y45{bottom:456.202067pt;}
.y182{bottom:457.495467pt;}
.yab{bottom:458.836067pt;}
.y66{bottom:458.851733pt;}
.y15c{bottom:458.874000pt;}
.y108{bottom:458.880067pt;}
.y136{bottom:459.776067pt;}
.y1bb{bottom:466.683600pt;}
.y1b8{bottom:466.695600pt;}
.y1b3{bottom:466.707600pt;}
.y1af{bottom:466.719600pt;}
.y1a9{bottom:466.731600pt;}
.y1a5{bottom:466.743600pt;}
.y1a0{bottom:466.755600pt;}
.y19a{bottom:466.767600pt;}
.y1ce{bottom:466.771600pt;}
.yd6{bottom:467.410733pt;}
.y15{bottom:468.290800pt;}
.y44{bottom:471.839733pt;}
.y181{bottom:473.133133pt;}
.yaa{bottom:475.897067pt;}
.y65{bottom:475.912733pt;}
.y15b{bottom:475.935000pt;}
.y107{bottom:475.941067pt;}
.y135{bottom:476.837067pt;}
.y123{bottom:480.300000pt;}
.y14{bottom:483.928467pt;}
.yd5{bottom:484.471733pt;}
.y43{bottom:487.477400pt;}
.y180{bottom:488.770800pt;}
.ya9{bottom:492.958067pt;}
.y64{bottom:492.973733pt;}
.y15a{bottom:492.996000pt;}
.y106{bottom:493.002067pt;}
.y134{bottom:493.898067pt;}
.y7b{bottom:496.110933pt;}
.y122{bottom:497.361000pt;}
.y13{bottom:499.566133pt;}
.yd4{bottom:501.532733pt;}
.y42{bottom:503.115067pt;}
.y17f{bottom:504.408467pt;}
.ya8{bottom:510.019067pt;}
.y63{bottom:510.034733pt;}
.y159{bottom:510.057000pt;}
.y105{bottom:510.063067pt;}
.y133{bottom:510.959067pt;}
.y7a{bottom:511.748600pt;}
.y12c{bottom:512.928867pt;}
.y121{bottom:514.422000pt;}
.y12{bottom:515.203800pt;}
.yd3{bottom:518.593733pt;}
.y41{bottom:518.752733pt;}
.y17e{bottom:520.046133pt;}
.ya7{bottom:527.080067pt;}
.y62{bottom:527.095733pt;}
.y158{bottom:527.118000pt;}
.y104{bottom:527.124067pt;}
.y79{bottom:527.386267pt;}
.y132{bottom:528.020067pt;}
.y12b{bottom:529.989867pt;}
.y11{bottom:530.841467pt;}
.y120{bottom:531.483000pt;}
.y40{bottom:534.390400pt;}
.yd2{bottom:535.654733pt;}
.y17d{bottom:535.683800pt;}
.ya6{bottom:544.141067pt;}
.y61{bottom:544.156733pt;}
.y157{bottom:544.179000pt;}
.y103{bottom:544.185067pt;}
.y131{bottom:545.081067pt;}
.y10{bottom:546.479133pt;}
.y12a{bottom:547.050867pt;}
.y11f{bottom:548.544000pt;}
.y3f{bottom:550.028067pt;}
.y17c{bottom:551.321467pt;}
.yd1{bottom:552.715733pt;}
.ya5{bottom:561.202067pt;}
.y60{bottom:561.217733pt;}
.y156{bottom:561.240000pt;}
.y102{bottom:561.246067pt;}
.yf{bottom:562.116800pt;}
.y130{bottom:562.142067pt;}
.y91{bottom:563.634400pt;}
.y129{bottom:564.111867pt;}
.y1ca{bottom:564.975600pt;}
.y1c9{bottom:564.987600pt;}
.y1c8{bottom:564.999600pt;}
.y1c6{bottom:565.011600pt;}
.y1bf{bottom:565.035600pt;}
.y11e{bottom:565.605000pt;}
.y3e{bottom:565.665733pt;}
.y17b{bottom:566.959133pt;}
.yd0{bottom:569.776733pt;}
.ye{bottom:577.754467pt;}
.ya4{bottom:578.263067pt;}
.y5f{bottom:578.278733pt;}
.y155{bottom:578.301000pt;}
.y101{bottom:578.307067pt;}
.y12f{bottom:579.203067pt;}
.y3d{bottom:581.303400pt;}
.y17a{bottom:582.596800pt;}
.ycf{bottom:586.837733pt;}
.y11d{bottom:591.188667pt;}
.yd{bottom:593.392133pt;}
.ya3{bottom:595.324067pt;}
.y5e{bottom:595.339733pt;}
.y154{bottom:595.362000pt;}
.y100{bottom:595.368067pt;}
.y3c{bottom:596.941067pt;}
.y128{bottom:598.226200pt;}
.y179{bottom:598.234467pt;}
.y195{bottom:603.378400pt;}
.yce{bottom:603.898733pt;}
.ya2{bottom:612.385067pt;}
.y5d{bottom:612.400733pt;}
.y153{bottom:612.423000pt;}
.yff{bottom:612.429067pt;}
.y3b{bottom:612.578733pt;}
.y127{bottom:613.863867pt;}
.y178{bottom:613.872133pt;}
.ycd{bottom:620.959733pt;}
.y3a{bottom:628.216400pt;}
.ya1{bottom:629.446067pt;}
.y5c{bottom:629.461733pt;}
.y152{bottom:629.484000pt;}
.yfe{bottom:629.490067pt;}
.y12e{bottom:630.366800pt;}
.ycc{bottom:638.020733pt;}
.y39{bottom:643.854067pt;}
.ya0{bottom:646.507067pt;}
.y5b{bottom:646.522733pt;}
.y151{bottom:646.545000pt;}
.yfd{bottom:646.551067pt;}
.y11c{bottom:652.723600pt;}
.ycb{bottom:655.081733pt;}
.y1bc{bottom:659.439600pt;}
.y1cc{bottom:659.451600pt;}
.y1cb{bottom:659.463600pt;}
.y38{bottom:659.491733pt;}
.y1c7{bottom:659.499600pt;}
.y1c5{bottom:659.511600pt;}
.y1c0{bottom:659.523600pt;}
.y9f{bottom:663.568067pt;}
.y5a{bottom:663.583733pt;}
.y150{bottom:663.606000pt;}
.yfc{bottom:663.612067pt;}
.yc{bottom:670.020067pt;}
.yca{bottom:672.142733pt;}
.y37{bottom:675.129400pt;}
.y9e{bottom:680.629067pt;}
.y59{bottom:680.644733pt;}
.yfb{bottom:680.654733pt;}
.y14f{bottom:680.667000pt;}
.yb{bottom:687.081067pt;}
.yc9{bottom:689.200067pt;}
.y36{bottom:690.767067pt;}
.y9d{bottom:697.690067pt;}
.y58{bottom:697.705733pt;}
.yfa{bottom:697.715733pt;}
.y14e{bottom:697.728000pt;}
.yc8{bottom:706.253867pt;}
.y35{bottom:706.404733pt;}
.y9c{bottom:714.751067pt;}
.y57{bottom:714.766733pt;}
.yf9{bottom:714.776733pt;}
.y14d{bottom:714.789000pt;}
.y34{bottom:722.042400pt;}
.ya{bottom:723.036067pt;}
.yc7{bottom:723.314867pt;}
.y9b{bottom:731.812067pt;}
.y56{bottom:731.827733pt;}
.yf8{bottom:731.837733pt;}
.y14c{bottom:731.850000pt;}
.y9{bottom:740.097067pt;}
.yc6{bottom:740.372067pt;}
.y1c3{bottom:746.415600pt;}
.y1c2{bottom:746.427600pt;}
.y1a1{bottom:746.439600pt;}
.y19b{bottom:746.451600pt;}
.y9a{bottom:748.873067pt;}
.y55{bottom:748.888733pt;}
.yf7{bottom:748.898733pt;}
.y14b{bottom:748.911000pt;}
.y33{bottom:753.317733pt;}
.yc5{bottom:757.411400pt;}
.y99{bottom:765.934067pt;}
.yf6{bottom:765.948733pt;}
.y54{bottom:765.949733pt;}
.y14a{bottom:765.965400pt;}
.y90{bottom:771.088400pt;}
.yc4{bottom:774.472400pt;}
.y8{bottom:776.061600pt;}
.y32{bottom:776.781400pt;}
.y98{bottom:782.995067pt;}
.yf5{bottom:783.009733pt;}
.y53{bottom:783.010733pt;}
.y149{bottom:783.026400pt;}
.y8f{bottom:788.149400pt;}
.yc3{bottom:791.533400pt;}
.y31{bottom:792.419067pt;}
.y7{bottom:800.052000pt;}
.y97{bottom:800.056067pt;}
.yf4{bottom:800.070733pt;}
.y52{bottom:800.071733pt;}
.y8e{bottom:805.210400pt;}
.y30{bottom:808.056733pt;}
.yc2{bottom:808.594400pt;}
.y96{bottom:817.117067pt;}
.y51{bottom:817.132733pt;}
.y1bd{bottom:821.955600pt;}
.y1b9{bottom:821.967600pt;}
.y1b4{bottom:821.979600pt;}
.y1b0{bottom:821.991600pt;}
.y1ab{bottom:822.003600pt;}
.y1b5{bottom:822.015600pt;}
.y1a2{bottom:822.027600pt;}
.y19c{bottom:822.039600pt;}
.y1cf{bottom:822.043600pt;}
.y2f{bottom:823.694400pt;}
.yc1{bottom:825.655400pt;}
.y95{bottom:834.178067pt;}
.y50{bottom:834.193733pt;}
.y2e{bottom:839.332067pt;}
.yc0{bottom:842.716400pt;}
.y6{bottom:851.054667pt;}
.y94{bottom:851.239067pt;}
.y4f{bottom:851.254733pt;}
.y2d{bottom:854.969733pt;}
.ybf{bottom:859.777400pt;}
.y93{bottom:868.300067pt;}
.y2c{bottom:870.607400pt;}
.y5{bottom:878.068000pt;}
.y4e{bottom:885.361067pt;}
.y2b{bottom:886.245067pt;}
.y29{bottom:914.626000pt;}
.y2{bottom:940.456000pt;}
.y4{bottom:962.469733pt;}
.y3{bottom:974.471733pt;}
.he{height:29.276000pt;}
.hb{height:31.402667pt;}
.ha{height:32.000000pt;}
.hc{height:32.504000pt;}
.h4{height:33.365333pt;}
.h3{height:34.000000pt;}
.h22{height:36.563429pt;}
.h2{height:38.037333pt;}
.h25{height:40.128000pt;}
.h24{height:41.424000pt;}
.h23{height:41.904000pt;}
.h18{height:43.472000pt;}
.h9{height:44.876000pt;}
.h8{height:49.478667pt;}
.hf{height:50.052000pt;}
.h11{height:51.090495pt;}
.h7{height:54.081333pt;}
.h16{height:54.096000pt;}
.h14{height:54.096533pt;}
.h1d{height:54.107733pt;}
.h15{height:54.110133pt;}
.h1a{height:54.125333pt;}
.h19{height:54.140000pt;}
.h1b{height:54.154667pt;}
.h13{height:54.168000pt;}
.h1c{height:54.301333pt;}
.h17{height:54.374667pt;}
.hd{height:54.401867pt;}
.h1f{height:54.621600pt;}
.h10{height:55.843099pt;}
.h20{height:65.007429pt;}
.h12{height:65.474667pt;}
.h6{height:67.659200pt;}
.h5{height:92.053333pt;}
.h21{height:93.451429pt;}
.h1e{height:101.712000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x12{left:75.590533pt;}
.x2{left:83.452000pt;}
.x1d{left:90.708667pt;}
.x18{left:94.484533pt;}
.x26{left:96.373867pt;}
.xd{left:98.570133pt;}
.x16{left:102.346000pt;}
.x5{left:104.255733pt;}
.xf{left:106.129333pt;}
.x27{left:107.118667pt;}
.x28{left:114.216667pt;}
.x1b{left:126.750267pt;}
.x4{left:127.861200pt;}
.x3{left:135.327867pt;}
.x10{left:136.924267pt;}
.x11{left:142.257600pt;}
.x29{left:151.435667pt;}
.x17{left:154.960667pt;}
.x47{left:157.084667pt;}
.x15{left:160.863067pt;}
.x64{left:164.946267pt;}
.xc{left:168.724333pt;}
.x48{left:171.292667pt;}
.x2a{left:173.772133pt;}
.x25{left:177.873467pt;}
.x14{left:179.754400pt;}
.x20{left:184.495467pt;}
.x49{left:185.500667pt;}
.xb{left:187.716000pt;}
.x6b{left:193.588800pt;}
.x2b{left:202.188133pt;}
.x24{left:206.754933pt;}
.x4a{left:207.796667pt;}
.x65{left:215.670267pt;}
.x4b{left:222.004667pt;}
.x2c{left:224.496133pt;}
.xa{left:227.254933pt;}
.x66{left:229.878267pt;}
.x4c{left:236.212667pt;}
.x2d{left:238.704133pt;}
.x19{left:244.422267pt;}
.x1a{left:248.220400pt;}
.x4d{left:250.420667pt;}
.x2e{left:252.912133pt;}
.x8{left:258.603933pt;}
.x21{left:264.352133pt;}
.x2f{left:267.120133pt;}
.x6c{left:272.716800pt;}
.x4e{left:286.924667pt;}
.x30{left:289.404133pt;}
.x7{left:297.566933pt;}
.x9{left:301.060600pt;}
.x31{left:303.612133pt;}
.x4f{left:315.340667pt;}
.x32{left:317.820133pt;}
.x6{left:329.224533pt;}
.x33{left:332.028133pt;}
.x6d{left:337.648800pt;}
.x50{left:343.756667pt;}
.x6e{left:351.856800pt;}
.x34{left:354.336133pt;}
.x51{left:357.964667pt;}
.x6f{left:366.064800pt;}
.x35{left:368.544133pt;}
.x22{left:374.418667pt;}
.x52{left:380.260667pt;}
.x23{left:382.087000pt;}
.x7a{left:383.239333pt;}
.x1f{left:391.074333pt;}
.x53{left:394.468667pt;}
.x36{left:396.960133pt;}
.xe{left:398.935133pt;}
.x70{left:402.580800pt;}
.x1e{left:406.193333pt;}
.x37{left:411.168133pt;}
.x1c{left:414.054800pt;}
.x54{left:416.776667pt;}
.x67{left:419.301733pt;}
.x7b{left:426.439333pt;}
.x55{left:430.984667pt;}
.x38{left:433.476133pt;}
.x7c{left:440.839333pt;}
.x56{left:445.192667pt;}
.x39{left:447.684133pt;}
.x57{left:459.400667pt;}
.x3a{left:461.892133pt;}
.x7d{left:464.300533pt;}
.x71{left:467.512800pt;}
.x68{left:470.025733pt;}
.x3b{left:476.100133pt;}
.x58{left:481.708667pt;}
.x69{left:484.233733pt;}
.x59{left:495.916667pt;}
.x3c{left:498.396133pt;}
.x5a{left:510.124667pt;}
.x3d{left:512.604133pt;}
.x72{left:518.236800pt;}
.x5b{left:524.332667pt;}
.x73{left:532.444800pt;}
.x3e{left:534.912133pt;}
.x5c{left:546.640667pt;}
.x3f{left:549.120133pt;}
.x13{left:559.666533pt;}
.x5d{left:560.848667pt;}
.x40{left:563.328133pt;}
.x5e{left:575.056667pt;}
.x41{left:577.536133pt;}
.x74{left:583.156800pt;}
.x5f{left:589.264667pt;}
.x42{left:591.744133pt;}
.x75{left:597.364800pt;}
.x60{left:611.572667pt;}
.x43{left:614.052133pt;}
.x76{left:619.672800pt;}
.x61{left:625.780667pt;}
.x44{left:628.260133pt;}
.x77{left:633.880800pt;}
.x62{left:639.988667pt;}
.x45{left:642.468133pt;}
.x78{left:648.088800pt;}
.x63{left:654.196667pt;}
.x46{left:656.676133pt;}
.x1{left:660.875333pt;}
.x79{left:662.296800pt;}
.x6a{left:670.917733pt;}
}




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