
    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_6c9b5b59a068a165a9bde76f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.125000;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_7f4e8c1fd88022cf35c0d4ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.125000;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_2d79fcb2594c750eb89277a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_a54566504985c18b5d319bbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_382383299162dc05634e7c4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.184000;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_a38d881d763cab21cca90c19.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172444;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_feccbdd826b6a3e4360b21f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979004;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_7bd9454a97d391f008ea0803.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_6e25da7486820969125774c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125000;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_25063a46981d484d60edba73.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125000;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_1d7d5cc830aab806c193ccfb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;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_618df63d79475d4ca905fa99.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.094000;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_cb87d552a2ace487764e8bad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-25.974000px;}
.v1{vertical-align:-4.358400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.496000px;}
.v2{vertical-align:36.000000px;}
.ls1{letter-spacing:-7.800000px;}
.ls5{letter-spacing:-1.482000px;}
.lsa{letter-spacing:-1.170000px;}
.ls8{letter-spacing:-0.181896px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000108px;}
.lsc{letter-spacing:0.300000px;}
.ls7{letter-spacing:3.276000px;}
.ls2{letter-spacing:3.603600px;}
.ls9{letter-spacing:5.148000px;}
.ls6{letter-spacing:5.311800px;}
.lsb{letter-spacing:5.857800px;}
.ls3{letter-spacing:7.566000px;}
.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;}
}
.ws1{word-spacing:-21.684000px;}
.ws3{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.182000px;}
.ws35{word-spacing:-14.508000px;}
.ws123{word-spacing:-14.250000px;}
.ws10e{word-spacing:-13.950000px;}
.wsd3{word-spacing:-13.338000px;}
.ws54{word-spacing:-13.026000px;}
.ws0{word-spacing:-12.276000px;}
.ws4{word-spacing:-11.160000px;}
.ws36{word-spacing:-8.458164px;}
.wsc8{word-spacing:-8.276268px;}
.ws105{word-spacing:-4.290000px;}
.wsf3{word-spacing:-3.120000px;}
.ws10f{word-spacing:-3.075000px;}
.ws103{word-spacing:-3.042000px;}
.wsb{word-spacing:-2.967000px;}
.ws76{word-spacing:-2.964000px;}
.ws9{word-spacing:-2.898000px;}
.wsb1{word-spacing:-2.886000px;}
.wsf5{word-spacing:-2.808000px;}
.ws92{word-spacing:-2.730000px;}
.ws104{word-spacing:-2.652000px;}
.wsa3{word-spacing:-2.574000px;}
.ws2d{word-spacing:-2.520000px;}
.ws4a{word-spacing:-2.496000px;}
.wsc9{word-spacing:-2.418000px;}
.wsa{word-spacing:-2.415000px;}
.ws44{word-spacing:-2.340000px;}
.ws9e{word-spacing:-2.262000px;}
.ws8d{word-spacing:-2.184000px;}
.ws55{word-spacing:-2.106000px;}
.ws11d{word-spacing:-2.100000px;}
.wsa0{word-spacing:-2.028000px;}
.wsb2{word-spacing:-1.950000px;}
.wse3{word-spacing:-1.914000px;}
.ws126{word-spacing:-1.875000px;}
.wsa2{word-spacing:-1.872000px;}
.ws82{word-spacing:-1.800000px;}
.ws10c{word-spacing:-1.794000px;}
.wsce{word-spacing:-1.716000px;}
.ws128{word-spacing:-1.650000px;}
.ws101{word-spacing:-1.638000px;}
.ws2b{word-spacing:-1.584000px;}
.ws89{word-spacing:-1.560000px;}
.ws12c{word-spacing:-1.500000px;}
.ws93{word-spacing:-1.482000px;}
.ws1a{word-spacing:-1.449000px;}
.wsa7{word-spacing:-1.404000px;}
.ws7b{word-spacing:-1.326000px;}
.wsb7{word-spacing:-1.320000px;}
.ws9f{word-spacing:-1.248000px;}
.ws111{word-spacing:-1.200000px;}
.wsdd{word-spacing:-1.188000px;}
.ws8c{word-spacing:-1.170000px;}
.ws99{word-spacing:-1.092000px;}
.wse8{word-spacing:-1.056000px;}
.ws7{word-spacing:-1.035000px;}
.wsa1{word-spacing:-1.014000px;}
.ws3b{word-spacing:-0.936000px;}
.wsaf{word-spacing:-0.858000px;}
.wse1{word-spacing:-0.792000px;}
.ws62{word-spacing:-0.780000px;}
.wsca{word-spacing:-0.702000px;}
.ws56{word-spacing:-0.624000px;}
.wscd{word-spacing:-0.546000px;}
.wsa4{word-spacing:-0.468000px;}
.wse6{word-spacing:-0.462000px;}
.wscc{word-spacing:-0.390000px;}
.ws51{word-spacing:-0.312000px;}
.ws25{word-spacing:-0.288000px;}
.wsd6{word-spacing:-0.234000px;}
.ws24{word-spacing:-0.216000px;}
.ws100{word-spacing:-0.156000px;}
.ws110{word-spacing:-0.150000px;}
.wscf{word-spacing:-0.078000px;}
.ws5{word-spacing:0.000000px;}
.wsfc{word-spacing:0.072000px;}
.ws85{word-spacing:0.078000px;}
.ws5b{word-spacing:0.144000px;}
.ws97{word-spacing:0.156000px;}
.wsd2{word-spacing:0.181896px;}
.ws9a{word-spacing:0.234000px;}
.ws6d{word-spacing:0.240000px;}
.wsbe{word-spacing:0.288000px;}
.ws113{word-spacing:0.300000px;}
.ws48{word-spacing:0.312000px;}
.ws60{word-spacing:0.390000px;}
.ws8a{word-spacing:0.468000px;}
.wsb5{word-spacing:0.545688px;}
.ws4f{word-spacing:0.546000px;}
.ws114{word-spacing:0.600000px;}
.ws4d{word-spacing:0.624000px;}
.ws75{word-spacing:0.702000px;}
.wsb6{word-spacing:0.720000px;}
.wsd5{word-spacing:0.780000px;}
.ws12e{word-spacing:0.825000px;}
.ws6b{word-spacing:0.840000px;}
.ws43{word-spacing:0.858000px;}
.ws69{word-spacing:0.864006px;}
.wsdb{word-spacing:0.924000px;}
.ws4b{word-spacing:0.936000px;}
.wsd8{word-spacing:0.990000px;}
.wsfa{word-spacing:1.008000px;}
.ws7d{word-spacing:1.014000px;}
.ws8{word-spacing:1.035000px;}
.ws57{word-spacing:1.080000px;}
.ws74{word-spacing:1.092000px;}
.ws115{word-spacing:1.125000px;}
.ws6a{word-spacing:1.140000px;}
.ws88{word-spacing:1.170000px;}
.wsfb{word-spacing:1.224000px;}
.ws49{word-spacing:1.248000px;}
.ws12f{word-spacing:1.275000px;}
.ws80{word-spacing:1.320000px;}
.ws6f{word-spacing:1.326000px;}
.ws11e{word-spacing:1.350000px;}
.wsea{word-spacing:1.386000px;}
.ws64{word-spacing:1.404000px;}
.ws65{word-spacing:1.482000px;}
.ws52{word-spacing:1.500642px;}
.ws29{word-spacing:1.512000px;}
.wsf4{word-spacing:1.560000px;}
.wse2{word-spacing:1.584000px;}
.ws63{word-spacing:1.638000px;}
.wsde{word-spacing:1.650000px;}
.ws109{word-spacing:1.716000px;}
.wsc{word-spacing:1.794000px;}
.ws11f{word-spacing:1.800000px;}
.ws96{word-spacing:1.872000px;}
.wsb8{word-spacing:1.920000px;}
.wsac{word-spacing:1.950000px;}
.ws53{word-spacing:1.980000px;}
.ws11c{word-spacing:2.025000px;}
.wsaa{word-spacing:2.028000px;}
.wsfe{word-spacing:2.106000px;}
.wse7{word-spacing:2.112000px;}
.ws78{word-spacing:2.184000px;}
.ws15{word-spacing:2.208000px;}
.ws1e{word-spacing:2.232000px;}
.wsc2{word-spacing:2.262000px;}
.ws59{word-spacing:2.304000px;}
.ws67{word-spacing:2.340000px;}
.ws18{word-spacing:2.346000px;}
.ws12b{word-spacing:2.400000px;}
.wsc7{word-spacing:2.418000px;}
.ws5e{word-spacing:2.496000px;}
.wsa5{word-spacing:2.574000px;}
.ws81{word-spacing:2.580000px;}
.ws6e{word-spacing:2.640000px;}
.ws5f{word-spacing:2.652000px;}
.wse9{word-spacing:2.706000px;}
.ws41{word-spacing:2.730000px;}
.ws7e{word-spacing:2.773914px;}
.ws125{word-spacing:2.775000px;}
.ws66{word-spacing:2.808000px;}
.ws30{word-spacing:2.880000px;}
.ws98{word-spacing:2.886000px;}
.ws94{word-spacing:2.964000px;}
.ws46{word-spacing:3.042000px;}
.ws11a{word-spacing:3.075000px;}
.ws5d{word-spacing:3.120000px;}
.ws38{word-spacing:3.198000px;}
.ws3f{word-spacing:3.276000px;}
.ws20{word-spacing:3.312000px;}
.ws39{word-spacing:3.354000px;}
.wsd7{word-spacing:3.366000px;}
.ws12{word-spacing:3.381000px;}
.ws95{word-spacing:3.432000px;}
.wsfd{word-spacing:3.456000px;}
.ws3a{word-spacing:3.510000px;}
.ws119{word-spacing:3.525000px;}
.wsbf{word-spacing:3.588000px;}
.ws7f{word-spacing:3.660000px;}
.ws68{word-spacing:3.666000px;}
.wsd9{word-spacing:3.696000px;}
.wsb0{word-spacing:3.744000px;}
.wse5{word-spacing:3.762000px;}
.wsf9{word-spacing:3.816000px;}
.wsc4{word-spacing:3.822000px;}
.ws12a{word-spacing:3.825000px;}
.ws4e{word-spacing:3.900000px;}
.ws11b{word-spacing:3.975000px;}
.ws4c{word-spacing:3.978000px;}
.ws3e{word-spacing:4.056000px;}
.ws116{word-spacing:4.125000px;}
.wscb{word-spacing:4.134000px;}
.wsb9{word-spacing:4.200000px;}
.ws10d{word-spacing:4.212000px;}
.ws50{word-spacing:4.290000px;}
.ws121{word-spacing:4.350000px;}
.ws108{word-spacing:4.368000px;}
.wsb3{word-spacing:4.446000px;}
.wsa9{word-spacing:4.524000px;}
.wse0{word-spacing:4.554000px;}
.ws3c{word-spacing:4.602000px;}
.wsbd{word-spacing:4.680000px;}
.ws10b{word-spacing:4.758000px;}
.ws7c{word-spacing:4.836000px;}
.ws14{word-spacing:4.899000px;}
.ws79{word-spacing:4.914000px;}
.ws58{word-spacing:4.968000px;}
.wsc0{word-spacing:4.992000px;}
.wsc6{word-spacing:5.070000px;}
.ws6c{word-spacing:5.100000px;}
.ws91{word-spacing:5.148000px;}
.ws84{word-spacing:5.226000px;}
.ws90{word-spacing:5.304000px;}
.wsdc{word-spacing:5.346000px;}
.ws9c{word-spacing:5.382000px;}
.ws5a{word-spacing:5.400000px;}
.ws8b{word-spacing:5.460000px;}
.ws7a{word-spacing:5.538000px;}
.ws28{word-spacing:5.616000px;}
.wsec{word-spacing:5.742000px;}
.wsf6{word-spacing:5.772000px;}
.ws45{word-spacing:5.850000px;}
.ws1c{word-spacing:5.865000px;}
.wsed{word-spacing:5.874000px;}
.wsb4{word-spacing:5.928000px;}
.wsd{word-spacing:5.934000px;}
.wsf7{word-spacing:6.006000px;}
.wsf8{word-spacing:6.084000px;}
.wsbc{word-spacing:6.120000px;}
.ws118{word-spacing:6.150000px;}
.ws61{word-spacing:6.162000px;}
.ws72{word-spacing:6.240000px;}
.wsf{word-spacing:6.279000px;}
.wsab{word-spacing:6.318000px;}
.ws106{word-spacing:6.396000px;}
.wsda{word-spacing:6.402000px;}
.ws42{word-spacing:6.474000px;}
.wsc5{word-spacing:6.552000px;}
.ws112{word-spacing:6.600000px;}
.ws2c{word-spacing:6.624000px;}
.wsae{word-spacing:6.630000px;}
.ws129{word-spacing:6.675000px;}
.ws9b{word-spacing:6.708000px;}
.ws86{word-spacing:6.786000px;}
.wsba{word-spacing:6.840000px;}
.wsad{word-spacing:6.864000px;}
.ws70{word-spacing:6.942000px;}
.ws102{word-spacing:7.020000px;}
.ws16{word-spacing:7.038000px;}
.wsbb{word-spacing:7.056000px;}
.ws87{word-spacing:7.098000px;}
.ws37{word-spacing:7.176000px;}
.ws1f{word-spacing:7.200000px;}
.wsd0{word-spacing:7.254000px;}
.ws47{word-spacing:7.332000px;}
.ws8f{word-spacing:7.410000px;}
.ws1d{word-spacing:7.488000px;}
.ws26{word-spacing:7.560000px;}
.ws40{word-spacing:7.566000px;}
.ws122{word-spacing:7.650000px;}
.wsf2{word-spacing:7.722000px;}
.ws13{word-spacing:7.728000px;}
.ws6{word-spacing:7.800000px;}
.wsdf{word-spacing:7.854000px;}
.wsff{word-spacing:7.878000px;}
.wsc1{word-spacing:7.956000px;}
.ws127{word-spacing:8.025000px;}
.ws77{word-spacing:8.034000px;}
.ws71{word-spacing:8.112000px;}
.ws117{word-spacing:8.250000px;}
.ws8e{word-spacing:8.268000px;}
.ws19{word-spacing:8.280000px;}
.ws73{word-spacing:8.346000px;}
.wsd1{word-spacing:8.424000px;}
.ws9d{word-spacing:8.502000px;}
.ws120{word-spacing:8.700000px;}
.ws33{word-spacing:8.712000px;}
.ws3d{word-spacing:8.736000px;}
.wsee{word-spacing:8.976000px;}
.ws22{word-spacing:9.072000px;}
.ws2a{word-spacing:9.144000px;}
.wseb{word-spacing:9.306000px;}
.ws107{word-spacing:9.360000px;}
.wsef{word-spacing:9.438000px;}
.wsc3{word-spacing:9.516000px;}
.ws1b{word-spacing:9.729000px;}
.ws10{word-spacing:10.005000px;}
.ws124{word-spacing:10.200000px;}
.wsa8{word-spacing:10.296000px;}
.ws83{word-spacing:10.374000px;}
.ws27{word-spacing:10.728000px;}
.wsd4{word-spacing:10.920000px;}
.ws34{word-spacing:11.466000px;}
.wsf1{word-spacing:12.480000px;}
.ws2f{word-spacing:12.528000px;}
.ws10a{word-spacing:12.558000px;}
.ws23{word-spacing:12.600000px;}
.ws2e{word-spacing:12.672000px;}
.ws12d{word-spacing:12.750000px;}
.wsa6{word-spacing:13.026000px;}
.ws11{word-spacing:14.628000px;}
.wse4{word-spacing:15.048000px;}
.ws17{word-spacing:15.111000px;}
.ws21{word-spacing:15.408000px;}
.wse{word-spacing:16.008000px;}
.wsf0{word-spacing:16.536000px;}
.ws31{word-spacing:16.560000px;}
.ws32{word-spacing:19.224000px;}
.ws5c{word-spacing:201.474000px;}
._11{margin-left:-202.410000px;}
._17{margin-left:-27.235200px;}
._19{margin-left:-26.144400px;}
._3{margin-left:-9.009000px;}
._a{margin-left:-7.986600px;}
._7{margin-left:-6.955200px;}
._16{margin-left:-5.928000px;}
._9{margin-left:-4.830000px;}
._1{margin-left:-3.780000px;}
._2{margin-left:-1.863000px;}
._5{width:1.293600px;}
._4{width:2.332200px;}
._d{width:3.397200px;}
._b{width:4.759200px;}
._f{width:5.796600px;}
._6{width:8.542200px;}
._8{width:11.654100px;}
._1b{width:17.472000px;}
._1d{width:188.916000px;}
._13{width:191.100000px;}
._e{width:194.142000px;}
._c{width:195.858000px;}
._10{width:197.184000px;}
._14{width:198.978000px;}
._12{width:199.992000px;}
._18{width:201.006000px;}
._1a{width:202.956000px;}
._15{width:204.204000px;}
._1c{width:205.764000px;}
._0{width:1653.996600px;}
.fc3{color:rgb(0,0,0);}
.fc4{color:rgb(148,76,188);}
.fc2{color:rgb(139,149,156);}
.fc1{color:rgb(144,56,183);}
.fc0{color:rgb(138,148,157);}
.fs6{font-size:45.474000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.000000px;}
.fs4{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2ac{bottom:13.495950px;}
.y4d{bottom:33.670800px;}
.y2{bottom:34.760400px;}
.y49{bottom:70.499400px;}
.y22c{bottom:81.601200px;}
.y22d{bottom:81.815700px;}
.y48{bottom:83.999400px;}
.yc1{bottom:89.160600px;}
.y123{bottom:89.527950px;}
.y9a{bottom:90.296700px;}
.y14a{bottom:95.374050px;}
.y16d{bottom:95.455650px;}
.y75{bottom:95.760450px;}
.y204{bottom:96.791700px;}
.ye8{bottom:96.871950px;}
.y1bb{bottom:102.365850px;}
.yc0{bottom:102.660600px;}
.y122{bottom:103.027950px;}
.y2ab{bottom:103.495950px;}
.y99{bottom:103.796700px;}
.y47{bottom:103.992900px;}
.y22b{bottom:105.605700px;}
.y111{bottom:105.820200px;}
.y1c2{bottom:105.839700px;}
.y255{bottom:106.073700px;}
.y1e1{bottom:110.560200px;}
.y74{bottom:112.666950px;}
.ybf{bottom:116.160600px;}
.y121{bottom:116.527950px;}
.y98{bottom:117.296700px;}
.y26f{bottom:119.003700px;}
.y149{bottom:119.378550px;}
.y203{bottom:120.796200px;}
.y1ba{bottom:126.370350px;}
.y197{bottom:129.339750px;}
.y22a{bottom:129.610200px;}
.ybe{bottom:129.660600px;}
.y110{bottom:129.824700px;}
.y1c1{bottom:129.844200px;}
.y16c{bottom:129.986700px;}
.y120{bottom:130.027950px;}
.y254{bottom:130.078200px;}
.y97{bottom:130.796700px;}
.y73{bottom:132.660450px;}
.y28d{bottom:138.745950px;}
.y26e{bottom:141.503700px;}
.y1e0{bottom:142.052700px;}
.y148{bottom:143.383050px;}
.y96{bottom:144.296700px;}
.y202{bottom:144.800700px;}
.y2aa{bottom:148.495950px;}
.ybd{bottom:149.654100px;}
.y11f{bottom:150.021600px;}
.y46{bottom:150.185400px;}
.y196{bottom:150.344250px;}
.y1b9{bottom:150.374850px;}
.y2b{bottom:151.985400px;}
.y229{bottom:153.614700px;}
.y10f{bottom:153.829200px;}
.y1c0{bottom:153.848700px;}
.y16b{bottom:153.991200px;}
.y253{bottom:154.082700px;}
.y28c{bottom:160.495950px;}
.y95{bottom:164.290200px;}
.y147{bottom:167.387550px;}
.y201{bottom:168.805200px;}
.y195{bottom:171.348750px;}
.ybc{bottom:173.054100px;}
.y1df{bottom:173.545200px;}
.y45{bottom:173.585400px;}
.y1b8{bottom:174.379350px;}
.y2a{bottom:175.385400px;}
.y228{bottom:177.619200px;}
.y10e{bottom:177.833700px;}
.y1bf{bottom:177.853200px;}
.y16a{bottom:177.995700px;}
.y252{bottom:178.087200px;}
.ye7{bottom:178.213350px;}
.y28b{bottom:182.995950px;}
.y26d{bottom:185.003700px;}
.y17e{bottom:185.703750px;}
.y94{bottom:187.690200px;}
.y146{bottom:191.392050px;}
.y194{bottom:192.353250px;}
.y200{bottom:192.809700px;}
.y2a9{bottom:193.495950px;}
.y44{bottom:196.985400px;}
.y1b7{bottom:198.383850px;}
.y29{bottom:198.777150px;}
.y72{bottom:200.919150px;}
.y227{bottom:201.623700px;}
.y10d{bottom:201.838200px;}
.y169{bottom:201.857700px;}
.y251{bottom:202.091700px;}
.ye6{bottom:202.217850px;}
.y28a{bottom:204.745950px;}
.y1de{bottom:205.037700px;}
.y26c{bottom:207.503700px;}
.y193{bottom:213.357750px;}
.y17d{bottom:214.199250px;}
.y2a8{bottom:215.245950px;}
.y145{bottom:215.396550px;}
.y1ff{bottom:216.814200px;}
.y43{bottom:220.385400px;}
.y28{bottom:222.185400px;}
.y1b6{bottom:222.388350px;}
.y71{bottom:224.923650px;}
.y226{bottom:225.628200px;}
.y10c{bottom:225.842700px;}
.y168{bottom:225.862200px;}
.y11e{bottom:225.941700px;}
.y250{bottom:226.096200px;}
.ye5{bottom:226.222350px;}
.y192{bottom:234.362250px;}
.y1dd{bottom:236.530200px;}
.y2a7{bottom:236.995950px;}
.y144{bottom:239.401050px;}
.y93{bottom:239.869650px;}
.y1fe{bottom:240.818700px;}
.y42{bottom:241.985400px;}
.y17c{bottom:242.694750px;}
.y27{bottom:242.885400px;}
.y1b5{bottom:246.392850px;}
.y289{bottom:248.245950px;}
.y70{bottom:248.928150px;}
.y225{bottom:249.632700px;}
.y10b{bottom:249.847200px;}
.y167{bottom:249.866700px;}
.y11d{bottom:249.946200px;}
.y24f{bottom:250.100700px;}
.ye4{bottom:250.226850px;}
.y26b{bottom:251.003700px;}
.y191{bottom:255.366750px;}
.y2a6{bottom:258.745950px;}
.y143{bottom:263.405550px;}
.y26{bottom:263.585400px;}
.y92{bottom:263.874150px;}
.y1fd{bottom:264.823200px;}
.y1dc{bottom:268.022700px;}
.y1b4{bottom:270.397350px;}
.y17b{bottom:271.190250px;}
.y6f{bottom:272.932650px;}
.y224{bottom:273.637200px;}
.y10a{bottom:273.851700px;}
.y166{bottom:273.871200px;}
.y11c{bottom:273.950700px;}
.y24e{bottom:274.105200px;}
.ye3{bottom:274.231350px;}
.y190{bottom:276.371250px;}
.y25{bottom:284.285400px;}
.y41{bottom:285.185400px;}
.y142{bottom:287.410050px;}
.y91{bottom:287.878650px;}
.y1fc{bottom:288.827700px;}
.y288{bottom:292.495950px;}
.y1b3{bottom:294.401850px;}
.y26a{bottom:295.253700px;}
.y6e{bottom:296.923650px;}
.y18f{bottom:297.375750px;}
.y223{bottom:297.641700px;}
.ybb{bottom:297.646200px;}
.y109{bottom:297.856200px;}
.y165{bottom:297.875700px;}
.y11b{bottom:297.955200px;}
.y24d{bottom:298.109700px;}
.ye2{bottom:298.235850px;}
.y1db{bottom:299.515200px;}
.y17a{bottom:299.685750px;}
.y2a5{bottom:302.245950px;}
.y24{bottom:304.985400px;}
.y40{bottom:306.785400px;}
.y141{bottom:311.414550px;}
.y90{bottom:311.883150px;}
.y1fb{bottom:312.832200px;}
.y287{bottom:314.995950px;}
.y269{bottom:317.003700px;}
.y18e{bottom:318.380250px;}
.y1b2{bottom:318.406350px;}
.y6d{bottom:320.928150px;}
.y222{bottom:321.646200px;}
.yba{bottom:321.650700px;}
.y108{bottom:321.860700px;}
.y164{bottom:321.880200px;}
.y11a{bottom:321.959700px;}
.y24c{bottom:322.114200px;}
.ye1{bottom:322.240350px;}
.y2a4{bottom:323.995950px;}
.y1{bottom:325.497600px;}
.y23{bottom:325.685400px;}
.y4c{bottom:326.737800px;}
.y179{bottom:328.181250px;}
.y3f{bottom:328.385400px;}
.y1da{bottom:331.007700px;}
.y140{bottom:335.419050px;}
.y8f{bottom:335.887650px;}
.y1fa{bottom:336.836700px;}
.y18d{bottom:339.384750px;}
.y1b1{bottom:342.410850px;}
.y6c{bottom:344.932650px;}
.y221{bottom:345.650700px;}
.yb9{bottom:345.655200px;}
.y2a3{bottom:345.745950px;}
.y107{bottom:345.865200px;}
.y163{bottom:345.884700px;}
.y119{bottom:345.964200px;}
.y24b{bottom:346.118700px;}
.ye0{bottom:346.244850px;}
.y22{bottom:346.385400px;}
.y3e{bottom:349.985400px;}
.y178{bottom:356.676750px;}
.y286{bottom:359.245950px;}
.y13f{bottom:359.423550px;}
.y8e{bottom:359.892150px;}
.y18c{bottom:360.389250px;}
.y268{bottom:360.503700px;}
.y1f9{bottom:360.841200px;}
.y1d9{bottom:362.500200px;}
.y1b0{bottom:366.415350px;}
.y21{bottom:367.085400px;}
.y6b{bottom:368.806650px;}
.y220{bottom:369.655200px;}
.yb8{bottom:369.659700px;}
.y106{bottom:369.869700px;}
.y162{bottom:369.889200px;}
.y118{bottom:369.968700px;}
.y24a{bottom:370.123200px;}
.ydf{bottom:370.249350px;}
.y3d{bottom:371.585400px;}
.y18b{bottom:381.393750px;}
.y285{bottom:381.745950px;}
.y267{bottom:382.253700px;}
.y13e{bottom:383.428050px;}
.y8d{bottom:383.896650px;}
.y1f8{bottom:384.845700px;}
.y177{bottom:385.172250px;}
.y20{bottom:387.785400px;}
.y2a2{bottom:389.245950px;}
.y1af{bottom:390.419850px;}
.y6a{bottom:392.811150px;}
.y3c{bottom:393.185400px;}
.y21f{bottom:393.659700px;}
.yb7{bottom:393.664200px;}
.y105{bottom:393.874200px;}
.y161{bottom:393.893700px;}
.y117{bottom:393.973200px;}
.y1d8{bottom:393.992700px;}
.y249{bottom:394.127700px;}
.yde{bottom:394.127850px;}
.y18a{bottom:402.398250px;}
.y13d{bottom:407.432550px;}
.y8c{bottom:407.901150px;}
.y1f{bottom:408.485400px;}
.y1f7{bottom:408.850200px;}
.y2a1{bottom:410.995950px;}
.y176{bottom:413.667750px;}
.y1ae{bottom:414.424350px;}
.y3b{bottom:414.785400px;}
.y69{bottom:416.815650px;}
.y21e{bottom:417.664200px;}
.yb6{bottom:417.668700px;}
.y104{bottom:417.878700px;}
.y160{bottom:417.898200px;}
.y116{bottom:417.977700px;}
.y248{bottom:418.132200px;}
.ydd{bottom:418.132350px;}
.y189{bottom:423.402750px;}
.y284{bottom:425.245950px;}
.y1d7{bottom:425.485200px;}
.y266{bottom:425.753700px;}
.y1e{bottom:429.185400px;}
.y13c{bottom:431.437050px;}
.y8b{bottom:431.905650px;}
.y2a0{bottom:432.745950px;}
.y1f6{bottom:432.854700px;}
.y3a{bottom:436.385400px;}
.y1ad{bottom:438.428850px;}
.y68{bottom:440.820150px;}
.y21d{bottom:441.668700px;}
.yb5{bottom:441.673200px;}
.y103{bottom:441.883200px;}
.y15f{bottom:441.902700px;}
.y115{bottom:441.982200px;}
.y247{bottom:442.136700px;}
.ydc{bottom:442.136850px;}
.y175{bottom:442.163250px;}
.y188{bottom:444.407250px;}
.y283{bottom:447.745950px;}
.y1d{bottom:449.885400px;}
.y29f{bottom:454.495950px;}
.y13b{bottom:455.441550px;}
.y8a{bottom:455.910150px;}
.y1f5{bottom:456.859200px;}
.y1d6{bottom:456.977700px;}
.y39{bottom:457.985400px;}
.y1ac{bottom:462.433350px;}
.y67{bottom:464.824650px;}
.y187{bottom:465.411750px;}
.y21c{bottom:465.673200px;}
.yb4{bottom:465.677700px;}
.y102{bottom:465.887700px;}
.y15e{bottom:465.907200px;}
.y114{bottom:465.986700px;}
.y246{bottom:466.141200px;}
.ydb{bottom:466.141350px;}
.y265{bottom:470.003700px;}
.y282{bottom:470.245950px;}
.y1c{bottom:470.585400px;}
.y174{bottom:470.658750px;}
.y13a{bottom:479.446050px;}
.y38{bottom:479.585400px;}
.y89{bottom:479.914650px;}
.y1f4{bottom:480.863700px;}
.y186{bottom:486.416250px;}
.y1ab{bottom:486.437850px;}
.y1d5{bottom:488.470200px;}
.y66{bottom:488.829150px;}
.y21b{bottom:489.677700px;}
.yb3{bottom:489.682200px;}
.y101{bottom:489.892200px;}
.y15d{bottom:489.911700px;}
.y113{bottom:489.991200px;}
.y245{bottom:490.145700px;}
.yda{bottom:490.145850px;}
.y1b{bottom:491.285400px;}
.y264{bottom:491.753700px;}
.y281{bottom:491.995950px;}
.y29e{bottom:497.995950px;}
.y173{bottom:499.154250px;}
.y37{bottom:501.185400px;}
.y139{bottom:503.450550px;}
.y88{bottom:503.919150px;}
.y1f3{bottom:504.868200px;}
.y185{bottom:507.420750px;}
.y1aa{bottom:510.442350px;}
.y1a{bottom:511.985400px;}
.y65{bottom:512.833650px;}
.y21a{bottom:513.682200px;}
.yb2{bottom:513.686700px;}
.y100{bottom:513.896700px;}
.y15c{bottom:513.916200px;}
.y112{bottom:513.995700px;}
.y244{bottom:514.150200px;}
.yd9{bottom:514.150350px;}
.y29d{bottom:519.745950px;}
.y1d4{bottom:519.962700px;}
.y36{bottom:522.785400px;}
.y138{bottom:527.455050px;}
.y172{bottom:527.649750px;}
.y87{bottom:527.923650px;}
.y184{bottom:528.425250px;}
.y1f2{bottom:528.872700px;}
.y19{bottom:532.685400px;}
.y1a9{bottom:534.446850px;}
.y263{bottom:535.253700px;}
.y280{bottom:535.495950px;}
.y64{bottom:536.838150px;}
.y219{bottom:537.686700px;}
.yb1{bottom:537.691200px;}
.yff{bottom:537.901200px;}
.y15b{bottom:537.920700px;}
.y243{bottom:538.154700px;}
.yd8{bottom:538.154850px;}
.y35{bottom:544.385400px;}
.y183{bottom:549.429750px;}
.y137{bottom:551.459550px;}
.y86{bottom:551.928150px;}
.y1f1{bottom:552.877200px;}
.y18{bottom:553.385400px;}
.y171{bottom:556.145250px;}
.y262{bottom:557.753700px;}
.y27f{bottom:557.995950px;}
.y1a8{bottom:558.451350px;}
.y63{bottom:560.842650px;}
.y218{bottom:561.691200px;}
.yb0{bottom:561.695700px;}
.yfe{bottom:561.905700px;}
.y15a{bottom:561.925200px;}
.y242{bottom:562.159200px;}
.yd7{bottom:562.159350px;}
.y29c{bottom:563.245950px;}
.y34{bottom:565.985400px;}
.y182{bottom:570.434250px;}
.y17{bottom:574.085400px;}
.y1d3{bottom:575.459700px;}
.y136{bottom:575.464050px;}
.y85{bottom:575.932650px;}
.y1f0{bottom:576.881700px;}
.y1a7{bottom:582.455850px;}
.y170{bottom:584.640750px;}
.y62{bottom:584.847150px;}
.y29b{bottom:584.995950px;}
.y217{bottom:585.695700px;}
.yaf{bottom:585.700200px;}
.yfd{bottom:585.910200px;}
.y159{bottom:585.929700px;}
.y241{bottom:586.163700px;}
.yd6{bottom:586.163850px;}
.y33{bottom:587.585400px;}
.y181{bottom:591.438750px;}
.y16{bottom:594.785400px;}
.y1d2{bottom:599.464200px;}
.y135{bottom:599.468550px;}
.y84{bottom:599.901150px;}
.y261{bottom:601.253700px;}
.y27e{bottom:602.245950px;}
.y1a6{bottom:606.460350px;}
.y61{bottom:608.851650px;}
.y32{bottom:609.185400px;}
.y216{bottom:609.700200px;}
.yae{bottom:609.704700px;}
.yfc{bottom:609.914700px;}
.y158{bottom:609.934200px;}
.y240{bottom:610.168200px;}
.yd5{bottom:610.168350px;}
.y180{bottom:612.443250px;}
.y15{bottom:615.485400px;}
.y260{bottom:623.003700px;}
.y1d1{bottom:623.468700px;}
.y134{bottom:623.473050px;}
.y83{bottom:623.905650px;}
.y1ef{bottom:624.890700px;}
.y29a{bottom:629.245950px;}
.y1a5{bottom:630.464850px;}
.y31{bottom:630.785400px;}
.y60{bottom:632.856150px;}
.y17f{bottom:633.447750px;}
.y215{bottom:633.704700px;}
.yad{bottom:633.709200px;}
.yfb{bottom:633.919200px;}
.y157{bottom:633.938700px;}
.y23f{bottom:634.172700px;}
.yd4{bottom:634.172850px;}
.y14{bottom:636.185400px;}
.y27d{bottom:646.495950px;}
.y1d0{bottom:647.473200px;}
.y133{bottom:647.477550px;}
.y82{bottom:647.910150px;}
.y299{bottom:650.995950px;}
.y30{bottom:652.385400px;}
.y1a4{bottom:654.469350px;}
.y1ee{bottom:656.383200px;}
.y5f{bottom:656.860650px;}
.y13{bottom:656.885400px;}
.y214{bottom:657.709200px;}
.yac{bottom:657.713700px;}
.yfa{bottom:657.923700px;}
.y156{bottom:657.943200px;}
.y23e{bottom:658.177200px;}
.yd3{bottom:658.177350px;}
.y25f{bottom:667.253700px;}
.y27c{bottom:668.245950px;}
.y1cf{bottom:671.477700px;}
.y132{bottom:671.482050px;}
.y81{bottom:671.914650px;}
.y298{bottom:672.745950px;}
.y2f{bottom:673.985400px;}
.y12{bottom:677.585400px;}
.y1a3{bottom:678.473850px;}
.y16f{bottom:679.433250px;}
.y5e{bottom:680.865150px;}
.y213{bottom:681.713700px;}
.yab{bottom:681.718200px;}
.yf9{bottom:681.928200px;}
.y155{bottom:681.947700px;}
.y23d{bottom:682.181700px;}
.yd2{bottom:682.181850px;}
.y1ed{bottom:687.875700px;}
.y1ce{bottom:695.482200px;}
.y131{bottom:695.486550px;}
.y2e{bottom:695.585400px;}
.y80{bottom:695.919150px;}
.y11{bottom:698.285400px;}
.y16e{bottom:699.233250px;}
.y1a2{bottom:702.478350px;}
.y5d{bottom:704.869650px;}
.y212{bottom:705.718200px;}
.yaa{bottom:705.722700px;}
.yf8{bottom:705.932700px;}
.y154{bottom:705.952200px;}
.y23c{bottom:706.186200px;}
.yd1{bottom:706.186350px;}
.y25e{bottom:711.503700px;}
.y27b{bottom:712.495950px;}
.y297{bottom:716.245950px;}
.y2d{bottom:717.185400px;}
.y10{bottom:718.985400px;}
.y1ec{bottom:719.368200px;}
.y1cd{bottom:719.486700px;}
.y130{bottom:719.491050px;}
.y7f{bottom:719.923650px;}
.y1a1{bottom:726.482850px;}
.y5c{bottom:728.874150px;}
.y211{bottom:729.722700px;}
.ya9{bottom:729.727200px;}
.yf7{bottom:729.937200px;}
.y153{bottom:729.956700px;}
.y23b{bottom:730.190700px;}
.yd0{bottom:730.190850px;}
.y25d{bottom:734.003700px;}
.y27a{bottom:734.995950px;}
.y296{bottom:737.995950px;}
.y2c{bottom:738.785400px;}
.yf{bottom:739.685400px;}
.y1cc{bottom:743.491200px;}
.y12f{bottom:743.495550px;}
.y7e{bottom:743.928150px;}
.y1a0{bottom:750.487350px;}
.y1eb{bottom:750.860700px;}
.y5b{bottom:752.878650px;}
.y210{bottom:753.727200px;}
.ya8{bottom:753.731700px;}
.yf6{bottom:753.941700px;}
.y152{bottom:753.961200px;}
.y23a{bottom:754.195200px;}
.ycf{bottom:754.195350px;}
.ye{bottom:760.385400px;}
.y1cb{bottom:767.495700px;}
.y12e{bottom:767.500050px;}
.y7d{bottom:767.932650px;}
.y19f{bottom:774.491850px;}
.y5a{bottom:776.883150px;}
.y20f{bottom:777.731700px;}
.ya7{bottom:777.736200px;}
.yf5{bottom:777.946200px;}
.y151{bottom:777.965700px;}
.y239{bottom:778.199700px;}
.yce{bottom:778.199850px;}
.y25c{bottom:778.253700px;}
.y279{bottom:779.245950px;}
.y295{bottom:782.245950px;}
.y1ea{bottom:782.353200px;}
.y1ca{bottom:791.500200px;}
.y7c{bottom:791.937150px;}
.y19e{bottom:798.496350px;}
.y4b{bottom:799.678500px;}
.y59{bottom:800.887650px;}
.y20e{bottom:801.736200px;}
.ya6{bottom:801.740700px;}
.yf4{bottom:801.950700px;}
.y150{bottom:801.970200px;}
.y238{bottom:802.204200px;}
.ycd{bottom:802.204350px;}
.y294{bottom:803.995950px;}
.yd{bottom:809.408700px;}
.y4a{bottom:813.178500px;}
.y1e9{bottom:813.845700px;}
.y12d{bottom:815.464050px;}
.y19d{bottom:822.500850px;}
.y25b{bottom:822.503700px;}
.y278{bottom:823.495950px;}
.y58{bottom:824.892150px;}
.y20d{bottom:825.740700px;}
.ya5{bottom:825.745200px;}
.yf3{bottom:825.955200px;}
.y14f{bottom:825.974700px;}
.y237{bottom:826.208700px;}
.ycc{bottom:826.208850px;}
.yc{bottom:829.208700px;}
.y1c9{bottom:839.464200px;}
.y7b{bottom:839.907150px;}
.y12c{bottom:840.970050px;}
.y1e8{bottom:845.338200px;}
.y19c{bottom:846.505350px;}
.y293{bottom:848.245950px;}
.y57{bottom:848.896650px;}
.yb{bottom:849.008700px;}
.y20c{bottom:849.745200px;}
.ya4{bottom:849.749700px;}
.yf2{bottom:849.959700px;}
.y14e{bottom:849.979200px;}
.y236{bottom:850.213200px;}
.ycb{bottom:850.213350px;}
.y1c8{bottom:864.970200px;}
.y7a{bottom:865.413150px;}
.y12b{bottom:866.476050px;}
.y25a{bottom:866.753700px;}
.y277{bottom:867.745950px;}
.ya{bottom:868.808700px;}
.y292{bottom:869.995950px;}
.y19b{bottom:870.509850px;}
.y56{bottom:872.901150px;}
.y20b{bottom:873.749700px;}
.ya3{bottom:873.754200px;}
.yf1{bottom:873.964200px;}
.y14d{bottom:873.983700px;}
.y235{bottom:874.217700px;}
.yca{bottom:874.217850px;}
.y1e7{bottom:876.830700px;}
.y259{bottom:889.253700px;}
.y276{bottom:889.495950px;}
.y1c7{bottom:890.476200px;}
.y79{bottom:890.919150px;}
.y291{bottom:891.745950px;}
.y12a{bottom:891.982050px;}
.y19a{bottom:894.514350px;}
.y9{bottom:895.808700px;}
.y55{bottom:896.905650px;}
.y20a{bottom:897.754200px;}
.ya2{bottom:897.758700px;}
.yf0{bottom:897.968700px;}
.y14c{bottom:897.988200px;}
.y234{bottom:898.222200px;}
.yc9{bottom:898.222350px;}
.y1e6{bottom:908.323200px;}
.y1c6{bottom:915.982200px;}
.y78{bottom:916.425150px;}
.y129{bottom:917.488050px;}
.y199{bottom:918.518850px;}
.y54{bottom:920.910150px;}
.y209{bottom:921.758700px;}
.ya1{bottom:921.763200px;}
.yef{bottom:921.973200px;}
.y233{bottom:922.226700px;}
.yc8{bottom:922.226850px;}
.y8{bottom:922.808700px;}
.y258{bottom:932.753700px;}
.y275{bottom:933.745950px;}
.y290{bottom:935.995950px;}
.y1e5{bottom:939.815700px;}
.y1c5{bottom:941.488200px;}
.y77{bottom:941.931150px;}
.y7{bottom:942.608700px;}
.y128{bottom:942.994050px;}
.y53{bottom:944.914650px;}
.y208{bottom:945.763200px;}
.ya0{bottom:945.767700px;}
.yee{bottom:945.977700px;}
.y14b{bottom:945.997200px;}
.y232{bottom:946.231200px;}
.yc7{bottom:946.231350px;}
.y274{bottom:956.245950px;}
.y28f{bottom:957.745950px;}
.y198{bottom:966.527850px;}
.y1c4{bottom:966.994200px;}
.y76{bottom:967.437150px;}
.y127{bottom:968.500050px;}
.y52{bottom:968.919150px;}
.y6{bottom:969.608700px;}
.y207{bottom:969.767700px;}
.y9f{bottom:969.772200px;}
.yed{bottom:969.982200px;}
.y231{bottom:970.235700px;}
.yc6{bottom:970.235850px;}
.y1e4{bottom:971.308200px;}
.y257{bottom:977.003700px;}
.y273{bottom:978.745950px;}
.y28e{bottom:979.495950px;}
.y1c3{bottom:992.500200px;}
.y51{bottom:992.923650px;}
.y206{bottom:993.772200px;}
.y9e{bottom:993.776700px;}
.yec{bottom:993.986700px;}
.y230{bottom:994.240200px;}
.yc5{bottom:994.240350px;}
.y272{bottom:1001.245950px;}
.y1e3{bottom:1002.800700px;}
.y5{bottom:1014.847950px;}
.y50{bottom:1016.928150px;}
.y205{bottom:1017.776700px;}
.y9d{bottom:1017.781200px;}
.y126{bottom:1017.991050px;}
.yeb{bottom:1017.991200px;}
.y22f{bottom:1018.244700px;}
.yc4{bottom:1018.244850px;}
.y256{bottom:1021.253700px;}
.y1be{bottom:1032.277050px;}
.y1e2{bottom:1034.293200px;}
.y4f{bottom:1040.932650px;}
.y9c{bottom:1041.781200px;}
.y125{bottom:1041.995550px;}
.yea{bottom:1041.995700px;}
.yc3{bottom:1042.249350px;}
.y271{bottom:1044.745950px;}
.y1bd{bottom:1052.077050px;}
.y4{bottom:1054.572000px;}
.y4e{bottom:1064.937150px;}
.y9b{bottom:1065.785700px;}
.y124{bottom:1066.000050px;}
.ye9{bottom:1066.000200px;}
.y22e{bottom:1066.253700px;}
.yc2{bottom:1066.253850px;}
.y270{bottom:1066.495950px;}
.y1bc{bottom:1071.877050px;}
.y3{bottom:1081.572000px;}
.he{height:41.745132px;}
.h1f{height:45.246094px;}
.h1d{height:49.170000px;}
.ha{height:51.750000px;}
.hd{height:54.000000px;}
.hb{height:54.033000px;}
.h1b{height:54.506667px;}
.hf{height:55.080000px;}
.h11{height:58.110000px;}
.hc{height:58.500000px;}
.h10{height:59.071289px;}
.h8{height:59.957333px;}
.h7{height:60.588000px;}
.h3{height:64.441406px;}
.h14{height:66.096000px;}
.h4{height:67.500000px;}
.h21{height:68.133333px;}
.h20{height:68.850000px;}
.h9{height:69.811523px;}
.h16{height:70.858667px;}
.h6{height:71.604000px;}
.h18{height:71.622000px;}
.h13{height:71.658000px;}
.h15{height:71.748000px;}
.h17{height:71.874000px;}
.h1a{height:72.000000px;}
.h19{height:72.108000px;}
.h12{height:72.126000px;}
.h1c{height:72.174000px;}
.h1e{height:72.618000px;}
.h2{height:80.551758px;}
.h5{height:81.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:34.901550px;}
.x12{left:46.151550px;}
.x11{left:83.976300px;}
.xe{left:85.039350px;}
.x2{left:86.102400px;}
.x14{left:127.559100px;}
.x1b{left:142.795800px;}
.x1c{left:151.293300px;}
.x1f{left:157.316100px;}
.x17{left:160.582800px;}
.x5{left:168.300600px;}
.x18{left:176.406300px;}
.x20{left:178.571100px;}
.x4{left:216.706200px;}
.xa{left:226.513800px;}
.x7{left:228.650550px;}
.x15{left:242.362200px;}
.x3{left:286.973700px;}
.x9{left:310.637100px;}
.x6{left:330.995250px;}
.xc{left:337.525800px;}
.xd{left:391.348800px;}
.xb{left:423.061800px;}
.x8{left:430.759050px;}
.x1d{left:460.932300px;}
.x1e{left:469.429800px;}
.xf{left:471.977850px;}
.x19{left:477.646800px;}
.x1a{left:493.305300px;}
.x10{left:676.063050px;}
.x13{left:702.081600px;}
.x1{left:836.574900px;}
@media print{
.v3{vertical-align:-23.088000pt;}
.v1{vertical-align:-3.874133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.552000pt;}
.v2{vertical-align:32.000000pt;}
.ls1{letter-spacing:-6.933333pt;}
.ls5{letter-spacing:-1.317333pt;}
.lsa{letter-spacing:-1.040000pt;}
.ls8{letter-spacing:-0.161685pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000096pt;}
.lsc{letter-spacing:0.266667pt;}
.ls7{letter-spacing:2.912000pt;}
.ls2{letter-spacing:3.203200pt;}
.ls9{letter-spacing:4.576000pt;}
.ls6{letter-spacing:4.721600pt;}
.lsb{letter-spacing:5.206933pt;}
.ls3{letter-spacing:6.725333pt;}
.ws1{word-spacing:-19.274667pt;}
.ws3{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.050667pt;}
.ws35{word-spacing:-12.896000pt;}
.ws123{word-spacing:-12.666667pt;}
.ws10e{word-spacing:-12.400000pt;}
.wsd3{word-spacing:-11.856000pt;}
.ws54{word-spacing:-11.578667pt;}
.ws0{word-spacing:-10.912000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws36{word-spacing:-7.518368pt;}
.wsc8{word-spacing:-7.356683pt;}
.ws105{word-spacing:-3.813333pt;}
.wsf3{word-spacing:-2.773333pt;}
.ws10f{word-spacing:-2.733333pt;}
.ws103{word-spacing:-2.704000pt;}
.wsb{word-spacing:-2.637333pt;}
.ws76{word-spacing:-2.634667pt;}
.ws9{word-spacing:-2.576000pt;}
.wsb1{word-spacing:-2.565333pt;}
.wsf5{word-spacing:-2.496000pt;}
.ws92{word-spacing:-2.426667pt;}
.ws104{word-spacing:-2.357333pt;}
.wsa3{word-spacing:-2.288000pt;}
.ws2d{word-spacing:-2.240000pt;}
.ws4a{word-spacing:-2.218667pt;}
.wsc9{word-spacing:-2.149333pt;}
.wsa{word-spacing:-2.146667pt;}
.ws44{word-spacing:-2.080000pt;}
.ws9e{word-spacing:-2.010667pt;}
.ws8d{word-spacing:-1.941333pt;}
.ws55{word-spacing:-1.872000pt;}
.ws11d{word-spacing:-1.866667pt;}
.wsa0{word-spacing:-1.802667pt;}
.wsb2{word-spacing:-1.733333pt;}
.wse3{word-spacing:-1.701333pt;}
.ws126{word-spacing:-1.666667pt;}
.wsa2{word-spacing:-1.664000pt;}
.ws82{word-spacing:-1.600000pt;}
.ws10c{word-spacing:-1.594667pt;}
.wsce{word-spacing:-1.525333pt;}
.ws128{word-spacing:-1.466667pt;}
.ws101{word-spacing:-1.456000pt;}
.ws2b{word-spacing:-1.408000pt;}
.ws89{word-spacing:-1.386667pt;}
.ws12c{word-spacing:-1.333333pt;}
.ws93{word-spacing:-1.317333pt;}
.ws1a{word-spacing:-1.288000pt;}
.wsa7{word-spacing:-1.248000pt;}
.ws7b{word-spacing:-1.178667pt;}
.wsb7{word-spacing:-1.173333pt;}
.ws9f{word-spacing:-1.109333pt;}
.ws111{word-spacing:-1.066667pt;}
.wsdd{word-spacing:-1.056000pt;}
.ws8c{word-spacing:-1.040000pt;}
.ws99{word-spacing:-0.970667pt;}
.wse8{word-spacing:-0.938667pt;}
.ws7{word-spacing:-0.920000pt;}
.wsa1{word-spacing:-0.901333pt;}
.ws3b{word-spacing:-0.832000pt;}
.wsaf{word-spacing:-0.762667pt;}
.wse1{word-spacing:-0.704000pt;}
.ws62{word-spacing:-0.693333pt;}
.wsca{word-spacing:-0.624000pt;}
.ws56{word-spacing:-0.554667pt;}
.wscd{word-spacing:-0.485333pt;}
.wsa4{word-spacing:-0.416000pt;}
.wse6{word-spacing:-0.410667pt;}
.wscc{word-spacing:-0.346667pt;}
.ws51{word-spacing:-0.277333pt;}
.ws25{word-spacing:-0.256000pt;}
.wsd6{word-spacing:-0.208000pt;}
.ws24{word-spacing:-0.192000pt;}
.ws100{word-spacing:-0.138667pt;}
.ws110{word-spacing:-0.133333pt;}
.wscf{word-spacing:-0.069333pt;}
.ws5{word-spacing:0.000000pt;}
.wsfc{word-spacing:0.064000pt;}
.ws85{word-spacing:0.069333pt;}
.ws5b{word-spacing:0.128000pt;}
.ws97{word-spacing:0.138667pt;}
.wsd2{word-spacing:0.161685pt;}
.ws9a{word-spacing:0.208000pt;}
.ws6d{word-spacing:0.213333pt;}
.wsbe{word-spacing:0.256000pt;}
.ws113{word-spacing:0.266667pt;}
.ws48{word-spacing:0.277333pt;}
.ws60{word-spacing:0.346667pt;}
.ws8a{word-spacing:0.416000pt;}
.wsb5{word-spacing:0.485056pt;}
.ws4f{word-spacing:0.485333pt;}
.ws114{word-spacing:0.533333pt;}
.ws4d{word-spacing:0.554667pt;}
.ws75{word-spacing:0.624000pt;}
.wsb6{word-spacing:0.640000pt;}
.wsd5{word-spacing:0.693333pt;}
.ws12e{word-spacing:0.733333pt;}
.ws6b{word-spacing:0.746667pt;}
.ws43{word-spacing:0.762667pt;}
.ws69{word-spacing:0.768005pt;}
.wsdb{word-spacing:0.821333pt;}
.ws4b{word-spacing:0.832000pt;}
.wsd8{word-spacing:0.880000pt;}
.wsfa{word-spacing:0.896000pt;}
.ws7d{word-spacing:0.901333pt;}
.ws8{word-spacing:0.920000pt;}
.ws57{word-spacing:0.960000pt;}
.ws74{word-spacing:0.970667pt;}
.ws115{word-spacing:1.000000pt;}
.ws6a{word-spacing:1.013333pt;}
.ws88{word-spacing:1.040000pt;}
.wsfb{word-spacing:1.088000pt;}
.ws49{word-spacing:1.109333pt;}
.ws12f{word-spacing:1.133333pt;}
.ws80{word-spacing:1.173333pt;}
.ws6f{word-spacing:1.178667pt;}
.ws11e{word-spacing:1.200000pt;}
.wsea{word-spacing:1.232000pt;}
.ws64{word-spacing:1.248000pt;}
.ws65{word-spacing:1.317333pt;}
.ws52{word-spacing:1.333904pt;}
.ws29{word-spacing:1.344000pt;}
.wsf4{word-spacing:1.386667pt;}
.wse2{word-spacing:1.408000pt;}
.ws63{word-spacing:1.456000pt;}
.wsde{word-spacing:1.466667pt;}
.ws109{word-spacing:1.525333pt;}
.wsc{word-spacing:1.594667pt;}
.ws11f{word-spacing:1.600000pt;}
.ws96{word-spacing:1.664000pt;}
.wsb8{word-spacing:1.706667pt;}
.wsac{word-spacing:1.733333pt;}
.ws53{word-spacing:1.760000pt;}
.ws11c{word-spacing:1.800000pt;}
.wsaa{word-spacing:1.802667pt;}
.wsfe{word-spacing:1.872000pt;}
.wse7{word-spacing:1.877333pt;}
.ws78{word-spacing:1.941333pt;}
.ws15{word-spacing:1.962667pt;}
.ws1e{word-spacing:1.984000pt;}
.wsc2{word-spacing:2.010667pt;}
.ws59{word-spacing:2.048000pt;}
.ws67{word-spacing:2.080000pt;}
.ws18{word-spacing:2.085333pt;}
.ws12b{word-spacing:2.133333pt;}
.wsc7{word-spacing:2.149333pt;}
.ws5e{word-spacing:2.218667pt;}
.wsa5{word-spacing:2.288000pt;}
.ws81{word-spacing:2.293333pt;}
.ws6e{word-spacing:2.346667pt;}
.ws5f{word-spacing:2.357333pt;}
.wse9{word-spacing:2.405333pt;}
.ws41{word-spacing:2.426667pt;}
.ws7e{word-spacing:2.465701pt;}
.ws125{word-spacing:2.466667pt;}
.ws66{word-spacing:2.496000pt;}
.ws30{word-spacing:2.560000pt;}
.ws98{word-spacing:2.565333pt;}
.ws94{word-spacing:2.634667pt;}
.ws46{word-spacing:2.704000pt;}
.ws11a{word-spacing:2.733333pt;}
.ws5d{word-spacing:2.773333pt;}
.ws38{word-spacing:2.842667pt;}
.ws3f{word-spacing:2.912000pt;}
.ws20{word-spacing:2.944000pt;}
.ws39{word-spacing:2.981333pt;}
.wsd7{word-spacing:2.992000pt;}
.ws12{word-spacing:3.005333pt;}
.ws95{word-spacing:3.050667pt;}
.wsfd{word-spacing:3.072000pt;}
.ws3a{word-spacing:3.120000pt;}
.ws119{word-spacing:3.133333pt;}
.wsbf{word-spacing:3.189333pt;}
.ws7f{word-spacing:3.253333pt;}
.ws68{word-spacing:3.258667pt;}
.wsd9{word-spacing:3.285333pt;}
.wsb0{word-spacing:3.328000pt;}
.wse5{word-spacing:3.344000pt;}
.wsf9{word-spacing:3.392000pt;}
.wsc4{word-spacing:3.397333pt;}
.ws12a{word-spacing:3.400000pt;}
.ws4e{word-spacing:3.466667pt;}
.ws11b{word-spacing:3.533333pt;}
.ws4c{word-spacing:3.536000pt;}
.ws3e{word-spacing:3.605333pt;}
.ws116{word-spacing:3.666667pt;}
.wscb{word-spacing:3.674667pt;}
.wsb9{word-spacing:3.733333pt;}
.ws10d{word-spacing:3.744000pt;}
.ws50{word-spacing:3.813333pt;}
.ws121{word-spacing:3.866667pt;}
.ws108{word-spacing:3.882667pt;}
.wsb3{word-spacing:3.952000pt;}
.wsa9{word-spacing:4.021333pt;}
.wse0{word-spacing:4.048000pt;}
.ws3c{word-spacing:4.090667pt;}
.wsbd{word-spacing:4.160000pt;}
.ws10b{word-spacing:4.229333pt;}
.ws7c{word-spacing:4.298667pt;}
.ws14{word-spacing:4.354667pt;}
.ws79{word-spacing:4.368000pt;}
.ws58{word-spacing:4.416000pt;}
.wsc0{word-spacing:4.437333pt;}
.wsc6{word-spacing:4.506667pt;}
.ws6c{word-spacing:4.533333pt;}
.ws91{word-spacing:4.576000pt;}
.ws84{word-spacing:4.645333pt;}
.ws90{word-spacing:4.714667pt;}
.wsdc{word-spacing:4.752000pt;}
.ws9c{word-spacing:4.784000pt;}
.ws5a{word-spacing:4.800000pt;}
.ws8b{word-spacing:4.853333pt;}
.ws7a{word-spacing:4.922667pt;}
.ws28{word-spacing:4.992000pt;}
.wsec{word-spacing:5.104000pt;}
.wsf6{word-spacing:5.130667pt;}
.ws45{word-spacing:5.200000pt;}
.ws1c{word-spacing:5.213333pt;}
.wsed{word-spacing:5.221333pt;}
.wsb4{word-spacing:5.269333pt;}
.wsd{word-spacing:5.274667pt;}
.wsf7{word-spacing:5.338667pt;}
.wsf8{word-spacing:5.408000pt;}
.wsbc{word-spacing:5.440000pt;}
.ws118{word-spacing:5.466667pt;}
.ws61{word-spacing:5.477333pt;}
.ws72{word-spacing:5.546667pt;}
.wsf{word-spacing:5.581333pt;}
.wsab{word-spacing:5.616000pt;}
.ws106{word-spacing:5.685333pt;}
.wsda{word-spacing:5.690667pt;}
.ws42{word-spacing:5.754667pt;}
.wsc5{word-spacing:5.824000pt;}
.ws112{word-spacing:5.866667pt;}
.ws2c{word-spacing:5.888000pt;}
.wsae{word-spacing:5.893333pt;}
.ws129{word-spacing:5.933333pt;}
.ws9b{word-spacing:5.962667pt;}
.ws86{word-spacing:6.032000pt;}
.wsba{word-spacing:6.080000pt;}
.wsad{word-spacing:6.101333pt;}
.ws70{word-spacing:6.170667pt;}
.ws102{word-spacing:6.240000pt;}
.ws16{word-spacing:6.256000pt;}
.wsbb{word-spacing:6.272000pt;}
.ws87{word-spacing:6.309333pt;}
.ws37{word-spacing:6.378667pt;}
.ws1f{word-spacing:6.400000pt;}
.wsd0{word-spacing:6.448000pt;}
.ws47{word-spacing:6.517333pt;}
.ws8f{word-spacing:6.586667pt;}
.ws1d{word-spacing:6.656000pt;}
.ws26{word-spacing:6.720000pt;}
.ws40{word-spacing:6.725333pt;}
.ws122{word-spacing:6.800000pt;}
.wsf2{word-spacing:6.864000pt;}
.ws13{word-spacing:6.869333pt;}
.ws6{word-spacing:6.933333pt;}
.wsdf{word-spacing:6.981333pt;}
.wsff{word-spacing:7.002667pt;}
.wsc1{word-spacing:7.072000pt;}
.ws127{word-spacing:7.133333pt;}
.ws77{word-spacing:7.141333pt;}
.ws71{word-spacing:7.210667pt;}
.ws117{word-spacing:7.333333pt;}
.ws8e{word-spacing:7.349333pt;}
.ws19{word-spacing:7.360000pt;}
.ws73{word-spacing:7.418667pt;}
.wsd1{word-spacing:7.488000pt;}
.ws9d{word-spacing:7.557333pt;}
.ws120{word-spacing:7.733333pt;}
.ws33{word-spacing:7.744000pt;}
.ws3d{word-spacing:7.765333pt;}
.wsee{word-spacing:7.978667pt;}
.ws22{word-spacing:8.064000pt;}
.ws2a{word-spacing:8.128000pt;}
.wseb{word-spacing:8.272000pt;}
.ws107{word-spacing:8.320000pt;}
.wsef{word-spacing:8.389333pt;}
.wsc3{word-spacing:8.458667pt;}
.ws1b{word-spacing:8.648000pt;}
.ws10{word-spacing:8.893333pt;}
.ws124{word-spacing:9.066667pt;}
.wsa8{word-spacing:9.152000pt;}
.ws83{word-spacing:9.221333pt;}
.ws27{word-spacing:9.536000pt;}
.wsd4{word-spacing:9.706667pt;}
.ws34{word-spacing:10.192000pt;}
.wsf1{word-spacing:11.093333pt;}
.ws2f{word-spacing:11.136000pt;}
.ws10a{word-spacing:11.162667pt;}
.ws23{word-spacing:11.200000pt;}
.ws2e{word-spacing:11.264000pt;}
.ws12d{word-spacing:11.333333pt;}
.wsa6{word-spacing:11.578667pt;}
.ws11{word-spacing:13.002667pt;}
.wse4{word-spacing:13.376000pt;}
.ws17{word-spacing:13.432000pt;}
.ws21{word-spacing:13.696000pt;}
.wse{word-spacing:14.229333pt;}
.wsf0{word-spacing:14.698667pt;}
.ws31{word-spacing:14.720000pt;}
.ws32{word-spacing:17.088000pt;}
.ws5c{word-spacing:179.088000pt;}
._11{margin-left:-179.920000pt;}
._17{margin-left:-24.209067pt;}
._19{margin-left:-23.239467pt;}
._3{margin-left:-8.008000pt;}
._a{margin-left:-7.099200pt;}
._7{margin-left:-6.182400pt;}
._16{margin-left:-5.269333pt;}
._9{margin-left:-4.293333pt;}
._1{margin-left:-3.360000pt;}
._2{margin-left:-1.656000pt;}
._5{width:1.149867pt;}
._4{width:2.073067pt;}
._d{width:3.019733pt;}
._b{width:4.230400pt;}
._f{width:5.152533pt;}
._6{width:7.593067pt;}
._8{width:10.359200pt;}
._1b{width:15.530667pt;}
._1d{width:167.925333pt;}
._13{width:169.866667pt;}
._e{width:172.570667pt;}
._c{width:174.096000pt;}
._10{width:175.274667pt;}
._14{width:176.869333pt;}
._12{width:177.770667pt;}
._18{width:178.672000pt;}
._1a{width:180.405333pt;}
._15{width:181.514667pt;}
._1c{width:182.901333pt;}
._0{width:1470.219200pt;}
.fs6{font-size:40.421333pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:66.666667pt;}
.fs4{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2ac{bottom:11.996400pt;}
.y4d{bottom:29.929600pt;}
.y2{bottom:30.898133pt;}
.y49{bottom:62.666133pt;}
.y22c{bottom:72.534400pt;}
.y22d{bottom:72.725067pt;}
.y48{bottom:74.666133pt;}
.yc1{bottom:79.253867pt;}
.y123{bottom:79.580400pt;}
.y9a{bottom:80.263733pt;}
.y14a{bottom:84.776933pt;}
.y16d{bottom:84.849467pt;}
.y75{bottom:85.120400pt;}
.y204{bottom:86.037067pt;}
.ye8{bottom:86.108400pt;}
.y1bb{bottom:90.991867pt;}
.yc0{bottom:91.253867pt;}
.y122{bottom:91.580400pt;}
.y2ab{bottom:91.996400pt;}
.y99{bottom:92.263733pt;}
.y47{bottom:92.438133pt;}
.y22b{bottom:93.871733pt;}
.y111{bottom:94.062400pt;}
.y1c2{bottom:94.079733pt;}
.y255{bottom:94.287733pt;}
.y1e1{bottom:98.275733pt;}
.y74{bottom:100.148400pt;}
.ybf{bottom:103.253867pt;}
.y121{bottom:103.580400pt;}
.y98{bottom:104.263733pt;}
.y26f{bottom:105.781067pt;}
.y149{bottom:106.114267pt;}
.y203{bottom:107.374400pt;}
.y1ba{bottom:112.329200pt;}
.y197{bottom:114.968667pt;}
.y22a{bottom:115.209067pt;}
.ybe{bottom:115.253867pt;}
.y110{bottom:115.399733pt;}
.y1c1{bottom:115.417067pt;}
.y16c{bottom:115.543733pt;}
.y120{bottom:115.580400pt;}
.y254{bottom:115.625067pt;}
.y97{bottom:116.263733pt;}
.y73{bottom:117.920400pt;}
.y28d{bottom:123.329733pt;}
.y26e{bottom:125.781067pt;}
.y1e0{bottom:126.269067pt;}
.y148{bottom:127.451600pt;}
.y96{bottom:128.263733pt;}
.y202{bottom:128.711733pt;}
.y2aa{bottom:131.996400pt;}
.ybd{bottom:133.025867pt;}
.y11f{bottom:133.352533pt;}
.y46{bottom:133.498133pt;}
.y196{bottom:133.639333pt;}
.y1b9{bottom:133.666533pt;}
.y2b{bottom:135.098133pt;}
.y229{bottom:136.546400pt;}
.y10f{bottom:136.737067pt;}
.y1c0{bottom:136.754400pt;}
.y16b{bottom:136.881067pt;}
.y253{bottom:136.962400pt;}
.y28c{bottom:142.663067pt;}
.y95{bottom:146.035733pt;}
.y147{bottom:148.788933pt;}
.y201{bottom:150.049067pt;}
.y195{bottom:152.310000pt;}
.ybc{bottom:153.825867pt;}
.y1df{bottom:154.262400pt;}
.y45{bottom:154.298133pt;}
.y1b8{bottom:155.003867pt;}
.y2a{bottom:155.898133pt;}
.y228{bottom:157.883733pt;}
.y10e{bottom:158.074400pt;}
.y1bf{bottom:158.091733pt;}
.y16a{bottom:158.218400pt;}
.y252{bottom:158.299733pt;}
.ye7{bottom:158.411867pt;}
.y28b{bottom:162.663067pt;}
.y26d{bottom:164.447733pt;}
.y17e{bottom:165.070000pt;}
.y94{bottom:166.835733pt;}
.y146{bottom:170.126267pt;}
.y194{bottom:170.980667pt;}
.y200{bottom:171.386400pt;}
.y2a9{bottom:171.996400pt;}
.y44{bottom:175.098133pt;}
.y1b7{bottom:176.341200pt;}
.y29{bottom:176.690800pt;}
.y72{bottom:178.594800pt;}
.y227{bottom:179.221067pt;}
.y10d{bottom:179.411733pt;}
.y169{bottom:179.429067pt;}
.y251{bottom:179.637067pt;}
.ye6{bottom:179.749200pt;}
.y28a{bottom:181.996400pt;}
.y1de{bottom:182.255733pt;}
.y26c{bottom:184.447733pt;}
.y193{bottom:189.651333pt;}
.y17d{bottom:190.399333pt;}
.y2a8{bottom:191.329733pt;}
.y145{bottom:191.463600pt;}
.y1ff{bottom:192.723733pt;}
.y43{bottom:195.898133pt;}
.y28{bottom:197.498133pt;}
.y1b6{bottom:197.678533pt;}
.y71{bottom:199.932133pt;}
.y226{bottom:200.558400pt;}
.y10c{bottom:200.749067pt;}
.y168{bottom:200.766400pt;}
.y11e{bottom:200.837067pt;}
.y250{bottom:200.974400pt;}
.ye5{bottom:201.086533pt;}
.y192{bottom:208.322000pt;}
.y1dd{bottom:210.249067pt;}
.y2a7{bottom:210.663067pt;}
.y144{bottom:212.800933pt;}
.y93{bottom:213.217467pt;}
.y1fe{bottom:214.061067pt;}
.y42{bottom:215.098133pt;}
.y17c{bottom:215.728667pt;}
.y27{bottom:215.898133pt;}
.y1b5{bottom:219.015867pt;}
.y289{bottom:220.663067pt;}
.y70{bottom:221.269467pt;}
.y225{bottom:221.895733pt;}
.y10b{bottom:222.086400pt;}
.y167{bottom:222.103733pt;}
.y11d{bottom:222.174400pt;}
.y24f{bottom:222.311733pt;}
.ye4{bottom:222.423867pt;}
.y26b{bottom:223.114400pt;}
.y191{bottom:226.992667pt;}
.y2a6{bottom:229.996400pt;}
.y143{bottom:234.138267pt;}
.y26{bottom:234.298133pt;}
.y92{bottom:234.554800pt;}
.y1fd{bottom:235.398400pt;}
.y1dc{bottom:238.242400pt;}
.y1b4{bottom:240.353200pt;}
.y17b{bottom:241.058000pt;}
.y6f{bottom:242.606800pt;}
.y224{bottom:243.233067pt;}
.y10a{bottom:243.423733pt;}
.y166{bottom:243.441067pt;}
.y11c{bottom:243.511733pt;}
.y24e{bottom:243.649067pt;}
.ye3{bottom:243.761200pt;}
.y190{bottom:245.663333pt;}
.y25{bottom:252.698133pt;}
.y41{bottom:253.498133pt;}
.y142{bottom:255.475600pt;}
.y91{bottom:255.892133pt;}
.y1fc{bottom:256.735733pt;}
.y288{bottom:259.996400pt;}
.y1b3{bottom:261.690533pt;}
.y26a{bottom:262.447733pt;}
.y6e{bottom:263.932133pt;}
.y18f{bottom:264.334000pt;}
.y223{bottom:264.570400pt;}
.ybb{bottom:264.574400pt;}
.y109{bottom:264.761067pt;}
.y165{bottom:264.778400pt;}
.y11b{bottom:264.849067pt;}
.y24d{bottom:264.986400pt;}
.ye2{bottom:265.098533pt;}
.y1db{bottom:266.235733pt;}
.y17a{bottom:266.387333pt;}
.y2a5{bottom:268.663067pt;}
.y24{bottom:271.098133pt;}
.y40{bottom:272.698133pt;}
.y141{bottom:276.812933pt;}
.y90{bottom:277.229467pt;}
.y1fb{bottom:278.073067pt;}
.y287{bottom:279.996400pt;}
.y269{bottom:281.781067pt;}
.y18e{bottom:283.004667pt;}
.y1b2{bottom:283.027867pt;}
.y6d{bottom:285.269467pt;}
.y222{bottom:285.907733pt;}
.yba{bottom:285.911733pt;}
.y108{bottom:286.098400pt;}
.y164{bottom:286.115733pt;}
.y11a{bottom:286.186400pt;}
.y24c{bottom:286.323733pt;}
.ye1{bottom:286.435867pt;}
.y2a4{bottom:287.996400pt;}
.y1{bottom:289.331200pt;}
.y23{bottom:289.498133pt;}
.y4c{bottom:290.433600pt;}
.y179{bottom:291.716667pt;}
.y3f{bottom:291.898133pt;}
.y1da{bottom:294.229067pt;}
.y140{bottom:298.150267pt;}
.y8f{bottom:298.566800pt;}
.y1fa{bottom:299.410400pt;}
.y18d{bottom:301.675333pt;}
.y1b1{bottom:304.365200pt;}
.y6c{bottom:306.606800pt;}
.y221{bottom:307.245067pt;}
.yb9{bottom:307.249067pt;}
.y2a3{bottom:307.329733pt;}
.y107{bottom:307.435733pt;}
.y163{bottom:307.453067pt;}
.y119{bottom:307.523733pt;}
.y24b{bottom:307.661067pt;}
.ye0{bottom:307.773200pt;}
.y22{bottom:307.898133pt;}
.y3e{bottom:311.098133pt;}
.y178{bottom:317.046000pt;}
.y286{bottom:319.329733pt;}
.y13f{bottom:319.487600pt;}
.y8e{bottom:319.904133pt;}
.y18c{bottom:320.346000pt;}
.y268{bottom:320.447733pt;}
.y1f9{bottom:320.747733pt;}
.y1d9{bottom:322.222400pt;}
.y1b0{bottom:325.702533pt;}
.y21{bottom:326.298133pt;}
.y6b{bottom:327.828133pt;}
.y220{bottom:328.582400pt;}
.yb8{bottom:328.586400pt;}
.y106{bottom:328.773067pt;}
.y162{bottom:328.790400pt;}
.y118{bottom:328.861067pt;}
.y24a{bottom:328.998400pt;}
.ydf{bottom:329.110533pt;}
.y3d{bottom:330.298133pt;}
.y18b{bottom:339.016667pt;}
.y285{bottom:339.329733pt;}
.y267{bottom:339.781067pt;}
.y13e{bottom:340.824933pt;}
.y8d{bottom:341.241467pt;}
.y1f8{bottom:342.085067pt;}
.y177{bottom:342.375333pt;}
.y20{bottom:344.698133pt;}
.y2a2{bottom:345.996400pt;}
.y1af{bottom:347.039867pt;}
.y6a{bottom:349.165467pt;}
.y3c{bottom:349.498133pt;}
.y21f{bottom:349.919733pt;}
.yb7{bottom:349.923733pt;}
.y105{bottom:350.110400pt;}
.y161{bottom:350.127733pt;}
.y117{bottom:350.198400pt;}
.y1d8{bottom:350.215733pt;}
.y249{bottom:350.335733pt;}
.yde{bottom:350.335867pt;}
.y18a{bottom:357.687333pt;}
.y13d{bottom:362.162267pt;}
.y8c{bottom:362.578800pt;}
.y1f{bottom:363.098133pt;}
.y1f7{bottom:363.422400pt;}
.y2a1{bottom:365.329733pt;}
.y176{bottom:367.704667pt;}
.y1ae{bottom:368.377200pt;}
.y3b{bottom:368.698133pt;}
.y69{bottom:370.502800pt;}
.y21e{bottom:371.257067pt;}
.yb6{bottom:371.261067pt;}
.y104{bottom:371.447733pt;}
.y160{bottom:371.465067pt;}
.y116{bottom:371.535733pt;}
.y248{bottom:371.673067pt;}
.ydd{bottom:371.673200pt;}
.y189{bottom:376.358000pt;}
.y284{bottom:377.996400pt;}
.y1d7{bottom:378.209067pt;}
.y266{bottom:378.447733pt;}
.y1e{bottom:381.498133pt;}
.y13c{bottom:383.499600pt;}
.y8b{bottom:383.916133pt;}
.y2a0{bottom:384.663067pt;}
.y1f6{bottom:384.759733pt;}
.y3a{bottom:387.898133pt;}
.y1ad{bottom:389.714533pt;}
.y68{bottom:391.840133pt;}
.y21d{bottom:392.594400pt;}
.yb5{bottom:392.598400pt;}
.y103{bottom:392.785067pt;}
.y15f{bottom:392.802400pt;}
.y115{bottom:392.873067pt;}
.y247{bottom:393.010400pt;}
.ydc{bottom:393.010533pt;}
.y175{bottom:393.034000pt;}
.y188{bottom:395.028667pt;}
.y283{bottom:397.996400pt;}
.y1d{bottom:399.898133pt;}
.y29f{bottom:403.996400pt;}
.y13b{bottom:404.836933pt;}
.y8a{bottom:405.253467pt;}
.y1f5{bottom:406.097067pt;}
.y1d6{bottom:406.202400pt;}
.y39{bottom:407.098133pt;}
.y1ac{bottom:411.051867pt;}
.y67{bottom:413.177467pt;}
.y187{bottom:413.699333pt;}
.y21c{bottom:413.931733pt;}
.yb4{bottom:413.935733pt;}
.y102{bottom:414.122400pt;}
.y15e{bottom:414.139733pt;}
.y114{bottom:414.210400pt;}
.y246{bottom:414.347733pt;}
.ydb{bottom:414.347867pt;}
.y265{bottom:417.781067pt;}
.y282{bottom:417.996400pt;}
.y1c{bottom:418.298133pt;}
.y174{bottom:418.363333pt;}
.y13a{bottom:426.174267pt;}
.y38{bottom:426.298133pt;}
.y89{bottom:426.590800pt;}
.y1f4{bottom:427.434400pt;}
.y186{bottom:432.370000pt;}
.y1ab{bottom:432.389200pt;}
.y1d5{bottom:434.195733pt;}
.y66{bottom:434.514800pt;}
.y21b{bottom:435.269067pt;}
.yb3{bottom:435.273067pt;}
.y101{bottom:435.459733pt;}
.y15d{bottom:435.477067pt;}
.y113{bottom:435.547733pt;}
.y245{bottom:435.685067pt;}
.yda{bottom:435.685200pt;}
.y1b{bottom:436.698133pt;}
.y264{bottom:437.114400pt;}
.y281{bottom:437.329733pt;}
.y29e{bottom:442.663067pt;}
.y173{bottom:443.692667pt;}
.y37{bottom:445.498133pt;}
.y139{bottom:447.511600pt;}
.y88{bottom:447.928133pt;}
.y1f3{bottom:448.771733pt;}
.y185{bottom:451.040667pt;}
.y1aa{bottom:453.726533pt;}
.y1a{bottom:455.098133pt;}
.y65{bottom:455.852133pt;}
.y21a{bottom:456.606400pt;}
.yb2{bottom:456.610400pt;}
.y100{bottom:456.797067pt;}
.y15c{bottom:456.814400pt;}
.y112{bottom:456.885067pt;}
.y244{bottom:457.022400pt;}
.yd9{bottom:457.022533pt;}
.y29d{bottom:461.996400pt;}
.y1d4{bottom:462.189067pt;}
.y36{bottom:464.698133pt;}
.y138{bottom:468.848933pt;}
.y172{bottom:469.022000pt;}
.y87{bottom:469.265467pt;}
.y184{bottom:469.711333pt;}
.y1f2{bottom:470.109067pt;}
.y19{bottom:473.498133pt;}
.y1a9{bottom:475.063867pt;}
.y263{bottom:475.781067pt;}
.y280{bottom:475.996400pt;}
.y64{bottom:477.189467pt;}
.y219{bottom:477.943733pt;}
.yb1{bottom:477.947733pt;}
.yff{bottom:478.134400pt;}
.y15b{bottom:478.151733pt;}
.y243{bottom:478.359733pt;}
.yd8{bottom:478.359867pt;}
.y35{bottom:483.898133pt;}
.y183{bottom:488.382000pt;}
.y137{bottom:490.186267pt;}
.y86{bottom:490.602800pt;}
.y1f1{bottom:491.446400pt;}
.y18{bottom:491.898133pt;}
.y171{bottom:494.351333pt;}
.y262{bottom:495.781067pt;}
.y27f{bottom:495.996400pt;}
.y1a8{bottom:496.401200pt;}
.y63{bottom:498.526800pt;}
.y218{bottom:499.281067pt;}
.yb0{bottom:499.285067pt;}
.yfe{bottom:499.471733pt;}
.y15a{bottom:499.489067pt;}
.y242{bottom:499.697067pt;}
.yd7{bottom:499.697200pt;}
.y29c{bottom:500.663067pt;}
.y34{bottom:503.098133pt;}
.y182{bottom:507.052667pt;}
.y17{bottom:510.298133pt;}
.y1d3{bottom:511.519733pt;}
.y136{bottom:511.523600pt;}
.y85{bottom:511.940133pt;}
.y1f0{bottom:512.783733pt;}
.y1a7{bottom:517.738533pt;}
.y170{bottom:519.680667pt;}
.y62{bottom:519.864133pt;}
.y29b{bottom:519.996400pt;}
.y217{bottom:520.618400pt;}
.yaf{bottom:520.622400pt;}
.yfd{bottom:520.809067pt;}
.y159{bottom:520.826400pt;}
.y241{bottom:521.034400pt;}
.yd6{bottom:521.034533pt;}
.y33{bottom:522.298133pt;}
.y181{bottom:525.723333pt;}
.y16{bottom:528.698133pt;}
.y1d2{bottom:532.857067pt;}
.y135{bottom:532.860933pt;}
.y84{bottom:533.245467pt;}
.y261{bottom:534.447733pt;}
.y27e{bottom:535.329733pt;}
.y1a6{bottom:539.075867pt;}
.y61{bottom:541.201467pt;}
.y32{bottom:541.498133pt;}
.y216{bottom:541.955733pt;}
.yae{bottom:541.959733pt;}
.yfc{bottom:542.146400pt;}
.y158{bottom:542.163733pt;}
.y240{bottom:542.371733pt;}
.yd5{bottom:542.371867pt;}
.y180{bottom:544.394000pt;}
.y15{bottom:547.098133pt;}
.y260{bottom:553.781067pt;}
.y1d1{bottom:554.194400pt;}
.y134{bottom:554.198267pt;}
.y83{bottom:554.582800pt;}
.y1ef{bottom:555.458400pt;}
.y29a{bottom:559.329733pt;}
.y1a5{bottom:560.413200pt;}
.y31{bottom:560.698133pt;}
.y60{bottom:562.538800pt;}
.y17f{bottom:563.064667pt;}
.y215{bottom:563.293067pt;}
.yad{bottom:563.297067pt;}
.yfb{bottom:563.483733pt;}
.y157{bottom:563.501067pt;}
.y23f{bottom:563.709067pt;}
.yd4{bottom:563.709200pt;}
.y14{bottom:565.498133pt;}
.y27d{bottom:574.663067pt;}
.y1d0{bottom:575.531733pt;}
.y133{bottom:575.535600pt;}
.y82{bottom:575.920133pt;}
.y299{bottom:578.663067pt;}
.y30{bottom:579.898133pt;}
.y1a4{bottom:581.750533pt;}
.y1ee{bottom:583.451733pt;}
.y5f{bottom:583.876133pt;}
.y13{bottom:583.898133pt;}
.y214{bottom:584.630400pt;}
.yac{bottom:584.634400pt;}
.yfa{bottom:584.821067pt;}
.y156{bottom:584.838400pt;}
.y23e{bottom:585.046400pt;}
.yd3{bottom:585.046533pt;}
.y25f{bottom:593.114400pt;}
.y27c{bottom:593.996400pt;}
.y1cf{bottom:596.869067pt;}
.y132{bottom:596.872933pt;}
.y81{bottom:597.257467pt;}
.y298{bottom:597.996400pt;}
.y2f{bottom:599.098133pt;}
.y12{bottom:602.298133pt;}
.y1a3{bottom:603.087867pt;}
.y16f{bottom:603.940667pt;}
.y5e{bottom:605.213467pt;}
.y213{bottom:605.967733pt;}
.yab{bottom:605.971733pt;}
.yf9{bottom:606.158400pt;}
.y155{bottom:606.175733pt;}
.y23d{bottom:606.383733pt;}
.yd2{bottom:606.383867pt;}
.y1ed{bottom:611.445067pt;}
.y1ce{bottom:618.206400pt;}
.y131{bottom:618.210267pt;}
.y2e{bottom:618.298133pt;}
.y80{bottom:618.594800pt;}
.y11{bottom:620.698133pt;}
.y16e{bottom:621.540667pt;}
.y1a2{bottom:624.425200pt;}
.y5d{bottom:626.550800pt;}
.y212{bottom:627.305067pt;}
.yaa{bottom:627.309067pt;}
.yf8{bottom:627.495733pt;}
.y154{bottom:627.513067pt;}
.y23c{bottom:627.721067pt;}
.yd1{bottom:627.721200pt;}
.y25e{bottom:632.447733pt;}
.y27b{bottom:633.329733pt;}
.y297{bottom:636.663067pt;}
.y2d{bottom:637.498133pt;}
.y10{bottom:639.098133pt;}
.y1ec{bottom:639.438400pt;}
.y1cd{bottom:639.543733pt;}
.y130{bottom:639.547600pt;}
.y7f{bottom:639.932133pt;}
.y1a1{bottom:645.762533pt;}
.y5c{bottom:647.888133pt;}
.y211{bottom:648.642400pt;}
.ya9{bottom:648.646400pt;}
.yf7{bottom:648.833067pt;}
.y153{bottom:648.850400pt;}
.y23b{bottom:649.058400pt;}
.yd0{bottom:649.058533pt;}
.y25d{bottom:652.447733pt;}
.y27a{bottom:653.329733pt;}
.y296{bottom:655.996400pt;}
.y2c{bottom:656.698133pt;}
.yf{bottom:657.498133pt;}
.y1cc{bottom:660.881067pt;}
.y12f{bottom:660.884933pt;}
.y7e{bottom:661.269467pt;}
.y1a0{bottom:667.099867pt;}
.y1eb{bottom:667.431733pt;}
.y5b{bottom:669.225467pt;}
.y210{bottom:669.979733pt;}
.ya8{bottom:669.983733pt;}
.yf6{bottom:670.170400pt;}
.y152{bottom:670.187733pt;}
.y23a{bottom:670.395733pt;}
.ycf{bottom:670.395867pt;}
.ye{bottom:675.898133pt;}
.y1cb{bottom:682.218400pt;}
.y12e{bottom:682.222267pt;}
.y7d{bottom:682.606800pt;}
.y19f{bottom:688.437200pt;}
.y5a{bottom:690.562800pt;}
.y20f{bottom:691.317067pt;}
.ya7{bottom:691.321067pt;}
.yf5{bottom:691.507733pt;}
.y151{bottom:691.525067pt;}
.y239{bottom:691.733067pt;}
.yce{bottom:691.733200pt;}
.y25c{bottom:691.781067pt;}
.y279{bottom:692.663067pt;}
.y295{bottom:695.329733pt;}
.y1ea{bottom:695.425067pt;}
.y1ca{bottom:703.555733pt;}
.y7c{bottom:703.944133pt;}
.y19e{bottom:709.774533pt;}
.y4b{bottom:710.825333pt;}
.y59{bottom:711.900133pt;}
.y20e{bottom:712.654400pt;}
.ya6{bottom:712.658400pt;}
.yf4{bottom:712.845067pt;}
.y150{bottom:712.862400pt;}
.y238{bottom:713.070400pt;}
.ycd{bottom:713.070533pt;}
.y294{bottom:714.663067pt;}
.yd{bottom:719.474400pt;}
.y4a{bottom:722.825333pt;}
.y1e9{bottom:723.418400pt;}
.y12d{bottom:724.856933pt;}
.y19d{bottom:731.111867pt;}
.y25b{bottom:731.114400pt;}
.y278{bottom:731.996400pt;}
.y58{bottom:733.237467pt;}
.y20d{bottom:733.991733pt;}
.ya5{bottom:733.995733pt;}
.yf3{bottom:734.182400pt;}
.y14f{bottom:734.199733pt;}
.y237{bottom:734.407733pt;}
.ycc{bottom:734.407867pt;}
.yc{bottom:737.074400pt;}
.y1c9{bottom:746.190400pt;}
.y7b{bottom:746.584133pt;}
.y12c{bottom:747.528933pt;}
.y1e8{bottom:751.411733pt;}
.y19c{bottom:752.449200pt;}
.y293{bottom:753.996400pt;}
.y57{bottom:754.574800pt;}
.yb{bottom:754.674400pt;}
.y20c{bottom:755.329067pt;}
.ya4{bottom:755.333067pt;}
.yf2{bottom:755.519733pt;}
.y14e{bottom:755.537067pt;}
.y236{bottom:755.745067pt;}
.ycb{bottom:755.745200pt;}
.y1c8{bottom:768.862400pt;}
.y7a{bottom:769.256133pt;}
.y12b{bottom:770.200933pt;}
.y25a{bottom:770.447733pt;}
.y277{bottom:771.329733pt;}
.ya{bottom:772.274400pt;}
.y292{bottom:773.329733pt;}
.y19b{bottom:773.786533pt;}
.y56{bottom:775.912133pt;}
.y20b{bottom:776.666400pt;}
.ya3{bottom:776.670400pt;}
.yf1{bottom:776.857067pt;}
.y14d{bottom:776.874400pt;}
.y235{bottom:777.082400pt;}
.yca{bottom:777.082533pt;}
.y1e7{bottom:779.405067pt;}
.y259{bottom:790.447733pt;}
.y276{bottom:790.663067pt;}
.y1c7{bottom:791.534400pt;}
.y79{bottom:791.928133pt;}
.y291{bottom:792.663067pt;}
.y12a{bottom:792.872933pt;}
.y19a{bottom:795.123867pt;}
.y9{bottom:796.274400pt;}
.y55{bottom:797.249467pt;}
.y20a{bottom:798.003733pt;}
.ya2{bottom:798.007733pt;}
.yf0{bottom:798.194400pt;}
.y14c{bottom:798.211733pt;}
.y234{bottom:798.419733pt;}
.yc9{bottom:798.419867pt;}
.y1e6{bottom:807.398400pt;}
.y1c6{bottom:814.206400pt;}
.y78{bottom:814.600133pt;}
.y129{bottom:815.544933pt;}
.y199{bottom:816.461200pt;}
.y54{bottom:818.586800pt;}
.y209{bottom:819.341067pt;}
.ya1{bottom:819.345067pt;}
.yef{bottom:819.531733pt;}
.y233{bottom:819.757067pt;}
.yc8{bottom:819.757200pt;}
.y8{bottom:820.274400pt;}
.y258{bottom:829.114400pt;}
.y275{bottom:829.996400pt;}
.y290{bottom:831.996400pt;}
.y1e5{bottom:835.391733pt;}
.y1c5{bottom:836.878400pt;}
.y77{bottom:837.272133pt;}
.y7{bottom:837.874400pt;}
.y128{bottom:838.216933pt;}
.y53{bottom:839.924133pt;}
.y208{bottom:840.678400pt;}
.ya0{bottom:840.682400pt;}
.yee{bottom:840.869067pt;}
.y14b{bottom:840.886400pt;}
.y232{bottom:841.094400pt;}
.yc7{bottom:841.094533pt;}
.y274{bottom:849.996400pt;}
.y28f{bottom:851.329733pt;}
.y198{bottom:859.135867pt;}
.y1c4{bottom:859.550400pt;}
.y76{bottom:859.944133pt;}
.y127{bottom:860.888933pt;}
.y52{bottom:861.261467pt;}
.y6{bottom:861.874400pt;}
.y207{bottom:862.015733pt;}
.y9f{bottom:862.019733pt;}
.yed{bottom:862.206400pt;}
.y231{bottom:862.431733pt;}
.yc6{bottom:862.431867pt;}
.y1e4{bottom:863.385067pt;}
.y257{bottom:868.447733pt;}
.y273{bottom:869.996400pt;}
.y28e{bottom:870.663067pt;}
.y1c3{bottom:882.222400pt;}
.y51{bottom:882.598800pt;}
.y206{bottom:883.353067pt;}
.y9e{bottom:883.357067pt;}
.yec{bottom:883.543733pt;}
.y230{bottom:883.769067pt;}
.yc5{bottom:883.769200pt;}
.y272{bottom:889.996400pt;}
.y1e3{bottom:891.378400pt;}
.y5{bottom:902.087067pt;}
.y50{bottom:903.936133pt;}
.y205{bottom:904.690400pt;}
.y9d{bottom:904.694400pt;}
.y126{bottom:904.880933pt;}
.yeb{bottom:904.881067pt;}
.y22f{bottom:905.106400pt;}
.yc4{bottom:905.106533pt;}
.y256{bottom:907.781067pt;}
.y1be{bottom:917.579600pt;}
.y1e2{bottom:919.371733pt;}
.y4f{bottom:925.273467pt;}
.y9c{bottom:926.027733pt;}
.y125{bottom:926.218267pt;}
.yea{bottom:926.218400pt;}
.yc3{bottom:926.443867pt;}
.y271{bottom:928.663067pt;}
.y1bd{bottom:935.179600pt;}
.y4{bottom:937.397333pt;}
.y4e{bottom:946.610800pt;}
.y9b{bottom:947.365067pt;}
.y124{bottom:947.555600pt;}
.ye9{bottom:947.555733pt;}
.y22e{bottom:947.781067pt;}
.yc2{bottom:947.781200pt;}
.y270{bottom:947.996400pt;}
.y1bc{bottom:952.779600pt;}
.y3{bottom:961.397333pt;}
.he{height:37.106784pt;}
.h1f{height:40.218750pt;}
.h1d{height:43.706667pt;}
.ha{height:46.000000pt;}
.hd{height:48.000000pt;}
.hb{height:48.029333pt;}
.h1b{height:48.450370pt;}
.hf{height:48.960000pt;}
.h11{height:51.653333pt;}
.hc{height:52.000000pt;}
.h10{height:52.507812pt;}
.h8{height:53.295407pt;}
.h7{height:53.856000pt;}
.h3{height:57.281250pt;}
.h14{height:58.752000pt;}
.h4{height:60.000000pt;}
.h21{height:60.562963pt;}
.h20{height:61.200000pt;}
.h9{height:62.054688pt;}
.h16{height:62.985481pt;}
.h6{height:63.648000pt;}
.h18{height:63.664000pt;}
.h13{height:63.696000pt;}
.h15{height:63.776000pt;}
.h17{height:63.888000pt;}
.h1a{height:64.000000pt;}
.h19{height:64.096000pt;}
.h12{height:64.112000pt;}
.h1c{height:64.154667pt;}
.h1e{height:64.549333pt;}
.h2{height:71.601562pt;}
.h5{height:72.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:31.023600pt;}
.x12{left:41.023600pt;}
.x11{left:74.645600pt;}
.xe{left:75.590533pt;}
.x2{left:76.535467pt;}
.x14{left:113.385867pt;}
.x1b{left:126.929600pt;}
.x1c{left:134.482933pt;}
.x1f{left:139.836533pt;}
.x17{left:142.740267pt;}
.x5{left:149.600533pt;}
.x18{left:156.805600pt;}
.x20{left:158.729867pt;}
.x4{left:192.627733pt;}
.xa{left:201.345600pt;}
.x7{left:203.244933pt;}
.x15{left:215.433067pt;}
.x3{left:255.087733pt;}
.x9{left:276.121867pt;}
.x6{left:294.218000pt;}
.xc{left:300.022933pt;}
.xd{left:347.865600pt;}
.xb{left:376.054933pt;}
.x8{left:382.896933pt;}
.x1d{left:409.717600pt;}
.x1e{left:417.270933pt;}
.xf{left:419.535867pt;}
.x19{left:424.574933pt;}
.x1a{left:438.493600pt;}
.x10{left:600.944933pt;}
.x13{left:624.072533pt;}
.x1{left:743.622133pt;}
}




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