
    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_e4a456b9253babf0986705e9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_661c3933830d06af5d77f43f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_39077680f78111c3b9ee8bff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_42c298737aaab7adf1be7510.woff')format("woff");}.ff4{font-family:ff4;line-height:0.926270;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_6792ef42126c9f13bd526434.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6904d6e49d39e1542d4b13db.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_103a0757da5cca542eb3c2ac.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_7afc485c7de860f677457c56.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_6ec814c20eb78b78d87e34ac.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_f5e9d3c8640f4f307b8f515b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942871;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_963abd54fc65111a8e9ce02f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_aff6fc7a174ebfadaea1ed0f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_5b515a1cfd9c092ac2637b67.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_deaff8324eea7be80fc87f89.woff')format("woff");}.ffe{font-family:ffe;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:30.000000px;}
.v3{vertical-align:47.820000px;}
.ls3f{letter-spacing:-1.158840px;}
.ls21{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.660000px;}
.ls58{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.600000px;}
.ls2b{letter-spacing:-0.594000px;}
.ls6e{letter-spacing:-0.576000px;}
.ls38{letter-spacing:-0.540000px;}
.ls5b{letter-spacing:-0.528000px;}
.ls23{letter-spacing:-0.486000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls5a{letter-spacing:-0.384000px;}
.ls24{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.300000px;}
.ls6d{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.180000px;}
.ls57{letter-spacing:-0.162000px;}
.ls5c{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.120000px;}
.ls2d{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.060000px;}
.ls29{letter-spacing:-0.054000px;}
.ls59{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.018000px;}
.ls65{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.108000px;}
.ls50{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.201600px;}
.ls44{letter-spacing:0.211200px;}
.ls42{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls33{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.394800px;}
.ls1c{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.480000px;}
.ls5e{letter-spacing:0.486600px;}
.ls52{letter-spacing:0.528000px;}
.ls56{letter-spacing:0.624000px;}
.ls3d{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.840600px;}
.ls2e{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912000px;}
.ls55{letter-spacing:0.960000px;}
.lsc{letter-spacing:0.991800px;}
.ls27{letter-spacing:1.008000px;}
.ls60{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.215000px;}
.lsd{letter-spacing:1.242600px;}
.ls46{letter-spacing:1.260000px;}
.ls3e{letter-spacing:1.305600px;}
.ls5d{letter-spacing:1.488000px;}
.ls5f{letter-spacing:1.489800px;}
.lsb{letter-spacing:1.856400px;}
.ls8{letter-spacing:1.958400px;}
.ls0{letter-spacing:2.100000px;}
.ls4{letter-spacing:2.225400px;}
.ls37{letter-spacing:2.358000px;}
.ls25{letter-spacing:2.520000px;}
.ls36{letter-spacing:2.760000px;}
.ls28{letter-spacing:2.947800px;}
.ls9{letter-spacing:3.031800px;}
.lsa{letter-spacing:3.032400px;}
.ls41{letter-spacing:3.175800px;}
.ls64{letter-spacing:3.271200px;}
.ls3c{letter-spacing:3.713400px;}
.ls4c{letter-spacing:3.892800px;}
.ls4d{letter-spacing:3.990000px;}
.ls3{letter-spacing:4.041600px;}
.ls4f{letter-spacing:4.079400px;}
.ls62{letter-spacing:4.223400px;}
.ls4e{letter-spacing:4.347600px;}
.ls35{letter-spacing:4.931400px;}
.ls17{letter-spacing:5.080200px;}
.ls32{letter-spacing:5.120400px;}
.ls34{letter-spacing:5.271000px;}
.ls48{letter-spacing:5.641200px;}
.ls1f{letter-spacing:5.682600px;}
.ls45{letter-spacing:6.037800px;}
.ls4b{letter-spacing:6.175800px;}
.ls66{letter-spacing:6.271800px;}
.ls68{letter-spacing:6.718800px;}
.ls13{letter-spacing:6.968400px;}
.ls67{letter-spacing:7.532400px;}
.ls61{letter-spacing:8.491800px;}
.ls6c{letter-spacing:9.534000px;}
.ls4a{letter-spacing:10.455600px;}
.ls39{letter-spacing:11.169000px;}
.ls49{letter-spacing:11.820600px;}
.ls6a{letter-spacing:12.150600px;}
.ls63{letter-spacing:12.201000px;}
.ls54{letter-spacing:12.205800px;}
.ls18{letter-spacing:13.219200px;}
.ls1e{letter-spacing:13.611000px;}
.ls43{letter-spacing:13.711200px;}
.ls3a{letter-spacing:227.665200px;}
.ls31{letter-spacing:307.119600px;}
.ls30{letter-spacing:318.092400px;}
.ls3b{letter-spacing:377.668200px;}
.ls2f{letter-spacing:602.277000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.352000px;}
.wsb{word-spacing:-18.000000px;}
.ws67{word-spacing:-17.760000px;}
.ws8a{word-spacing:-16.260000px;}
.ws15{word-spacing:-15.240000px;}
.ws16{word-spacing:-15.180000px;}
.ws1{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.700000px;}
.ws78{word-spacing:-14.580000px;}
.ws66{word-spacing:-13.770000px;}
.ws87{word-spacing:-13.716000px;}
.ws27{word-spacing:-13.608000px;}
.ws28{word-spacing:-13.500000px;}
.ws40{word-spacing:-13.446000px;}
.ws29{word-spacing:-13.176000px;}
.ws2a{word-spacing:-13.122000px;}
.ws41{word-spacing:-13.068000px;}
.ws9b{word-spacing:-12.192000px;}
.wsb3{word-spacing:-12.144000px;}
.ws64{word-spacing:-12.000000px;}
.ws9c{word-spacing:-11.952000px;}
.wsb2{word-spacing:-11.616000px;}
.ws9d{word-spacing:-11.472000px;}
.wsb1{word-spacing:-11.424000px;}
.ws18{word-spacing:-7.500000px;}
.ws9a{word-spacing:-6.780000px;}
.ws4{word-spacing:-6.750000px;}
.ws46{word-spacing:-6.588000px;}
.ws81{word-spacing:-6.300000px;}
.ws25{word-spacing:-6.000000px;}
.ws69{word-spacing:-5.520000px;}
.ws97{word-spacing:-5.400000px;}
.ws6b{word-spacing:-5.280000px;}
.ws9f{word-spacing:-4.860000px;}
.wsa{word-spacing:-4.320000px;}
.ws1a{word-spacing:-4.200000px;}
.ws94{word-spacing:-3.960000px;}
.wsab{word-spacing:-3.792000px;}
.ws34{word-spacing:-3.672000px;}
.ws84{word-spacing:-3.660000px;}
.ws3e{word-spacing:-3.564000px;}
.wse{word-spacing:-3.420000px;}
.ws95{word-spacing:-3.180000px;}
.wsb5{word-spacing:-3.072000px;}
.ws85{word-spacing:-2.940000px;}
.ws23{word-spacing:-2.820000px;}
.ws6f{word-spacing:-2.760000px;}
.ws42{word-spacing:-2.700000px;}
.ws4b{word-spacing:-2.520000px;}
.ws89{word-spacing:-2.484000px;}
.wsa2{word-spacing:-2.160000px;}
.ws3d{word-spacing:-2.106000px;}
.ws50{word-spacing:-1.920000px;}
.ws21{word-spacing:-1.740000px;}
.ws1c{word-spacing:-1.500000px;}
.wsb4{word-spacing:-1.488000px;}
.ws8{word-spacing:-1.260000px;}
.ws6e{word-spacing:-1.200000px;}
.wsb7{word-spacing:-1.152000px;}
.ws7a{word-spacing:-1.080000px;}
.ws3{word-spacing:-1.020000px;}
.wsba{word-spacing:-1.008000px;}
.ws3f{word-spacing:-0.972000px;}
.wsad{word-spacing:-0.960000px;}
.wsbb{word-spacing:-0.912000px;}
.ws7b{word-spacing:-0.840000px;}
.ws26{word-spacing:-0.780000px;}
.ws70{word-spacing:-0.660000px;}
.wsb0{word-spacing:-0.624000px;}
.wsa6{word-spacing:-0.528000px;}
.ws11{word-spacing:-0.480000px;}
.ws24{word-spacing:-0.420000px;}
.ws68{word-spacing:-0.270000px;}
.ws1e{word-spacing:-0.240000px;}
.ws88{word-spacing:-0.216000px;}
.wsa7{word-spacing:-0.192000px;}
.ws1f{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.120000px;}
.ws33{word-spacing:-0.108000px;}
.ws4d{word-spacing:-0.060000px;}
.ws53{word-spacing:-0.054000px;}
.wsb8{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsa3{word-spacing:0.048000px;}
.ws43{word-spacing:0.054000px;}
.wsd{word-spacing:0.060000px;}
.ws48{word-spacing:0.108000px;}
.ws17{word-spacing:0.120000px;}
.wsac{word-spacing:0.144000px;}
.ws9e{word-spacing:0.162000px;}
.ws6d{word-spacing:0.180000px;}
.ws35{word-spacing:0.216000px;}
.ws10{word-spacing:0.240000px;}
.wsb6{word-spacing:0.288000px;}
.ws12{word-spacing:0.300000px;}
.ws37{word-spacing:0.324000px;}
.wsf{word-spacing:0.360000px;}
.ws3b{word-spacing:0.378000px;}
.wsa4{word-spacing:0.384000px;}
.ws19{word-spacing:0.420000px;}
.ws44{word-spacing:0.432000px;}
.ws32{word-spacing:0.480000px;}
.ws3a{word-spacing:0.486000px;}
.wsaa{word-spacing:0.528000px;}
.ws4f{word-spacing:0.540000px;}
.wsb9{word-spacing:0.576000px;}
.ws45{word-spacing:0.594000px;}
.ws13{word-spacing:0.600000px;}
.wsa1{word-spacing:0.648000px;}
.ws2c{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.ws6{word-spacing:0.840000px;}
.ws4e{word-spacing:1.020000px;}
.ws8b{word-spacing:1.200000px;}
.ws14{word-spacing:1.260000px;}
.ws7d{word-spacing:1.320000px;}
.ws92{word-spacing:1.560000px;}
.ws7c{word-spacing:1.620000px;}
.ws5{word-spacing:1.800000px;}
.ws6c{word-spacing:2.040000px;}
.ws3c{word-spacing:2.052000px;}
.ws7e{word-spacing:2.100000px;}
.wsae{word-spacing:2.160000px;}
.ws9{word-spacing:2.220000px;}
.ws6a{word-spacing:2.340000px;}
.ws82{word-spacing:2.580000px;}
.ws8e{word-spacing:2.880000px;}
.ws4a{word-spacing:2.916000px;}
.ws22{word-spacing:2.940000px;}
.ws1d{word-spacing:3.000000px;}
.wsa0{word-spacing:3.132000px;}
.ws86{word-spacing:3.240000px;}
.ws83{word-spacing:3.540000px;}
.ws36{word-spacing:3.564000px;}
.ws80{word-spacing:3.660000px;}
.wsa5{word-spacing:3.696000px;}
.ws79{word-spacing:3.720000px;}
.ws96{word-spacing:3.900000px;}
.ws7{word-spacing:4.020000px;}
.ws98{word-spacing:4.080000px;}
.ws39{word-spacing:4.212000px;}
.ws2b{word-spacing:4.380000px;}
.ws2d{word-spacing:4.920000px;}
.wsbc{word-spacing:5.088000px;}
.ws65{word-spacing:5.136000px;}
.wsa9{word-spacing:5.280000px;}
.ws38{word-spacing:5.670000px;}
.ws52{word-spacing:6.060000px;}
.ws90{word-spacing:6.180000px;}
.ws8d{word-spacing:6.840000px;}
.ws8c{word-spacing:6.900000px;}
.ws2e{word-spacing:7.080000px;}
.wsaf{word-spacing:7.296000px;}
.ws30{word-spacing:7.440000px;}
.ws7f{word-spacing:7.740000px;}
.ws2f{word-spacing:8.460000px;}
.ws47{word-spacing:8.640000px;}
.ws20{word-spacing:9.240000px;}
.wsbd{word-spacing:9.552000px;}
.ws49{word-spacing:9.774000px;}
.ws1b{word-spacing:10.740000px;}
.ws8f{word-spacing:11.820000px;}
.wsa8{word-spacing:12.000000px;}
.ws93{word-spacing:12.660000px;}
.ws51{word-spacing:13.260000px;}
.ws99{word-spacing:13.920000px;}
.ws4c{word-spacing:15.000000px;}
.ws71{word-spacing:191.721000px;}
.ws72{word-spacing:242.568600px;}
.ws77{word-spacing:284.465040px;}
.ws59{word-spacing:293.610600px;}
.ws57{word-spacing:293.619600px;}
.ws76{word-spacing:298.682160px;}
.ws61{word-spacing:304.592400px;}
.ws74{word-spacing:366.714600px;}
.ws62{word-spacing:383.472600px;}
.ws5a{word-spacing:386.461200px;}
.ws63{word-spacing:387.208200px;}
.ws5d{word-spacing:389.449200px;}
.ws5f{word-spacing:392.395200px;}
.ws5e{word-spacing:395.424000px;}
.ws5b{word-spacing:402.921600px;}
.ws58{word-spacing:402.962400px;}
.ws60{word-spacing:405.950400px;}
.ws5c{word-spacing:411.420600px;}
.ws56{word-spacing:413.448000px;}
.ws55{word-spacing:419.592000px;}
.ws54{word-spacing:424.452000px;}
.ws75{word-spacing:434.490000px;}
.ws73{word-spacing:475.744200px;}
._d{margin-left:-1300.996200px;}
._1e{margin-left:-13.098600px;}
._f{margin-left:-10.792800px;}
._1f{margin-left:-9.659400px;}
._5{margin-left:-8.652600px;}
._3{margin-left:-6.870000px;}
._b{margin-left:-5.485200px;}
._9{margin-left:-4.404000px;}
._0{margin-left:-3.360000px;}
._a{margin-left:-2.358000px;}
._4{margin-left:-1.050000px;}
._2{width:1.040400px;}
._6{width:2.148000px;}
._7{width:4.062000px;}
._8{width:6.060000px;}
._11{width:7.758000px;}
._13{width:9.261600px;}
._c{width:10.507200px;}
._e{width:12.444000px;}
._14{width:13.500000px;}
._26{width:14.517000px;}
._10{width:16.224000px;}
._15{width:18.428400px;}
._20{width:142.639200px;}
._24{width:256.068600px;}
._16{width:260.010000px;}
._17{width:270.755400px;}
._21{width:273.013200px;}
._23{width:275.192400px;}
._22{width:298.762800px;}
._12{width:302.371200px;}
._1d{width:307.110600px;}
._1c{width:311.333400px;}
._1{width:316.065600px;}
._1a{width:318.083400px;}
._1b{width:319.439400px;}
._25{width:385.858200px;}
._19{width:444.065400px;}
._18{width:448.925400px;}
.fc1{color:rgb(25,26,27);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.320000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1b8{bottom:94.505850px;}
.y39{bottom:95.154750px;}
.y208{bottom:95.933550px;}
.y152{bottom:96.276150px;}
.y2f{bottom:96.364650px;}
.y25{bottom:96.372600px;}
.y18a{bottom:96.408150px;}
.y16d{bottom:96.439200px;}
.y2c8{bottom:96.672600px;}
.y289{bottom:97.292550px;}
.ybf{bottom:98.492550px;}
.yf1{bottom:98.792550px;}
.y129{bottom:98.802450px;}
.y8c{bottom:98.942550px;}
.y1b1{bottom:99.250350px;}
.y1a1{bottom:99.265050px;}
.y1e8{bottom:100.009050px;}
.y1ff{bottom:101.283900px;}
.y264{bottom:101.942550px;}
.y236{bottom:103.002450px;}
.y1b7{bottom:108.005850px;}
.y24{bottom:109.872600px;}
.y189{bottom:109.908150px;}
.y2c7{bottom:110.322600px;}
.y288{bottom:110.792550px;}
.y207{bottom:110.933550px;}
.y151{bottom:111.276150px;}
.y38{bottom:111.654750px;}
.y2e{bottom:112.864650px;}
.y16c{bottom:113.389200px;}
.y128{bottom:113.802450px;}
.ybe{bottom:115.142550px;}
.y8b{bottom:115.592550px;}
.yf0{bottom:115.742550px;}
.y1b0{bottom:115.750350px;}
.y1a0{bottom:115.765050px;}
.y1fe{bottom:116.283900px;}
.y1e7{bottom:116.509050px;}
.y263{bottom:118.442550px;}
.y235{bottom:119.502450px;}
.y1b6{bottom:123.005850px;}
.y23{bottom:123.372600px;}
.y188{bottom:123.408150px;}
.y2c6{bottom:123.972600px;}
.y287{bottom:124.292550px;}
.y303{bottom:124.872600px;}
.y206{bottom:125.933550px;}
.y150{bottom:126.276150px;}
.y37{bottom:128.154750px;}
.y127{bottom:128.802450px;}
.y2d{bottom:129.364650px;}
.y16b{bottom:130.339200px;}
.y1fd{bottom:131.283900px;}
.ybd{bottom:131.792550px;}
.y8a{bottom:132.242550px;}
.y1af{bottom:132.250350px;}
.y19f{bottom:132.265050px;}
.yef{bottom:132.692550px;}
.y1e6{bottom:133.009050px;}
.y262{bottom:134.942550px;}
.y234{bottom:136.002450px;}
.y1b5{bottom:136.505850px;}
.y22{bottom:136.872600px;}
.y187{bottom:136.908150px;}
.y2c5{bottom:137.622600px;}
.y286{bottom:137.792550px;}
.y302{bottom:138.372600px;}
.y205{bottom:140.933550px;}
.y14f{bottom:141.276150px;}
.y126{bottom:143.802450px;}
.y36{bottom:144.654750px;}
.y2c{bottom:145.864650px;}
.y16a{bottom:147.289200px;}
.y1fc{bottom:147.783900px;}
.ybc{bottom:148.442550px;}
.y1ae{bottom:148.750350px;}
.y19e{bottom:148.765050px;}
.y89{bottom:148.892550px;}
.y1e5{bottom:149.509050px;}
.yee{bottom:149.642550px;}
.y186{bottom:150.408150px;}
.y2c4{bottom:151.272600px;}
.y285{bottom:151.292550px;}
.y261{bottom:151.442550px;}
.y301{bottom:151.872600px;}
.y233{bottom:152.502450px;}
.y14e{bottom:156.276150px;}
.y125{bottom:158.802450px;}
.y321{bottom:160.872600px;}
.y35{bottom:161.154750px;}
.y2b{bottom:162.364650px;}
.y169{bottom:164.239200px;}
.y1fb{bottom:164.283900px;}
.y284{bottom:164.792550px;}
.y2c3{bottom:164.922600px;}
.ybb{bottom:165.092550px;}
.y1ad{bottom:165.250350px;}
.y19d{bottom:165.265050px;}
.y300{bottom:165.372600px;}
.y88{bottom:165.542550px;}
.y1e4{bottom:166.009050px;}
.yed{bottom:166.592550px;}
.y181{bottom:166.977300px;}
.y260{bottom:167.942550px;}
.y232{bottom:169.002450px;}
.y14d{bottom:171.276150px;}
.y124{bottom:173.802450px;}
.y320{bottom:174.522600px;}
.y34{bottom:177.654750px;}
.y283{bottom:178.292550px;}
.y2c2{bottom:178.572600px;}
.y2a{bottom:178.864650px;}
.y2ff{bottom:178.872600px;}
.y1fa{bottom:180.783900px;}
.y168{bottom:181.189200px;}
.yba{bottom:181.742550px;}
.y1ac{bottom:181.750350px;}
.y19c{bottom:181.765050px;}
.y87{bottom:182.192550px;}
.y1e3{bottom:182.509050px;}
.yec{bottom:183.542550px;}
.y25f{bottom:184.442550px;}
.y231{bottom:185.502450px;}
.y14c{bottom:186.276150px;}
.y31f{bottom:188.172600px;}
.y180{bottom:188.337600px;}
.y123{bottom:188.802450px;}
.y2c1{bottom:192.222600px;}
.y2fe{bottom:192.372600px;}
.y33{bottom:194.154750px;}
.y29{bottom:195.364650px;}
.y1f9{bottom:197.283900px;}
.y167{bottom:198.139200px;}
.y1ab{bottom:198.250350px;}
.y19b{bottom:198.265050px;}
.yb9{bottom:198.392550px;}
.y86{bottom:198.842550px;}
.y1e2{bottom:199.009050px;}
.yeb{bottom:200.492550px;}
.y25e{bottom:200.942550px;}
.y14b{bottom:201.276150px;}
.y31e{bottom:201.822600px;}
.y230{bottom:202.002450px;}
.y282{bottom:203.792550px;}
.y122{bottom:203.802450px;}
.y2c0{bottom:205.872600px;}
.y17f{bottom:209.698050px;}
.y32{bottom:210.654750px;}
.y28{bottom:211.864650px;}
.y1f8{bottom:213.783900px;}
.y1aa{bottom:214.750350px;}
.y19a{bottom:214.765050px;}
.yb8{bottom:215.042550px;}
.y166{bottom:215.089200px;}
.y31d{bottom:215.472600px;}
.y85{bottom:215.492550px;}
.y1e1{bottom:215.509050px;}
.y14a{bottom:216.276150px;}
.yea{bottom:217.442550px;}
.y22f{bottom:218.502450px;}
.y121{bottom:218.802450px;}
.y2fd{bottom:219.372600px;}
.y2bf{bottom:219.522600px;}
.y31{bottom:227.154750px;}
.y31c{bottom:229.122600px;}
.y1f7{bottom:230.283900px;}
.y17e{bottom:231.058350px;}
.y1a9{bottom:231.250350px;}
.y199{bottom:231.265050px;}
.y149{bottom:231.276150px;}
.yb7{bottom:231.692550px;}
.y1e0{bottom:232.009050px;}
.y165{bottom:232.039200px;}
.y84{bottom:232.142550px;}
.y2fc{bottom:232.872600px;}
.y2be{bottom:233.172600px;}
.y120{bottom:233.802450px;}
.y25d{bottom:233.942550px;}
.ye9{bottom:234.392550px;}
.y22e{bottom:235.002450px;}
.y281{bottom:238.292550px;}
.y27{bottom:241.864650px;}
.y31b{bottom:242.772600px;}
.y30{bottom:243.654750px;}
.y148{bottom:246.276150px;}
.y2fb{bottom:246.372600px;}
.y1f6{bottom:246.783900px;}
.y2bd{bottom:246.822600px;}
.y1a8{bottom:247.750350px;}
.y198{bottom:247.765050px;}
.yb6{bottom:248.342550px;}
.y1df{bottom:248.509050px;}
.y83{bottom:248.792550px;}
.y11f{bottom:248.802450px;}
.y164{bottom:248.989200px;}
.y25c{bottom:250.442550px;}
.ye8{bottom:251.342550px;}
.y22d{bottom:251.502450px;}
.y17d{bottom:252.418650px;}
.y280{bottom:253.292550px;}
.y31a{bottom:256.422600px;}
.y2fa{bottom:259.872600px;}
.y2bc{bottom:260.472600px;}
.y147{bottom:261.276150px;}
.y1f5{bottom:263.283900px;}
.y11e{bottom:263.802450px;}
.y1a7{bottom:264.250350px;}
.y197{bottom:264.265050px;}
.yb5{bottom:264.992550px;}
.y1de{bottom:265.009050px;}
.y82{bottom:265.442550px;}
.y163{bottom:265.939200px;}
.y25b{bottom:266.942550px;}
.y22c{bottom:268.002450px;}
.ye7{bottom:268.292550px;}
.y319{bottom:270.072600px;}
.y2f9{bottom:273.372600px;}
.y17c{bottom:273.779100px;}
.y2bb{bottom:274.122600px;}
.y146{bottom:276.276150px;}
.y58{bottom:277.504350px;}
.y11d{bottom:278.802450px;}
.y1f4{bottom:279.783900px;}
.y1a6{bottom:280.750350px;}
.y196{bottom:280.765050px;}
.y1dd{bottom:281.509050px;}
.yb4{bottom:281.642550px;}
.y81{bottom:282.092550px;}
.y162{bottom:282.889200px;}
.y27f{bottom:283.292550px;}
.y25a{bottom:283.442550px;}
.y318{bottom:283.722600px;}
.y22b{bottom:284.502450px;}
.ye6{bottom:285.242550px;}
.y2f8{bottom:286.872600px;}
.y2ba{bottom:287.772600px;}
.y145{bottom:291.276150px;}
.y11c{bottom:293.952450px;}
.y57{bottom:294.004350px;}
.y17b{bottom:295.139400px;}
.y21{bottom:295.204350px;}
.y1f3{bottom:296.283900px;}
.y1a5{bottom:297.250350px;}
.y195{bottom:297.265050px;}
.y317{bottom:297.372600px;}
.y1dc{bottom:298.009050px;}
.yb3{bottom:298.292550px;}
.y80{bottom:298.742550px;}
.y161{bottom:299.839200px;}
.y259{bottom:299.942550px;}
.y2f7{bottom:300.372600px;}
.y22a{bottom:301.002450px;}
.y2b9{bottom:301.422600px;}
.ye5{bottom:302.192550px;}
.y144{bottom:306.276150px;}
.y11b{bottom:309.102450px;}
.y316{bottom:311.022600px;}
.y1f2{bottom:311.283900px;}
.y20{bottom:313.204350px;}
.y27e{bottom:313.292550px;}
.y1a4{bottom:313.750350px;}
.y194{bottom:313.765050px;}
.y2f6{bottom:313.872600px;}
.y1db{bottom:314.509050px;}
.yb2{bottom:314.942550px;}
.y2b8{bottom:315.072600px;}
.y7f{bottom:315.392550px;}
.y258{bottom:316.442550px;}
.y17a{bottom:316.499700px;}
.y160{bottom:316.789200px;}
.y229{bottom:317.502450px;}
.ye4{bottom:319.142550px;}
.y143{bottom:321.276150px;}
.y11a{bottom:324.252450px;}
.y315{bottom:324.672600px;}
.y1f1{bottom:326.283900px;}
.y56{bottom:327.004350px;}
.y2f5{bottom:327.372600px;}
.y27d{bottom:328.292550px;}
.y2b7{bottom:328.722600px;}
.y1a3{bottom:330.250350px;}
.y193{bottom:330.265050px;}
.y1da{bottom:331.009050px;}
.yb1{bottom:331.592550px;}
.y7e{bottom:332.042550px;}
.y257{bottom:332.942550px;}
.y15f{bottom:333.739200px;}
.y228{bottom:334.002450px;}
.ye3{bottom:336.092550px;}
.y142{bottom:336.276150px;}
.y179{bottom:337.860150px;}
.y314{bottom:338.322600px;}
.y119{bottom:339.402450px;}
.y2f4{bottom:340.872600px;}
.y2b6{bottom:342.372600px;}
.y1f0{bottom:342.783900px;}
.y27c{bottom:343.292550px;}
.y55{bottom:343.504350px;}
.y1a2{bottom:346.750350px;}
.y192{bottom:346.765050px;}
.y1d9{bottom:347.509050px;}
.yb0{bottom:348.242550px;}
.y7d{bottom:348.692550px;}
.y1f{bottom:349.204350px;}
.y256{bottom:349.442550px;}
.y227{bottom:350.502450px;}
.y15e{bottom:350.689200px;}
.y141{bottom:351.276150px;}
.y313{bottom:351.972600px;}
.ye2{bottom:353.042550px;}
.y2f3{bottom:354.372600px;}
.y118{bottom:354.552450px;}
.y2b5{bottom:356.022600px;}
.y27b{bottom:358.292550px;}
.y178{bottom:359.220450px;}
.y1ef{bottom:359.283900px;}
.y54{bottom:360.004350px;}
.y1d8{bottom:364.009050px;}
.yaf{bottom:364.892550px;}
.y7c{bottom:365.342550px;}
.y312{bottom:365.622600px;}
.y255{bottom:365.942550px;}
.y140{bottom:366.276150px;}
.y226{bottom:367.002450px;}
.y1e{bottom:367.204350px;}
.y15d{bottom:367.639200px;}
.y2f2{bottom:367.872600px;}
.y2b4{bottom:369.672600px;}
.y117{bottom:369.702450px;}
.ye1{bottom:369.992550px;}
.y27a{bottom:373.292550px;}
.y191{bottom:373.906050px;}
.y1ee{bottom:375.783900px;}
.y53{bottom:376.504350px;}
.y311{bottom:379.272600px;}
.y1d7{bottom:380.509050px;}
.y177{bottom:380.580750px;}
.y13f{bottom:381.276150px;}
.y2f1{bottom:381.372600px;}
.yae{bottom:381.542550px;}
.y7b{bottom:381.992550px;}
.y254{bottom:382.442550px;}
.y2b3{bottom:383.322600px;}
.y225{bottom:383.502450px;}
.y15c{bottom:384.589200px;}
.y116{bottom:384.852450px;}
.y1d{bottom:385.204350px;}
.ye0{bottom:386.942550px;}
.y190{bottom:387.406050px;}
.y279{bottom:388.292550px;}
.y1ed{bottom:392.283900px;}
.y310{bottom:392.922600px;}
.y52{bottom:393.004350px;}
.y2f0{bottom:394.872600px;}
.y13e{bottom:396.276150px;}
.y2b2{bottom:396.972600px;}
.y1d6{bottom:397.009050px;}
.yad{bottom:398.192550px;}
.y7a{bottom:398.642550px;}
.y253{bottom:398.942550px;}
.y115{bottom:400.002450px;}
.y18f{bottom:400.906050px;}
.y15b{bottom:401.539200px;}
.y176{bottom:401.832300px;}
.y1c{bottom:403.204350px;}
.y278{bottom:403.292550px;}
.ydf{bottom:403.892550px;}
.y30f{bottom:406.572600px;}
.y2ef{bottom:408.372600px;}
.y1ec{bottom:408.783900px;}
.y51{bottom:409.504350px;}
.y2b1{bottom:410.622600px;}
.y13d{bottom:411.276150px;}
.y1d5{bottom:413.509050px;}
.yac{bottom:414.842550px;}
.y114{bottom:415.152450px;}
.y79{bottom:415.292550px;}
.y252{bottom:415.442550px;}
.y18e{bottom:415.906050px;}
.y224{bottom:416.502450px;}
.y277{bottom:418.292550px;}
.y15a{bottom:418.489200px;}
.y30e{bottom:420.222600px;}
.yde{bottom:420.842550px;}
.y1b{bottom:421.204350px;}
.y2ee{bottom:421.872600px;}
.y175{bottom:423.192750px;}
.y2b0{bottom:424.272600px;}
.y1eb{bottom:425.283900px;}
.y50{bottom:426.004350px;}
.y13c{bottom:426.276150px;}
.y1d4{bottom:430.009050px;}
.y113{bottom:430.302450px;}
.y18d{bottom:430.906050px;}
.yab{bottom:431.492550px;}
.y78{bottom:431.942550px;}
.y223{bottom:433.002450px;}
.y276{bottom:433.292550px;}
.y172{bottom:433.842750px;}
.y30d{bottom:433.872600px;}
.y2ed{bottom:435.372600px;}
.y159{bottom:435.439200px;}
.ydd{bottom:437.792550px;}
.y2af{bottom:438.072600px;}
.y1a{bottom:439.204350px;}
.y13b{bottom:441.276150px;}
.y1ea{bottom:441.783900px;}
.y4f{bottom:442.504350px;}
.y18c{bottom:444.406050px;}
.y174{bottom:444.414150px;}
.y112{bottom:445.452450px;}
.y1d3{bottom:446.509050px;}
.y30c{bottom:447.522600px;}
.yaa{bottom:448.142550px;}
.y275{bottom:448.292550px;}
.y251{bottom:448.442550px;}
.y77{bottom:448.592550px;}
.y2ec{bottom:448.872600px;}
.y222{bottom:449.502450px;}
.y2ae{bottom:451.872600px;}
.y158{bottom:452.389200px;}
.ydc{bottom:454.742550px;}
.y13a{bottom:456.276150px;}
.y19{bottom:457.204350px;}
.y1e9{bottom:458.283900px;}
.y4e{bottom:459.004350px;}
.y18b{bottom:459.406050px;}
.y111{bottom:460.602450px;}
.y30b{bottom:461.172600px;}
.y2eb{bottom:462.372600px;}
.y1d2{bottom:463.009050px;}
.y274{bottom:463.292550px;}
.ya9{bottom:464.792550px;}
.y250{bottom:464.942550px;}
.y76{bottom:465.242550px;}
.y173{bottom:465.635550px;}
.y2ad{bottom:465.672600px;}
.y221{bottom:466.002450px;}
.y157{bottom:469.339200px;}
.y139{bottom:471.276150px;}
.ydb{bottom:471.692550px;}
.y30a{bottom:474.822600px;}
.y18{bottom:475.204350px;}
.y4d{bottom:475.504350px;}
.y110{bottom:475.752450px;}
.y2ea{bottom:475.872600px;}
.y273{bottom:478.292550px;}
.y204{bottom:479.320800px;}
.y2ac{bottom:479.472600px;}
.y1d1{bottom:479.509050px;}
.ya8{bottom:481.442550px;}
.y75{bottom:481.892550px;}
.y220{bottom:482.502450px;}
.y138{bottom:486.276150px;}
.y185{bottom:488.365650px;}
.y309{bottom:488.472600px;}
.yda{bottom:488.642550px;}
.y2e9{bottom:489.372600px;}
.y10f{bottom:490.902450px;}
.y4c{bottom:492.004350px;}
.y17{bottom:493.204350px;}
.y2ab{bottom:493.272600px;}
.y272{bottom:493.292550px;}
.y203{bottom:494.320800px;}
.y1d0{bottom:496.009050px;}
.y24f{bottom:497.942550px;}
.ya7{bottom:498.092550px;}
.y74{bottom:498.542550px;}
.y21f{bottom:499.002450px;}
.y137{bottom:501.276150px;}
.y308{bottom:502.122600px;}
.y156{bottom:502.789200px;}
.y2e8{bottom:502.872600px;}
.y184{bottom:503.200650px;}
.yd9{bottom:505.592550px;}
.y10e{bottom:506.052450px;}
.y2aa{bottom:507.072600px;}
.y271{bottom:508.292550px;}
.y4b{bottom:508.504350px;}
.y202{bottom:509.320800px;}
.y16{bottom:511.204350px;}
.y1cf{bottom:512.509050px;}
.y24e{bottom:514.442550px;}
.ya6{bottom:514.742550px;}
.y73{bottom:515.192550px;}
.y21e{bottom:515.502450px;}
.y307{bottom:515.772600px;}
.y136{bottom:516.276150px;}
.y2e7{bottom:516.372600px;}
.y183{bottom:518.035650px;}
.y2a9{bottom:520.872600px;}
.y10d{bottom:521.202450px;}
.yd8{bottom:522.542550px;}
.y270{bottom:523.292550px;}
.y201{bottom:524.320800px;}
.y4a{bottom:525.004350px;}
.y1ce{bottom:529.009050px;}
.y15{bottom:529.204350px;}
.y306{bottom:529.422600px;}
.y2e6{bottom:529.872600px;}
.y24d{bottom:530.942550px;}
.y135{bottom:531.276150px;}
.ya5{bottom:531.392550px;}
.y72{bottom:531.842550px;}
.y21d{bottom:532.002450px;}
.y182{bottom:532.870650px;}
.y2a8{bottom:534.672600px;}
.y10c{bottom:536.352450px;}
.y26f{bottom:538.292550px;}
.y200{bottom:539.320800px;}
.yd7{bottom:539.492550px;}
.y49{bottom:541.504350px;}
.y305{bottom:543.072600px;}
.y2e5{bottom:543.372600px;}
.y1cd{bottom:545.509050px;}
.y134{bottom:546.276150px;}
.y155{bottom:546.289200px;}
.y14{bottom:547.204350px;}
.y24c{bottom:547.442550px;}
.ya4{bottom:548.042550px;}
.y2a7{bottom:548.472600px;}
.y71{bottom:548.492550px;}
.y21c{bottom:548.502450px;}
.y10b{bottom:551.502450px;}
.y26e{bottom:553.292550px;}
.y171{bottom:554.618400px;}
.yd6{bottom:556.442550px;}
.y304{bottom:556.722600px;}
.y2e4{bottom:556.872600px;}
.y48{bottom:558.004350px;}
.y133{bottom:561.276150px;}
.y154{bottom:561.289200px;}
.y1cc{bottom:562.009050px;}
.y2a6{bottom:562.272600px;}
.y24b{bottom:563.942550px;}
.ya3{bottom:564.692550px;}
.y21b{bottom:565.002450px;}
.y70{bottom:565.142550px;}
.y13{bottom:565.204350px;}
.y10a{bottom:566.502450px;}
.y26d{bottom:568.292550px;}
.y170{bottom:569.318400px;}
.y1b4{bottom:569.709150px;}
.y2e3{bottom:570.372600px;}
.yd5{bottom:573.392550px;}
.y47{bottom:574.504350px;}
.y2a5{bottom:576.072600px;}
.y132{bottom:576.276150px;}
.y153{bottom:576.289200px;}
.y1cb{bottom:578.509050px;}
.y24a{bottom:580.442550px;}
.ya2{bottom:581.342550px;}
.y109{bottom:581.502450px;}
.y6f{bottom:581.792550px;}
.y12{bottom:583.204350px;}
.y26c{bottom:583.292550px;}
.y2e2{bottom:583.872600px;}
.y16f{bottom:584.018400px;}
.y1b3{bottom:584.709150px;}
.y2a4{bottom:589.872600px;}
.yd4{bottom:590.342550px;}
.y46{bottom:591.004350px;}
.y1ca{bottom:595.009050px;}
.y108{bottom:596.502450px;}
.y249{bottom:596.942550px;}
.y2e1{bottom:597.372600px;}
.ya1{bottom:597.992550px;}
.y21a{bottom:598.002450px;}
.y6e{bottom:598.442550px;}
.y16e{bottom:598.718400px;}
.y1b2{bottom:599.709150px;}
.y11{bottom:601.204350px;}
.y2a3{bottom:603.672600px;}
.yd3{bottom:607.292550px;}
.y45{bottom:607.504350px;}
.y131{bottom:610.659300px;}
.y2e0{bottom:610.872600px;}
.y107{bottom:611.502450px;}
.y1c9{bottom:611.509050px;}
.y248{bottom:613.442550px;}
.y219{bottom:614.502450px;}
.ya0{bottom:614.642550px;}
.y6d{bottom:615.092550px;}
.y2a2{bottom:617.472600px;}
.y10{bottom:619.204350px;}
.y26b{bottom:622.292550px;}
.y44{bottom:624.004350px;}
.y130{bottom:624.159300px;}
.yd2{bottom:624.242550px;}
.y2df{bottom:624.372600px;}
.y106{bottom:626.502450px;}
.y1c8{bottom:628.009050px;}
.y247{bottom:630.092550px;}
.y218{bottom:631.002450px;}
.y2a1{bottom:631.272600px;}
.y9f{bottom:631.292550px;}
.y6c{bottom:631.742550px;}
.yf{bottom:637.204350px;}
.y26a{bottom:637.292550px;}
.y12f{bottom:637.659300px;}
.y2de{bottom:637.872600px;}
.y43{bottom:640.504350px;}
.yd1{bottom:641.192550px;}
.y105{bottom:641.502450px;}
.y1c7{bottom:644.509050px;}
.y2a0{bottom:645.072600px;}
.y246{bottom:646.742550px;}
.y217{bottom:647.502450px;}
.y9e{bottom:647.942550px;}
.y6b{bottom:648.392550px;}
.y12e{bottom:651.159300px;}
.y2dd{bottom:651.372600px;}
.ye{bottom:655.204350px;}
.y104{bottom:656.502450px;}
.y42{bottom:657.004350px;}
.yd0{bottom:658.142550px;}
.y29f{bottom:658.872600px;}
.y1c6{bottom:661.009050px;}
.y245{bottom:663.392550px;}
.y216{bottom:664.002450px;}
.y9d{bottom:664.592550px;}
.y2dc{bottom:664.872600px;}
.y6a{bottom:665.042550px;}
.y269{bottom:665.792550px;}
.y12d{bottom:666.159300px;}
.y103{bottom:671.502450px;}
.y29e{bottom:672.672600px;}
.yd{bottom:673.204350px;}
.y41{bottom:673.504350px;}
.ycf{bottom:675.092550px;}
.y1c5{bottom:677.509050px;}
.y2db{bottom:678.372600px;}
.y12c{bottom:679.659300px;}
.y244{bottom:680.042550px;}
.y215{bottom:680.502450px;}
.y9c{bottom:681.242550px;}
.y69{bottom:681.692550px;}
.y268{bottom:682.292550px;}
.y29d{bottom:686.472600px;}
.y102{bottom:686.502450px;}
.y40{bottom:690.004350px;}
.yc{bottom:691.204350px;}
.y2da{bottom:691.872600px;}
.yce{bottom:692.042550px;}
.y12b{bottom:693.159300px;}
.y1c4{bottom:694.009050px;}
.y243{bottom:696.692550px;}
.y214{bottom:697.002450px;}
.y9b{bottom:697.892550px;}
.y68{bottom:698.342550px;}
.y267{bottom:698.792550px;}
.y29c{bottom:700.272600px;}
.y101{bottom:701.502450px;}
.y2d9{bottom:705.372600px;}
.y3f{bottom:706.504350px;}
.y12a{bottom:706.659300px;}
.ycd{bottom:708.992550px;}
.yb{bottom:709.204350px;}
.y1c3{bottom:710.509050px;}
.y242{bottom:713.342550px;}
.y213{bottom:713.502450px;}
.y29b{bottom:714.072600px;}
.y9a{bottom:714.542550px;}
.y67{bottom:714.992550px;}
.y266{bottom:715.292550px;}
.y100{bottom:716.502450px;}
.y2d8{bottom:718.872600px;}
.y3e{bottom:723.004350px;}
.ycc{bottom:725.942550px;}
.y1c2{bottom:727.009050px;}
.ya{bottom:727.204350px;}
.y29a{bottom:727.872600px;}
.y241{bottom:729.992550px;}
.y212{bottom:730.002450px;}
.y99{bottom:731.192550px;}
.yff{bottom:731.502450px;}
.y66{bottom:731.642550px;}
.y265{bottom:731.792550px;}
.y2d7{bottom:732.372600px;}
.y299{bottom:741.672600px;}
.ycb{bottom:742.892550px;}
.y2d6{bottom:745.872600px;}
.yfe{bottom:746.502450px;}
.y240{bottom:746.642550px;}
.y98{bottom:747.842550px;}
.y65{bottom:748.292550px;}
.y298{bottom:755.472600px;}
.y3d{bottom:756.004350px;}
.y2d5{bottom:759.372600px;}
.yca{bottom:759.842550px;}
.yfd{bottom:761.502450px;}
.y9{bottom:761.704350px;}
.y211{bottom:763.002450px;}
.y23f{bottom:763.292550px;}
.y1c1{bottom:764.274150px;}
.y97{bottom:764.492550px;}
.y64{bottom:764.792550px;}
.y297{bottom:769.272600px;}
.y3c{bottom:771.004350px;}
.y2d4{bottom:772.872600px;}
.yfc{bottom:776.502450px;}
.yc9{bottom:776.792550px;}
.y8{bottom:778.204350px;}
.y210{bottom:779.502450px;}
.y23e{bottom:779.942550px;}
.y96{bottom:781.142550px;}
.y63{bottom:781.292550px;}
.y296{bottom:783.072600px;}
.y2d3{bottom:786.372600px;}
.yfb{bottom:791.502450px;}
.y1be{bottom:792.623250px;}
.yc8{bottom:793.742550px;}
.y7{bottom:794.704350px;}
.y20f{bottom:796.002450px;}
.y23d{bottom:796.592550px;}
.y295{bottom:796.872600px;}
.y95{bottom:797.642550px;}
.y62{bottom:797.792550px;}
.y2d2{bottom:799.872600px;}
.y3b{bottom:802.504350px;}
.yfa{bottom:806.502450px;}
.y1bd{bottom:807.623250px;}
.y294{bottom:810.672600px;}
.yc7{bottom:810.692550px;}
.y20e{bottom:812.502450px;}
.y23c{bottom:813.242550px;}
.y2d1{bottom:813.372600px;}
.y94{bottom:814.142550px;}
.y61{bottom:814.292550px;}
.yf9{bottom:821.502450px;}
.y293{bottom:824.472600px;}
.y2d0{bottom:826.872600px;}
.yc6{bottom:827.642550px;}
.y6{bottom:827.704350px;}
.y1bc{bottom:828.983700px;}
.y20d{bottom:829.002450px;}
.y23b{bottom:829.892550px;}
.y93{bottom:830.642550px;}
.y60{bottom:830.792550px;}
.yf8{bottom:836.502450px;}
.y292{bottom:838.272600px;}
.y2cf{bottom:840.372600px;}
.y3a{bottom:840.604350px;}
.yc5{bottom:844.592550px;}
.y20c{bottom:845.502450px;}
.y23a{bottom:846.542550px;}
.y92{bottom:847.142550px;}
.y5f{bottom:847.292550px;}
.y1bb{bottom:850.344000px;}
.yf7{bottom:851.502450px;}
.y291{bottom:852.072600px;}
.y2ce{bottom:853.872600px;}
.yc4{bottom:861.542550px;}
.y20b{bottom:862.002450px;}
.y239{bottom:863.192550px;}
.y91{bottom:863.642550px;}
.y5e{bottom:863.792550px;}
.y5{bottom:865.804350px;}
.y290{bottom:865.872600px;}
.yf6{bottom:866.502450px;}
.y2cd{bottom:867.372600px;}
.y1ba{bottom:871.704300px;}
.yc3{bottom:878.492550px;}
.y20a{bottom:878.502450px;}
.y28f{bottom:879.672600px;}
.y238{bottom:879.842550px;}
.y90{bottom:880.142550px;}
.y5d{bottom:880.292550px;}
.y2cc{bottom:880.872600px;}
.yf5{bottom:881.502450px;}
.y4{bottom:891.004350px;}
.y1b9{bottom:893.173500px;}
.y28e{bottom:893.472600px;}
.y2cb{bottom:894.372600px;}
.y209{bottom:895.002450px;}
.yc2{bottom:895.442550px;}
.y237{bottom:896.492550px;}
.yf4{bottom:896.502450px;}
.y8f{bottom:896.642550px;}
.y5c{bottom:896.792550px;}
.y28d{bottom:907.272600px;}
.y2ca{bottom:907.872600px;}
.yf3{bottom:911.502450px;}
.yc1{bottom:912.392550px;}
.y8e{bottom:913.142550px;}
.y5b{bottom:913.292550px;}
.y3{bottom:916.204350px;}
.y28c{bottom:921.072600px;}
.y2c9{bottom:921.372600px;}
.yc0{bottom:929.342550px;}
.y8d{bottom:929.642550px;}
.y5a{bottom:929.792550px;}
.y1c0{bottom:931.256400px;}
.y28b{bottom:934.872600px;}
.y2{bottom:941.404350px;}
.yf2{bottom:944.502450px;}
.y1bf{bottom:946.256400px;}
.y59{bottom:946.292550px;}
.y28a{bottom:948.372600px;}
.y1{bottom:988.797600px;}
.y26{bottom:988.812150px;}
.h7{height:33.351562px;}
.hc{height:36.597656px;}
.hd{height:37.085508px;}
.h5{height:37.494141px;}
.hb{height:37.520508px;}
.h6{height:41.689453px;}
.h2{height:41.747653px;}
.h8{height:48.796875px;}
.h4{height:52.417969px;}
.ha{height:52.734375px;}
.h3{height:61.154297px;}
.h9{height:61.523438px;}
.he{height:69.581895px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x2{left:90.032400px;}
.x1e{left:91.039350px;}
.xb{left:97.276800px;}
.x3{left:101.721750px;}
.xc{left:104.900550px;}
.x7{left:106.299300px;}
.xd{left:108.735450px;}
.xe{left:114.646800px;}
.x1b{left:129.692250px;}
.x20{left:132.646950px;}
.x18{left:137.538000px;}
.x4{left:139.061400px;}
.x16{left:140.530650px;}
.x11{left:142.033500px;}
.x17{left:143.164050px;}
.x15{left:145.042650px;}
.x1f{left:173.351400px;}
.x5{left:175.811400px;}
.x19{left:195.550800px;}
.x1d{left:235.498050px;}
.x12{left:238.039350px;}
.x13{left:272.728350px;}
.x14{left:295.134000px;}
.xf{left:320.370900px;}
.x10{left:321.587550px;}
.x6{left:325.991550px;}
.x8{left:336.775200px;}
.x9{left:382.677150px;}
.xa{left:403.937100px;}
.x1c{left:421.623150px;}
.x1a{left:521.884350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:26.666667pt;}
.v3{vertical-align:42.506667pt;}
.ls3f{letter-spacing:-1.030080pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls58{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls2b{letter-spacing:-0.528000pt;}
.ls6e{letter-spacing:-0.512000pt;}
.ls38{letter-spacing:-0.480000pt;}
.ls5b{letter-spacing:-0.469333pt;}
.ls23{letter-spacing:-0.432000pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls5a{letter-spacing:-0.341333pt;}
.ls24{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls6d{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls57{letter-spacing:-0.144000pt;}
.ls5c{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls2d{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.053333pt;}
.ls29{letter-spacing:-0.048000pt;}
.ls59{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.016000pt;}
.ls65{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls50{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.179200pt;}
.ls44{letter-spacing:0.187733pt;}
.ls42{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls33{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.350933pt;}
.ls1c{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.426667pt;}
.ls5e{letter-spacing:0.432533pt;}
.ls52{letter-spacing:0.469333pt;}
.ls56{letter-spacing:0.554667pt;}
.ls3d{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.747200pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.810667pt;}
.ls55{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.881600pt;}
.ls27{letter-spacing:0.896000pt;}
.ls60{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.080000pt;}
.lsd{letter-spacing:1.104533pt;}
.ls46{letter-spacing:1.120000pt;}
.ls3e{letter-spacing:1.160533pt;}
.ls5d{letter-spacing:1.322667pt;}
.ls5f{letter-spacing:1.324267pt;}
.lsb{letter-spacing:1.650133pt;}
.ls8{letter-spacing:1.740800pt;}
.ls0{letter-spacing:1.866667pt;}
.ls4{letter-spacing:1.978133pt;}
.ls37{letter-spacing:2.096000pt;}
.ls25{letter-spacing:2.240000pt;}
.ls36{letter-spacing:2.453333pt;}
.ls28{letter-spacing:2.620267pt;}
.ls9{letter-spacing:2.694933pt;}
.lsa{letter-spacing:2.695467pt;}
.ls41{letter-spacing:2.822933pt;}
.ls64{letter-spacing:2.907733pt;}
.ls3c{letter-spacing:3.300800pt;}
.ls4c{letter-spacing:3.460267pt;}
.ls4d{letter-spacing:3.546667pt;}
.ls3{letter-spacing:3.592533pt;}
.ls4f{letter-spacing:3.626133pt;}
.ls62{letter-spacing:3.754133pt;}
.ls4e{letter-spacing:3.864533pt;}
.ls35{letter-spacing:4.383467pt;}
.ls17{letter-spacing:4.515733pt;}
.ls32{letter-spacing:4.551467pt;}
.ls34{letter-spacing:4.685333pt;}
.ls48{letter-spacing:5.014400pt;}
.ls1f{letter-spacing:5.051200pt;}
.ls45{letter-spacing:5.366933pt;}
.ls4b{letter-spacing:5.489600pt;}
.ls66{letter-spacing:5.574933pt;}
.ls68{letter-spacing:5.972267pt;}
.ls13{letter-spacing:6.194133pt;}
.ls67{letter-spacing:6.695467pt;}
.ls61{letter-spacing:7.548267pt;}
.ls6c{letter-spacing:8.474667pt;}
.ls4a{letter-spacing:9.293867pt;}
.ls39{letter-spacing:9.928000pt;}
.ls49{letter-spacing:10.507200pt;}
.ls6a{letter-spacing:10.800533pt;}
.ls63{letter-spacing:10.845333pt;}
.ls54{letter-spacing:10.849600pt;}
.ls18{letter-spacing:11.750400pt;}
.ls1e{letter-spacing:12.098667pt;}
.ls43{letter-spacing:12.187733pt;}
.ls3a{letter-spacing:202.369067pt;}
.ls31{letter-spacing:272.995200pt;}
.ls30{letter-spacing:282.748800pt;}
.ls3b{letter-spacing:335.705067pt;}
.ls2f{letter-spacing:535.357333pt;}
.ws0{word-spacing:-20.757333pt;}
.wsb{word-spacing:-16.000000pt;}
.ws67{word-spacing:-15.786667pt;}
.ws8a{word-spacing:-14.453333pt;}
.ws15{word-spacing:-13.546667pt;}
.ws16{word-spacing:-13.493333pt;}
.ws1{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.066667pt;}
.ws78{word-spacing:-12.960000pt;}
.ws66{word-spacing:-12.240000pt;}
.ws87{word-spacing:-12.192000pt;}
.ws27{word-spacing:-12.096000pt;}
.ws28{word-spacing:-12.000000pt;}
.ws40{word-spacing:-11.952000pt;}
.ws29{word-spacing:-11.712000pt;}
.ws2a{word-spacing:-11.664000pt;}
.ws41{word-spacing:-11.616000pt;}
.ws9b{word-spacing:-10.837333pt;}
.wsb3{word-spacing:-10.794667pt;}
.ws64{word-spacing:-10.666667pt;}
.ws9c{word-spacing:-10.624000pt;}
.wsb2{word-spacing:-10.325333pt;}
.ws9d{word-spacing:-10.197333pt;}
.wsb1{word-spacing:-10.154667pt;}
.ws18{word-spacing:-6.666667pt;}
.ws9a{word-spacing:-6.026667pt;}
.ws4{word-spacing:-6.000000pt;}
.ws46{word-spacing:-5.856000pt;}
.ws81{word-spacing:-5.600000pt;}
.ws25{word-spacing:-5.333333pt;}
.ws69{word-spacing:-4.906667pt;}
.ws97{word-spacing:-4.800000pt;}
.ws6b{word-spacing:-4.693333pt;}
.ws9f{word-spacing:-4.320000pt;}
.wsa{word-spacing:-3.840000pt;}
.ws1a{word-spacing:-3.733333pt;}
.ws94{word-spacing:-3.520000pt;}
.wsab{word-spacing:-3.370667pt;}
.ws34{word-spacing:-3.264000pt;}
.ws84{word-spacing:-3.253333pt;}
.ws3e{word-spacing:-3.168000pt;}
.wse{word-spacing:-3.040000pt;}
.ws95{word-spacing:-2.826667pt;}
.wsb5{word-spacing:-2.730667pt;}
.ws85{word-spacing:-2.613333pt;}
.ws23{word-spacing:-2.506667pt;}
.ws6f{word-spacing:-2.453333pt;}
.ws42{word-spacing:-2.400000pt;}
.ws4b{word-spacing:-2.240000pt;}
.ws89{word-spacing:-2.208000pt;}
.wsa2{word-spacing:-1.920000pt;}
.ws3d{word-spacing:-1.872000pt;}
.ws50{word-spacing:-1.706667pt;}
.ws21{word-spacing:-1.546667pt;}
.ws1c{word-spacing:-1.333333pt;}
.wsb4{word-spacing:-1.322667pt;}
.ws8{word-spacing:-1.120000pt;}
.ws6e{word-spacing:-1.066667pt;}
.wsb7{word-spacing:-1.024000pt;}
.ws7a{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.906667pt;}
.wsba{word-spacing:-0.896000pt;}
.ws3f{word-spacing:-0.864000pt;}
.wsad{word-spacing:-0.853333pt;}
.wsbb{word-spacing:-0.810667pt;}
.ws7b{word-spacing:-0.746667pt;}
.ws26{word-spacing:-0.693333pt;}
.ws70{word-spacing:-0.586667pt;}
.wsb0{word-spacing:-0.554667pt;}
.wsa6{word-spacing:-0.469333pt;}
.ws11{word-spacing:-0.426667pt;}
.ws24{word-spacing:-0.373333pt;}
.ws68{word-spacing:-0.240000pt;}
.ws1e{word-spacing:-0.213333pt;}
.ws88{word-spacing:-0.192000pt;}
.wsa7{word-spacing:-0.170667pt;}
.ws1f{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.106667pt;}
.ws33{word-spacing:-0.096000pt;}
.ws4d{word-spacing:-0.053333pt;}
.ws53{word-spacing:-0.048000pt;}
.wsb8{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.042667pt;}
.ws43{word-spacing:0.048000pt;}
.wsd{word-spacing:0.053333pt;}
.ws48{word-spacing:0.096000pt;}
.ws17{word-spacing:0.106667pt;}
.wsac{word-spacing:0.128000pt;}
.ws9e{word-spacing:0.144000pt;}
.ws6d{word-spacing:0.160000pt;}
.ws35{word-spacing:0.192000pt;}
.ws10{word-spacing:0.213333pt;}
.wsb6{word-spacing:0.256000pt;}
.ws12{word-spacing:0.266667pt;}
.ws37{word-spacing:0.288000pt;}
.wsf{word-spacing:0.320000pt;}
.ws3b{word-spacing:0.336000pt;}
.wsa4{word-spacing:0.341333pt;}
.ws19{word-spacing:0.373333pt;}
.ws44{word-spacing:0.384000pt;}
.ws32{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.432000pt;}
.wsaa{word-spacing:0.469333pt;}
.ws4f{word-spacing:0.480000pt;}
.wsb9{word-spacing:0.512000pt;}
.ws45{word-spacing:0.528000pt;}
.ws13{word-spacing:0.533333pt;}
.wsa1{word-spacing:0.576000pt;}
.ws2c{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.ws6{word-spacing:0.746667pt;}
.ws4e{word-spacing:0.906667pt;}
.ws8b{word-spacing:1.066667pt;}
.ws14{word-spacing:1.120000pt;}
.ws7d{word-spacing:1.173333pt;}
.ws92{word-spacing:1.386667pt;}
.ws7c{word-spacing:1.440000pt;}
.ws5{word-spacing:1.600000pt;}
.ws6c{word-spacing:1.813333pt;}
.ws3c{word-spacing:1.824000pt;}
.ws7e{word-spacing:1.866667pt;}
.wsae{word-spacing:1.920000pt;}
.ws9{word-spacing:1.973333pt;}
.ws6a{word-spacing:2.080000pt;}
.ws82{word-spacing:2.293333pt;}
.ws8e{word-spacing:2.560000pt;}
.ws4a{word-spacing:2.592000pt;}
.ws22{word-spacing:2.613333pt;}
.ws1d{word-spacing:2.666667pt;}
.wsa0{word-spacing:2.784000pt;}
.ws86{word-spacing:2.880000pt;}
.ws83{word-spacing:3.146667pt;}
.ws36{word-spacing:3.168000pt;}
.ws80{word-spacing:3.253333pt;}
.wsa5{word-spacing:3.285333pt;}
.ws79{word-spacing:3.306667pt;}
.ws96{word-spacing:3.466667pt;}
.ws7{word-spacing:3.573333pt;}
.ws98{word-spacing:3.626667pt;}
.ws39{word-spacing:3.744000pt;}
.ws2b{word-spacing:3.893333pt;}
.ws2d{word-spacing:4.373333pt;}
.wsbc{word-spacing:4.522667pt;}
.ws65{word-spacing:4.565333pt;}
.wsa9{word-spacing:4.693333pt;}
.ws38{word-spacing:5.040000pt;}
.ws52{word-spacing:5.386667pt;}
.ws90{word-spacing:5.493333pt;}
.ws8d{word-spacing:6.080000pt;}
.ws8c{word-spacing:6.133333pt;}
.ws2e{word-spacing:6.293333pt;}
.wsaf{word-spacing:6.485333pt;}
.ws30{word-spacing:6.613333pt;}
.ws7f{word-spacing:6.880000pt;}
.ws2f{word-spacing:7.520000pt;}
.ws47{word-spacing:7.680000pt;}
.ws20{word-spacing:8.213333pt;}
.wsbd{word-spacing:8.490667pt;}
.ws49{word-spacing:8.688000pt;}
.ws1b{word-spacing:9.546667pt;}
.ws8f{word-spacing:10.506667pt;}
.wsa8{word-spacing:10.666667pt;}
.ws93{word-spacing:11.253333pt;}
.ws51{word-spacing:11.786667pt;}
.ws99{word-spacing:12.373333pt;}
.ws4c{word-spacing:13.333333pt;}
.ws71{word-spacing:170.418667pt;}
.ws72{word-spacing:215.616533pt;}
.ws77{word-spacing:252.857813pt;}
.ws59{word-spacing:260.987200pt;}
.ws57{word-spacing:260.995200pt;}
.ws76{word-spacing:265.495253pt;}
.ws61{word-spacing:270.748800pt;}
.ws74{word-spacing:325.968533pt;}
.ws62{word-spacing:340.864533pt;}
.ws5a{word-spacing:343.521067pt;}
.ws63{word-spacing:344.185067pt;}
.ws5d{word-spacing:346.177067pt;}
.ws5f{word-spacing:348.795733pt;}
.ws5e{word-spacing:351.488000pt;}
.ws5b{word-spacing:358.152533pt;}
.ws58{word-spacing:358.188800pt;}
.ws60{word-spacing:360.844800pt;}
.ws5c{word-spacing:365.707200pt;}
.ws56{word-spacing:367.509333pt;}
.ws55{word-spacing:372.970667pt;}
.ws54{word-spacing:377.290667pt;}
.ws75{word-spacing:386.213333pt;}
.ws73{word-spacing:422.883733pt;}
._d{margin-left:-1156.441067pt;}
._1e{margin-left:-11.643200pt;}
._f{margin-left:-9.593600pt;}
._1f{margin-left:-8.586133pt;}
._5{margin-left:-7.691200pt;}
._3{margin-left:-6.106667pt;}
._b{margin-left:-4.875733pt;}
._9{margin-left:-3.914667pt;}
._0{margin-left:-2.986667pt;}
._a{margin-left:-2.096000pt;}
._4{margin-left:-0.933333pt;}
._2{width:0.924800pt;}
._6{width:1.909333pt;}
._7{width:3.610667pt;}
._8{width:5.386667pt;}
._11{width:6.896000pt;}
._13{width:8.232533pt;}
._c{width:9.339733pt;}
._e{width:11.061333pt;}
._14{width:12.000000pt;}
._26{width:12.904000pt;}
._10{width:14.421333pt;}
._15{width:16.380800pt;}
._20{width:126.790400pt;}
._24{width:227.616533pt;}
._16{width:231.120000pt;}
._17{width:240.671467pt;}
._21{width:242.678400pt;}
._23{width:244.615467pt;}
._22{width:265.566933pt;}
._12{width:268.774400pt;}
._1d{width:272.987200pt;}
._1c{width:276.740800pt;}
._1{width:280.947200pt;}
._1a{width:282.740800pt;}
._1b{width:283.946133pt;}
._25{width:342.985067pt;}
._19{width:394.724800pt;}
._18{width:399.044800pt;}
.fs5{font-size:27.840000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1b8{bottom:84.005200pt;}
.y39{bottom:84.582000pt;}
.y208{bottom:85.274267pt;}
.y152{bottom:85.578800pt;}
.y2f{bottom:85.657467pt;}
.y25{bottom:85.664533pt;}
.y18a{bottom:85.696133pt;}
.y16d{bottom:85.723733pt;}
.y2c8{bottom:85.931200pt;}
.y289{bottom:86.482267pt;}
.ybf{bottom:87.548933pt;}
.yf1{bottom:87.815600pt;}
.y129{bottom:87.824400pt;}
.y8c{bottom:87.948933pt;}
.y1b1{bottom:88.222533pt;}
.y1a1{bottom:88.235600pt;}
.y1e8{bottom:88.896933pt;}
.y1ff{bottom:90.030133pt;}
.y264{bottom:90.615600pt;}
.y236{bottom:91.557733pt;}
.y1b7{bottom:96.005200pt;}
.y24{bottom:97.664533pt;}
.y189{bottom:97.696133pt;}
.y2c7{bottom:98.064533pt;}
.y288{bottom:98.482267pt;}
.y207{bottom:98.607600pt;}
.y151{bottom:98.912133pt;}
.y38{bottom:99.248667pt;}
.y2e{bottom:100.324133pt;}
.y16c{bottom:100.790400pt;}
.y128{bottom:101.157733pt;}
.ybe{bottom:102.348933pt;}
.y8b{bottom:102.748933pt;}
.yf0{bottom:102.882267pt;}
.y1b0{bottom:102.889200pt;}
.y1a0{bottom:102.902267pt;}
.y1fe{bottom:103.363467pt;}
.y1e7{bottom:103.563600pt;}
.y263{bottom:105.282267pt;}
.y235{bottom:106.224400pt;}
.y1b6{bottom:109.338533pt;}
.y23{bottom:109.664533pt;}
.y188{bottom:109.696133pt;}
.y2c6{bottom:110.197867pt;}
.y287{bottom:110.482267pt;}
.y303{bottom:110.997867pt;}
.y206{bottom:111.940933pt;}
.y150{bottom:112.245467pt;}
.y37{bottom:113.915333pt;}
.y127{bottom:114.491067pt;}
.y2d{bottom:114.990800pt;}
.y16b{bottom:115.857067pt;}
.y1fd{bottom:116.696800pt;}
.ybd{bottom:117.148933pt;}
.y8a{bottom:117.548933pt;}
.y1af{bottom:117.555867pt;}
.y19f{bottom:117.568933pt;}
.yef{bottom:117.948933pt;}
.y1e6{bottom:118.230267pt;}
.y262{bottom:119.948933pt;}
.y234{bottom:120.891067pt;}
.y1b5{bottom:121.338533pt;}
.y22{bottom:121.664533pt;}
.y187{bottom:121.696133pt;}
.y2c5{bottom:122.331200pt;}
.y286{bottom:122.482267pt;}
.y302{bottom:122.997867pt;}
.y205{bottom:125.274267pt;}
.y14f{bottom:125.578800pt;}
.y126{bottom:127.824400pt;}
.y36{bottom:128.582000pt;}
.y2c{bottom:129.657467pt;}
.y16a{bottom:130.923733pt;}
.y1fc{bottom:131.363467pt;}
.ybc{bottom:131.948933pt;}
.y1ae{bottom:132.222533pt;}
.y19e{bottom:132.235600pt;}
.y89{bottom:132.348933pt;}
.y1e5{bottom:132.896933pt;}
.yee{bottom:133.015600pt;}
.y186{bottom:133.696133pt;}
.y2c4{bottom:134.464533pt;}
.y285{bottom:134.482267pt;}
.y261{bottom:134.615600pt;}
.y301{bottom:134.997867pt;}
.y233{bottom:135.557733pt;}
.y14e{bottom:138.912133pt;}
.y125{bottom:141.157733pt;}
.y321{bottom:142.997867pt;}
.y35{bottom:143.248667pt;}
.y2b{bottom:144.324133pt;}
.y169{bottom:145.990400pt;}
.y1fb{bottom:146.030133pt;}
.y284{bottom:146.482267pt;}
.y2c3{bottom:146.597867pt;}
.ybb{bottom:146.748933pt;}
.y1ad{bottom:146.889200pt;}
.y19d{bottom:146.902267pt;}
.y300{bottom:146.997867pt;}
.y88{bottom:147.148933pt;}
.y1e4{bottom:147.563600pt;}
.yed{bottom:148.082267pt;}
.y181{bottom:148.424267pt;}
.y260{bottom:149.282267pt;}
.y232{bottom:150.224400pt;}
.y14d{bottom:152.245467pt;}
.y124{bottom:154.491067pt;}
.y320{bottom:155.131200pt;}
.y34{bottom:157.915333pt;}
.y283{bottom:158.482267pt;}
.y2c2{bottom:158.731200pt;}
.y2a{bottom:158.990800pt;}
.y2ff{bottom:158.997867pt;}
.y1fa{bottom:160.696800pt;}
.y168{bottom:161.057067pt;}
.yba{bottom:161.548933pt;}
.y1ac{bottom:161.555867pt;}
.y19c{bottom:161.568933pt;}
.y87{bottom:161.948933pt;}
.y1e3{bottom:162.230267pt;}
.yec{bottom:163.148933pt;}
.y25f{bottom:163.948933pt;}
.y231{bottom:164.891067pt;}
.y14c{bottom:165.578800pt;}
.y31f{bottom:167.264533pt;}
.y180{bottom:167.411200pt;}
.y123{bottom:167.824400pt;}
.y2c1{bottom:170.864533pt;}
.y2fe{bottom:170.997867pt;}
.y33{bottom:172.582000pt;}
.y29{bottom:173.657467pt;}
.y1f9{bottom:175.363467pt;}
.y167{bottom:176.123733pt;}
.y1ab{bottom:176.222533pt;}
.y19b{bottom:176.235600pt;}
.yb9{bottom:176.348933pt;}
.y86{bottom:176.748933pt;}
.y1e2{bottom:176.896933pt;}
.yeb{bottom:178.215600pt;}
.y25e{bottom:178.615600pt;}
.y14b{bottom:178.912133pt;}
.y31e{bottom:179.397867pt;}
.y230{bottom:179.557733pt;}
.y282{bottom:181.148933pt;}
.y122{bottom:181.157733pt;}
.y2c0{bottom:182.997867pt;}
.y17f{bottom:186.398267pt;}
.y32{bottom:187.248667pt;}
.y28{bottom:188.324133pt;}
.y1f8{bottom:190.030133pt;}
.y1aa{bottom:190.889200pt;}
.y19a{bottom:190.902267pt;}
.yb8{bottom:191.148933pt;}
.y166{bottom:191.190400pt;}
.y31d{bottom:191.531200pt;}
.y85{bottom:191.548933pt;}
.y1e1{bottom:191.563600pt;}
.y14a{bottom:192.245467pt;}
.yea{bottom:193.282267pt;}
.y22f{bottom:194.224400pt;}
.y121{bottom:194.491067pt;}
.y2fd{bottom:194.997867pt;}
.y2bf{bottom:195.131200pt;}
.y31{bottom:201.915333pt;}
.y31c{bottom:203.664533pt;}
.y1f7{bottom:204.696800pt;}
.y17e{bottom:205.385200pt;}
.y1a9{bottom:205.555867pt;}
.y199{bottom:205.568933pt;}
.y149{bottom:205.578800pt;}
.yb7{bottom:205.948933pt;}
.y1e0{bottom:206.230267pt;}
.y165{bottom:206.257067pt;}
.y84{bottom:206.348933pt;}
.y2fc{bottom:206.997867pt;}
.y2be{bottom:207.264533pt;}
.y120{bottom:207.824400pt;}
.y25d{bottom:207.948933pt;}
.ye9{bottom:208.348933pt;}
.y22e{bottom:208.891067pt;}
.y281{bottom:211.815600pt;}
.y27{bottom:214.990800pt;}
.y31b{bottom:215.797867pt;}
.y30{bottom:216.582000pt;}
.y148{bottom:218.912133pt;}
.y2fb{bottom:218.997867pt;}
.y1f6{bottom:219.363467pt;}
.y2bd{bottom:219.397867pt;}
.y1a8{bottom:220.222533pt;}
.y198{bottom:220.235600pt;}
.yb6{bottom:220.748933pt;}
.y1df{bottom:220.896933pt;}
.y83{bottom:221.148933pt;}
.y11f{bottom:221.157733pt;}
.y164{bottom:221.323733pt;}
.y25c{bottom:222.615600pt;}
.ye8{bottom:223.415600pt;}
.y22d{bottom:223.557733pt;}
.y17d{bottom:224.372133pt;}
.y280{bottom:225.148933pt;}
.y31a{bottom:227.931200pt;}
.y2fa{bottom:230.997867pt;}
.y2bc{bottom:231.531200pt;}
.y147{bottom:232.245467pt;}
.y1f5{bottom:234.030133pt;}
.y11e{bottom:234.491067pt;}
.y1a7{bottom:234.889200pt;}
.y197{bottom:234.902267pt;}
.yb5{bottom:235.548933pt;}
.y1de{bottom:235.563600pt;}
.y82{bottom:235.948933pt;}
.y163{bottom:236.390400pt;}
.y25b{bottom:237.282267pt;}
.y22c{bottom:238.224400pt;}
.ye7{bottom:238.482267pt;}
.y319{bottom:240.064533pt;}
.y2f9{bottom:242.997867pt;}
.y17c{bottom:243.359200pt;}
.y2bb{bottom:243.664533pt;}
.y146{bottom:245.578800pt;}
.y58{bottom:246.670533pt;}
.y11d{bottom:247.824400pt;}
.y1f4{bottom:248.696800pt;}
.y1a6{bottom:249.555867pt;}
.y196{bottom:249.568933pt;}
.y1dd{bottom:250.230267pt;}
.yb4{bottom:250.348933pt;}
.y81{bottom:250.748933pt;}
.y162{bottom:251.457067pt;}
.y27f{bottom:251.815600pt;}
.y25a{bottom:251.948933pt;}
.y318{bottom:252.197867pt;}
.y22b{bottom:252.891067pt;}
.ye6{bottom:253.548933pt;}
.y2f8{bottom:254.997867pt;}
.y2ba{bottom:255.797867pt;}
.y145{bottom:258.912133pt;}
.y11c{bottom:261.291067pt;}
.y57{bottom:261.337200pt;}
.y17b{bottom:262.346133pt;}
.y21{bottom:262.403867pt;}
.y1f3{bottom:263.363467pt;}
.y1a5{bottom:264.222533pt;}
.y195{bottom:264.235600pt;}
.y317{bottom:264.331200pt;}
.y1dc{bottom:264.896933pt;}
.yb3{bottom:265.148933pt;}
.y80{bottom:265.548933pt;}
.y161{bottom:266.523733pt;}
.y259{bottom:266.615600pt;}
.y2f7{bottom:266.997867pt;}
.y22a{bottom:267.557733pt;}
.y2b9{bottom:267.931200pt;}
.ye5{bottom:268.615600pt;}
.y144{bottom:272.245467pt;}
.y11b{bottom:274.757733pt;}
.y316{bottom:276.464533pt;}
.y1f2{bottom:276.696800pt;}
.y20{bottom:278.403867pt;}
.y27e{bottom:278.482267pt;}
.y1a4{bottom:278.889200pt;}
.y194{bottom:278.902267pt;}
.y2f6{bottom:278.997867pt;}
.y1db{bottom:279.563600pt;}
.yb2{bottom:279.948933pt;}
.y2b8{bottom:280.064533pt;}
.y7f{bottom:280.348933pt;}
.y258{bottom:281.282267pt;}
.y17a{bottom:281.333067pt;}
.y160{bottom:281.590400pt;}
.y229{bottom:282.224400pt;}
.ye4{bottom:283.682267pt;}
.y143{bottom:285.578800pt;}
.y11a{bottom:288.224400pt;}
.y315{bottom:288.597867pt;}
.y1f1{bottom:290.030133pt;}
.y56{bottom:290.670533pt;}
.y2f5{bottom:290.997867pt;}
.y27d{bottom:291.815600pt;}
.y2b7{bottom:292.197867pt;}
.y1a3{bottom:293.555867pt;}
.y193{bottom:293.568933pt;}
.y1da{bottom:294.230267pt;}
.yb1{bottom:294.748933pt;}
.y7e{bottom:295.148933pt;}
.y257{bottom:295.948933pt;}
.y15f{bottom:296.657067pt;}
.y228{bottom:296.891067pt;}
.ye3{bottom:298.748933pt;}
.y142{bottom:298.912133pt;}
.y179{bottom:300.320133pt;}
.y314{bottom:300.731200pt;}
.y119{bottom:301.691067pt;}
.y2f4{bottom:302.997867pt;}
.y2b6{bottom:304.331200pt;}
.y1f0{bottom:304.696800pt;}
.y27c{bottom:305.148933pt;}
.y55{bottom:305.337200pt;}
.y1a2{bottom:308.222533pt;}
.y192{bottom:308.235600pt;}
.y1d9{bottom:308.896933pt;}
.yb0{bottom:309.548933pt;}
.y7d{bottom:309.948933pt;}
.y1f{bottom:310.403867pt;}
.y256{bottom:310.615600pt;}
.y227{bottom:311.557733pt;}
.y15e{bottom:311.723733pt;}
.y141{bottom:312.245467pt;}
.y313{bottom:312.864533pt;}
.ye2{bottom:313.815600pt;}
.y2f3{bottom:314.997867pt;}
.y118{bottom:315.157733pt;}
.y2b5{bottom:316.464533pt;}
.y27b{bottom:318.482267pt;}
.y178{bottom:319.307067pt;}
.y1ef{bottom:319.363467pt;}
.y54{bottom:320.003867pt;}
.y1d8{bottom:323.563600pt;}
.yaf{bottom:324.348933pt;}
.y7c{bottom:324.748933pt;}
.y312{bottom:324.997867pt;}
.y255{bottom:325.282267pt;}
.y140{bottom:325.578800pt;}
.y226{bottom:326.224400pt;}
.y1e{bottom:326.403867pt;}
.y15d{bottom:326.790400pt;}
.y2f2{bottom:326.997867pt;}
.y2b4{bottom:328.597867pt;}
.y117{bottom:328.624400pt;}
.ye1{bottom:328.882267pt;}
.y27a{bottom:331.815600pt;}
.y191{bottom:332.360933pt;}
.y1ee{bottom:334.030133pt;}
.y53{bottom:334.670533pt;}
.y311{bottom:337.131200pt;}
.y1d7{bottom:338.230267pt;}
.y177{bottom:338.294000pt;}
.y13f{bottom:338.912133pt;}
.y2f1{bottom:338.997867pt;}
.yae{bottom:339.148933pt;}
.y7b{bottom:339.548933pt;}
.y254{bottom:339.948933pt;}
.y2b3{bottom:340.731200pt;}
.y225{bottom:340.891067pt;}
.y15c{bottom:341.857067pt;}
.y116{bottom:342.091067pt;}
.y1d{bottom:342.403867pt;}
.ye0{bottom:343.948933pt;}
.y190{bottom:344.360933pt;}
.y279{bottom:345.148933pt;}
.y1ed{bottom:348.696800pt;}
.y310{bottom:349.264533pt;}
.y52{bottom:349.337200pt;}
.y2f0{bottom:350.997867pt;}
.y13e{bottom:352.245467pt;}
.y2b2{bottom:352.864533pt;}
.y1d6{bottom:352.896933pt;}
.yad{bottom:353.948933pt;}
.y7a{bottom:354.348933pt;}
.y253{bottom:354.615600pt;}
.y115{bottom:355.557733pt;}
.y18f{bottom:356.360933pt;}
.y15b{bottom:356.923733pt;}
.y176{bottom:357.184267pt;}
.y1c{bottom:358.403867pt;}
.y278{bottom:358.482267pt;}
.ydf{bottom:359.015600pt;}
.y30f{bottom:361.397867pt;}
.y2ef{bottom:362.997867pt;}
.y1ec{bottom:363.363467pt;}
.y51{bottom:364.003867pt;}
.y2b1{bottom:364.997867pt;}
.y13d{bottom:365.578800pt;}
.y1d5{bottom:367.563600pt;}
.yac{bottom:368.748933pt;}
.y114{bottom:369.024400pt;}
.y79{bottom:369.148933pt;}
.y252{bottom:369.282267pt;}
.y18e{bottom:369.694267pt;}
.y224{bottom:370.224400pt;}
.y277{bottom:371.815600pt;}
.y15a{bottom:371.990400pt;}
.y30e{bottom:373.531200pt;}
.yde{bottom:374.082267pt;}
.y1b{bottom:374.403867pt;}
.y2ee{bottom:374.997867pt;}
.y175{bottom:376.171333pt;}
.y2b0{bottom:377.131200pt;}
.y1eb{bottom:378.030133pt;}
.y50{bottom:378.670533pt;}
.y13c{bottom:378.912133pt;}
.y1d4{bottom:382.230267pt;}
.y113{bottom:382.491067pt;}
.y18d{bottom:383.027600pt;}
.yab{bottom:383.548933pt;}
.y78{bottom:383.948933pt;}
.y223{bottom:384.891067pt;}
.y276{bottom:385.148933pt;}
.y172{bottom:385.638000pt;}
.y30d{bottom:385.664533pt;}
.y2ed{bottom:386.997867pt;}
.y159{bottom:387.057067pt;}
.ydd{bottom:389.148933pt;}
.y2af{bottom:389.397867pt;}
.y1a{bottom:390.403867pt;}
.y13b{bottom:392.245467pt;}
.y1ea{bottom:392.696800pt;}
.y4f{bottom:393.337200pt;}
.y18c{bottom:395.027600pt;}
.y174{bottom:395.034800pt;}
.y112{bottom:395.957733pt;}
.y1d3{bottom:396.896933pt;}
.y30c{bottom:397.797867pt;}
.yaa{bottom:398.348933pt;}
.y275{bottom:398.482267pt;}
.y251{bottom:398.615600pt;}
.y77{bottom:398.748933pt;}
.y2ec{bottom:398.997867pt;}
.y222{bottom:399.557733pt;}
.y2ae{bottom:401.664533pt;}
.y158{bottom:402.123733pt;}
.ydc{bottom:404.215600pt;}
.y13a{bottom:405.578800pt;}
.y19{bottom:406.403867pt;}
.y1e9{bottom:407.363467pt;}
.y4e{bottom:408.003867pt;}
.y18b{bottom:408.360933pt;}
.y111{bottom:409.424400pt;}
.y30b{bottom:409.931200pt;}
.y2eb{bottom:410.997867pt;}
.y1d2{bottom:411.563600pt;}
.y274{bottom:411.815600pt;}
.ya9{bottom:413.148933pt;}
.y250{bottom:413.282267pt;}
.y76{bottom:413.548933pt;}
.y173{bottom:413.898267pt;}
.y2ad{bottom:413.931200pt;}
.y221{bottom:414.224400pt;}
.y157{bottom:417.190400pt;}
.y139{bottom:418.912133pt;}
.ydb{bottom:419.282267pt;}
.y30a{bottom:422.064533pt;}
.y18{bottom:422.403867pt;}
.y4d{bottom:422.670533pt;}
.y110{bottom:422.891067pt;}
.y2ea{bottom:422.997867pt;}
.y273{bottom:425.148933pt;}
.y204{bottom:426.062933pt;}
.y2ac{bottom:426.197867pt;}
.y1d1{bottom:426.230267pt;}
.ya8{bottom:427.948933pt;}
.y75{bottom:428.348933pt;}
.y220{bottom:428.891067pt;}
.y138{bottom:432.245467pt;}
.y185{bottom:434.102800pt;}
.y309{bottom:434.197867pt;}
.yda{bottom:434.348933pt;}
.y2e9{bottom:434.997867pt;}
.y10f{bottom:436.357733pt;}
.y4c{bottom:437.337200pt;}
.y17{bottom:438.403867pt;}
.y2ab{bottom:438.464533pt;}
.y272{bottom:438.482267pt;}
.y203{bottom:439.396267pt;}
.y1d0{bottom:440.896933pt;}
.y24f{bottom:442.615600pt;}
.ya7{bottom:442.748933pt;}
.y74{bottom:443.148933pt;}
.y21f{bottom:443.557733pt;}
.y137{bottom:445.578800pt;}
.y308{bottom:446.331200pt;}
.y156{bottom:446.923733pt;}
.y2e8{bottom:446.997867pt;}
.y184{bottom:447.289467pt;}
.yd9{bottom:449.415600pt;}
.y10e{bottom:449.824400pt;}
.y2aa{bottom:450.731200pt;}
.y271{bottom:451.815600pt;}
.y4b{bottom:452.003867pt;}
.y202{bottom:452.729600pt;}
.y16{bottom:454.403867pt;}
.y1cf{bottom:455.563600pt;}
.y24e{bottom:457.282267pt;}
.ya6{bottom:457.548933pt;}
.y73{bottom:457.948933pt;}
.y21e{bottom:458.224400pt;}
.y307{bottom:458.464533pt;}
.y136{bottom:458.912133pt;}
.y2e7{bottom:458.997867pt;}
.y183{bottom:460.476133pt;}
.y2a9{bottom:462.997867pt;}
.y10d{bottom:463.291067pt;}
.yd8{bottom:464.482267pt;}
.y270{bottom:465.148933pt;}
.y201{bottom:466.062933pt;}
.y4a{bottom:466.670533pt;}
.y1ce{bottom:470.230267pt;}
.y15{bottom:470.403867pt;}
.y306{bottom:470.597867pt;}
.y2e6{bottom:470.997867pt;}
.y24d{bottom:471.948933pt;}
.y135{bottom:472.245467pt;}
.ya5{bottom:472.348933pt;}
.y72{bottom:472.748933pt;}
.y21d{bottom:472.891067pt;}
.y182{bottom:473.662800pt;}
.y2a8{bottom:475.264533pt;}
.y10c{bottom:476.757733pt;}
.y26f{bottom:478.482267pt;}
.y200{bottom:479.396267pt;}
.yd7{bottom:479.548933pt;}
.y49{bottom:481.337200pt;}
.y305{bottom:482.731200pt;}
.y2e5{bottom:482.997867pt;}
.y1cd{bottom:484.896933pt;}
.y134{bottom:485.578800pt;}
.y155{bottom:485.590400pt;}
.y14{bottom:486.403867pt;}
.y24c{bottom:486.615600pt;}
.ya4{bottom:487.148933pt;}
.y2a7{bottom:487.531200pt;}
.y71{bottom:487.548933pt;}
.y21c{bottom:487.557733pt;}
.y10b{bottom:490.224400pt;}
.y26e{bottom:491.815600pt;}
.y171{bottom:492.994133pt;}
.yd6{bottom:494.615600pt;}
.y304{bottom:494.864533pt;}
.y2e4{bottom:494.997867pt;}
.y48{bottom:496.003867pt;}
.y133{bottom:498.912133pt;}
.y154{bottom:498.923733pt;}
.y1cc{bottom:499.563600pt;}
.y2a6{bottom:499.797867pt;}
.y24b{bottom:501.282267pt;}
.ya3{bottom:501.948933pt;}
.y21b{bottom:502.224400pt;}
.y70{bottom:502.348933pt;}
.y13{bottom:502.403867pt;}
.y10a{bottom:503.557733pt;}
.y26d{bottom:505.148933pt;}
.y170{bottom:506.060800pt;}
.y1b4{bottom:506.408133pt;}
.y2e3{bottom:506.997867pt;}
.yd5{bottom:509.682267pt;}
.y47{bottom:510.670533pt;}
.y2a5{bottom:512.064533pt;}
.y132{bottom:512.245467pt;}
.y153{bottom:512.257067pt;}
.y1cb{bottom:514.230267pt;}
.y24a{bottom:515.948933pt;}
.ya2{bottom:516.748933pt;}
.y109{bottom:516.891067pt;}
.y6f{bottom:517.148933pt;}
.y12{bottom:518.403867pt;}
.y26c{bottom:518.482267pt;}
.y2e2{bottom:518.997867pt;}
.y16f{bottom:519.127467pt;}
.y1b3{bottom:519.741467pt;}
.y2a4{bottom:524.331200pt;}
.yd4{bottom:524.748933pt;}
.y46{bottom:525.337200pt;}
.y1ca{bottom:528.896933pt;}
.y108{bottom:530.224400pt;}
.y249{bottom:530.615600pt;}
.y2e1{bottom:530.997867pt;}
.ya1{bottom:531.548933pt;}
.y21a{bottom:531.557733pt;}
.y6e{bottom:531.948933pt;}
.y16e{bottom:532.194133pt;}
.y1b2{bottom:533.074800pt;}
.y11{bottom:534.403867pt;}
.y2a3{bottom:536.597867pt;}
.yd3{bottom:539.815600pt;}
.y45{bottom:540.003867pt;}
.y131{bottom:542.808267pt;}
.y2e0{bottom:542.997867pt;}
.y107{bottom:543.557733pt;}
.y1c9{bottom:543.563600pt;}
.y248{bottom:545.282267pt;}
.y219{bottom:546.224400pt;}
.ya0{bottom:546.348933pt;}
.y6d{bottom:546.748933pt;}
.y2a2{bottom:548.864533pt;}
.y10{bottom:550.403867pt;}
.y26b{bottom:553.148933pt;}
.y44{bottom:554.670533pt;}
.y130{bottom:554.808267pt;}
.yd2{bottom:554.882267pt;}
.y2df{bottom:554.997867pt;}
.y106{bottom:556.891067pt;}
.y1c8{bottom:558.230267pt;}
.y247{bottom:560.082267pt;}
.y218{bottom:560.891067pt;}
.y2a1{bottom:561.131200pt;}
.y9f{bottom:561.148933pt;}
.y6c{bottom:561.548933pt;}
.yf{bottom:566.403867pt;}
.y26a{bottom:566.482267pt;}
.y12f{bottom:566.808267pt;}
.y2de{bottom:566.997867pt;}
.y43{bottom:569.337200pt;}
.yd1{bottom:569.948933pt;}
.y105{bottom:570.224400pt;}
.y1c7{bottom:572.896933pt;}
.y2a0{bottom:573.397867pt;}
.y246{bottom:574.882267pt;}
.y217{bottom:575.557733pt;}
.y9e{bottom:575.948933pt;}
.y6b{bottom:576.348933pt;}
.y12e{bottom:578.808267pt;}
.y2dd{bottom:578.997867pt;}
.ye{bottom:582.403867pt;}
.y104{bottom:583.557733pt;}
.y42{bottom:584.003867pt;}
.yd0{bottom:585.015600pt;}
.y29f{bottom:585.664533pt;}
.y1c6{bottom:587.563600pt;}
.y245{bottom:589.682267pt;}
.y216{bottom:590.224400pt;}
.y9d{bottom:590.748933pt;}
.y2dc{bottom:590.997867pt;}
.y6a{bottom:591.148933pt;}
.y269{bottom:591.815600pt;}
.y12d{bottom:592.141600pt;}
.y103{bottom:596.891067pt;}
.y29e{bottom:597.931200pt;}
.yd{bottom:598.403867pt;}
.y41{bottom:598.670533pt;}
.ycf{bottom:600.082267pt;}
.y1c5{bottom:602.230267pt;}
.y2db{bottom:602.997867pt;}
.y12c{bottom:604.141600pt;}
.y244{bottom:604.482267pt;}
.y215{bottom:604.891067pt;}
.y9c{bottom:605.548933pt;}
.y69{bottom:605.948933pt;}
.y268{bottom:606.482267pt;}
.y29d{bottom:610.197867pt;}
.y102{bottom:610.224400pt;}
.y40{bottom:613.337200pt;}
.yc{bottom:614.403867pt;}
.y2da{bottom:614.997867pt;}
.yce{bottom:615.148933pt;}
.y12b{bottom:616.141600pt;}
.y1c4{bottom:616.896933pt;}
.y243{bottom:619.282267pt;}
.y214{bottom:619.557733pt;}
.y9b{bottom:620.348933pt;}
.y68{bottom:620.748933pt;}
.y267{bottom:621.148933pt;}
.y29c{bottom:622.464533pt;}
.y101{bottom:623.557733pt;}
.y2d9{bottom:626.997867pt;}
.y3f{bottom:628.003867pt;}
.y12a{bottom:628.141600pt;}
.ycd{bottom:630.215600pt;}
.yb{bottom:630.403867pt;}
.y1c3{bottom:631.563600pt;}
.y242{bottom:634.082267pt;}
.y213{bottom:634.224400pt;}
.y29b{bottom:634.731200pt;}
.y9a{bottom:635.148933pt;}
.y67{bottom:635.548933pt;}
.y266{bottom:635.815600pt;}
.y100{bottom:636.891067pt;}
.y2d8{bottom:638.997867pt;}
.y3e{bottom:642.670533pt;}
.ycc{bottom:645.282267pt;}
.y1c2{bottom:646.230267pt;}
.ya{bottom:646.403867pt;}
.y29a{bottom:646.997867pt;}
.y241{bottom:648.882267pt;}
.y212{bottom:648.891067pt;}
.y99{bottom:649.948933pt;}
.yff{bottom:650.224400pt;}
.y66{bottom:650.348933pt;}
.y265{bottom:650.482267pt;}
.y2d7{bottom:650.997867pt;}
.y299{bottom:659.264533pt;}
.ycb{bottom:660.348933pt;}
.y2d6{bottom:662.997867pt;}
.yfe{bottom:663.557733pt;}
.y240{bottom:663.682267pt;}
.y98{bottom:664.748933pt;}
.y65{bottom:665.148933pt;}
.y298{bottom:671.531200pt;}
.y3d{bottom:672.003867pt;}
.y2d5{bottom:674.997867pt;}
.yca{bottom:675.415600pt;}
.yfd{bottom:676.891067pt;}
.y9{bottom:677.070533pt;}
.y211{bottom:678.224400pt;}
.y23f{bottom:678.482267pt;}
.y1c1{bottom:679.354800pt;}
.y97{bottom:679.548933pt;}
.y64{bottom:679.815600pt;}
.y297{bottom:683.797867pt;}
.y3c{bottom:685.337200pt;}
.y2d4{bottom:686.997867pt;}
.yfc{bottom:690.224400pt;}
.yc9{bottom:690.482267pt;}
.y8{bottom:691.737200pt;}
.y210{bottom:692.891067pt;}
.y23e{bottom:693.282267pt;}
.y96{bottom:694.348933pt;}
.y63{bottom:694.482267pt;}
.y296{bottom:696.064533pt;}
.y2d3{bottom:698.997867pt;}
.yfb{bottom:703.557733pt;}
.y1be{bottom:704.554000pt;}
.yc8{bottom:705.548933pt;}
.y7{bottom:706.403867pt;}
.y20f{bottom:707.557733pt;}
.y23d{bottom:708.082267pt;}
.y295{bottom:708.331200pt;}
.y95{bottom:709.015600pt;}
.y62{bottom:709.148933pt;}
.y2d2{bottom:710.997867pt;}
.y3b{bottom:713.337200pt;}
.yfa{bottom:716.891067pt;}
.y1bd{bottom:717.887333pt;}
.y294{bottom:720.597867pt;}
.yc7{bottom:720.615600pt;}
.y20e{bottom:722.224400pt;}
.y23c{bottom:722.882267pt;}
.y2d1{bottom:722.997867pt;}
.y94{bottom:723.682267pt;}
.y61{bottom:723.815600pt;}
.yf9{bottom:730.224400pt;}
.y293{bottom:732.864533pt;}
.y2d0{bottom:734.997867pt;}
.yc6{bottom:735.682267pt;}
.y6{bottom:735.737200pt;}
.y1bc{bottom:736.874400pt;}
.y20d{bottom:736.891067pt;}
.y23b{bottom:737.682267pt;}
.y93{bottom:738.348933pt;}
.y60{bottom:738.482267pt;}
.yf8{bottom:743.557733pt;}
.y292{bottom:745.131200pt;}
.y2cf{bottom:746.997867pt;}
.y3a{bottom:747.203867pt;}
.yc5{bottom:750.748933pt;}
.y20c{bottom:751.557733pt;}
.y23a{bottom:752.482267pt;}
.y92{bottom:753.015600pt;}
.y5f{bottom:753.148933pt;}
.y1bb{bottom:755.861333pt;}
.yf7{bottom:756.891067pt;}
.y291{bottom:757.397867pt;}
.y2ce{bottom:758.997867pt;}
.yc4{bottom:765.815600pt;}
.y20b{bottom:766.224400pt;}
.y239{bottom:767.282267pt;}
.y91{bottom:767.682267pt;}
.y5e{bottom:767.815600pt;}
.y5{bottom:769.603867pt;}
.y290{bottom:769.664533pt;}
.yf6{bottom:770.224400pt;}
.y2cd{bottom:770.997867pt;}
.y1ba{bottom:774.848267pt;}
.yc3{bottom:780.882267pt;}
.y20a{bottom:780.891067pt;}
.y28f{bottom:781.931200pt;}
.y238{bottom:782.082267pt;}
.y90{bottom:782.348933pt;}
.y5d{bottom:782.482267pt;}
.y2cc{bottom:782.997867pt;}
.yf5{bottom:783.557733pt;}
.y4{bottom:792.003867pt;}
.y1b9{bottom:793.932000pt;}
.y28e{bottom:794.197867pt;}
.y2cb{bottom:794.997867pt;}
.y209{bottom:795.557733pt;}
.yc2{bottom:795.948933pt;}
.y237{bottom:796.882267pt;}
.yf4{bottom:796.891067pt;}
.y8f{bottom:797.015600pt;}
.y5c{bottom:797.148933pt;}
.y28d{bottom:806.464533pt;}
.y2ca{bottom:806.997867pt;}
.yf3{bottom:810.224400pt;}
.yc1{bottom:811.015600pt;}
.y8e{bottom:811.682267pt;}
.y5b{bottom:811.815600pt;}
.y3{bottom:814.403867pt;}
.y28c{bottom:818.731200pt;}
.y2c9{bottom:818.997867pt;}
.yc0{bottom:826.082267pt;}
.y8d{bottom:826.348933pt;}
.y5a{bottom:826.482267pt;}
.y1c0{bottom:827.783467pt;}
.y28b{bottom:830.997867pt;}
.y2{bottom:836.803867pt;}
.yf2{bottom:839.557733pt;}
.y1bf{bottom:841.116800pt;}
.y59{bottom:841.148933pt;}
.y28a{bottom:842.997867pt;}
.y1{bottom:878.931200pt;}
.y26{bottom:878.944133pt;}
.h7{height:29.645833pt;}
.hc{height:32.531250pt;}
.hd{height:32.964896pt;}
.h5{height:33.328125pt;}
.hb{height:33.351562pt;}
.h6{height:37.057292pt;}
.h2{height:37.109025pt;}
.h8{height:43.375000pt;}
.h4{height:46.593750pt;}
.ha{height:46.875000pt;}
.h3{height:54.359375pt;}
.h9{height:54.687500pt;}
.he{height:61.850573pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x2{left:80.028800pt;}
.x1e{left:80.923867pt;}
.xb{left:86.468267pt;}
.x3{left:90.419333pt;}
.xc{left:93.244933pt;}
.x7{left:94.488267pt;}
.xd{left:96.653733pt;}
.xe{left:101.908267pt;}
.x1b{left:115.282000pt;}
.x20{left:117.908400pt;}
.x18{left:122.256000pt;}
.x4{left:123.610133pt;}
.x16{left:124.916133pt;}
.x11{left:126.252000pt;}
.x17{left:127.256933pt;}
.x15{left:128.926800pt;}
.x1f{left:154.090133pt;}
.x5{left:156.276800pt;}
.x19{left:173.822933pt;}
.x1d{left:209.331600pt;}
.x12{left:211.590533pt;}
.x13{left:242.425200pt;}
.x14{left:262.341333pt;}
.xf{left:284.774133pt;}
.x10{left:285.855600pt;}
.x6{left:289.770267pt;}
.x8{left:299.355733pt;}
.x9{left:340.157467pt;}
.xa{left:359.055200pt;}
.x1c{left:374.776133pt;}
.x1a{left:463.897200pt;}
}




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