
    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_eca22c6be3cd3331fc0c4f9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_74550013ebe1dc4528b775ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_ec7068d2f3d8565c7279fb4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_c44692cdd0207f3fad5d7fb5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.263000;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_b9afcc1660f7c4bb42f69abd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678000;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_df8ba727553617be5454afe7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_1614ef5911cca6e9e2ca627f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.478000;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_13fd817d9cbf9628d967c585.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.533000;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_59d390cc75fd0395377092cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.574000;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;}
.m5{transform:matrix(0.239457,0.000000,-0.071836,0.239457,0,0);-ms-transform:matrix(0.239457,0.000000,-0.071836,0.239457,0,0);-webkit-transform:matrix(0.239457,0.000000,-0.071836,0.239457,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.266511,0.000000,-0.079955,0.236869,0,0);-ms-transform:matrix(0.266511,0.000000,-0.079955,0.236869,0,0);-webkit-transform:matrix(0.266511,0.000000,-0.079955,0.236869,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.583305px;}
.v4{vertical-align:-10.205459px;}
.v1{vertical-align:-1.359891px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.967170px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003586px;}
.lsa{letter-spacing:0.003985px;}
.ls2{letter-spacing:0.004184px;}
.ls0{letter-spacing:0.011955px;}
.lsb{letter-spacing:0.037658px;}
.ls12{letter-spacing:0.047099px;}
.ls10{letter-spacing:0.057377px;}
.lsc{letter-spacing:0.086076px;}
.lsd{letter-spacing:0.236710px;}
.ls14{letter-spacing:0.656932px;}
.ls15{letter-spacing:0.753170px;}
.ls17{letter-spacing:0.769908px;}
.ls16{letter-spacing:4.435337px;}
.ls3{letter-spacing:6.820376px;}
.ls1{letter-spacing:7.163487px;}
.ls13{letter-spacing:7.498230px;}
.ls11{letter-spacing:9.296260px;}
.ls8{letter-spacing:9.640566px;}
.ls4{letter-spacing:13.304196px;}
.ls5{letter-spacing:15.004206px;}
.ls6{letter-spacing:17.975667px;}
.ls7{letter-spacing:17.988220px;}
.lsf{letter-spacing:18.000744px;}
.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;}
}
.ws185{word-spacing:-4.477180px;}
.ws3{word-spacing:-0.059776px;}
.ws13{word-spacing:-0.053798px;}
.wsab{word-spacing:-0.047821px;}
.ws1c{word-spacing:-0.041843px;}
.ws65{word-spacing:0.000000px;}
.wsd1{word-spacing:9.016511px;}
.ws16a{word-spacing:9.724267px;}
.ws29{word-spacing:9.770294px;}
.ws2a{word-spacing:9.866532px;}
.ws162{word-spacing:9.879085px;}
.ws179{word-spacing:9.975324px;}
.ws161{word-spacing:10.017166px;}
.ws164{word-spacing:10.025535px;}
.ws1b{word-spacing:10.264039px;}
.ws18d{word-spacing:10.310066px;}
.ws16e{word-spacing:10.657361px;}
.ws1a{word-spacing:10.686651px;}
.ws190{word-spacing:11.276635px;}
.ws6e{word-spacing:11.442792px;}
.wsf6{word-spacing:11.540244px;}
.wsf9{word-spacing:11.732721px;}
.ws178{word-spacing:12.017252px;}
.ws6{word-spacing:12.285046px;}
.ws15{word-spacing:12.448811px;}
.wsf{word-spacing:12.513368px;}
.ws89{word-spacing:12.588685px;}
.ws193{word-spacing:12.594683px;}
.ws131{word-spacing:12.653243px;}
.ws166{word-spacing:12.678368px;}
.ws16{word-spacing:12.680141px;}
.wse{word-spacing:12.744699px;}
.ws7{word-spacing:12.753685px;}
.ws97{word-spacing:12.787737px;}
.ws8{word-spacing:12.791344px;}
.ws4d{word-spacing:12.798497px;}
.ws136{word-spacing:12.814636px;}
.wsa2{word-spacing:12.830775px;}
.ws4e{word-spacing:12.852294px;}
.ws191{word-spacing:12.883398px;}
.wsd7{word-spacing:12.943751px;}
.ws10e{word-spacing:12.945199px;}
.ws75{word-spacing:12.954510px;}
.ws74{word-spacing:13.099764px;}
.wsd8{word-spacing:13.121283px;}
.ws12c{word-spacing:13.142803px;}
.ws12{word-spacing:13.185841px;}
.ws10f{word-spacing:13.251255px;}
.ws4f{word-spacing:13.255778px;}
.ws3e{word-spacing:13.271917px;}
.ws40{word-spacing:13.293436px;}
.ws18f{word-spacing:13.318563px;}
.ws158{word-spacing:13.361243px;}
.ws151{word-spacing:13.449450px;}
.ws80{word-spacing:13.481729px;}
.wsf7{word-spacing:13.506856px;}
.wsf8{word-spacing:13.573804px;}
.ws3b{word-spacing:13.610843px;}
.ws12d{word-spacing:13.626983px;}
.ws17e{word-spacing:13.649121px;}
.ws15f{word-spacing:13.657490px;}
.ws192{word-spacing:13.661674px;}
.ws10{word-spacing:13.686160px;}
.ws18c{word-spacing:13.711886px;}
.ws115{word-spacing:13.713059px;}
.ws177{word-spacing:13.716070px;}
.ws2d{word-spacing:13.720254px;}
.ws16f{word-spacing:13.724438px;}
.ws18e{word-spacing:13.728623px;}
.ws24{word-spacing:13.766281px;}
.ws194{word-spacing:13.774650px;}
.ws171{word-spacing:13.808124px;}
.ws2e{word-spacing:13.812308px;}
.ws173{word-spacing:13.816493px;}
.ws2f{word-spacing:13.845783px;}
.wsde{word-spacing:13.847554px;}
.wsce{word-spacing:13.852934px;}
.ws195{word-spacing:13.870888px;}
.ws90{word-spacing:13.874453px;}
.ws2b{word-spacing:13.879257px;}
.ws147{word-spacing:13.908547px;}
.ws28{word-spacing:13.916915px;}
.ws1f{word-spacing:13.946205px;}
.ws17b{word-spacing:13.950390px;}
.ws21{word-spacing:13.971311px;}
.ws198{word-spacing:13.975495px;}
.ws181{word-spacing:13.979679px;}
.wsb{word-spacing:13.988048px;}
.ws189{word-spacing:14.000601px;}
.ws17f{word-spacing:14.029891px;}
.ws141{word-spacing:14.042444px;}
.ws14e{word-spacing:14.046606px;}
.ws165{word-spacing:14.050812px;}
.ws3a{word-spacing:14.057365px;}
.ws22{word-spacing:14.059181px;}
.ws119{word-spacing:14.073504px;}
.ws23{word-spacing:14.080102px;}
.ws2c{word-spacing:14.126129px;}
.wsf0{word-spacing:14.142866px;}
.ws168{word-spacing:14.147051px;}
.ws112{word-spacing:14.148821px;}
.ws20{word-spacing:14.155419px;}
.ws1d{word-spacing:14.159604px;}
.ws18{word-spacing:14.207999px;}
.ws17{word-spacing:14.213379px;}
.ws25{word-spacing:14.213999px;}
.ws1e{word-spacing:14.218183px;}
.ws61{word-spacing:14.218759px;}
.wseb{word-spacing:14.224138px;}
.ws15b{word-spacing:14.236371px;}
.wsdd{word-spacing:14.267177px;}
.wsf1{word-spacing:14.306053px;}
.ws140{word-spacing:14.331159px;}
.wsb5{word-spacing:14.342493px;}
.wsc4{word-spacing:14.364013px;}
.ws187{word-spacing:14.393923px;}
.ws12e{word-spacing:14.396291px;}
.wse6{word-spacing:14.466228px;}
.ws13a{word-spacing:14.633287px;}
.ws13b{word-spacing:14.647634px;}
.ws3c{word-spacing:14.654521px;}
.wsc6{word-spacing:14.665280px;}
.ws6b{word-spacing:14.702939px;}
.wsbd{word-spacing:14.735217px;}
.ws105{word-spacing:14.751357px;}
.ws155{word-spacing:14.781533px;}
.ws68{word-spacing:14.842813px;}
.wsbc{word-spacing:14.858952px;}
.ws180{word-spacing:14.879300px;}
.ws66{word-spacing:14.901991px;}
.ws10a{word-spacing:14.907370px;}
.ws14{word-spacing:14.923510px;}
.ws197{word-spacing:14.954617px;}
.ws142{word-spacing:15.023305px;}
.ws104{word-spacing:15.079523px;}
.wsb3{word-spacing:15.133321px;}
.ws67{word-spacing:15.170980px;}
.ws11f{word-spacing:15.181739px;}
.ws107{word-spacing:15.197878px;}
.wsea{word-spacing:15.208638px;}
.wsac{word-spacing:15.240616px;}
.ws15d{word-spacing:15.259745px;}
.ws176{word-spacing:15.360492px;}
.ws14d{word-spacing:15.370031px;}
.ws12f{word-spacing:15.391551px;}
.ws118{word-spacing:15.418449px;}
.ws15a{word-spacing:15.422337px;}
.wsa8{word-spacing:15.446248px;}
.ws10d{word-spacing:15.509906px;}
.wsc9{word-spacing:15.552944px;}
.ws41{word-spacing:15.563704px;}
.ws12b{word-spacing:15.574463px;}
.wsb6{word-spacing:15.622881px;}
.ws169{word-spacing:15.628286px;}
.ws84{word-spacing:15.665919px;}
.ws110{word-spacing:15.666225px;}
.wsa9{word-spacing:15.699700px;}
.ws125{word-spacing:15.746616px;}
.wsaa{word-spacing:15.747521px;}
.ws11c{word-spacing:15.897250px;}
.wsa{word-spacing:15.912817px;}
.ws9{word-spacing:16.055082px;}
.ws51{word-spacing:16.096302px;}
.ws6f{word-spacing:16.117821px;}
.ws18b{word-spacing:16.163874px;}
.ws93{word-spacing:16.193138px;}
.wsdb{word-spacing:16.214657px;}
.ws71{word-spacing:16.241556px;}
.ws18a{word-spacing:16.327061px;}
.ws157{word-spacing:16.330940px;}
.ws88{word-spacing:16.343772px;}
.ws77{word-spacing:16.349151px;}
.ws196{word-spacing:16.440036px;}
.ws5e{word-spacing:16.499785px;}
.wsfb{word-spacing:16.505165px;}
.ws5f{word-spacing:16.553583px;}
.wsa4{word-spacing:16.569722px;}
.ws99{word-spacing:16.655799px;}
.ws32{word-spacing:16.688078px;}
.ws33{word-spacing:16.704217px;}
.wse1{word-spacing:16.784914px;}
.ws83{word-spacing:16.870990px;}
.ws13c{word-spacing:16.890448px;}
.ws133{word-spacing:16.940927px;}
.ws15e{word-spacing:17.034204px;}
.ws106{word-spacing:17.037763px;}
.ws73{word-spacing:17.070042px;}
.ws92{word-spacing:17.220676px;}
.ws156{word-spacing:17.229978px;}
.ws56{word-spacing:17.252954px;}
.ws8e{word-spacing:17.269094px;}
.ws96{word-spacing:17.290613px;}
.wsd2{word-spacing:17.328271px;}
.ws11b{word-spacing:17.333651px;}
.wsd6{word-spacing:17.457386px;}
.wsa3{word-spacing:17.591881px;}
.wsed{word-spacing:17.597260px;}
.ws7a{word-spacing:17.608020px;}
.wsda{word-spacing:17.629539px;}
.wsef{word-spacing:17.645678px;}
.ws19{word-spacing:17.667198px;}
.wsa1{word-spacing:17.688717px;}
.ws85{word-spacing:17.694096px;}
.ws116{word-spacing:17.704856px;}
.ws98{word-spacing:17.726375px;}
.ws132{word-spacing:17.742514px;}
.ws91{word-spacing:17.769413px;}
.wse2{word-spacing:17.796312px;}
.wsc2{word-spacing:17.855490px;}
.wsee{word-spacing:17.860870px;}
.ws57{word-spacing:17.866249px;}
.ws44{word-spacing:17.871629px;}
.ws37{word-spacing:17.893148px;}
.wsfc{word-spacing:17.898528px;}
.wsb0{word-spacing:17.903908px;}
.wsa7{word-spacing:17.909288px;}
.ws55{word-spacing:17.914667px;}
.wsb9{word-spacing:17.930807px;}
.wsd0{word-spacing:17.941566px;}
.ws8c{word-spacing:17.952326px;}
.ws45{word-spacing:17.968465px;}
.ws13f{word-spacing:17.984605px;}
.wsd4{word-spacing:18.016883px;}
.ws60{word-spacing:18.022263px;}
.ws14f{word-spacing:18.033023px;}
.wsfa{word-spacing:18.054542px;}
.ws11{word-spacing:18.135238px;}
.ws47{word-spacing:18.156758px;}
.wsa5{word-spacing:18.172897px;}
.ws69{word-spacing:18.199796px;}
.ws101{word-spacing:18.242834px;}
.ws9f{word-spacing:18.355809px;}
.ws174{word-spacing:18.368989px;}
.ws167{word-spacing:18.373173px;}
.ws27{word-spacing:18.377358px;}
.wscc{word-spacing:18.388088px;}
.ws7f{word-spacing:18.409607px;}
.ws26{word-spacing:18.502886px;}
.wsc7{word-spacing:18.549481px;}
.ws70{word-spacing:18.592520px;}
.wsc5{word-spacing:18.619419px;}
.wsc1{word-spacing:18.700115px;}
.ws17c{word-spacing:18.749759px;}
.ws13e{word-spacing:18.760257px;}
.ws14a{word-spacing:18.850749px;}
.ws114{word-spacing:18.899167px;}
.ws129{word-spacing:18.926066px;}
.wse9{word-spacing:18.952965px;}
.ws5b{word-spacing:19.125118px;}
.ws35{word-spacing:19.318790px;}
.wsb2{word-spacing:19.415626px;}
.wsb1{word-spacing:19.496323px;}
.ws59{word-spacing:19.603918px;}
.ws6c{word-spacing:19.636197px;}
.wse3{word-spacing:19.733033px;}
.ws2{word-spacing:19.749858px;}
.ws5{word-spacing:19.857454px;}
.wsa0{word-spacing:19.958984px;}
.wsc3{word-spacing:19.959073px;}
.ws108{word-spacing:19.994938px;}
.wse8{word-spacing:19.996642px;}
.wsad{word-spacing:20.006893px;}
.ws39{word-spacing:20.012782px;}
.wsd{word-spacing:20.023541px;}
.ws58{word-spacing:20.030804px;}
.ws153{word-spacing:20.071959px;}
.ws13d{word-spacing:20.099250px;}
.ws4{word-spacing:20.102534px;}
.wsc{word-spacing:20.276391px;}
.ws150{word-spacing:20.335568px;}
.ws94{word-spacing:20.400126px;}
.ws79{word-spacing:20.636836px;}
.wscf{word-spacing:20.771331px;}
.wsc8{word-spacing:20.792850px;}
.ws49{word-spacing:20.932724px;}
.wse5{word-spacing:20.970382px;}
.ws9d{word-spacing:20.991902px;}
.ws175{word-spacing:21.042744px;}
.ws76{word-spacing:21.099497px;}
.ws16b{word-spacing:21.138983px;}
.ws199{word-spacing:21.143167px;}
.ws170{word-spacing:21.176641px;}
.wscd{word-spacing:21.287789px;}
.ws113{word-spacing:21.336207px;}
.ws10c{word-spacing:21.449183px;}
.ws11a{word-spacing:21.476082px;}
.wsfd{word-spacing:21.535259px;}
.ws103{word-spacing:21.594437px;}
.ws172{word-spacing:21.624359px;}
.ws72{word-spacing:21.653614px;}
.ws5d{word-spacing:21.664374px;}
.wsc0{word-spacing:21.675134px;}
.ws7c{word-spacing:21.755830px;}
.ws4c{word-spacing:22.057098px;}
.ws109{word-spacing:22.132415px;}
.ws36{word-spacing:22.352986px;}
.ws52{word-spacing:22.546658px;}
.wsb8{word-spacing:22.901723px;}
.wsae{word-spacing:23.009319px;}
.wsb7{word-spacing:23.041598px;}
.ws188{word-spacing:23.235307px;}
.wse4{word-spacing:23.240650px;}
.wsaf{word-spacing:23.294447px;}
.wsdf{word-spacing:23.305207px;}
.ws163{word-spacing:23.323177px;}
.ws182{word-spacing:23.482179px;}
.ws64{word-spacing:23.561505px;}
.ws87{word-spacing:23.579576px;}
.wsdc{word-spacing:23.584956px;}
.ws186{word-spacing:23.599339px;}
.wscb{word-spacing:24.036857px;}
.ws102{word-spacing:24.042237px;}
.ws130{word-spacing:24.058376px;}
.ws82{word-spacing:24.128313px;}
.ws81{word-spacing:24.160592px;}
.ws183{word-spacing:24.201876px;}
.ws8f{word-spacing:24.397302px;}
.ws48{word-spacing:24.418821px;}
.wsd9{word-spacing:24.515657px;}
.ws16c{word-spacing:24.544986px;}
.wse0{word-spacing:24.564075px;}
.ws16d{word-spacing:24.578461px;}
.ws8a{word-spacing:24.650152px;}
.ws95{word-spacing:24.666291px;}
.ws9c{word-spacing:24.687810px;}
.ws126{word-spacing:24.703950px;}
.ws5c{word-spacing:24.741608px;}
.ws17d{word-spacing:24.750016px;}
.ws8b{word-spacing:24.897622px;}
.ws127{word-spacing:24.956799px;}
.ws50{word-spacing:25.015977px;}
.ws31{word-spacing:25.376422px;}
.ws154{word-spacing:25.688450px;}
.wsec{word-spacing:25.758387px;}
.ws15c{word-spacing:25.804320px;}
.ws138{word-spacing:25.989717px;}
.ws4b{word-spacing:26.000477px;}
.ws14c{word-spacing:26.070414px;}
.ws137{word-spacing:26.097313px;}
.ws19d{word-spacing:26.352595px;}
.ws6d{word-spacing:26.393201px;}
.ws7e{word-spacing:26.473897px;}
.ws30{word-spacing:26.533075px;}
.ws7d{word-spacing:26.554594px;}
.wsba{word-spacing:26.737507px;}
.wse7{word-spacing:26.775165px;}
.ws34{word-spacing:26.791304px;}
.wsca{word-spacing:27.044154px;}
.ws123{word-spacing:27.092572px;}
.ws100{word-spacing:27.307763px;}
.ws19c{word-spacing:27.377744px;}
.wsff{word-spacing:27.603651px;}
.wsfe{word-spacing:27.635930px;}
.ws19b{word-spacing:27.641354px;}
.ws11e{word-spacing:28.103971px;}
.ws4a{word-spacing:28.453656px;}
.wsa6{word-spacing:28.598910px;}
.ws17a{word-spacing:28.616291px;}
.ws124{word-spacing:28.749544px;}
.ws19a{word-spacing:28.775294px;}
.ws54{word-spacing:28.792583px;}
.ws86{word-spacing:29.131509px;}
.wsb4{word-spacing:29.158408px;}
.ws12a{word-spacing:29.465055px;}
.ws3d{word-spacing:29.475815px;}
.ws9e{word-spacing:29.497334px;}
.ws42{word-spacing:29.615689px;}
.ws160{word-spacing:29.800442px;}
.ws184{word-spacing:29.959445px;}
.ws9b{word-spacing:30.067590px;}
.ws9a{word-spacing:30.072970px;}
.wsd5{word-spacing:30.116008px;}
.ws63{word-spacing:30.293541px;}
.ws111{word-spacing:30.444175px;}
.ws53{word-spacing:30.449555px;}
.ws152{word-spacing:30.460314px;}
.ws3f{word-spacing:30.616328px;}
.ws5a{word-spacing:31.186585px;}
.ws10b{word-spacing:31.235003px;}
.ws148{word-spacing:31.380257px;}
.ws149{word-spacing:31.417915px;}
.ws117{word-spacing:31.423295px;}
.ws6a{word-spacing:31.450194px;}
.ws134{word-spacing:31.912855px;}
.ws14b{word-spacing:31.977412px;}
.ws159{word-spacing:31.992383px;}
.wsbf{word-spacing:32.085008px;}
.wsbe{word-spacing:32.235642px;}
.ws121{word-spacing:32.407795px;}
.ws139{word-spacing:32.652315px;}
.ws38{word-spacing:33.263180px;}
.ws128{word-spacing:33.774259px;}
.wsd3{word-spacing:33.785018px;}
.ws7b{word-spacing:33.924893px;}
.ws135{word-spacing:34.274578px;}
.ws46{word-spacing:34.758759px;}
.ws8d{word-spacing:34.947051px;}
.ws43{word-spacing:34.984709px;}
.ws0{word-spacing:38.280486px;}
.ws78{word-spacing:38.691378px;}
.ws62{word-spacing:39.702776px;}
.ws1{word-spacing:40.193315px;}
.ws122{word-spacing:40.498984px;}
.ws11d{word-spacing:41.063861px;}
.ws120{word-spacing:41.429686px;}
.wsbb{word-spacing:42.753112px;}
.wsf5{word-spacing:147.420553px;}
.wsf3{word-spacing:192.317877px;}
.wsf4{word-spacing:192.326246px;}
.wsf2{word-spacing:213.666074px;}
.ws146{word-spacing:235.863679px;}
.ws144{word-spacing:280.756819px;}
.ws145{word-spacing:280.765188px;}
.ws143{word-spacing:302.109200px;}
._38{margin-left:-22.791773px;}
._33{margin-left:-19.711899px;}
._36{margin-left:-18.297856px;}
._35{margin-left:-17.289445px;}
._39{margin-left:-14.682639px;}
._12{margin-left:-8.274102px;}
._37{margin-left:-4.293071px;}
._18{margin-left:-1.066413px;}
._1{width:1.458532px;}
._34{width:4.146098px;}
._7{width:11.523507px;}
._4{width:12.594065px;}
._2{width:13.994014px;}
._17{width:15.004206px;}
._6{width:16.090922px;}
._b{width:17.920047px;}
._5{width:19.254233px;}
._e{width:20.351708px;}
._3{width:21.416904px;}
._13{width:22.487480px;}
._a{width:23.735589px;}
._15{width:25.274206px;}
._8{width:26.452378px;}
._9{width:27.899539px;}
._d{width:30.099869px;}
._c{width:31.729942px;}
._1a{width:33.349256px;}
._14{width:35.173002px;}
._16{width:36.222059px;}
._0{width:39.452094px;}
._f{width:40.950885px;}
._2a{width:42.026841px;}
._19{width:43.269571px;}
._1b{width:94.317855px;}
._1d{width:112.498552px;}
._2b{width:182.756798px;}
._29{width:229.419888px;}
._23{width:250.763900px;}
._20{width:272.103728px;}
._26{width:280.790294px;}
._28{width:288.267602px;}
._22{width:309.611614px;}
._1f{width:330.951442px;}
._25{width:339.646376px;}
._2c{width:341.612988px;}
._2d{width:370.706287px;}
._1c{width:416.222884px;}
._11{width:431.084207px;}
._27{width:523.658458px;}
._21{width:544.998286px;}
._1e{width:566.346482px;}
._24{width:575.049785px;}
._31{width:582.163061px;}
._30{width:603.507073px;}
._2e{width:624.851085px;}
._32{width:633.098301px;}
._2f{width:654.442313px;}
._10{width:855.024839px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:27.891000px;}
.fsa{font-size:29.437095px;}
.fs8{font-size:31.876200px;}
.fs5{font-size:35.860800px;}
.fs2{font-size:39.846000px;}
.fs3{font-size:41.842800px;}
.fs9{font-size:43.685097px;}
.fs6{font-size:47.821200px;}
.fs4{font-size:53.797800px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y116{bottom:46.087402px;}
.yaa{bottom:46.088720px;}
.y138{bottom:46.089138px;}
.y5f{bottom:46.091400px;}
.y84{bottom:89.378055px;}
.y18a{bottom:90.225945px;}
.y40{bottom:95.499761px;}
.y5e{bottom:96.094846px;}
.y133{bottom:100.346694px;}
.ycd{bottom:102.132533px;}
.yfa{bottom:102.132633px;}
.y189{bottom:102.896990px;}
.y83{bottom:105.109876px;}
.y3f{bottom:111.487122px;}
.y12b{bottom:111.826739px;}
.y5d{bottom:112.166939px;}
.ya6{bottom:113.187765px;}
.y132{bottom:116.334055px;}
.ycc{bottom:118.119894px;}
.yf9{bottom:118.119994px;}
.y82{bottom:120.841698px;}
.y129{bottom:125.603100px;}
.y3e{bottom:127.559215px;}
.y12a{bottom:127.814100px;}
.y128{bottom:127.814278px;}
.y5c{bottom:128.154300px;}
.y5a{bottom:128.154471px;}
.y188{bottom:129.003759px;}
.ya5{bottom:129.175127px;}
.y131{bottom:132.321416px;}
.y5b{bottom:134.107050px;}
.ycb{bottom:134.107255px;}
.yf8{bottom:134.107356px;}
.y81{bottom:136.488788px;}
.y3d{bottom:143.546576px;}
.y127{bottom:143.801639px;}
.y59{bottom:144.141833px;}
.ya4{bottom:145.162488px;}
.y187{bottom:147.712721px;}
.y130{bottom:148.308778px;}
.yca{bottom:150.094616px;}
.yf7{bottom:150.094717px;}
.y80{bottom:152.220610px;}
.y125{bottom:159.789000px;}
.y3c{bottom:159.789477px;}
.y57{bottom:160.129194px;}
.ya3{bottom:161.149849px;}
.y58{bottom:163.275020px;}
.y12f{bottom:164.296139px;}
.y126{bottom:165.741750px;}
.yc9{bottom:166.081978px;}
.yf6{bottom:166.082078px;}
.y186{bottom:166.421683px;}
.y7f{bottom:167.867700px;}
.y7d{bottom:167.871725px;}
.y7e{bottom:173.905500px;}
.y124{bottom:175.776300px;}
.y122{bottom:175.776389px;}
.y3b{bottom:175.776838px;}
.y56{bottom:176.116555px;}
.ya2{bottom:177.137210px;}
.y12e{bottom:180.283500px;}
.y123{bottom:181.729050px;}
.yc8{bottom:182.069339px;}
.yf5{bottom:182.069439px;}
.y7c{bottom:183.603547px;}
.y185{bottom:185.044868px;}
.y121{bottom:191.763750px;}
.y11f{bottom:191.763778px;}
.y3a{bottom:191.764199px;}
.y55{bottom:192.103916px;}
.ya1{bottom:193.124571px;}
.y120{bottom:197.716500px;}
.yc7{bottom:198.056700px;}
.yc5{bottom:198.056728px;}
.yf4{bottom:198.056800px;}
.y7b{bottom:199.335369px;}
.y184{bottom:203.753830px;}
.yc6{bottom:204.009450px;}
.y12d{bottom:205.540200px;}
.y11d{bottom:207.751139px;}
.y39{bottom:207.751561px;}
.y54{bottom:208.091278px;}
.ya0{bottom:209.111933px;}
.y11e{bottom:210.983042px;}
.yc4{bottom:214.044089px;}
.yf3{bottom:214.044162px;}
.y7a{bottom:214.982459px;}
.y183{bottom:222.462791px;}
.y11c{bottom:223.738500px;}
.y11a{bottom:223.738528px;}
.y38{bottom:223.738922px;}
.y53{bottom:224.078639px;}
.y9f{bottom:225.099294px;}
.y11b{bottom:229.776300px;}
.yc3{bottom:230.031450px;}
.yf2{bottom:230.031523px;}
.y79{bottom:231.310091px;}
.y119{bottom:239.725889px;}
.y37{bottom:239.726283px;}
.y52{bottom:240.066000px;}
.y182{bottom:241.085976px;}
.y9e{bottom:241.086655px;}
.yf1{bottom:246.018884px;}
.yc2{bottom:246.358950px;}
.y78{bottom:246.957181px;}
.y117{bottom:255.713250px;}
.y36{bottom:255.713644px;}
.y12c{bottom:255.714335px;}
.y9d{bottom:257.074016px;}
.y181{bottom:259.794938px;}
.y118{bottom:261.751050px;}
.yf0{bottom:262.006245px;}
.y77{bottom:262.689003px;}
.y51{bottom:265.322700px;}
.y35{bottom:271.701006px;}
.y9c{bottom:273.061378px;}
.yef{bottom:278.333878px;}
.y76{bottom:278.336093px;}
.y180{bottom:278.503900px;}
.yc1{bottom:280.545282px;}
.y34{bottom:287.688367px;}
.y9b{bottom:289.048739px;}
.y136{bottom:290.493727px;}
.y75{bottom:294.067915px;}
.yee{bottom:294.321239px;}
.yc0{bottom:296.532643px;}
.y17f{bottom:297.127084px;}
.y50{bottom:299.508860px;}
.y33{bottom:303.675728px;}
.y135{bottom:303.930288px;}
.y9a{bottom:305.036100px;}
.y98{bottom:305.036307px;}
.y74{bottom:309.799736px;}
.yed{bottom:310.308600px;}
.yeb{bottom:310.308628px;}
.y99{bottom:311.073900px;}
.ybf{bottom:312.520004px;}
.y4f{bottom:315.496221px;}
.y17e{bottom:315.836046px;}
.yec{bottom:316.261350px;}
.y134{bottom:317.366850px;}
.y32{bottom:319.663089px;}
.y97{bottom:321.023668px;}
.y73{bottom:325.446826px;}
.yea{bottom:326.295989px;}
.ybe{bottom:328.507365px;}
.y4e{bottom:331.483583px;}
.y17d{bottom:334.545008px;}
.y31{bottom:335.650450px;}
.y96{bottom:337.351300px;}
.y72{bottom:341.178648px;}
.ye9{bottom:342.283350px;}
.ye7{bottom:342.283378px;}
.ybd{bottom:344.494727px;}
.y4d{bottom:347.470944px;}
.ye8{bottom:348.236100px;}
.y30{bottom:351.637812px;}
.y17c{bottom:353.168192px;}
.y95{bottom:353.338662px;}
.y71{bottom:356.825738px;}
.ye6{bottom:358.270739px;}
.ybc{bottom:360.482088px;}
.y4c{bottom:363.458305px;}
.y2f{bottom:367.625173px;}
.y94{bottom:369.326023px;}
.y17b{bottom:371.877154px;}
.y70{bottom:372.557560px;}
.ye5{bottom:374.258100px;}
.ye3{bottom:374.258216px;}
.ybb{bottom:376.469449px;}
.y4b{bottom:379.445666px;}
.ye4{bottom:380.210850px;}
.y2e{bottom:383.952805px;}
.y93{bottom:385.313384px;}
.y6f{bottom:388.204650px;}
.y6d{bottom:388.208055px;}
.ye2{bottom:390.245578px;}
.y17a{bottom:390.586116px;}
.yba{bottom:392.456810px;}
.y6e{bottom:394.242450px;}
.y4a{bottom:395.433028px;}
.y2d{bottom:399.940166px;}
.y92{bottom:401.300745px;}
.y1f2{bottom:401.385053px;}
.y1d0{bottom:401.386099px;}
.y6c{bottom:404.535687px;}
.ye1{bottom:406.232939px;}
.yb9{bottom:408.444171px;}
.y179{bottom:409.209300px;}
.y49{bottom:411.420389px;}
.y1cf{bottom:413.291422px;}
.y1f1{bottom:413.545617px;}
.y2c{bottom:415.927528px;}
.y91{bottom:417.288106px;}
.ydf{bottom:420.009450px;}
.y6b{bottom:420.182777px;}
.ye0{bottom:422.220300px;}
.yde{bottom:422.220416px;}
.yb8{bottom:424.431533px;}
.y1ce{bottom:425.282522px;}
.y1f0{bottom:425.706181px;}
.y48{bottom:427.407750px;}
.y46{bottom:427.410668px;}
.y177{bottom:431.659650px;}
.y2b{bottom:431.914889px;}
.y90{bottom:433.275468px;}
.y47{bottom:433.445550px;}
.y6a{bottom:435.914599px;}
.y178{bottom:436.336950px;}
.y1cd{bottom:437.272577px;}
.y1ef{bottom:438.206717px;}
.ydd{bottom:438.207778px;}
.yb7{bottom:440.418894px;}
.y45{bottom:443.398029px;}
.y29{bottom:445.691250px;}
.y2a{bottom:447.902250px;}
.y28{bottom:447.902278px;}
.y1cc{bottom:449.177899px;}
.y8f{bottom:449.603100px;}
.y1ee{bottom:450.367281px;}
.y176{bottom:450.368400px;}
.y69{bottom:451.646421px;}
.ydc{bottom:454.195139px;}
.yb6{bottom:456.406255px;}
.y44{bottom:459.385390px;}
.y1cb{bottom:461.169000px;}
.y1ed{bottom:462.527845px;}
.y27{bottom:463.889639px;}
.y8d{bottom:465.594140px;}
.y68{bottom:467.293511px;}
.ydb{bottom:470.182500px;}
.yd9{bottom:470.182606px;}
.y8e{bottom:471.543150px;}
.yb5{bottom:472.393616px;}
.y1ca{bottom:473.074322px;}
.y1ec{bottom:475.114159px;}
.y43{bottom:475.457483px;}
.yda{bottom:476.135250px;}
.y26{bottom:479.877000px;}
.y8c{bottom:481.581501px;}
.y67{bottom:483.025332px;}
.y1c9{bottom:485.065423px;}
.yd8{bottom:486.169968px;}
.y1eb{bottom:487.189991px;}
.yb4{bottom:488.380978px;}
.y42{bottom:491.444844px;}
.y1c8{bottom:496.970746px;}
.y8b{bottom:497.568862px;}
.y66{bottom:498.672422px;}
.y175{bottom:499.606200px;}
.y1ea{bottom:499.776305px;}
.yd7{bottom:502.497600px;}
.yd5{bottom:502.499795px;}
.yb3{bottom:504.368339px;}
.y25{bottom:505.133700px;}
.y41{bottom:507.432206px;}
.yd6{bottom:508.450350px;}
.y1c7{bottom:508.961846px;}
.y1e9{bottom:511.936869px;}
.y8a{bottom:513.556223px;}
.y65{bottom:514.404244px;}
.yd4{bottom:518.487156px;}
.yb2{bottom:520.355700px;}
.yb0{bottom:520.356285px;}
.y1c6{bottom:520.951900px;}
.y1e8{bottom:524.097433px;}
.yb1{bottom:526.393650px;}
.y89{bottom:529.543585px;}
.y64{bottom:530.136066px;}
.y1c5{bottom:532.857223px;}
.yd3{bottom:534.474518px;}
.yaf{bottom:536.428378px;}
.y1e7{bottom:536.597969px;}
.y16b{bottom:540.595356px;}
.y144{bottom:544.336787px;}
.y1c4{bottom:544.847277px;}
.y88{bottom:545.530946px;}
.y63{bottom:546.378967px;}
.y1e6{bottom:548.758533px;}
.yd2{bottom:550.461879px;}
.yae{bottom:552.415739px;}
.y24{bottom:554.796972px;}
.y1c2{bottom:555.051750px;}
.y16a{bottom:556.582717px;}
.y1c3{bottom:556.752600px;}
.y1c1{bottom:556.754564px;}
.y143{bottom:560.324148px;}
.y1e5{bottom:561.344847px;}
.y87{bottom:561.518307px;}
.y62{bottom:562.110788px;}
.yd1{bottom:566.449240px;}
.yad{bottom:568.403100px;}
.y1c0{bottom:568.744619px;}
.y169{bottom:572.570078px;}
.y23{bottom:573.420156px;}
.y1e4{bottom:573.505411px;}
.y142{bottom:576.311510px;}
.y86{bottom:577.505668px;}
.y61{bottom:577.757878px;}
.y1bf{bottom:580.734673px;}
.yd0{bottom:582.436601px;}
.yac{bottom:584.644867px;}
.y1e3{bottom:586.005948px;}
.y168{bottom:588.557439px;}
.y22{bottom:592.129118px;}
.y141{bottom:592.298871px;}
.y1be{bottom:592.639996px;}
.y60{bottom:593.489700px;}
.y85{bottom:593.493030px;}
.y1e2{bottom:598.166511px;}
.ycf{bottom:598.423962px;}
.y167{bottom:604.544800px;}
.y1bd{bottom:604.630050px;}
.y140{bottom:608.286232px;}
.y1e1{bottom:610.327075px;}
.y21{bottom:610.838080px;}
.yab{bottom:612.113250px;}
.yce{bottom:614.411324px;}
.y1bc{bottom:616.535373px;}
.y166{bottom:620.532162px;}
.y20{bottom:622.743403px;}
.y1e0{bottom:622.913389px;}
.y13f{bottom:624.273593px;}
.ya8{bottom:628.015338px;}
.y1bb{bottom:628.525427px;}
.y1df{bottom:635.073953px;}
.y165{bottom:636.519523px;}
.y13e{bottom:640.260954px;}
.y1ba{bottom:640.430750px;}
.ya7{bottom:641.451900px;}
.y1f{bottom:641.452365px;}
.y1de{bottom:647.574490px;}
.y114{bottom:648.340027px;}
.y1b8{bottom:650.721150px;}
.y1b9{bottom:652.421850px;}
.y1b7{bottom:652.423564px;}
.y164{bottom:652.762424px;}
.y1e{bottom:653.357688px;}
.y13d{bottom:656.248316px;}
.y1dd{bottom:659.735053px;}
.y113{bottom:661.011072px;}
.y1b6{bottom:664.414664px;}
.y163{bottom:668.749785px;}
.y1d{bottom:672.066649px;}
.y13c{bottom:672.235677px;}
.y1dc{bottom:672.321368px;}
.y110{bottom:673.765267px;}
.y112{bottom:673.766850px;}
.y1b5{bottom:676.319987px;}
.y111{bottom:678.358950px;}
.y1db{bottom:684.397200px;}
.y162{bottom:684.821878px;}
.y10f{bottom:686.436313px;}
.y1b4{bottom:688.310041px;}
.y13b{bottom:688.478578px;}
.y1b{bottom:690.775611px;}
.y1c{bottom:691.115584px;}
.y1da{bottom:696.983514px;}
.y1b3{bottom:700.215364px;}
.y161{bottom:700.809239px;}
.y13a{bottom:704.465939px;}
.y1d9{bottom:709.144078px;}
.y1a{bottom:709.398796px;}
.y1b2{bottom:712.206464px;}
.y10e{bottom:712.628859px;}
.y15e{bottom:716.796560px;}
.y160{bottom:716.796600px;}
.y139{bottom:720.453300px;}
.y1d8{bottom:721.304641px;}
.y19{bottom:721.388850px;}
.y15f{bottom:722.749350px;}
.y1b1{bottom:724.196519px;}
.y10d{bottom:731.252044px;}
.y15d{bottom:732.783921px;}
.y1d7{bottom:733.805178px;}
.y1b0{bottom:736.101841px;}
.y1d6{bottom:745.965742px;}
.y1af{bottom:748.091896px;}
.y15c{bottom:748.771282px;}
.y10c{bottom:749.961006px;}
.y174{bottom:754.893888px;}
.y18{bottom:756.935552px;}
.y1d5{bottom:758.552056px;}
.y1ae{bottom:759.997218px;}
.y15b{bottom:764.758643px;}
.y171{bottom:768.329059px;}
.y173{bottom:768.330450px;}
.y10b{bottom:768.669968px;}
.y1d4{bottom:770.712620px;}
.y17{bottom:771.902100px;}
.y15{bottom:771.902552px;}
.y1ad{bottom:771.987273px;}
.y172{bottom:773.688000px;}
.y16{bottom:777.854850px;}
.y15a{bottom:781.001544px;}
.y170{bottom:781.765621px;}
.y1d3{bottom:782.873183px;}
.y1ab{bottom:783.892595px;}
.y13{bottom:784.573050px;}
.y1ac{bottom:786.443960px;}
.y14{bottom:786.869100px;}
.y12{bottom:786.870423px;}
.y10a{bottom:787.293152px;}
.y16f{bottom:795.287065px;}
.y1d2{bottom:795.373720px;}
.y1aa{bottom:795.883696px;}
.y159{bottom:796.988905px;}
.y11{bottom:801.752240px;}
.y109{bottom:806.002114px;}
.y1d1{bottom:807.534284px;}
.y1a9{bottom:807.873750px;}
.y16e{bottom:808.723627px;}
.y158{bottom:812.976266px;}
.y10{bottom:816.718788px;}
.y16d{bottom:822.160188px;}
.y108{bottom:824.711076px;}
.y1a8{bottom:828.793500px;}
.y157{bottom:828.963628px;}
.yf{bottom:831.685336px;}
.y16c{bottom:835.596750px;}
.y107{bottom:843.334260px;}
.y156{bottom:844.950989px;}
.ye{bottom:846.651884px;}
.y154{bottom:858.727350px;}
.yc{bottom:859.322700px;}
.y155{bottom:860.938350px;}
.y153{bottom:860.940875px;}
.yd{bottom:861.533700px;}
.yb{bottom:861.534304px;}
.y106{bottom:862.043222px;}
.y19a{bottom:862.380482px;}
.y1a7{bottom:862.384783px;}
.y1a6{bottom:876.245758px;}
.ya{bottom:876.500852px;}
.y152{bottom:876.928236px;}
.y199{bottom:878.283112px;}
.y105{bottom:880.752184px;}
.y1a5{bottom:890.021850px;}
.y9{bottom:891.467400px;}
.y151{bottom:892.915597px;}
.y198{bottom:894.185741px;}
.y104{bottom:899.375368px;}
.y150{bottom:908.902959px;}
.y197{bottom:910.088371px;}
.y1a4{bottom:910.601400px;}
.y8{bottom:913.832850px;}
.y103{bottom:918.084330px;}
.y14f{bottom:924.890320px;}
.y196{bottom:925.991001px;}
.y102{bottom:936.793292px;}
.y14e{bottom:940.962413px;}
.y195{bottom:941.893630px;}
.y1a3{bottom:944.193791px;}
.y101{bottom:955.416476px;}
.y14d{bottom:956.949774px;}
.y194{bottom:957.796260px;}
.y1a2{bottom:958.054766px;}
.y7{bottom:959.159039px;}
.y1a1{bottom:971.830858px;}
.y14c{bottom:972.937135px;}
.y193{bottom:974.123892px;}
.y100{bottom:974.125438px;}
.y6{bottom:974.126208px;}
.y1a0{bottom:985.691833px;}
.y14b{bottom:988.924496px;}
.y5{bottom:989.007600px;}
.y192{bottom:990.026522px;}
.yff{bottom:992.834400px;}
.y19f{bottom:999.467925px;}
.y14a{bottom:1004.911857px;}
.y191{bottom:1005.929152px;}
.y3{bottom:1009.927350px;}
.y19e{bottom:1013.328900px;}
.yfd{bottom:1015.199488px;}
.y4{bottom:1016.560350px;}
.yfe{bottom:1019.877000px;}
.y149{bottom:1020.899219px;}
.y190{bottom:1021.831781px;}
.yfc{bottom:1033.908450px;}
.y19d{bottom:1036.119450px;}
.y148{bottom:1036.886580px;}
.y18f{bottom:1037.734411px;}
.y2{bottom:1045.814478px;}
.y147{bottom:1053.129481px;}
.y18e{bottom:1053.637041px;}
.y146{bottom:1069.116842px;}
.y18d{bottom:1069.539670px;}
.y19c{bottom:1069.707788px;}
.y1{bottom:1078.724100px;}
.yfb{bottom:1079.489550px;}
.y145{bottom:1085.104203px;}
.y19b{bottom:1085.439610px;}
.y18b{bottom:1085.442300px;}
.y18c{bottom:1091.395050px;}
.y115{bottom:1132.469100px;}
.ya9{bottom:1132.470417px;}
.y137{bottom:1132.470835px;}
.h17{height:18.798534px;}
.he{height:20.304648px;}
.hf{height:20.918250px;}
.h14{height:21.224146px;}
.h11{height:23.907150px;}
.ha{height:24.170179px;}
.h8{height:26.895600px;}
.h16{height:28.202047px;}
.h4{height:29.007888px;}
.hd{height:30.461558px;}
.h6{height:31.382100px;}
.h13{height:31.496955px;}
.h15{height:32.231489px;}
.h10{height:34.813834px;}
.hb{height:35.865900px;}
.h9{height:36.259717px;}
.hc{height:37.658460px;}
.h7{height:40.348350px;}
.h3{height:43.516637px;}
.h5{height:44.831700px;}
.h12{height:45.428728px;}
.h2{height:86.196848px;}
.h0{height:1186.299042px;}
.h1{height:1186.500000px;}
.w0{width:918.424530px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1{left:87.080250px;}
.x42{left:92.608132px;}
.x39{left:96.094500px;}
.xe{left:99.836250px;}
.x58{left:107.659892px;}
.x7{left:110.721300px;}
.x22{left:113.527500px;}
.x41{left:124.157550px;}
.x19{left:139.634700px;}
.x43{left:142.611000px;}
.x1a{left:151.200000px;}
.x44{left:154.601550px;}
.x57{left:156.387450px;}
.x59{left:163.701000px;}
.x45{left:165.656700px;}
.x46{left:186.066150px;}
.x20{left:194.910150px;}
.x2{left:205.029900px;}
.x21{left:208.091250px;}
.x52{left:216.850350px;}
.x3{left:221.357400px;}
.x3a{left:228.416079px;}
.x3b{left:249.080250px;}
.xf{left:250.185799px;}
.x8{left:254.607900px;}
.x3c{left:256.478700px;}
.x3d{left:259.625100px;}
.x9{left:262.941750px;}
.x3e{left:269.149500px;}
.x10{left:273.061350px;}
.x3f{left:280.204650px;}
.x11{left:282.245550px;}
.x5a{left:283.691250px;}
.x1b{left:288.028350px;}
.x40{left:298.233000px;}
.x47{left:303.930600px;}
.x48{left:319.152750px;}
.x53{left:346.025100px;}
.x4{left:363.543300px;}
.xa{left:365.414100px;}
.x5b{left:368.390400px;}
.x5{left:370.261350px;}
.x5c{left:372.302250px;}
.xb{left:373.662900px;}
.x4c{left:382.166850px;}
.x54{left:389.820450px;}
.x4d{left:393.222000px;}
.x55{left:397.473900px;}
.x56{left:406.403100px;}
.x49{left:411.930600px;}
.x4a{left:421.199850px;}
.x4b{left:432.255000px;}
.x12{left:472.649414px;}
.x6{left:478.601550px;}
.x15{left:486.084900px;}
.x5d{left:493.227942px;}
.x33{left:494.673900px;}
.x34{left:505.899150px;}
.x28{left:509.045550px;}
.x29{left:518.229750px;}
.x35{left:519.335250px;}
.x17{left:524.352600px;}
.x18{left:529.369950px;}
.x2a{left:531.666000px;}
.x36{left:532.771500px;}
.x51{left:534.047100px;}
.x2e{left:538.809300px;}
.x37{left:543.826650px;}
.x2b{left:545.102250px;}
.x2f{left:552.245550px;}
.x38{left:553.946400px;}
.x2c{left:556.157400px;}
.x30{left:565.681800px;}
.x2d{left:570.358950px;}
.x31{left:576.736800px;}
.x32{left:590.428200px;}
.x26{left:644.173050px;}
.x27{left:652.506900px;}
.x16{left:665.263853px;}
.x25{left:675.127350px;}
.x13{left:679.039200px;}
.x14{left:687.458100px;}
.xc{left:691.029750px;}
.xd{left:696.217200px;}
.x1f{left:697.580036px;}
.x1d{left:721.814100px;}
.x50{left:731.338500px;}
.x4e{left:732.784050px;}
.x1e{left:738.226650px;}
.x4f{left:741.628200px;}
.x23{left:760.081650px;}
.x24{left:767.395050px;}
.x1c{left:823.010850px;}
@media print{
.v2{vertical-align:-11.185160pt;}
.v4{vertical-align:-9.071519pt;}
.v1{vertical-align:-1.208792pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.304151pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003188pt;}
.lsa{letter-spacing:0.003542pt;}
.ls2{letter-spacing:0.003719pt;}
.ls0{letter-spacing:0.010627pt;}
.lsb{letter-spacing:0.033474pt;}
.ls12{letter-spacing:0.041866pt;}
.ls10{letter-spacing:0.051002pt;}
.lsc{letter-spacing:0.076512pt;}
.lsd{letter-spacing:0.210409pt;}
.ls14{letter-spacing:0.583940pt;}
.ls15{letter-spacing:0.669485pt;}
.ls17{letter-spacing:0.684362pt;}
.ls16{letter-spacing:3.942522pt;}
.ls3{letter-spacing:6.062557pt;}
.ls1{letter-spacing:6.367544pt;}
.ls13{letter-spacing:6.665093pt;}
.ls11{letter-spacing:8.263342pt;}
.ls8{letter-spacing:8.569392pt;}
.ls4{letter-spacing:11.825952pt;}
.ls5{letter-spacing:13.337072pt;}
.ls6{letter-spacing:15.978371pt;}
.ls7{letter-spacing:15.989529pt;}
.lsf{letter-spacing:16.000661pt;}
.ws185{word-spacing:-3.979715pt;}
.ws3{word-spacing:-0.053134pt;}
.ws13{word-spacing:-0.047820pt;}
.wsab{word-spacing:-0.042508pt;}
.ws1c{word-spacing:-0.037194pt;}
.ws65{word-spacing:0.000000pt;}
.wsd1{word-spacing:8.014677pt;}
.ws16a{word-spacing:8.643793pt;}
.ws29{word-spacing:8.684706pt;}
.ws2a{word-spacing:8.770251pt;}
.ws162{word-spacing:8.781409pt;}
.ws179{word-spacing:8.866954pt;}
.ws161{word-spacing:8.904148pt;}
.ws164{word-spacing:8.911587pt;}
.ws1b{word-spacing:9.123590pt;}
.ws18d{word-spacing:9.164503pt;}
.ws16e{word-spacing:9.473210pt;}
.ws1a{word-spacing:9.499245pt;}
.ws190{word-spacing:10.023675pt;}
.ws6e{word-spacing:10.171371pt;}
.wsf6{word-spacing:10.257995pt;}
.wsf9{word-spacing:10.429085pt;}
.ws178{word-spacing:10.682002pt;}
.ws6{word-spacing:10.920041pt;}
.ws15{word-spacing:11.065610pt;}
.wsf{word-spacing:11.122994pt;}
.ws89{word-spacing:11.189942pt;}
.ws193{word-spacing:11.195274pt;}
.ws131{word-spacing:11.247327pt;}
.ws166{word-spacing:11.269661pt;}
.ws16{word-spacing:11.271237pt;}
.wse{word-spacing:11.328621pt;}
.ws7{word-spacing:11.336609pt;}
.ws97{word-spacing:11.366877pt;}
.ws8{word-spacing:11.370084pt;}
.ws4d{word-spacing:11.376441pt;}
.ws136{word-spacing:11.390788pt;}
.wsa2{word-spacing:11.405134pt;}
.ws4e{word-spacing:11.424262pt;}
.ws191{word-spacing:11.451909pt;}
.wsd7{word-spacing:11.505556pt;}
.ws10e{word-spacing:11.506843pt;}
.ws75{word-spacing:11.515120pt;}
.ws74{word-spacing:11.644235pt;}
.wsd8{word-spacing:11.663363pt;}
.ws12c{word-spacing:11.682491pt;}
.ws12{word-spacing:11.720747pt;}
.ws10f{word-spacing:11.778893pt;}
.ws4f{word-spacing:11.782914pt;}
.ws3e{word-spacing:11.797260pt;}
.ws40{word-spacing:11.816388pt;}
.ws18f{word-spacing:11.838723pt;}
.ws158{word-spacing:11.876661pt;}
.ws151{word-spacing:11.955067pt;}
.ws80{word-spacing:11.983759pt;}
.wsf7{word-spacing:12.006094pt;}
.wsf8{word-spacing:12.065604pt;}
.ws3b{word-spacing:12.098527pt;}
.ws12d{word-spacing:12.112874pt;}
.ws17e{word-spacing:12.132552pt;}
.ws15f{word-spacing:12.139991pt;}
.ws192{word-spacing:12.143710pt;}
.ws10{word-spacing:12.165476pt;}
.ws18c{word-spacing:12.188343pt;}
.ws115{word-spacing:12.189386pt;}
.ws177{word-spacing:12.192062pt;}
.ws2d{word-spacing:12.195781pt;}
.ws16f{word-spacing:12.199501pt;}
.ws18e{word-spacing:12.203220pt;}
.ws24{word-spacing:12.236694pt;}
.ws194{word-spacing:12.244133pt;}
.ws171{word-spacing:12.273888pt;}
.ws2e{word-spacing:12.277607pt;}
.ws173{word-spacing:12.281327pt;}
.ws2f{word-spacing:12.307362pt;}
.wsde{word-spacing:12.308937pt;}
.wsce{word-spacing:12.313719pt;}
.ws195{word-spacing:12.329678pt;}
.ws90{word-spacing:12.332847pt;}
.ws2b{word-spacing:12.337117pt;}
.ws147{word-spacing:12.363153pt;}
.ws28{word-spacing:12.370591pt;}
.ws1f{word-spacing:12.396627pt;}
.ws17b{word-spacing:12.400346pt;}
.ws21{word-spacing:12.418943pt;}
.ws198{word-spacing:12.422662pt;}
.ws181{word-spacing:12.426382pt;}
.wsb{word-spacing:12.433820pt;}
.ws189{word-spacing:12.444979pt;}
.ws17f{word-spacing:12.471014pt;}
.ws141{word-spacing:12.482172pt;}
.ws14e{word-spacing:12.485872pt;}
.ws165{word-spacing:12.489611pt;}
.ws3a{word-spacing:12.495436pt;}
.ws22{word-spacing:12.497050pt;}
.ws119{word-spacing:12.509782pt;}
.ws23{word-spacing:12.515646pt;}
.ws2c{word-spacing:12.556559pt;}
.wsf0{word-spacing:12.571437pt;}
.ws168{word-spacing:12.575156pt;}
.ws112{word-spacing:12.576730pt;}
.ws20{word-spacing:12.582595pt;}
.ws1d{word-spacing:12.586314pt;}
.ws18{word-spacing:12.629332pt;}
.ws17{word-spacing:12.634114pt;}
.ws25{word-spacing:12.634666pt;}
.ws1e{word-spacing:12.638385pt;}
.ws61{word-spacing:12.638896pt;}
.wseb{word-spacing:12.643679pt;}
.ws15b{word-spacing:12.654552pt;}
.wsdd{word-spacing:12.681935pt;}
.wsf1{word-spacing:12.716492pt;}
.ws140{word-spacing:12.738808pt;}
.wsb5{word-spacing:12.748883pt;}
.wsc4{word-spacing:12.768011pt;}
.ws187{word-spacing:12.794598pt;}
.ws12e{word-spacing:12.796703pt;}
.wse6{word-spacing:12.858870pt;}
.ws13a{word-spacing:13.007366pt;}
.ws13b{word-spacing:13.020119pt;}
.ws3c{word-spacing:13.026241pt;}
.wsc6{word-spacing:13.035805pt;}
.ws6b{word-spacing:13.069279pt;}
.wsbd{word-spacing:13.097971pt;}
.ws105{word-spacing:13.112317pt;}
.ws155{word-spacing:13.139140pt;}
.ws68{word-spacing:13.193612pt;}
.wsbc{word-spacing:13.207958pt;}
.ws180{word-spacing:13.226044pt;}
.ws66{word-spacing:13.246214pt;}
.ws10a{word-spacing:13.250996pt;}
.ws14{word-spacing:13.265342pt;}
.ws197{word-spacing:13.292993pt;}
.ws142{word-spacing:13.354049pt;}
.ws104{word-spacing:13.404021pt;}
.wsb3{word-spacing:13.451841pt;}
.ws67{word-spacing:13.485315pt;}
.ws11f{word-spacing:13.494879pt;}
.ws107{word-spacing:13.509225pt;}
.wsea{word-spacing:13.518789pt;}
.wsac{word-spacing:13.547215pt;}
.ws15d{word-spacing:13.564218pt;}
.ws176{word-spacing:13.653771pt;}
.ws14d{word-spacing:13.662250pt;}
.ws12f{word-spacing:13.681378pt;}
.ws118{word-spacing:13.705288pt;}
.ws15a{word-spacing:13.708744pt;}
.wsa8{word-spacing:13.729998pt;}
.ws10d{word-spacing:13.786583pt;}
.wsc9{word-spacing:13.824839pt;}
.ws41{word-spacing:13.834403pt;}
.ws12b{word-spacing:13.843967pt;}
.wsb6{word-spacing:13.887005pt;}
.ws169{word-spacing:13.891810pt;}
.ws84{word-spacing:13.925262pt;}
.ws110{word-spacing:13.925533pt;}
.wsa9{word-spacing:13.955289pt;}
.ws125{word-spacing:13.996992pt;}
.wsaa{word-spacing:13.997797pt;}
.ws11c{word-spacing:14.130889pt;}
.wsa{word-spacing:14.144726pt;}
.ws9{word-spacing:14.271184pt;}
.ws51{word-spacing:14.307824pt;}
.ws6f{word-spacing:14.326952pt;}
.ws18b{word-spacing:14.367888pt;}
.ws93{word-spacing:14.393900pt;}
.wsdb{word-spacing:14.413028pt;}
.ws71{word-spacing:14.436939pt;}
.ws18a{word-spacing:14.512943pt;}
.ws157{word-spacing:14.516391pt;}
.ws88{word-spacing:14.527797pt;}
.ws77{word-spacing:14.532579pt;}
.ws196{word-spacing:14.613365pt;}
.ws5e{word-spacing:14.666476pt;}
.wsfb{word-spacing:14.671258pt;}
.ws5f{word-spacing:14.714296pt;}
.wsa4{word-spacing:14.728642pt;}
.ws99{word-spacing:14.805155pt;}
.ws32{word-spacing:14.833847pt;}
.ws33{word-spacing:14.848193pt;}
.wse1{word-spacing:14.919923pt;}
.ws83{word-spacing:14.996436pt;}
.ws13c{word-spacing:15.013731pt;}
.ws133{word-spacing:15.058602pt;}
.ws15e{word-spacing:15.141515pt;}
.ws106{word-spacing:15.144678pt;}
.ws73{word-spacing:15.173371pt;}
.ws92{word-spacing:15.307267pt;}
.ws156{word-spacing:15.315536pt;}
.ws56{word-spacing:15.335960pt;}
.ws8e{word-spacing:15.350306pt;}
.ws96{word-spacing:15.369434pt;}
.wsd2{word-spacing:15.402908pt;}
.ws11b{word-spacing:15.407690pt;}
.wsd6{word-spacing:15.517677pt;}
.wsa3{word-spacing:15.637227pt;}
.wsed{word-spacing:15.642009pt;}
.ws7a{word-spacing:15.651573pt;}
.wsda{word-spacing:15.670701pt;}
.wsef{word-spacing:15.685047pt;}
.ws19{word-spacing:15.704176pt;}
.wsa1{word-spacing:15.723304pt;}
.ws85{word-spacing:15.728086pt;}
.ws116{word-spacing:15.737650pt;}
.ws98{word-spacing:15.756778pt;}
.ws132{word-spacing:15.771124pt;}
.ws91{word-spacing:15.795034pt;}
.wse2{word-spacing:15.818944pt;}
.wsc2{word-spacing:15.871547pt;}
.wsee{word-spacing:15.876329pt;}
.ws57{word-spacing:15.881111pt;}
.ws44{word-spacing:15.885893pt;}
.ws37{word-spacing:15.905021pt;}
.wsfc{word-spacing:15.909803pt;}
.wsb0{word-spacing:15.914585pt;}
.wsa7{word-spacing:15.919367pt;}
.ws55{word-spacing:15.924149pt;}
.wsb9{word-spacing:15.938495pt;}
.wsd0{word-spacing:15.948059pt;}
.ws8c{word-spacing:15.957623pt;}
.ws45{word-spacing:15.971969pt;}
.ws13f{word-spacing:15.986315pt;}
.wsd4{word-spacing:16.015007pt;}
.ws60{word-spacing:16.019789pt;}
.ws14f{word-spacing:16.029353pt;}
.wsfa{word-spacing:16.048481pt;}
.ws11{word-spacing:16.120212pt;}
.ws47{word-spacing:16.139340pt;}
.wsa5{word-spacing:16.153686pt;}
.ws69{word-spacing:16.177596pt;}
.ws101{word-spacing:16.215852pt;}
.ws9f{word-spacing:16.316275pt;}
.ws174{word-spacing:16.327990pt;}
.ws167{word-spacing:16.331710pt;}
.ws27{word-spacing:16.335429pt;}
.wscc{word-spacing:16.344967pt;}
.ws7f{word-spacing:16.364095pt;}
.ws26{word-spacing:16.447010pt;}
.wsc7{word-spacing:16.488428pt;}
.ws70{word-spacing:16.526684pt;}
.wsc5{word-spacing:16.550594pt;}
.wsc1{word-spacing:16.622325pt;}
.ws17c{word-spacing:16.666452pt;}
.ws13e{word-spacing:16.675784pt;}
.ws14a{word-spacing:16.756221pt;}
.ws114{word-spacing:16.799260pt;}
.ws129{word-spacing:16.823170pt;}
.wse9{word-spacing:16.847080pt;}
.ws5b{word-spacing:17.000105pt;}
.ws35{word-spacing:17.172258pt;}
.wsb2{word-spacing:17.258334pt;}
.wsb1{word-spacing:17.330065pt;}
.ws59{word-spacing:17.425705pt;}
.ws6c{word-spacing:17.454397pt;}
.wse3{word-spacing:17.540474pt;}
.ws2{word-spacing:17.555430pt;}
.ws5{word-spacing:17.651071pt;}
.wsa0{word-spacing:17.741319pt;}
.wsc3{word-spacing:17.741398pt;}
.ws108{word-spacing:17.773278pt;}
.wse8{word-spacing:17.774793pt;}
.wsad{word-spacing:17.783905pt;}
.ws39{word-spacing:17.789139pt;}
.wsd{word-spacing:17.798703pt;}
.ws58{word-spacing:17.805159pt;}
.ws153{word-spacing:17.841741pt;}
.ws13d{word-spacing:17.866000pt;}
.ws4{word-spacing:17.868919pt;}
.wsc{word-spacing:18.023459pt;}
.ws150{word-spacing:18.076061pt;}
.ws94{word-spacing:18.133445pt;}
.ws79{word-spacing:18.343854pt;}
.wscf{word-spacing:18.463405pt;}
.wsc8{word-spacing:18.482533pt;}
.ws49{word-spacing:18.606866pt;}
.wse5{word-spacing:18.640340pt;}
.ws9d{word-spacing:18.659468pt;}
.ws175{word-spacing:18.704661pt;}
.ws76{word-spacing:18.755109pt;}
.ws16b{word-spacing:18.790207pt;}
.ws199{word-spacing:18.793926pt;}
.ws170{word-spacing:18.823681pt;}
.wscd{word-spacing:18.922480pt;}
.ws113{word-spacing:18.965518pt;}
.ws10c{word-spacing:19.065940pt;}
.ws11a{word-spacing:19.089850pt;}
.wsfd{word-spacing:19.142453pt;}
.ws103{word-spacing:19.195055pt;}
.ws172{word-spacing:19.221652pt;}
.ws72{word-spacing:19.247657pt;}
.ws5d{word-spacing:19.257221pt;}
.wsc0{word-spacing:19.266785pt;}
.ws7c{word-spacing:19.338516pt;}
.ws4c{word-spacing:19.606309pt;}
.ws109{word-spacing:19.673258pt;}
.ws36{word-spacing:19.869321pt;}
.ws52{word-spacing:20.041474pt;}
.wsb8{word-spacing:20.357088pt;}
.wsae{word-spacing:20.452728pt;}
.wsb7{word-spacing:20.481420pt;}
.ws188{word-spacing:20.653606pt;}
.wse4{word-spacing:20.658355pt;}
.wsaf{word-spacing:20.706175pt;}
.wsdf{word-spacing:20.715740pt;}
.ws163{word-spacing:20.731713pt;}
.ws182{word-spacing:20.873048pt;}
.ws64{word-spacing:20.943560pt;}
.ws87{word-spacing:20.959623pt;}
.wsdc{word-spacing:20.964405pt;}
.ws186{word-spacing:20.977190pt;}
.wscb{word-spacing:21.366095pt;}
.ws102{word-spacing:21.370877pt;}
.ws130{word-spacing:21.385223pt;}
.ws82{word-spacing:21.447390pt;}
.ws81{word-spacing:21.476082pt;}
.ws183{word-spacing:21.512778pt;}
.ws8f{word-spacing:21.686491pt;}
.ws48{word-spacing:21.705619pt;}
.wsd9{word-spacing:21.791696pt;}
.ws16c{word-spacing:21.817766pt;}
.wse0{word-spacing:21.834734pt;}
.ws16d{word-spacing:21.847521pt;}
.ws8a{word-spacing:21.911246pt;}
.ws95{word-spacing:21.925592pt;}
.ws9c{word-spacing:21.944720pt;}
.ws126{word-spacing:21.959066pt;}
.ws5c{word-spacing:21.992541pt;}
.ws17d{word-spacing:22.000014pt;}
.ws8b{word-spacing:22.131219pt;}
.ws127{word-spacing:22.183822pt;}
.ws50{word-spacing:22.236424pt;}
.ws31{word-spacing:22.556820pt;}
.ws154{word-spacing:22.834177pt;}
.wsec{word-spacing:22.896344pt;}
.ws15c{word-spacing:22.937173pt;}
.ws138{word-spacing:23.101971pt;}
.ws4b{word-spacing:23.111535pt;}
.ws14c{word-spacing:23.173701pt;}
.ws137{word-spacing:23.197611pt;}
.ws19d{word-spacing:23.424529pt;}
.ws6d{word-spacing:23.460623pt;}
.ws7e{word-spacing:23.532353pt;}
.ws30{word-spacing:23.584956pt;}
.ws7d{word-spacing:23.604084pt;}
.wsba{word-spacing:23.766673pt;}
.wse7{word-spacing:23.800147pt;}
.ws34{word-spacing:23.814493pt;}
.wsca{word-spacing:24.039248pt;}
.ws123{word-spacing:24.082286pt;}
.ws100{word-spacing:24.273567pt;}
.ws19c{word-spacing:24.335772pt;}
.wsff{word-spacing:24.536579pt;}
.wsfe{word-spacing:24.565271pt;}
.ws19b{word-spacing:24.570092pt;}
.ws11e{word-spacing:24.981307pt;}
.ws4a{word-spacing:25.292139pt;}
.wsa6{word-spacing:25.421254pt;}
.ws17a{word-spacing:25.436703pt;}
.ws124{word-spacing:25.555151pt;}
.ws19a{word-spacing:25.578039pt;}
.ws54{word-spacing:25.593407pt;}
.ws86{word-spacing:25.894674pt;}
.wsb4{word-spacing:25.918585pt;}
.ws12a{word-spacing:26.191160pt;}
.ws3d{word-spacing:26.200724pt;}
.ws9e{word-spacing:26.219852pt;}
.ws42{word-spacing:26.325057pt;}
.ws160{word-spacing:26.489282pt;}
.ws184{word-spacing:26.630618pt;}
.ws9b{word-spacing:26.726747pt;}
.ws9a{word-spacing:26.731529pt;}
.wsd5{word-spacing:26.769785pt;}
.ws63{word-spacing:26.927592pt;}
.ws111{word-spacing:27.061489pt;}
.ws53{word-spacing:27.066271pt;}
.ws152{word-spacing:27.075835pt;}
.ws3f{word-spacing:27.214514pt;}
.ws5a{word-spacing:27.721409pt;}
.ws10b{word-spacing:27.764447pt;}
.ws148{word-spacing:27.893562pt;}
.ws149{word-spacing:27.927036pt;}
.ws117{word-spacing:27.931818pt;}
.ws6a{word-spacing:27.955728pt;}
.ws134{word-spacing:28.366982pt;}
.ws14b{word-spacing:28.424367pt;}
.ws159{word-spacing:28.437674pt;}
.wsbf{word-spacing:28.520007pt;}
.wsbe{word-spacing:28.653904pt;}
.ws121{word-spacing:28.806929pt;}
.ws139{word-spacing:29.024280pt;}
.ws38{word-spacing:29.567271pt;}
.ws128{word-spacing:30.021563pt;}
.wsd3{word-spacing:30.031127pt;}
.ws7b{word-spacing:30.155460pt;}
.ws135{word-spacing:30.466292pt;}
.ws46{word-spacing:30.896674pt;}
.ws8d{word-spacing:31.064045pt;}
.ws43{word-spacing:31.097519pt;}
.ws0{word-spacing:34.027099pt;}
.ws78{word-spacing:34.392336pt;}
.ws62{word-spacing:35.291357pt;}
.ws1{word-spacing:35.727391pt;}
.ws122{word-spacing:35.999097pt;}
.ws11d{word-spacing:36.501210pt;}
.ws120{word-spacing:36.826387pt;}
.wsbb{word-spacing:38.002766pt;}
.wsf5{word-spacing:131.040492pt;}
.wsf3{word-spacing:170.949224pt;}
.wsf4{word-spacing:170.956663pt;}
.wsf2{word-spacing:189.925399pt;}
.ws146{word-spacing:209.656604pt;}
.ws144{word-spacing:249.561617pt;}
.ws145{word-spacing:249.569056pt;}
.ws143{word-spacing:268.541511pt;}
._38{margin-left:-20.259354pt;}
._33{margin-left:-17.521688pt;}
._36{margin-left:-16.264761pt;}
._35{margin-left:-15.368396pt;}
._39{margin-left:-13.051234pt;}
._12{margin-left:-7.354757pt;}
._37{margin-left:-3.816063pt;}
._18{margin-left:-0.947922pt;}
._1{width:1.296473pt;}
._34{width:3.685420pt;}
._7{width:10.243117pt;}
._4{width:11.194724pt;}
._2{width:12.439124pt;}
._17{width:13.337072pt;}
._6{width:14.303042pt;}
._b{width:15.928931pt;}
._5{width:17.114873pt;}
._e{width:18.090407pt;}
._3{width:19.037248pt;}
._13{width:19.988871pt;}
._a{width:21.098302pt;}
._15{width:22.465961pt;}
._8{width:23.513225pt;}
._9{width:24.799590pt;}
._d{width:26.755439pt;}
._c{width:28.204393pt;}
._1a{width:29.643783pt;}
._14{width:31.264890pt;}
._16{width:32.197386pt;}
._0{width:35.068528pt;}
._f{width:36.400787pt;}
._2a{width:37.357192pt;}
._19{width:38.461840pt;}
._1b{width:83.838094pt;}
._1d{width:99.998713pt;}
._2b{width:162.450487pt;}
._29{width:203.928789pt;}
._23{width:222.901245pt;}
._20{width:241.869981pt;}
._26{width:249.591372pt;}
._28{width:256.237868pt;}
._22{width:275.210324pt;}
._1f{width:294.179060pt;}
._25{width:301.907890pt;}
._2c{width:303.655989pt;}
._2d{width:329.516699pt;}
._1c{width:369.975897pt;}
._11{width:383.185962pt;}
._27{width:465.474185pt;}
._21{width:484.442921pt;}
._1e{width:503.419095pt;}
._24{width:511.155364pt;}
._31{width:517.478276pt;}
._30{width:536.450732pt;}
._2e{width:555.423187pt;}
._32{width:562.754045pt;}
._2f{width:581.726501pt;}
._10{width:760.022079pt;}
.fs7{font-size:24.792000pt;}
.fsa{font-size:26.166307pt;}
.fs8{font-size:28.334400pt;}
.fs5{font-size:31.876267pt;}
.fs2{font-size:35.418667pt;}
.fs3{font-size:37.193600pt;}
.fs9{font-size:38.831197pt;}
.fs6{font-size:42.507733pt;}
.fs4{font-size:47.820267pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:40.966580pt;}
.yaa{bottom:40.967751pt;}
.y138{bottom:40.968122pt;}
.y5f{bottom:40.970133pt;}
.y84{bottom:79.447160pt;}
.y18a{bottom:80.200840pt;}
.y40{bottom:84.888677pt;}
.y5e{bottom:85.417641pt;}
.y133{bottom:89.197061pt;}
.ycd{bottom:90.784474pt;}
.yfa{bottom:90.784563pt;}
.y189{bottom:91.463992pt;}
.y83{bottom:93.431001pt;}
.y3f{bottom:99.099664pt;}
.y12b{bottom:99.401546pt;}
.y5d{bottom:99.703946pt;}
.ya6{bottom:100.611347pt;}
.y132{bottom:103.408049pt;}
.ycc{bottom:104.995461pt;}
.yf9{bottom:104.995551pt;}
.y82{bottom:107.414843pt;}
.y129{bottom:111.647200pt;}
.y3e{bottom:113.385969pt;}
.y12a{bottom:113.612533pt;}
.y128{bottom:113.612691pt;}
.y5c{bottom:113.914933pt;}
.y5a{bottom:113.915086pt;}
.y188{bottom:114.670008pt;}
.ya5{bottom:114.822335pt;}
.y131{bottom:117.619037pt;}
.y5b{bottom:119.206267pt;}
.ycb{bottom:119.206449pt;}
.yf8{bottom:119.206538pt;}
.y81{bottom:121.323367pt;}
.y3d{bottom:127.596957pt;}
.y127{bottom:127.823679pt;}
.y59{bottom:128.126074pt;}
.ya4{bottom:129.033323pt;}
.y187{bottom:131.300197pt;}
.y130{bottom:131.830025pt;}
.yca{bottom:133.417437pt;}
.yf7{bottom:133.417526pt;}
.y80{bottom:135.307209pt;}
.y125{bottom:142.034667pt;}
.y3c{bottom:142.035091pt;}
.y57{bottom:142.337061pt;}
.ya3{bottom:143.244310pt;}
.y58{bottom:145.133351pt;}
.y12f{bottom:146.041012pt;}
.y126{bottom:147.326000pt;}
.yc9{bottom:147.628425pt;}
.yf6{bottom:147.628514pt;}
.y186{bottom:147.930385pt;}
.y7f{bottom:149.215733pt;}
.y7d{bottom:149.219311pt;}
.y7e{bottom:154.582667pt;}
.y124{bottom:156.245600pt;}
.y122{bottom:156.245679pt;}
.y3b{bottom:156.246078pt;}
.y56{bottom:156.548049pt;}
.ya2{bottom:157.455298pt;}
.y12e{bottom:160.252000pt;}
.y123{bottom:161.536933pt;}
.yc8{bottom:161.839412pt;}
.yf5{bottom:161.839502pt;}
.y7c{bottom:163.203153pt;}
.y185{bottom:164.484327pt;}
.y121{bottom:170.456667pt;}
.y11f{bottom:170.456691pt;}
.y3a{bottom:170.457066pt;}
.y55{bottom:170.759037pt;}
.ya1{bottom:171.666286pt;}
.y120{bottom:175.748000pt;}
.yc7{bottom:176.050400pt;}
.yc5{bottom:176.050425pt;}
.yf4{bottom:176.050489pt;}
.y7b{bottom:177.186994pt;}
.y184{bottom:181.114515pt;}
.yc6{bottom:181.341733pt;}
.y12d{bottom:182.702400pt;}
.y11d{bottom:184.667679pt;}
.y39{bottom:184.668054pt;}
.y54{bottom:184.970025pt;}
.ya0{bottom:185.877274pt;}
.y11e{bottom:187.540481pt;}
.yc4{bottom:190.261412pt;}
.yf3{bottom:190.261477pt;}
.y7a{bottom:191.095519pt;}
.y183{bottom:197.744704pt;}
.y11c{bottom:198.878667pt;}
.y11a{bottom:198.878691pt;}
.y38{bottom:198.879042pt;}
.y53{bottom:199.181012pt;}
.y9f{bottom:200.088261pt;}
.y11b{bottom:204.245600pt;}
.yc3{bottom:204.472400pt;}
.yf2{bottom:204.472465pt;}
.y79{bottom:205.608970pt;}
.y119{bottom:213.089679pt;}
.y37{bottom:213.090029pt;}
.y52{bottom:213.392000pt;}
.y182{bottom:214.298645pt;}
.y9e{bottom:214.299249pt;}
.yf1{bottom:218.683452pt;}
.yc2{bottom:218.985733pt;}
.y78{bottom:219.517494pt;}
.y117{bottom:227.300667pt;}
.y36{bottom:227.301017pt;}
.y12c{bottom:227.301631pt;}
.y9d{bottom:228.510237pt;}
.y181{bottom:230.928833pt;}
.y118{bottom:232.667600pt;}
.yf0{bottom:232.894440pt;}
.y77{bottom:233.501336pt;}
.y51{bottom:235.842400pt;}
.y35{bottom:241.512005pt;}
.y9c{bottom:242.721225pt;}
.yef{bottom:247.407891pt;}
.y76{bottom:247.409860pt;}
.y180{bottom:247.559022pt;}
.yc1{bottom:249.373584pt;}
.y34{bottom:255.722993pt;}
.y9b{bottom:256.932212pt;}
.y136{bottom:258.216646pt;}
.y75{bottom:261.393702pt;}
.yee{bottom:261.618879pt;}
.yc0{bottom:263.584572pt;}
.y17f{bottom:264.112963pt;}
.y50{bottom:266.230098pt;}
.y33{bottom:269.933980pt;}
.y135{bottom:270.160256pt;}
.y9a{bottom:271.143200pt;}
.y98{bottom:271.143384pt;}
.y74{bottom:275.377543pt;}
.yed{bottom:275.829867pt;}
.yeb{bottom:275.829891pt;}
.y99{bottom:276.510133pt;}
.ybf{bottom:277.795559pt;}
.y4f{bottom:280.441086pt;}
.y17e{bottom:280.743152pt;}
.yec{bottom:281.121200pt;}
.y134{bottom:282.103867pt;}
.y32{bottom:284.144968pt;}
.y97{bottom:285.354372pt;}
.y73{bottom:289.286068pt;}
.yea{bottom:290.040879pt;}
.ybe{bottom:292.006547pt;}
.y4e{bottom:294.652074pt;}
.y17d{bottom:297.373340pt;}
.y31{bottom:298.355956pt;}
.y96{bottom:299.867823pt;}
.y72{bottom:303.269909pt;}
.ye9{bottom:304.251867pt;}
.ye7{bottom:304.251891pt;}
.ybd{bottom:306.217535pt;}
.y4d{bottom:308.863061pt;}
.ye8{bottom:309.543200pt;}
.y30{bottom:312.566944pt;}
.y17c{bottom:313.927282pt;}
.y95{bottom:314.078810pt;}
.y71{bottom:317.178434pt;}
.ye6{bottom:318.462879pt;}
.ybc{bottom:320.428523pt;}
.y4c{bottom:323.074049pt;}
.y2f{bottom:326.777931pt;}
.y94{bottom:328.289798pt;}
.y17b{bottom:330.557470pt;}
.y70{bottom:331.162275pt;}
.ye5{bottom:332.673867pt;}
.ye3{bottom:332.673970pt;}
.ybb{bottom:334.639510pt;}
.y4b{bottom:337.285037pt;}
.ye4{bottom:337.965200pt;}
.y2e{bottom:341.291382pt;}
.y93{bottom:342.500786pt;}
.y6f{bottom:345.070800pt;}
.y6d{bottom:345.073826pt;}
.ye2{bottom:346.884958pt;}
.y17a{bottom:347.187658pt;}
.yba{bottom:348.850498pt;}
.y6e{bottom:350.437733pt;}
.y4a{bottom:351.496025pt;}
.y2d{bottom:355.502370pt;}
.y92{bottom:356.711774pt;}
.y1f2{bottom:356.786714pt;}
.y1d0{bottom:356.787644pt;}
.y6c{bottom:359.587277pt;}
.ye1{bottom:361.095946pt;}
.yb9{bottom:363.061486pt;}
.y179{bottom:363.741600pt;}
.y49{bottom:365.707012pt;}
.y1cf{bottom:367.370153pt;}
.y1f1{bottom:367.596104pt;}
.y2c{bottom:369.713358pt;}
.y91{bottom:370.922761pt;}
.ydf{bottom:373.341733pt;}
.y6b{bottom:373.495802pt;}
.ye0{bottom:375.306933pt;}
.yde{bottom:375.307037pt;}
.yb8{bottom:377.272474pt;}
.y1ce{bottom:378.028909pt;}
.y1f0{bottom:378.405494pt;}
.y48{bottom:379.918000pt;}
.y46{bottom:379.920594pt;}
.y177{bottom:383.697467pt;}
.y2b{bottom:383.924346pt;}
.y90{bottom:385.133749pt;}
.y47{bottom:385.284933pt;}
.y6a{bottom:387.479643pt;}
.y178{bottom:387.855067pt;}
.y1cd{bottom:388.686735pt;}
.y1ef{bottom:389.517082pt;}
.ydd{bottom:389.518025pt;}
.yb7{bottom:391.483461pt;}
.y45{bottom:394.131582pt;}
.y29{bottom:396.170000pt;}
.y2a{bottom:398.135333pt;}
.y28{bottom:398.135358pt;}
.y1cc{bottom:399.269244pt;}
.y8f{bottom:399.647200pt;}
.y1ee{bottom:400.326472pt;}
.y176{bottom:400.327467pt;}
.y69{bottom:401.463485pt;}
.ydc{bottom:403.729012pt;}
.yb6{bottom:405.694449pt;}
.y44{bottom:408.342569pt;}
.y1cb{bottom:409.928000pt;}
.y1ed{bottom:411.135862pt;}
.y27{bottom:412.346346pt;}
.y8d{bottom:413.861458pt;}
.y68{bottom:415.372009pt;}
.ydb{bottom:417.940000pt;}
.yd9{bottom:417.940095pt;}
.y8e{bottom:419.149467pt;}
.yb5{bottom:419.905437pt;}
.y1ca{bottom:420.510509pt;}
.y1ec{bottom:422.323697pt;}
.y43{bottom:422.628874pt;}
.yda{bottom:423.231333pt;}
.y26{bottom:426.557333pt;}
.y8c{bottom:428.072445pt;}
.y67{bottom:429.355851pt;}
.y1c9{bottom:431.169265pt;}
.yd8{bottom:432.151082pt;}
.y1eb{bottom:433.057770pt;}
.yb4{bottom:434.116425pt;}
.y42{bottom:436.839862pt;}
.y1c8{bottom:441.751774pt;}
.y8b{bottom:442.283433pt;}
.y66{bottom:443.264376pt;}
.y175{bottom:444.094400pt;}
.y1ea{bottom:444.245605pt;}
.yd7{bottom:446.664533pt;}
.yd5{bottom:446.666485pt;}
.yb3{bottom:448.327412pt;}
.y25{bottom:449.007733pt;}
.y41{bottom:451.050849pt;}
.yd6{bottom:451.955867pt;}
.y1c7{bottom:452.410530pt;}
.y1e9{bottom:455.054995pt;}
.y8a{bottom:456.494421pt;}
.y65{bottom:457.248217pt;}
.yd4{bottom:460.877472pt;}
.yb2{bottom:462.538400pt;}
.yb0{bottom:462.538920pt;}
.y1c6{bottom:463.068356pt;}
.y1e8{bottom:465.864385pt;}
.yb1{bottom:467.905467pt;}
.y89{bottom:470.705409pt;}
.y64{bottom:471.232058pt;}
.y1c5{bottom:473.650865pt;}
.yd3{bottom:475.088460pt;}
.yaf{bottom:476.825225pt;}
.y1e7{bottom:476.975973pt;}
.y16b{bottom:480.529205pt;}
.y144{bottom:483.854922pt;}
.y1c4{bottom:484.308691pt;}
.y88{bottom:484.916396pt;}
.y63{bottom:485.670192pt;}
.y1e6{bottom:487.785363pt;}
.yd2{bottom:489.299448pt;}
.yae{bottom:491.036212pt;}
.y24{bottom:493.152864pt;}
.y1c2{bottom:493.379333pt;}
.y16a{bottom:494.740193pt;}
.y1c3{bottom:494.891200pt;}
.y1c1{bottom:494.892946pt;}
.y143{bottom:498.065910pt;}
.y1e5{bottom:498.973198pt;}
.y87{bottom:499.127384pt;}
.y62{bottom:499.654034pt;}
.yd1{bottom:503.510436pt;}
.yad{bottom:505.247200pt;}
.y1c0{bottom:505.550772pt;}
.y169{bottom:508.951180pt;}
.y23{bottom:509.706806pt;}
.y1e4{bottom:509.782588pt;}
.y142{bottom:512.276897pt;}
.y86{bottom:513.338372pt;}
.y61{bottom:513.562559pt;}
.y1bf{bottom:516.208598pt;}
.yd0{bottom:517.721423pt;}
.yac{bottom:519.684327pt;}
.y1e3{bottom:520.894176pt;}
.y168{bottom:523.162168pt;}
.y22{bottom:526.336994pt;}
.y141{bottom:526.487885pt;}
.y1be{bottom:526.791107pt;}
.y60{bottom:527.546400pt;}
.y85{bottom:527.549360pt;}
.y1e2{bottom:531.703566pt;}
.ycf{bottom:531.932411pt;}
.y167{bottom:537.373156pt;}
.y1bd{bottom:537.448933pt;}
.y140{bottom:540.698873pt;}
.y1e1{bottom:542.512956pt;}
.y21{bottom:542.967182pt;}
.yab{bottom:544.100667pt;}
.yce{bottom:546.143399pt;}
.y1bc{bottom:548.031442pt;}
.y166{bottom:551.584144pt;}
.y20{bottom:553.549691pt;}
.y1e0{bottom:553.700790pt;}
.y13f{bottom:554.909861pt;}
.ya8{bottom:558.235856pt;}
.y1bb{bottom:558.689268pt;}
.y1df{bottom:564.510180pt;}
.y165{bottom:565.795131pt;}
.y13e{bottom:569.120848pt;}
.y1ba{bottom:569.271777pt;}
.ya7{bottom:570.179467pt;}
.y1f{bottom:570.179880pt;}
.y1de{bottom:575.621768pt;}
.y114{bottom:576.302246pt;}
.y1b8{bottom:578.418800pt;}
.y1b9{bottom:579.930533pt;}
.y1b7{bottom:579.932057pt;}
.y164{bottom:580.233265pt;}
.y1e{bottom:580.762389pt;}
.y13d{bottom:583.331836pt;}
.y1dd{bottom:586.431158pt;}
.y113{bottom:587.565398pt;}
.y1b6{bottom:590.590813pt;}
.y163{bottom:594.444253pt;}
.y1d{bottom:597.392577pt;}
.y13c{bottom:597.542824pt;}
.y1dc{bottom:597.618993pt;}
.y110{bottom:598.902459pt;}
.y112{bottom:598.903867pt;}
.y1b5{bottom:601.173322pt;}
.y111{bottom:602.985733pt;}
.y1db{bottom:608.353066pt;}
.y162{bottom:608.730558pt;}
.y10f{bottom:610.165611pt;}
.y1b4{bottom:611.831148pt;}
.y13b{bottom:611.980958pt;}
.y1b{bottom:614.022766pt;}
.y1c{bottom:614.324964pt;}
.y1da{bottom:619.540901pt;}
.y1b3{bottom:622.413657pt;}
.y161{bottom:622.941546pt;}
.y13a{bottom:626.191946pt;}
.y1d9{bottom:630.350291pt;}
.y1a{bottom:630.576707pt;}
.y1b2{bottom:633.072413pt;}
.y10e{bottom:633.447875pt;}
.y15e{bottom:637.152497pt;}
.y160{bottom:637.152533pt;}
.y139{bottom:640.402933pt;}
.y1d8{bottom:641.159681pt;}
.y19{bottom:641.234533pt;}
.y15f{bottom:642.443867pt;}
.y1b1{bottom:643.730239pt;}
.y10d{bottom:650.001817pt;}
.y15d{bottom:651.363485pt;}
.y1d7{bottom:652.271269pt;}
.y1b0{bottom:654.312748pt;}
.y1d6{bottom:663.080659pt;}
.y1af{bottom:664.970574pt;}
.y15c{bottom:665.574473pt;}
.y10c{bottom:666.632005pt;}
.y174{bottom:671.016790pt;}
.y18{bottom:672.831602pt;}
.y1d5{bottom:674.268494pt;}
.y1ae{bottom:675.553083pt;}
.y15b{bottom:679.785461pt;}
.y171{bottom:682.959164pt;}
.y173{bottom:682.960400pt;}
.y10b{bottom:683.262193pt;}
.y1d4{bottom:685.077884pt;}
.y17{bottom:686.135200pt;}
.y15{bottom:686.135602pt;}
.y1ad{bottom:686.210909pt;}
.y172{bottom:687.722667pt;}
.y16{bottom:691.426533pt;}
.y15a{bottom:694.223595pt;}
.y170{bottom:694.902774pt;}
.y1d3{bottom:695.887274pt;}
.y1ab{bottom:696.793418pt;}
.y13{bottom:697.398267pt;}
.y1ac{bottom:699.061298pt;}
.y14{bottom:699.439200pt;}
.y12{bottom:699.440376pt;}
.y10a{bottom:699.816135pt;}
.y16f{bottom:706.921836pt;}
.y1d2{bottom:706.998862pt;}
.y1aa{bottom:707.452174pt;}
.y159{bottom:708.434582pt;}
.y11{bottom:712.668658pt;}
.y109{bottom:716.446323pt;}
.y1d1{bottom:717.808252pt;}
.y1a9{bottom:718.110000pt;}
.y16e{bottom:718.865446pt;}
.y158{bottom:722.645570pt;}
.y10{bottom:725.972256pt;}
.y16d{bottom:730.809056pt;}
.y108{bottom:733.076512pt;}
.y1a8{bottom:736.705333pt;}
.y157{bottom:736.856558pt;}
.yf{bottom:739.275854pt;}
.y16c{bottom:742.752667pt;}
.y107{bottom:749.630453pt;}
.y156{bottom:751.067546pt;}
.ye{bottom:752.579452pt;}
.y154{bottom:763.313200pt;}
.yc{bottom:763.842400pt;}
.y155{bottom:765.278533pt;}
.y153{bottom:765.280778pt;}
.yd{bottom:765.807733pt;}
.yb{bottom:765.808270pt;}
.y106{bottom:766.260642pt;}
.y19a{bottom:766.560428pt;}
.y1a7{bottom:766.564252pt;}
.y1a6{bottom:778.885118pt;}
.ya{bottom:779.111868pt;}
.y152{bottom:779.491765pt;}
.y199{bottom:780.696099pt;}
.y105{bottom:782.890830pt;}
.y1a5{bottom:791.130533pt;}
.y9{bottom:792.415467pt;}
.y151{bottom:793.702753pt;}
.y198{bottom:794.831770pt;}
.y104{bottom:799.444772pt;}
.y150{bottom:807.913741pt;}
.y197{bottom:808.967441pt;}
.y1a4{bottom:809.423467pt;}
.y8{bottom:812.295867pt;}
.y103{bottom:816.074960pt;}
.y14f{bottom:822.124729pt;}
.y196{bottom:823.103112pt;}
.y102{bottom:832.705148pt;}
.y14e{bottom:836.411033pt;}
.y195{bottom:837.238782pt;}
.y1a3{bottom:839.283370pt;}
.y101{bottom:849.259090pt;}
.y14d{bottom:850.622021pt;}
.y194{bottom:851.374453pt;}
.y1a2{bottom:851.604236pt;}
.y7{bottom:852.585812pt;}
.y1a1{bottom:863.849652pt;}
.y14c{bottom:864.833009pt;}
.y193{bottom:865.887904pt;}
.y100{bottom:865.889278pt;}
.y6{bottom:865.889963pt;}
.y1a0{bottom:876.170518pt;}
.y14b{bottom:879.043997pt;}
.y5{bottom:879.117867pt;}
.y192{bottom:880.023575pt;}
.yff{bottom:882.519467pt;}
.y19f{bottom:888.415933pt;}
.y14a{bottom:893.254984pt;}
.y191{bottom:894.159246pt;}
.y3{bottom:897.713200pt;}
.y19e{bottom:900.736800pt;}
.yfd{bottom:902.399545pt;}
.y4{bottom:903.609200pt;}
.yfe{bottom:906.557333pt;}
.y149{bottom:907.465972pt;}
.y190{bottom:908.294917pt;}
.yfc{bottom:919.029733pt;}
.y19d{bottom:920.995067pt;}
.y148{bottom:921.676960pt;}
.y18f{bottom:922.430588pt;}
.y2{bottom:929.612870pt;}
.y147{bottom:936.115094pt;}
.y18e{bottom:936.566258pt;}
.y146{bottom:950.326082pt;}
.y18d{bottom:950.701929pt;}
.y19c{bottom:950.851368pt;}
.y1{bottom:958.865867pt;}
.yfb{bottom:959.546267pt;}
.y145{bottom:964.537069pt;}
.y19b{bottom:964.835209pt;}
.y18b{bottom:964.837600pt;}
.y18c{bottom:970.128933pt;}
.y115{bottom:1006.639200pt;}
.ya9{bottom:1006.640371pt;}
.y137{bottom:1006.640742pt;}
.h17{height:16.709808pt;}
.he{height:18.048576pt;}
.hf{height:18.594000pt;}
.h14{height:18.865907pt;}
.h11{height:21.250800pt;}
.ha{height:21.484604pt;}
.h8{height:23.907200pt;}
.h16{height:25.068486pt;}
.h4{height:25.784789pt;}
.hd{height:27.076941pt;}
.h6{height:27.895200pt;}
.h13{height:27.997293pt;}
.h15{height:28.650212pt;}
.h10{height:30.945630pt;}
.hb{height:31.880800pt;}
.h9{height:32.230860pt;}
.hc{height:33.474187pt;}
.h7{height:35.865200pt;}
.h3{height:38.681455pt;}
.h5{height:39.850400pt;}
.h12{height:40.381092pt;}
.h2{height:76.619420pt;}
.h0{height:1054.488037pt;}
.h1{height:1054.666667pt;}
.w0{width:816.377360pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1{left:77.404667pt;}
.x42{left:82.318340pt;}
.x39{left:85.417333pt;}
.xe{left:88.743333pt;}
.x58{left:95.697682pt;}
.x7{left:98.418933pt;}
.x22{left:100.913333pt;}
.x41{left:110.362267pt;}
.x19{left:124.119733pt;}
.x43{left:126.765333pt;}
.x1a{left:134.400000pt;}
.x44{left:137.423600pt;}
.x57{left:139.011067pt;}
.x59{left:145.512000pt;}
.x45{left:147.250400pt;}
.x46{left:165.392133pt;}
.x20{left:173.253467pt;}
.x2{left:182.248800pt;}
.x21{left:184.970000pt;}
.x52{left:192.755867pt;}
.x3{left:196.762133pt;}
.x3a{left:203.036514pt;}
.x3b{left:221.404667pt;}
.xf{left:222.387377pt;}
.x8{left:226.318133pt;}
.x3c{left:227.981067pt;}
.x3d{left:230.777867pt;}
.x9{left:233.726000pt;}
.x3e{left:239.244000pt;}
.x10{left:242.721200pt;}
.x3f{left:249.070800pt;}
.x11{left:250.884933pt;}
.x5a{left:252.170000pt;}
.x1b{left:256.025200pt;}
.x40{left:265.096000pt;}
.x47{left:270.160533pt;}
.x48{left:283.691333pt;}
.x53{left:307.577867pt;}
.x4{left:323.149600pt;}
.xa{left:324.812533pt;}
.x5b{left:327.458133pt;}
.x5{left:329.121200pt;}
.x5c{left:330.935333pt;}
.xb{left:332.144800pt;}
.x4c{left:339.703867pt;}
.x54{left:346.507067pt;}
.x4d{left:349.530667pt;}
.x55{left:353.310133pt;}
.x56{left:361.247200pt;}
.x49{left:366.160533pt;}
.x4a{left:374.399867pt;}
.x4b{left:384.226667pt;}
.x12{left:420.132812pt;}
.x6{left:425.423600pt;}
.x15{left:432.075467pt;}
.x5d{left:438.424837pt;}
.x33{left:439.710133pt;}
.x34{left:449.688133pt;}
.x28{left:452.484933pt;}
.x29{left:460.648667pt;}
.x35{left:461.631333pt;}
.x17{left:466.091200pt;}
.x18{left:470.551067pt;}
.x2a{left:472.592000pt;}
.x36{left:473.574667pt;}
.x51{left:474.708533pt;}
.x2e{left:478.941600pt;}
.x37{left:483.401467pt;}
.x2b{left:484.535333pt;}
.x2f{left:490.884933pt;}
.x38{left:492.396800pt;}
.x2c{left:494.362133pt;}
.x30{left:502.828267pt;}
.x2d{left:506.985733pt;}
.x31{left:512.654933pt;}
.x32{left:524.825067pt;}
.x26{left:572.598267pt;}
.x27{left:580.006133pt;}
.x16{left:591.345647pt;}
.x25{left:600.113200pt;}
.x13{left:603.590400pt;}
.x14{left:611.073867pt;}
.xc{left:614.248667pt;}
.xd{left:618.859733pt;}
.x1f{left:620.071143pt;}
.x1d{left:641.612533pt;}
.x50{left:650.078667pt;}
.x4e{left:651.363600pt;}
.x1e{left:656.201467pt;}
.x4f{left:659.225067pt;}
.x23{left:675.628133pt;}
.x24{left:682.128933pt;}
.x1c{left:731.565200pt;}
}




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