
    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_44abac4b85741c6493eb9f75.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c5da7869751c8c78f7dfaaa3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_51b36f7cbc12a3043f604e2c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_629313f6002d8aea16847bcb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5e6b8d1b441a3b5d1c169368.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-29.015500px;}
.v3{vertical-align:-26.028000px;}
.v5{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.754000px;}
.v2{vertical-align:26.028000px;}
.v7{vertical-align:40.432084px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.987700px;}
.ls5{letter-spacing:2.989200px;}
.ls0{letter-spacing:20.921700px;}
.ls4{letter-spacing:32.728890px;}
.ls3{letter-spacing:32.734890px;}
.ls7{letter-spacing:216.997106px;}
.ls6{letter-spacing:218.717879px;}
.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;}
}
.ws1e{word-spacing:-35.865600px;}
.ws3b{word-spacing:-32.727300px;}
.ws0{word-spacing:-29.887800px;}
.ws60{word-spacing:-21.665473px;}
.ws45{word-spacing:-21.534563px;}
.ws4{word-spacing:-21.519300px;}
.ws10e{word-spacing:-21.471523px;}
.ws71{word-spacing:-21.338200px;}
.ws4f{word-spacing:-21.141836px;}
.ws4a{word-spacing:-21.076381px;}
.wsbf{word-spacing:-21.010927px;}
.ws33{word-spacing:-20.945472px;}
.ws110{word-spacing:-20.814563px;}
.ws8e{word-spacing:-20.618199px;}
.ws44{word-spacing:-20.552744px;}
.ws40{word-spacing:-20.356381px;}
.wsb1{word-spacing:-20.225471px;}
.wsd9{word-spacing:-20.160017px;}
.wsf6{word-spacing:-20.094562px;}
.ws62{word-spacing:-20.009246px;}
.wsb2{word-spacing:-19.963653px;}
.ws82{word-spacing:-19.832744px;}
.wsfe{word-spacing:-19.767289px;}
.ws76{word-spacing:-19.636380px;}
.wsc0{word-spacing:-19.505471px;}
.wsb{word-spacing:-19.486846px;}
.ws107{word-spacing:-19.374562px;}
.ws8d{word-spacing:-19.309107px;}
.wsd3{word-spacing:-19.243652px;}
.ws23{word-spacing:-19.178198px;}
.ws46{word-spacing:-19.112743px;}
.wsae{word-spacing:-18.981834px;}
.ws6d{word-spacing:-18.850925px;}
.ws68{word-spacing:-18.785470px;}
.ws4b{word-spacing:-18.654561px;}
.ws114{word-spacing:-18.327288px;}
.ws3e{word-spacing:-18.261833px;}
.wsbe{word-spacing:-18.196379px;}
.wse1{word-spacing:-18.130924px;}
.ws5{word-spacing:-18.004531px;}
.ws75{word-spacing:-18.000015px;}
.ws21{word-spacing:-17.934560px;}
.ws7{word-spacing:-17.932800px;}
.ws6c{word-spacing:-17.738197px;}
.ws3d{word-spacing:-17.541833px;}
.ws52{word-spacing:-17.476378px;}
.ws8a{word-spacing:-17.410924px;}
.ws15{word-spacing:-17.394700px;}
.wsa7{word-spacing:-17.345469px;}
.ws65{word-spacing:-17.280014px;}
.ws64{word-spacing:-17.214560px;}
.wsd8{word-spacing:-17.149105px;}
.ws8c{word-spacing:-17.083651px;}
.ws90{word-spacing:-17.018196px;}
.ws2b{word-spacing:-16.952741px;}
.ws32{word-spacing:-16.821832px;}
.ws49{word-spacing:-16.756378px;}
.ws7a{word-spacing:-16.690923px;}
.wse{word-spacing:-16.617617px;}
.ws1a{word-spacing:-16.498066px;}
.ws22{word-spacing:-16.494559px;}
.ws43{word-spacing:-16.429105px;}
.wsc1{word-spacing:-16.406429px;}
.ws2e{word-spacing:-16.363650px;}
.wsc4{word-spacing:-16.232741px;}
.ws42{word-spacing:-16.167286px;}
.wsf9{word-spacing:-16.101832px;}
.ws86{word-spacing:-16.036377px;}
.ws11c{word-spacing:-15.960085px;}
.wsa3{word-spacing:-15.840013px;}
.ws5c{word-spacing:-15.774559px;}
.ws69{word-spacing:-15.709104px;}
.wse5{word-spacing:-15.643649px;}
.ws2c{word-spacing:-15.578195px;}
.ws11{word-spacing:-15.541656px;}
.wsa2{word-spacing:-15.512740px;}
.ws1c{word-spacing:-15.481880px;}
.wsc9{word-spacing:-15.447286px;}
.ws5b{word-spacing:-15.381831px;}
.ws12{word-spacing:-15.362329px;}
.ws58{word-spacing:-15.316376px;}
.ws31{word-spacing:-15.250922px;}
.ws9{word-spacing:-15.242778px;}
.ws100{word-spacing:-15.185467px;}
.ws11b{word-spacing:-15.183002px;}
.wsa9{word-spacing:-15.120013px;}
.wsfc{word-spacing:-15.054558px;}
.ws2{word-spacing:-15.003676px;}
.ws3{word-spacing:-14.943900px;}
.ws3a{word-spacing:-14.923649px;}
.ws59{word-spacing:-14.858194px;}
.ws9a{word-spacing:-14.792740px;}
.wsfb{word-spacing:-14.727285px;}
.wscd{word-spacing:-14.661830px;}
.wsd7{word-spacing:-14.596376px;}
.wsa{word-spacing:-14.585246px;}
.ws67{word-spacing:-14.465467px;}
.ws11e{word-spacing:-14.405920px;}
.ws4d{word-spacing:-14.400012px;}
.ws47{word-spacing:-14.334557px;}
.ws17{word-spacing:-14.226593px;}
.wsdd{word-spacing:-14.203648px;}
.wse4{word-spacing:-14.138194px;}
.ws10{word-spacing:-14.047266px;}
.wsa6{word-spacing:-14.007284px;}
.ws81{word-spacing:-13.941830px;}
.ws61{word-spacing:-13.876375px;}
.ws13{word-spacing:-13.867939px;}
.ws108{word-spacing:-13.810921px;}
.wse0{word-spacing:-13.745466px;}
.ws24{word-spacing:-13.680011px;}
.wsc2{word-spacing:-13.614557px;}
.wsdc{word-spacing:-13.549102px;}
.wseb{word-spacing:-13.503398px;}
.ws79{word-spacing:-13.483648px;}
.wsf0{word-spacing:-13.457424px;}
.wsed{word-spacing:-13.452134px;}
.wsf1{word-spacing:-13.449802px;}
.wsee{word-spacing:-13.449600px;}
.wsea{word-spacing:-13.446134px;}
.wsd6{word-spacing:-13.418193px;}
.wsa8{word-spacing:-13.352738px;}
.ws106{word-spacing:-13.287284px;}
.wsd4{word-spacing:-13.221829px;}
.ws8f{word-spacing:-13.156375px;}
.ws7d{word-spacing:-13.090920px;}
.wsf8{word-spacing:-13.025465px;}
.wsf{word-spacing:-12.971305px;}
.ws53{word-spacing:-12.960011px;}
.ws9e{word-spacing:-12.857818px;}
.wsd2{word-spacing:-12.829102px;}
.wse3{word-spacing:-12.763647px;}
.ws35{word-spacing:-12.698192px;}
.ws18{word-spacing:-12.672427px;}
.ws38{word-spacing:-12.632738px;}
.wsd0{word-spacing:-12.567283px;}
.ws16{word-spacing:-12.493100px;}
.ws1d{word-spacing:-12.433325px;}
.wsc{word-spacing:-12.313774px;}
.ws89{word-spacing:-12.305465px;}
.ws83{word-spacing:-12.240010px;}
.ws93{word-spacing:-12.174556px;}
.ws41{word-spacing:-12.109101px;}
.ws9b{word-spacing:-12.043646px;}
.ws98{word-spacing:-11.978192px;}
.ws6{word-spacing:-11.955150px;}
.ws87{word-spacing:-11.781828px;}
.ws36{word-spacing:-11.716373px;}
.ws9c{word-spacing:-11.650919px;}
.wse6{word-spacing:-11.585464px;}
.ws88{word-spacing:-11.520010px;}
.ws14{word-spacing:-11.417140px;}
.ws37{word-spacing:-11.323646px;}
.wsa4{word-spacing:-11.258191px;}
.ws74{word-spacing:-11.192737px;}
.ws70{word-spacing:-11.127282px;}
.ws1b{word-spacing:-11.118262px;}
.wsca{word-spacing:-11.061827px;}
.wsd{word-spacing:-11.058486px;}
.ws9f{word-spacing:-11.028672px;}
.ws96{word-spacing:-10.800150px;}
.ws5e{word-spacing:-10.734554px;}
.ws11d{word-spacing:-10.699832px;}
.ws66{word-spacing:-10.669100px;}
.ws34{word-spacing:-10.603645px;}
.ws5d{word-spacing:-10.538191px;}
.ws113{word-spacing:-10.483154px;}
.ws55{word-spacing:-10.472736px;}
.ws19{word-spacing:-10.460730px;}
.ws50{word-spacing:-10.341827px;}
.ws26{word-spacing:-10.276372px;}
.wscf{word-spacing:-10.210918px;}
.ws48{word-spacing:-10.145463px;}
.ws84{word-spacing:-10.080008px;}
.ws8{word-spacing:-10.017325px;}
.ws85{word-spacing:-10.014554px;}
.ws91{word-spacing:-9.949099px;}
.ws3f{word-spacing:-9.883645px;}
.wsc5{word-spacing:-9.818190px;}
.wse2{word-spacing:-9.752735px;}
.ws6e{word-spacing:-9.621826px;}
.wscb{word-spacing:-9.556372px;}
.ws2d{word-spacing:-9.425462px;}
.wsdb{word-spacing:-9.360008px;}
.wsf2{word-spacing:-9.324994px;}
.wsdf{word-spacing:-9.294553px;}
.ws6f{word-spacing:-9.163644px;}
.ws51{word-spacing:-9.098189px;}
.wsde{word-spacing:-9.032735px;}
.wsad{word-spacing:-8.836371px;}
.wsc6{word-spacing:-8.770916px;}
.wsb3{word-spacing:-8.705462px;}
.wsaa{word-spacing:-8.640007px;}
.ws57{word-spacing:-8.443643px;}
.ws4e{word-spacing:-8.312734px;}
.ws54{word-spacing:-8.247280px;}
.ws6b{word-spacing:-8.181825px;}
.ws20{word-spacing:-8.116370px;}
.ws77{word-spacing:-8.050916px;}
.ws5a{word-spacing:-7.920007px;}
.ws27{word-spacing:-7.723643px;}
.wsda{word-spacing:-7.658188px;}
.wse7{word-spacing:-7.527279px;}
.ws126{word-spacing:-7.461824px;}
.ws80{word-spacing:-7.265461px;}
.ws29{word-spacing:-7.200006px;}
.ws5f{word-spacing:-7.134551px;}
.ws92{word-spacing:-7.069097px;}
.ws122{word-spacing:-6.872733px;}
.ws9d{word-spacing:-6.832397px;}
.ws12b{word-spacing:-6.807278px;}
.wsd1{word-spacing:-6.610915px;}
.ws7e{word-spacing:-6.545460px;}
.ws7f{word-spacing:-6.480005px;}
.wsfd{word-spacing:-6.283642px;}
.wsff{word-spacing:-6.218187px;}
.ws30{word-spacing:-6.021823px;}
.wsb5{word-spacing:-5.956369px;}
.wsd5{word-spacing:-5.890914px;}
.ws6a{word-spacing:-5.825459px;}
.ws3c{word-spacing:-5.760005px;}
.wsb4{word-spacing:-5.694550px;}
.ws99{word-spacing:-5.629096px;}
.ws72{word-spacing:-5.498186px;}
.wsbb{word-spacing:-5.438821px;}
.wsbd{word-spacing:-5.432732px;}
.wsa1{word-spacing:-5.301823px;}
.ws11a{word-spacing:-5.260253px;}
.ws94{word-spacing:-5.170913px;}
.wsab{word-spacing:-4.909095px;}
.ws8b{word-spacing:-4.778186px;}
.ws10b{word-spacing:-4.712731px;}
.ws10a{word-spacing:-4.516367px;}
.ws10f{word-spacing:-4.450913px;}
.ws115{word-spacing:-4.320004px;}
.ws102{word-spacing:-3.992731px;}
.ws4c{word-spacing:-3.927276px;}
.ws109{word-spacing:-3.796367px;}
.wscc{word-spacing:-3.665458px;}
.ws10c{word-spacing:-3.600003px;}
.ws125{word-spacing:-3.534548px;}
.ws39{word-spacing:-3.403639px;}
.ws78{word-spacing:-3.338185px;}
.ws120{word-spacing:-3.272730px;}
.ws12a{word-spacing:-3.141821px;}
.ws1{word-spacing:-2.997098px;}
.ws7b{word-spacing:-2.749093px;}
.ws28{word-spacing:-2.618184px;}
.ws63{word-spacing:-2.290911px;}
.ws25{word-spacing:-2.225456px;}
.wsce{word-spacing:-1.963638px;}
.wsba{word-spacing:-1.832729px;}
.ws123{word-spacing:-1.374547px;}
.ws124{word-spacing:-1.309092px;}
.ws95{word-spacing:-1.047274px;}
.ws128{word-spacing:-0.981819px;}
.ws116{word-spacing:-0.916364px;}
.ws121{word-spacing:-0.850910px;}
.wsb0{word-spacing:-0.392728px;}
.wsc8{word-spacing:-0.065455px;}
.ws2f{word-spacing:0.000000px;}
.wsf7{word-spacing:0.327273px;}
.wsc7{word-spacing:0.458182px;}
.ws1f{word-spacing:0.654546px;}
.wsa0{word-spacing:0.850910px;}
.ws112{word-spacing:1.047274px;}
.ws101{word-spacing:1.636365px;}
.ws97{word-spacing:2.409179px;}
.ws7c{word-spacing:2.421820px;}
.wsc3{word-spacing:2.683639px;}
.ws11f{word-spacing:3.010912px;}
.ws129{word-spacing:3.272730px;}
.wsaf{word-spacing:3.338185px;}
.ws127{word-spacing:4.647277px;}
.ws111{word-spacing:4.712731px;}
.ws10d{word-spacing:5.040004px;}
.ws56{word-spacing:5.694550px;}
.wsac{word-spacing:6.349096px;}
.ws118{word-spacing:6.807278px;}
.ws117{word-spacing:7.069097px;}
.ws12c{word-spacing:7.789097px;}
.wsbc{word-spacing:8.970417px;}
.wsfa{word-spacing:13.352738px;}
.wsa5{word-spacing:15.512740px;}
.ws103{word-spacing:23.527967px;}
.ws104{word-spacing:26.124631px;}
.wsf5{word-spacing:26.953130px;}
.ws73{word-spacing:32.724450px;}
.ws105{word-spacing:35.862000px;}
.ws2a{word-spacing:35.868000px;}
.wsf3{word-spacing:38.945487px;}
.wsb9{word-spacing:40.909125px;}
.wsb8{word-spacing:55.258407px;}
.wsec{word-spacing:78.694014px;}
.wsb6{word-spacing:88.952801px;}
.ws119{word-spacing:105.565385px;}
.wse9{word-spacing:153.768960px;}
.wsef{word-spacing:153.925132px;}
.wse8{word-spacing:165.180455px;}
.wsf4{word-spacing:166.970100px;}
.wsb7{word-spacing:199.744321px;}
._2{margin-left:-7.651277px;}
._27{margin-left:-6.527539px;}
._3{margin-left:-5.320028px;}
._4{margin-left:-3.885414px;}
._0{margin-left:-2.149522px;}
._8{margin-left:-1.016185px;}
._1f{width:1.361690px;}
._3e{width:3.225481px;}
._45{width:4.254549px;}
._40{width:7.226418px;}
._3f{width:8.744504px;}
._6{width:12.134447px;}
._1b{width:13.833674px;}
._f{width:15.441170px;}
._b{width:16.856719px;}
._5{width:18.171782px;}
._22{width:19.358956px;}
._1{width:20.483965px;}
._23{width:21.730927px;}
._c{width:22.774504px;}
._a{width:24.448220px;}
._d{width:25.823059px;}
._7{width:27.676103px;}
._1e{width:28.762411px;}
._20{width:30.062215px;}
._9{width:31.102378px;}
._12{width:32.661845px;}
._e{width:34.072092px;}
._21{width:35.607302px;}
._1d{width:37.570940px;}
._26{width:38.848944px;}
._17{width:39.861851px;}
._14{width:41.301853px;}
._10{width:42.545490px;}
._16{width:46.014584px;}
._19{width:47.389130px;}
._1a{width:49.388362px;}
._3d{width:52.167316px;}
._1c{width:53.541863px;}
._25{width:55.019477px;}
._15{width:59.236413px;}
._13{width:65.451750px;}
._24{width:67.810966px;}
._18{width:71.733600px;}
._41{width:113.865705px;}
._43{width:119.526645px;}
._42{width:122.167656px;}
._44{width:130.469607px;}
._30{width:214.259400px;}
._33{width:230.624700px;}
._37{width:240.180614px;}
._3c{width:299.624700px;}
._34{width:331.097053px;}
._31{width:340.131438px;}
._3b{width:369.533400px;}
._35{width:385.898700px;}
._3a{width:397.469400px;}
._29{width:413.834700px;}
._2e{width:418.413490px;}
._2c{width:430.196700px;}
._2b{width:447.344423px;}
._28{width:490.937186px;}
._36{width:579.338700px;}
._39{width:653.771960px;}
._2f{width:718.250700px;}
._32{width:734.609400px;}
._2a{width:981.599400px;}
._2d{width:997.964700px;}
._38{width:1477.250700px;}
._46{width:1889.632376px;}
._11{width:1922.356376px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:25.582116px;}
.fs10{font-size:26.104200px;}
.fse{font-size:30.396000px;}
.fs8{font-size:32.035200px;}
.fsa{font-size:32.103600px;}
.fsc{font-size:34.821000px;}
.fs6{font-size:35.865600px;}
.fsf{font-size:36.475200px;}
.fs11{font-size:36.545880px;}
.fs9{font-size:38.442240px;}
.fsb{font-size:38.524320px;}
.fs13{font-size:39.366600px;}
.fsd{font-size:41.785200px;}
.fs1{font-size:41.842800px;}
.fs14{font-size:47.239920px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1de{bottom:7.371030px;}
.y23f{bottom:7.543706px;}
.y16a{bottom:7.906187px;}
.y177{bottom:7.923068px;}
.y19b{bottom:8.444093px;}
.y240{bottom:11.039691px;}
.y23e{bottom:19.107051px;}
.y1dd{bottom:19.683785px;}
.y277{bottom:20.425308px;}
.y263{bottom:20.457493px;}
.y169{bottom:20.882946px;}
.y176{bottom:20.927534px;}
.y19a{bottom:22.549318px;}
.y241{bottom:26.153145px;}
.y1df{bottom:27.888330px;}
.y16b{bottom:29.529947px;}
.y178{bottom:29.592998px;}
.y19c{bottom:31.948268px;}
.y262{bottom:33.295457px;}
.y261{bottom:46.225193px;}
.y1f0{bottom:49.149040px;}
.y16c{bottom:49.290544px;}
.y36{bottom:51.345000px;}
.y279{bottom:56.997980px;}
.y179{bottom:57.089283px;}
.y260{bottom:59.063157px;}
.y1e0{bottom:59.578823px;}
.y172{bottom:63.027504px;}
.y17d{bottom:63.162077px;}
.y242{bottom:64.996195px;}
.y16d{bottom:69.051140px;}
.y1f1{bottom:70.409751px;}
.y25f{bottom:71.992894px;}
.y19d{bottom:72.370725px;}
.y278{bottom:72.714997px;}
.y17a{bottom:84.585569px;}
.y25e{bottom:84.922630px;}
.y256{bottom:85.713816px;}
.y1e5{bottom:88.396080px;}
.y16e{bottom:88.811736px;}
.y1e1{bottom:91.269315px;}
.y1f2{bottom:91.670461px;}
.y27a{bottom:92.663727px;}
.y259{bottom:96.217911px;}
.ye0{bottom:98.104500px;}
.y8f{bottom:98.284500px;}
.y255{bottom:98.551780px;}
.y1a1{bottom:101.264637px;}
.yb4{bottom:101.274000px;}
.y275{bottom:101.459697px;}
.y26d{bottom:102.027897px;}
.y21d{bottom:102.367500px;}
.y243{bottom:103.839245px;}
.y167{bottom:103.903500px;}
.y2a6{bottom:105.148500px;}
.y271{bottom:107.982000px;}
.y27b{bottom:108.161112px;}
.y16f{bottom:108.572333px;}
.y1db{bottom:109.128000px;}
.y147{bottom:109.402500px;}
.y35{bottom:110.580000px;}
.y64{bottom:110.956500px;}
.y2e{bottom:111.177000px;}
.y254{bottom:111.481517px;}
.y12b{bottom:112.033500px;}
.y17b{bottom:112.081854px;}
.y19e{bottom:112.793182px;}
.y1f3{bottom:112.931171px;}
.y1ee{bottom:112.943937px;}
.y108{bottom:113.467500px;}
.ydf{bottom:114.541500px;}
.y26c{bottom:114.865861px;}
.y276{bottom:116.915573px;}
.y248{bottom:117.424441px;}
.y23c{bottom:117.789000px;}
.y8e{bottom:118.608000px;}
.yb3{bottom:121.597500px;}
.y21c{bottom:122.691000px;}
.y1e2{bottom:122.959808px;}
.y1ed{bottom:124.199956px;}
.y166{bottom:124.227000px;}
.y253{bottom:124.319481px;}
.y2a5{bottom:125.472000px;}
.y270{bottom:125.916000px;}
.y27c{bottom:126.084356px;}
.y26b{bottom:127.795598px;}
.y27e{bottom:128.298210px;}
.y170{bottom:128.332929px;}
.y1da{bottom:129.453000px;}
.y146{bottom:129.726000px;}
.y34{bottom:130.903500px;}
.yde{bottom:130.980000px;}
.y63{bottom:131.280000px;}
.y2d{bottom:131.500500px;}
.y12a{bottom:132.357000px;}
.y107{bottom:133.791000px;}
.y1f4{bottom:134.191882px;}
.y1ec{bottom:135.455974px;}
.y252{bottom:137.249217px;}
.y23b{bottom:138.112500px;}
.y8d{bottom:138.931500px;}
.y17c{bottom:139.578139px;}
.y26a{bottom:140.633562px;}
.y1ba{bottom:141.022500px;}
.y27d{bottom:141.535229px;}
.y244{bottom:142.682294px;}
.y21b{bottom:143.014500px;}
.y26f{bottom:143.848500px;}
.y1eb{bottom:143.959730px;}
.y165{bottom:144.550500px;}
.y2a4{bottom:145.795500px;}
.yb2{bottom:145.986000px;}
.y1fb{bottom:146.284549px;}
.y171{bottom:148.093526px;}
.y25d{bottom:148.875359px;}
.y1d9{bottom:149.776500px;}
.y145{bottom:150.051000px;}
.y251{bottom:150.178954px;}
.y33{bottom:151.227000px;}
.y62{bottom:151.605000px;}
.y2c{bottom:151.825500px;}
.y129{bottom:152.680500px;}
.ydd{bottom:153.132000px;}
.y19f{bottom:153.215640px;}
.y269{bottom:153.563298px;}
.y106{bottom:154.116000px;}
.y1e3{bottom:154.650301px;}
.y1fa{bottom:154.895166px;}
.y1ea{bottom:155.108888px;}
.y1a8{bottom:155.297851px;}
.y1f5{bottom:155.452592px;}
.y23a{bottom:158.436000px;}
.y8c{bottom:159.255000px;}
.y24c{bottom:161.474235px;}
.y25c{bottom:161.713323px;}
.y21a{bottom:163.338000px;}
.y1e9{bottom:163.612644px;}
.y249{bottom:164.343184px;}
.y164{bottom:164.875500px;}
.y1b9{bottom:165.411000px;}
.y2a3{bottom:166.119000px;}
.y1f9{bottom:166.151185px;}
.yb1{bottom:166.309500px;}
.y268{bottom:166.493035px;}
.y173{bottom:167.391348px;}
.y187{bottom:167.748754px;}
.y181{bottom:167.861618px;}
.y1a7{bottom:168.070085px;}
.y24a{bottom:169.246578px;}
.y144{bottom:170.374500px;}
.y61{bottom:171.928500px;}
.y2b{bottom:172.149000px;}
.y1d8{bottom:174.165000px;}
.y105{bottom:174.439500px;}
.y25b{bottom:174.551287px;}
.y1f8{bottom:174.761802px;}
.y1e8{bottom:174.868663px;}
.y26e{bottom:176.277000px;}
.y1f6{bottom:176.713302px;}
.y128{bottom:177.069000px;}
.ydc{bottom:177.667500px;}
.y266{bottom:177.788315px;}
.y1a6{bottom:177.811804px;}
.y239{bottom:178.761000px;}
.y183{bottom:179.141759px;}
.y186{bottom:179.524254px;}
.y8b{bottom:179.580000px;}
.y180{bottom:179.637118px;}
.y32{bottom:180.517500px;}
.y284{bottom:180.738827px;}
.y245{bottom:181.525344px;}
.y219{bottom:183.661500px;}
.y1b8{bottom:185.734500px;}
.y1e7{bottom:186.017821px;}
.y1e4{bottom:186.340794px;}
.y2a2{bottom:186.444000px;}
.y25a{bottom:187.389251px;}
.y1a5{bottom:190.584038px;}
.yb0{bottom:190.698000px;}
.y18a{bottom:190.892171px;}
.y18d{bottom:191.299754px;}
.y17f{bottom:191.412619px;}
.y60{bottom:192.252000px;}
.y2a{bottom:192.472500px;}
.y1a0{bottom:193.638097px;}
.y163{bottom:194.164500px;}
.y1d7{bottom:194.488500px;}
.y1e6{bottom:194.521577px;}
.y104{bottom:194.763000px;}
.y283{bottom:195.178373px;}
.y265{bottom:196.749524px;}
.y127{bottom:197.392500px;}
.y1f7{bottom:197.974012px;}
.y274{bottom:198.210250px;}
.y238{bottom:199.084500px;}
.y8a{bottom:199.903500px;}
.y250{bottom:200.227215px;}
.y1a4{bottom:200.325757px;}
.ydb{bottom:202.056000px;}
.y189{bottom:202.642582px;}
.y17e{bottom:203.188119px;}
.y218{bottom:203.986500px;}
.y18f{bottom:204.796500px;}
.y1b7{bottom:206.058000px;}
.y2a1{bottom:206.767500px;}
.y282{bottom:209.617918px;}
.y143{bottom:211.021500px;}
.yaf{bottom:211.023000px;}
.y5f{bottom:212.575500px;}
.y29{bottom:212.796000px;}
.y267{bottom:212.973406px;}
.y24f{bottom:213.065179px;}
.y1a3{bottom:213.097991px;}
.y1d6{bottom:214.812000px;}
.y103{bottom:215.086500px;}
.y126{bottom:217.716000px;}
.y237{bottom:219.408000px;}
.y89{bottom:220.227000px;}
.y246{bottom:220.368393px;}
.y31{bottom:221.763000px;}
.yda{bottom:222.379500px;}
.y18e{bottom:222.730500px;}
.y1a2{bottom:222.839710px;}
.y281{bottom:224.057464px;}
.y217{bottom:224.310000px;}
.y24e{bottom:225.903143px;}
.y2a0{bottom:227.091000px;}
.y1b6{bottom:230.446500px;}
.y142{bottom:231.345000px;}
.yae{bottom:231.346500px;}
.y162{bottom:232.422000px;}
.y28{bottom:233.119500px;}
.y1d5{bottom:235.135500px;}
.y102{bottom:235.410000px;}
.y125{bottom:238.041000px;}
.y280{bottom:238.497010px;}
.y24d{bottom:238.741107px;}
.y236{bottom:239.731500px;}
.y88{bottom:240.550500px;}
.y5e{bottom:241.866000px;}
.y30{bottom:242.086500px;}
.yd9{bottom:242.703000px;}
.y216{bottom:244.633500px;}
.y29f{bottom:247.414500px;}
.y24b{bottom:250.036388px;}
.y273{bottom:250.499939px;}
.y1b5{bottom:250.770000px;}
.y141{bottom:251.670000px;}
.y161{bottom:252.745500px;}
.y27f{bottom:252.936556px;}
.y27{bottom:253.444500px;}
.y18b{bottom:255.159000px;}
.y1d4{bottom:255.460500px;}
.yad{bottom:255.735000px;}
.y124{bottom:258.364500px;}
.y247{bottom:259.211443px;}
.y101{bottom:259.798500px;}
.y235{bottom:260.055000px;}
.y87{bottom:260.874000px;}
.y2f{bottom:262.410000px;}
.yd8{bottom:263.026500px;}
.y215{bottom:264.957000px;}
.y29e{bottom:267.738000px;}
.y1b4{bottom:271.095000px;}
.y160{bottom:273.069000px;}
.y18c{bottom:275.631108px;}
.y188{bottom:275.631400px;}
.y1d3{bottom:275.784000px;}
.yac{bottom:276.058500px;}
.y123{bottom:278.688000px;}
.y5d{bottom:280.122000px;}
.y100{bottom:280.123500px;}
.y234{bottom:280.380000px;}
.y140{bottom:280.959000px;}
.y86{bottom:281.199000px;}
.y26{bottom:282.733500px;}
.yd7{bottom:283.351500px;}
.y214{bottom:285.280500px;}
.y29d{bottom:288.063000px;}
.y1b3{bottom:291.418500px;}
.y15f{bottom:293.392500px;}
.yab{bottom:296.382000px;}
.y122{bottom:299.011500px;}
.y1d2{bottom:300.172500px;}
.y5c{bottom:300.447000px;}
.y233{bottom:300.703500px;}
.y85{bottom:301.522500px;}
.y213{bottom:305.605500px;}
.yd6{bottom:307.740000px;}
.y29c{bottom:308.386500px;}
.y15e{bottom:313.716000px;}
.y1b2{bottom:315.807000px;}
.y13f{bottom:319.216500px;}
.y121{bottom:319.335000px;}
.y1d1{bottom:320.496000px;}
.y5b{bottom:320.770500px;}
.y232{bottom:321.027000px;}
.y84{bottom:321.846000px;}
.y212{bottom:325.929000px;}
.y25{bottom:326.943000px;}
.yd5{bottom:328.063500px;}
.y29b{bottom:328.710000px;}
.y15d{bottom:334.041000px;}
.y1b1{bottom:336.130500px;}
.y13e{bottom:339.540000px;}
.y1d0{bottom:340.819500px;}
.y5a{bottom:341.094000px;}
.y231{bottom:341.350500px;}
.y83{bottom:342.169500px;}
.y120{bottom:343.723500px;}
.yff{bottom:345.159000px;}
.y211{bottom:346.252500px;}
.yd4{bottom:348.387000px;}
.y29a{bottom:349.033500px;}
.y24{bottom:353.424000px;}
.y15c{bottom:354.364500px;}
.y1b0{bottom:356.454000px;}
.y13d{bottom:359.863500px;}
.y1cf{bottom:361.143000px;}
.y59{bottom:361.417500px;}
.y230{bottom:361.674000px;}
.y82{bottom:362.493000px;}
.y11f{bottom:364.048500px;}
.yaa{bottom:365.482500px;}
.y210{bottom:366.576000px;}
.yd3{bottom:368.710500px;}
.y299{bottom:369.357000px;}
.y23{bottom:371.356500px;}
.y15b{bottom:374.688000px;}
.y1af{bottom:376.777500px;}
.y1ce{bottom:381.468000px;}
.y58{bottom:381.741000px;}
.y22f{bottom:381.999000px;}
.y81{bottom:382.818000px;}
.y13c{bottom:384.252000px;}
.ya9{bottom:385.807500px;}
.y20f{bottom:386.899500px;}
.yd2{bottom:389.034000px;}
.y22{bottom:389.289000px;}
.y298{bottom:389.682000px;}
.yfe{bottom:389.871000px;}
.y11e{bottom:393.337500px;}
.y15a{bottom:395.011500px;}
.y1ae{bottom:401.166000px;}
.y57{bottom:402.066000px;}
.y22e{bottom:402.322500px;}
.y80{bottom:403.141500px;}
.y13b{bottom:404.575500px;}
.y1cd{bottom:405.855000px;}
.ya8{bottom:406.131000px;}
.y21{bottom:407.221500px;}
.y20e{bottom:407.224500px;}
.yd1{bottom:409.359000px;}
.y297{bottom:410.005500px;}
.yfd{bottom:410.194500px;}
.y159{bottom:415.335000px;}
.y1ad{bottom:421.491000px;}
.y22d{bottom:422.646000px;}
.y7f{bottom:423.465000px;}
.y13a{bottom:424.899000px;}
.y20{bottom:425.154000px;}
.y1cc{bottom:426.180000px;}
.y56{bottom:426.454500px;}
.y20d{bottom:427.548000px;}
.y296{bottom:430.329000px;}
.ya7{bottom:430.519500px;}
.y11d{bottom:431.595000px;}
.yd0{bottom:433.747500px;}
.y158{bottom:439.723500px;}
.y1ac{bottom:441.814500px;}
.y22c{bottom:442.969500px;}
.y1f{bottom:443.088000px;}
.y7e{bottom:443.788500px;}
.y139{bottom:445.224000px;}
.y1cb{bottom:446.503500px;}
.y55{bottom:446.778000px;}
.y295{bottom:450.652500px;}
.ya6{bottom:450.843000px;}
.y11c{bottom:451.918500px;}
.y20c{bottom:451.936500px;}
.ycf{bottom:454.071000px;}
.y157{bottom:460.048500px;}
.y1e{bottom:461.020500px;}
.y1ab{bottom:462.138000px;}
.y22b{bottom:463.293000px;}
.y7d{bottom:464.112000px;}
.y138{bottom:465.547500px;}
.y1ca{bottom:466.827000px;}
.y54{bottom:467.101500px;}
.y294{bottom:470.976000px;}
.yfc{bottom:471.166500px;}
.y11b{bottom:472.242000px;}
.y20b{bottom:472.260000px;}
.yce{bottom:474.394500px;}
.ya5{bottom:475.231500px;}
.y1d{bottom:478.953000px;}
.y156{bottom:480.372000px;}
.y22a{bottom:483.618000px;}
.y7c{bottom:484.437000px;}
.y137{bottom:485.871000px;}
.y1aa{bottom:486.526500px;}
.y1c9{bottom:487.150500px;}
.y53{bottom:487.425000px;}
.y293{bottom:491.301000px;}
.y264{bottom:492.202500px;}
.y11a{bottom:492.565500px;}
.y20a{bottom:492.583500px;}
.ya4{bottom:495.555000px;}
.y1c{bottom:496.885500px;}
.ycd{bottom:498.783000px;}
.yfb{bottom:500.457000px;}
.y155{bottom:500.695500px;}
.y229{bottom:503.941500px;}
.y7b{bottom:504.760500px;}
.y136{bottom:506.194500px;}
.y1c8{bottom:507.474000px;}
.y52{bottom:507.748500px;}
.y292{bottom:511.624500px;}
.y258{bottom:512.675231px;}
.y209{bottom:512.907000px;}
.y1b{bottom:514.818000px;}
.ycc{bottom:519.106500px;}
.ya3{bottom:519.943500px;}
.y184{bottom:520.075500px;}
.y154{bottom:521.019000px;}
.y119{bottom:521.856000px;}
.y228{bottom:524.265000px;}
.y7a{bottom:525.084000px;}
.y135{bottom:526.518000px;}
.y1c7{bottom:527.799000px;}
.y51{bottom:528.073500px;}
.y291{bottom:531.948000px;}
.y1a{bottom:532.750500px;}
.y208{bottom:533.232000px;}
.yfa{bottom:538.713000px;}
.y182{bottom:540.548118px;}
.y185{bottom:540.548330px;}
.y153{bottom:541.342500px;}
.ya2{bottom:544.332000px;}
.y227{bottom:544.588500px;}
.y134{bottom:546.843000px;}
.y50{bottom:548.397000px;}
.y79{bottom:549.472500px;}
.y19{bottom:550.684500px;}
.y1c6{bottom:552.187500px;}
.y290{bottom:552.271500px;}
.y207{bottom:553.555500px;}
.y1a9{bottom:556.165500px;}
.yf9{bottom:559.036500px;}
.y152{bottom:561.667500px;}
.y118{bottom:563.101500px;}
.ya1{bottom:564.655500px;}
.y226{bottom:564.912000px;}
.y133{bottom:567.166500px;}
.y18{bottom:568.617000px;}
.y4f{bottom:568.720500px;}
.y78{bottom:569.796000px;}
.y1c5{bottom:572.511000px;}
.y28f{bottom:572.595000px;}
.yf8{bottom:579.360000px;}
.y151{bottom:581.991000px;}
.y206{bottom:582.846000px;}
.y117{bottom:583.425000px;}
.y199{bottom:583.662249px;}
.y225{bottom:585.237000px;}
.y17{bottom:586.549500px;}
.ycb{bottom:586.653000px;}
.y132{bottom:587.490000px;}
.y4e{bottom:589.044000px;}
.y77{bottom:590.119500px;}
.y1c4{bottom:592.834500px;}
.y28e{bottom:592.920000px;}
.yf7{bottom:599.685000px;}
.y150{bottom:602.314500px;}
.y116{bottom:603.748500px;}
.y16{bottom:604.482000px;}
.y224{bottom:605.560500px;}
.yca{bottom:606.976500px;}
.y131{bottom:607.813500px;}
.y4d{bottom:609.367500px;}
.ya0{bottom:609.369000px;}
.y76{bottom:610.444500px;}
.y28d{bottom:613.243500px;}
.yf6{bottom:620.008500px;}
.y1c3{bottom:622.125000px;}
.y15{bottom:622.414500px;}
.y14f{bottom:622.638000px;}
.y205{bottom:624.090000px;}
.yc9{bottom:627.301500px;}
.y115{bottom:628.137000px;}
.y4c{bottom:629.691000px;}
.y9f{bottom:629.692500px;}
.y75{bottom:630.768000px;}
.y130{bottom:632.202000px;}
.y28c{bottom:633.567000px;}
.y223{bottom:634.851000px;}
.y14{bottom:640.347000px;}
.y14e{bottom:642.961500px;}
.yf5{bottom:644.397000px;}
.y204{bottom:644.415000px;}
.yc8{bottom:647.625000px;}
.y114{bottom:648.462000px;}
.y4b{bottom:650.016000px;}
.y74{bottom:651.091500px;}
.y12f{bottom:652.525500px;}
.y28b{bottom:653.890500px;}
.y9e{bottom:654.081000px;}
.y13{bottom:658.281000px;}
.y1c2{bottom:660.381000px;}
.y14d{bottom:663.286500px;}
.yf4{bottom:664.720500px;}
.y203{bottom:664.738500px;}
.yc7{bottom:667.948500px;}
.y113{bottom:668.785500px;}
.y4a{bottom:670.339500px;}
.y73{bottom:671.415000px;}
.y12e{bottom:672.850500px;}
.y28a{bottom:674.214000px;}
.y9d{bottom:674.404500px;}
.y222{bottom:676.095000px;}
.y12{bottom:676.213500px;}
.y1c1{bottom:680.704500px;}
.y14c{bottom:683.610000px;}
.yf3{bottom:685.044000px;}
.y202{bottom:685.062000px;}
.y112{bottom:689.109000px;}
.y49{bottom:690.663000px;}
.y72{bottom:691.738500px;}
.yc6{bottom:692.337000px;}
.y12d{bottom:693.174000px;}
.y11{bottom:694.146000px;}
.y289{bottom:694.539000px;}
.y221{bottom:696.420000px;}
.y9c{bottom:698.793000px;}
.y14b{bottom:703.933500px;}
.y1c0{bottom:705.093000px;}
.yf2{bottom:705.367500px;}
.y201{bottom:705.385500px;}
.y111{bottom:709.432500px;}
.y48{bottom:710.986500px;}
.y71{bottom:712.063500px;}
.y10{bottom:712.078500px;}
.yc5{bottom:712.660500px;}
.y12c{bottom:713.497500px;}
.y220{bottom:716.743500px;}
.y9b{bottom:719.116500px;}
.y14a{bottom:724.257000px;}
.y1bf{bottom:725.418000px;}
.yf1{bottom:725.692500px;}
.y200{bottom:725.709000px;}
.yf{bottom:730.011000px;}
.y47{bottom:731.310000px;}
.y70{bottom:732.387000px;}
.yc4{bottom:732.984000px;}
.y110{bottom:733.821000px;}
.y21f{bottom:737.067000px;}
.y9a{bottom:739.440000px;}
.y1be{bottom:745.741500px;}
.yf0{bottom:746.016000px;}
.y1ff{bottom:746.034000px;}
.y288{bottom:746.244000px;}
.ye{bottom:747.943500px;}
.y46{bottom:751.635000px;}
.y6f{bottom:752.710500px;}
.y149{bottom:753.547500px;}
.y10f{bottom:754.144500px;}
.yc3{bottom:757.372500px;}
.y21e{bottom:757.390500px;}
.y174{bottom:761.907000px;}
.y99{bottom:763.828500px;}
.y287{bottom:764.178000px;}
.yd{bottom:765.877500px;}
.yef{bottom:766.339500px;}
.y1fe{bottom:766.357500px;}
.y1bd{bottom:770.130000px;}
.y6e{bottom:773.034000px;}
.y10e{bottom:774.469500px;}
.yc2{bottom:777.697500px;}
.y45{bottom:780.924000px;}
.y286{bottom:782.110500px;}
.y175{bottom:782.380495px;}
.y168{bottom:782.380593px;}
.yc{bottom:783.810000px;}
.y98{bottom:784.152000px;}
.yee{bottom:786.663000px;}
.y1fd{bottom:786.681000px;}
.y1bc{bottom:790.453500px;}
.y6d{bottom:793.357500px;}
.y10d{bottom:794.793000px;}
.y285{bottom:800.043000px;}
.yc1{bottom:802.086000px;}
.y97{bottom:804.477000px;}
.y257{bottom:808.126500px;}
.yb{bottom:809.923500px;}
.y1bb{bottom:810.777000px;}
.yed{bottom:811.051500px;}
.y6c{bottom:813.682500px;}
.y10c{bottom:815.116500px;}
.y44{bottom:819.181500px;}
.yc0{bottom:822.409500px;}
.y272{bottom:827.539149px;}
.y23d{bottom:828.600939px;}
.y96{bottom:828.865500px;}
.yec{bottom:831.375000px;}
.y6b{bottom:834.006000px;}
.y10b{bottom:835.440000px;}
.y1fc{bottom:838.387500px;}
.y43{bottom:839.505000px;}
.ybf{bottom:846.798000px;}
.y95{bottom:849.189000px;}
.yeb{bottom:851.700000px;}
.ya{bottom:852.724500px;}
.y6a{bottom:854.329500px;}
.y148{bottom:855.763500px;}
.y42{bottom:859.828500px;}
.ybe{bottom:867.121500px;}
.y198{bottom:868.656000px;}
.y1ef{bottom:870.816000px;}
.y94{bottom:873.577500px;}
.y69{bottom:874.653000px;}
.yea{bottom:876.088500px;}
.y9{bottom:877.165500px;}
.y41{bottom:880.152000px;}
.ybd{bottom:887.445000px;}
.y1dc{bottom:891.288590px;}
.y93{bottom:893.901000px;}
.y68{bottom:894.976500px;}
.ye9{bottom:896.412000px;}
.y40{bottom:900.477000px;}
.y197{bottom:901.548000px;}
.y8{bottom:910.441500px;}
.ybc{bottom:911.833500px;}
.y67{bottom:915.301500px;}
.ye8{bottom:916.735500px;}
.y92{bottom:918.289500px;}
.y10a{bottom:920.800500px;}
.y3f{bottom:924.865500px;}
.y196{bottom:925.936500px;}
.ybb{bottom:932.157000px;}
.y66{bottom:935.625000px;}
.ye7{bottom:937.059000px;}
.y7{bottom:937.639500px;}
.y91{bottom:938.613000px;}
.y109{bottom:941.124000px;}
.y3e{bottom:945.189000px;}
.y195{bottom:950.325000px;}
.yba{bottom:952.482000px;}
.ye6{bottom:961.447500px;}
.y65{bottom:964.914000px;}
.y3d{bottom:965.512500px;}
.y90{bottom:967.903500px;}
.y6{bottom:968.418000px;}
.y194{bottom:974.713500px;}
.yb9{bottom:976.870500px;}
.ye5{bottom:981.771000px;}
.y3c{bottom:985.836000px;}
.yb8{bottom:997.194000px;}
.y193{bottom:999.102000px;}
.ye4{bottom:1002.096000px;}
.y3b{bottom:1006.159500px;}
.y5{bottom:1013.884500px;}
.yb7{bottom:1017.517500px;}
.ye3{bottom:1022.419500px;}
.y192{bottom:1023.490500px;}
.y3a{bottom:1026.484500px;}
.yb6{bottom:1037.841000px;}
.y4{bottom:1040.784000px;}
.ye2{bottom:1042.743000px;}
.y39{bottom:1046.808000px;}
.y191{bottom:1053.945000px;}
.yb5{bottom:1058.164500px;}
.ye1{bottom:1063.066500px;}
.y38{bottom:1067.131500px;}
.y3{bottom:1075.864500px;}
.y37{bottom:1087.455000px;}
.y190{bottom:1091.341500px;}
.y2{bottom:1146.633000px;}
.y1{bottom:1164.565500px;}
.h26{height:18.086556px;}
.h24{height:24.250802px;}
.h27{height:24.511844px;}
.hd{height:24.920288px;}
.h20{height:28.237884px;}
.h10{height:29.760701px;}
.h14{height:29.824244px;}
.h1d{height:32.348709px;}
.h7{height:33.226911px;}
.h21{height:33.885461px;}
.h25{height:33.951123px;}
.h11{height:35.712841px;}
.h15{height:35.789093px;}
.h29{height:36.571571px;}
.h12{height:37.354163px;}
.he{height:37.380431px;}
.h1e{height:38.818451px;}
.h9{height:40.511979px;}
.h1a{height:41.498347px;}
.h3{height:41.504347px;}
.h8{height:41.533535px;}
.h2b{height:43.885886px;}
.h1b{height:44.360832px;}
.h22{height:45.425492px;}
.hb{height:45.447481px;}
.h4{height:45.479441px;}
.ha{height:48.614700px;}
.h2{height:50.748960px;}
.hc{height:56.980911px;}
.h5{height:58.337477px;}
.h6{height:59.254911px;}
.h2a{height:77.003655px;}
.hf{height:182.442887px;}
.h16{height:194.193298px;}
.h17{height:194.607930px;}
.h19{height:206.383430px;}
.h1f{height:212.602447px;}
.h18{height:217.694120px;}
.h13{height:218.271795px;}
.h1c{height:243.552764px;}
.h23{height:268.865918px;}
.h28{height:276.353532px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:302.721838px;}
.w5{width:321.031154px;}
.w3{width:339.730343px;}
.w2{width:339.736299px;}
.w8{width:353.944777px;}
.w4{width:353.946760px;}
.w7{width:614.419319px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x49{left:7.912367px;}
.x48{left:11.408351px;}
.x18{left:13.074366px;}
.x34{left:14.211321px;}
.x17{left:19.218617px;}
.x33{left:20.889880px;}
.x3b{left:23.067714px;}
.x16{left:24.311714px;}
.x32{left:26.425875px;}
.x3a{left:27.900203px;}
.x15{left:29.404810px;}
.x45{left:31.646754px;}
.x1c{left:32.896061px;}
.x3f{left:40.106854px;}
.x38{left:44.523877px;}
.x31{left:51.005590px;}
.x13{left:66.919574px;}
.x1d{left:71.587978px;}
.x4f{left:82.112066px;}
.xd{left:85.039500px;}
.x12{left:88.313751px;}
.x23{left:91.696619px;}
.x2e{left:93.543000px;}
.x21{left:96.118364px;}
.x37{left:98.001007px;}
.xf{left:103.336500px;}
.x4{left:105.243000px;}
.x27{left:108.982499px;}
.x2b{left:110.256513px;}
.xc{left:117.766500px;}
.x40{left:119.718208px;}
.x39{left:122.122817px;}
.x56{left:128.665500px;}
.x54{left:130.522406px;}
.x50{left:134.408503px;}
.x3d{left:138.607500px;}
.x1e{left:139.695263px;}
.x4e{left:143.813068px;}
.x30{left:145.132500px;}
.x14{left:151.654387px;}
.x19{left:153.093468px;}
.x2a{left:155.476500px;}
.x36{left:158.857500px;}
.x24{left:162.901401px;}
.x22{left:165.981000px;}
.x28{left:174.904934px;}
.x2c{left:176.056353px;}
.x1a{left:182.362500px;}
.x52{left:188.366367px;}
.x2{left:189.886500px;}
.x53{left:198.932303px;}
.x2f{left:204.640500px;}
.x1{left:225.688500px;}
.x1f{left:228.669889px;}
.x51{left:229.934242px;}
.x46{left:236.217314px;}
.x25{left:241.617923px;}
.x29{left:250.212682px;}
.x3c{left:254.767874px;}
.x6{left:262.951500px;}
.x5{left:276.367500px;}
.x35{left:291.856564px;}
.x8{left:294.381000px;}
.x47{left:296.154313px;}
.x42{left:297.448500px;}
.xa{left:305.956500px;}
.x55{left:312.874341px;}
.x4d{left:328.435500px;}
.x3{left:366.460500px;}
.x7{left:370.758000px;}
.x9{left:377.725500px;}
.x4c{left:388.750500px;}
.xb{left:418.651500px;}
.xe{left:453.928500px;}
.x43{left:462.111000px;}
.x1b{left:464.865989px;}
.x10{left:472.225500px;}
.x3e{left:483.033218px;}
.x11{left:486.655500px;}
.x44{left:497.554500px;}
.x4a{left:515.236754px;}
.x41{left:524.752500px;}
.x2d{left:532.774500px;}
.x4b{left:534.721973px;}
.x26{left:542.155500px;}
.x20{left:558.915000px;}
@media print{
.v6{vertical-align:-25.791556pt;}
.v3{vertical-align:-23.136000pt;}
.v5{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.114667pt;}
.v2{vertical-align:23.136000pt;}
.v7{vertical-align:35.939630pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.655733pt;}
.ls5{letter-spacing:2.657067pt;}
.ls0{letter-spacing:18.597067pt;}
.ls4{letter-spacing:29.092347pt;}
.ls3{letter-spacing:29.097680pt;}
.ls7{letter-spacing:192.886317pt;}
.ls6{letter-spacing:194.415893pt;}
.ws1e{word-spacing:-31.880533pt;}
.ws3b{word-spacing:-29.090933pt;}
.ws0{word-spacing:-26.566933pt;}
.ws60{word-spacing:-19.258198pt;}
.ws45{word-spacing:-19.141834pt;}
.ws4{word-spacing:-19.128267pt;}
.ws10e{word-spacing:-19.085798pt;}
.ws71{word-spacing:-18.967289pt;}
.ws4f{word-spacing:-18.792743pt;}
.ws4a{word-spacing:-18.734561pt;}
.wsbf{word-spacing:-18.676379pt;}
.ws33{word-spacing:-18.618197pt;}
.ws110{word-spacing:-18.501834pt;}
.ws8e{word-spacing:-18.327288pt;}
.ws44{word-spacing:-18.269106pt;}
.ws40{word-spacing:-18.094561pt;}
.wsb1{word-spacing:-17.978197pt;}
.wsd9{word-spacing:-17.920015pt;}
.wsf6{word-spacing:-17.861833pt;}
.ws62{word-spacing:-17.785997pt;}
.wsb2{word-spacing:-17.745469pt;}
.ws82{word-spacing:-17.629106pt;}
.wsfe{word-spacing:-17.570924pt;}
.ws76{word-spacing:-17.454560pt;}
.wsc0{word-spacing:-17.338196pt;}
.wsb{word-spacing:-17.321641pt;}
.ws107{word-spacing:-17.221833pt;}
.ws8d{word-spacing:-17.163651pt;}
.wsd3{word-spacing:-17.105469pt;}
.ws23{word-spacing:-17.047287pt;}
.ws46{word-spacing:-16.989105pt;}
.wsae{word-spacing:-16.872741pt;}
.ws6d{word-spacing:-16.756378pt;}
.ws68{word-spacing:-16.698196pt;}
.ws4b{word-spacing:-16.581832pt;}
.ws114{word-spacing:-16.290923pt;}
.ws3e{word-spacing:-16.232741pt;}
.wsbe{word-spacing:-16.174559pt;}
.wse1{word-spacing:-16.116377pt;}
.ws5{word-spacing:-16.004028pt;}
.ws75{word-spacing:-16.000013pt;}
.ws21{word-spacing:-15.941831pt;}
.ws7{word-spacing:-15.940267pt;}
.ws6c{word-spacing:-15.767286pt;}
.ws3d{word-spacing:-15.592740pt;}
.ws52{word-spacing:-15.534558pt;}
.ws8a{word-spacing:-15.476377pt;}
.ws15{word-spacing:-15.461955pt;}
.wsa7{word-spacing:-15.418195pt;}
.ws65{word-spacing:-15.360013pt;}
.ws64{word-spacing:-15.301831pt;}
.wsd8{word-spacing:-15.243649pt;}
.ws8c{word-spacing:-15.185467pt;}
.ws90{word-spacing:-15.127285pt;}
.ws2b{word-spacing:-15.069103pt;}
.ws32{word-spacing:-14.952740pt;}
.ws49{word-spacing:-14.894558pt;}
.ws7a{word-spacing:-14.836376pt;}
.wse{word-spacing:-14.771215pt;}
.ws1a{word-spacing:-14.664947pt;}
.ws22{word-spacing:-14.661830pt;}
.ws43{word-spacing:-14.603649pt;}
.wsc1{word-spacing:-14.583492pt;}
.ws2e{word-spacing:-14.545467pt;}
.wsc4{word-spacing:-14.429103pt;}
.ws42{word-spacing:-14.370921pt;}
.wsf9{word-spacing:-14.312739pt;}
.ws86{word-spacing:-14.254557pt;}
.ws11c{word-spacing:-14.186742pt;}
.wsa3{word-spacing:-14.080012pt;}
.ws5c{word-spacing:-14.021830pt;}
.ws69{word-spacing:-13.963648pt;}
.wse5{word-spacing:-13.905466pt;}
.ws2c{word-spacing:-13.847284pt;}
.ws11{word-spacing:-13.814805pt;}
.wsa2{word-spacing:-13.789102pt;}
.ws1c{word-spacing:-13.761671pt;}
.wsc9{word-spacing:-13.730921pt;}
.ws5b{word-spacing:-13.672739pt;}
.ws12{word-spacing:-13.655404pt;}
.ws58{word-spacing:-13.614557pt;}
.ws31{word-spacing:-13.556375pt;}
.ws9{word-spacing:-13.549136pt;}
.ws100{word-spacing:-13.498193pt;}
.ws11b{word-spacing:-13.496002pt;}
.wsa9{word-spacing:-13.440011pt;}
.wsfc{word-spacing:-13.381829pt;}
.ws2{word-spacing:-13.336601pt;}
.ws3{word-spacing:-13.283467pt;}
.ws3a{word-spacing:-13.265466pt;}
.ws59{word-spacing:-13.207284pt;}
.ws9a{word-spacing:-13.149102pt;}
.wsfb{word-spacing:-13.090920pt;}
.wscd{word-spacing:-13.032738pt;}
.wsd7{word-spacing:-12.974556pt;}
.wsa{word-spacing:-12.964663pt;}
.ws67{word-spacing:-12.858193pt;}
.ws11e{word-spacing:-12.805262pt;}
.ws4d{word-spacing:-12.800011pt;}
.ws47{word-spacing:-12.741829pt;}
.ws17{word-spacing:-12.645860pt;}
.wsdd{word-spacing:-12.625465pt;}
.wse4{word-spacing:-12.567283pt;}
.ws10{word-spacing:-12.486459pt;}
.wsa6{word-spacing:-12.450919pt;}
.ws81{word-spacing:-12.392738pt;}
.ws61{word-spacing:-12.334556pt;}
.ws13{word-spacing:-12.327057pt;}
.ws108{word-spacing:-12.276374pt;}
.wse0{word-spacing:-12.218192pt;}
.ws24{word-spacing:-12.160010pt;}
.wsc2{word-spacing:-12.101828pt;}
.wsdc{word-spacing:-12.043646pt;}
.wseb{word-spacing:-12.003021pt;}
.ws79{word-spacing:-11.985465pt;}
.wsf0{word-spacing:-11.962155pt;}
.wsed{word-spacing:-11.957453pt;}
.wsf1{word-spacing:-11.955379pt;}
.wsee{word-spacing:-11.955200pt;}
.wsea{word-spacing:-11.952119pt;}
.wsd6{word-spacing:-11.927283pt;}
.wsa8{word-spacing:-11.869101pt;}
.ws106{word-spacing:-11.810919pt;}
.wsd4{word-spacing:-11.752737pt;}
.ws8f{word-spacing:-11.694555pt;}
.ws7d{word-spacing:-11.636373pt;}
.wsf8{word-spacing:-11.578191pt;}
.wsf{word-spacing:-11.530049pt;}
.ws53{word-spacing:-11.520010pt;}
.ws9e{word-spacing:-11.429171pt;}
.wsd2{word-spacing:-11.403646pt;}
.wse3{word-spacing:-11.345464pt;}
.ws35{word-spacing:-11.287282pt;}
.ws18{word-spacing:-11.264380pt;}
.ws38{word-spacing:-11.229100pt;}
.wsd0{word-spacing:-11.170918pt;}
.ws16{word-spacing:-11.104978pt;}
.ws1d{word-spacing:-11.051844pt;}
.wsc{word-spacing:-10.945577pt;}
.ws89{word-spacing:-10.938191pt;}
.ws83{word-spacing:-10.880009pt;}
.ws93{word-spacing:-10.821827pt;}
.ws41{word-spacing:-10.763645pt;}
.ws9b{word-spacing:-10.705463pt;}
.ws98{word-spacing:-10.647282pt;}
.ws6{word-spacing:-10.626800pt;}
.ws87{word-spacing:-10.472736pt;}
.ws36{word-spacing:-10.414554pt;}
.ws9c{word-spacing:-10.356372pt;}
.wse6{word-spacing:-10.298190pt;}
.ws88{word-spacing:-10.240009pt;}
.ws14{word-spacing:-10.148569pt;}
.ws37{word-spacing:-10.065463pt;}
.wsa4{word-spacing:-10.007281pt;}
.ws74{word-spacing:-9.949099pt;}
.ws70{word-spacing:-9.890917pt;}
.ws1b{word-spacing:-9.882899pt;}
.wsca{word-spacing:-9.832735pt;}
.wsd{word-spacing:-9.829765pt;}
.ws9f{word-spacing:-9.803264pt;}
.ws96{word-spacing:-9.600133pt;}
.ws5e{word-spacing:-9.541826pt;}
.ws11d{word-spacing:-9.510962pt;}
.ws66{word-spacing:-9.483644pt;}
.ws34{word-spacing:-9.425462pt;}
.ws5d{word-spacing:-9.367281pt;}
.ws113{word-spacing:-9.318359pt;}
.ws55{word-spacing:-9.309099pt;}
.ws19{word-spacing:-9.298427pt;}
.ws50{word-spacing:-9.192735pt;}
.ws26{word-spacing:-9.134553pt;}
.wscf{word-spacing:-9.076371pt;}
.ws48{word-spacing:-9.018189pt;}
.ws84{word-spacing:-8.960007pt;}
.ws8{word-spacing:-8.904289pt;}
.ws85{word-spacing:-8.901826pt;}
.ws91{word-spacing:-8.843644pt;}
.ws3f{word-spacing:-8.785462pt;}
.wsc5{word-spacing:-8.727280pt;}
.wse2{word-spacing:-8.669098pt;}
.ws6e{word-spacing:-8.552734pt;}
.wscb{word-spacing:-8.494553pt;}
.ws2d{word-spacing:-8.378189pt;}
.wsdb{word-spacing:-8.320007pt;}
.wsf2{word-spacing:-8.288883pt;}
.wsdf{word-spacing:-8.261825pt;}
.ws6f{word-spacing:-8.145461pt;}
.ws51{word-spacing:-8.087279pt;}
.wsde{word-spacing:-8.029098pt;}
.wsad{word-spacing:-7.854552pt;}
.wsc6{word-spacing:-7.796370pt;}
.wsb3{word-spacing:-7.738188pt;}
.wsaa{word-spacing:-7.680006pt;}
.ws57{word-spacing:-7.505461pt;}
.ws4e{word-spacing:-7.389097pt;}
.ws54{word-spacing:-7.330915pt;}
.ws6b{word-spacing:-7.272733pt;}
.ws20{word-spacing:-7.214551pt;}
.ws77{word-spacing:-7.156370pt;}
.ws5a{word-spacing:-7.040006pt;}
.ws27{word-spacing:-6.865460pt;}
.wsda{word-spacing:-6.807278pt;}
.wse7{word-spacing:-6.690915pt;}
.ws126{word-spacing:-6.632733pt;}
.ws80{word-spacing:-6.458187pt;}
.ws29{word-spacing:-6.400005pt;}
.ws5f{word-spacing:-6.341823pt;}
.ws92{word-spacing:-6.283642pt;}
.ws122{word-spacing:-6.109096pt;}
.ws9d{word-spacing:-6.073242pt;}
.ws12b{word-spacing:-6.050914pt;}
.wsd1{word-spacing:-5.876369pt;}
.ws7e{word-spacing:-5.818187pt;}
.ws7f{word-spacing:-5.760005pt;}
.wsfd{word-spacing:-5.585459pt;}
.wsff{word-spacing:-5.527277pt;}
.ws30{word-spacing:-5.352732pt;}
.wsb5{word-spacing:-5.294550pt;}
.wsd5{word-spacing:-5.236368pt;}
.ws6a{word-spacing:-5.178186pt;}
.ws3c{word-spacing:-5.120004pt;}
.wsb4{word-spacing:-5.061822pt;}
.ws99{word-spacing:-5.003641pt;}
.ws72{word-spacing:-4.887277pt;}
.wsbb{word-spacing:-4.834508pt;}
.wsbd{word-spacing:-4.829095pt;}
.wsa1{word-spacing:-4.712731pt;}
.ws11a{word-spacing:-4.675780pt;}
.ws94{word-spacing:-4.596367pt;}
.wsab{word-spacing:-4.363640pt;}
.ws8b{word-spacing:-4.247276pt;}
.ws10b{word-spacing:-4.189094pt;}
.ws10a{word-spacing:-4.014549pt;}
.ws10f{word-spacing:-3.956367pt;}
.ws115{word-spacing:-3.840003pt;}
.ws102{word-spacing:-3.549094pt;}
.ws4c{word-spacing:-3.490912pt;}
.ws109{word-spacing:-3.374548pt;}
.wscc{word-spacing:-3.258185pt;}
.ws10c{word-spacing:-3.200003pt;}
.ws125{word-spacing:-3.141821pt;}
.ws39{word-spacing:-3.025457pt;}
.ws78{word-spacing:-2.967275pt;}
.ws120{word-spacing:-2.909093pt;}
.ws12a{word-spacing:-2.792730pt;}
.ws1{word-spacing:-2.664087pt;}
.ws7b{word-spacing:-2.443638pt;}
.ws28{word-spacing:-2.327275pt;}
.ws63{word-spacing:-2.036365pt;}
.ws25{word-spacing:-1.978183pt;}
.wsce{word-spacing:-1.745456pt;}
.wsba{word-spacing:-1.629092pt;}
.ws123{word-spacing:-1.221819pt;}
.ws124{word-spacing:-1.163637pt;}
.ws95{word-spacing:-0.930910pt;}
.ws128{word-spacing:-0.872728pt;}
.ws116{word-spacing:-0.814546pt;}
.ws121{word-spacing:-0.756364pt;}
.wsb0{word-spacing:-0.349091pt;}
.wsc8{word-spacing:-0.058182pt;}
.ws2f{word-spacing:0.000000pt;}
.wsf7{word-spacing:0.290909pt;}
.wsc7{word-spacing:0.407273pt;}
.ws1f{word-spacing:0.581819pt;}
.wsa0{word-spacing:0.756364pt;}
.ws112{word-spacing:0.930910pt;}
.ws101{word-spacing:1.454547pt;}
.ws97{word-spacing:2.141492pt;}
.ws7c{word-spacing:2.152729pt;}
.wsc3{word-spacing:2.385457pt;}
.ws11f{word-spacing:2.676366pt;}
.ws129{word-spacing:2.909093pt;}
.wsaf{word-spacing:2.967275pt;}
.ws127{word-spacing:4.130913pt;}
.ws111{word-spacing:4.189094pt;}
.ws10d{word-spacing:4.480004pt;}
.ws56{word-spacing:5.061822pt;}
.wsac{word-spacing:5.643641pt;}
.ws118{word-spacing:6.050914pt;}
.ws117{word-spacing:6.283642pt;}
.ws12c{word-spacing:6.923642pt;}
.wsbc{word-spacing:7.973704pt;}
.wsfa{word-spacing:11.869101pt;}
.wsa5{word-spacing:13.789102pt;}
.ws103{word-spacing:20.913748pt;}
.ws104{word-spacing:23.221894pt;}
.wsf5{word-spacing:23.958338pt;}
.ws73{word-spacing:29.088400pt;}
.ws105{word-spacing:31.877333pt;}
.ws2a{word-spacing:31.882667pt;}
.wsf3{word-spacing:34.618211pt;}
.wsb9{word-spacing:36.363667pt;}
.wsb8{word-spacing:49.118584pt;}
.wsec{word-spacing:69.950235pt;}
.wsb6{word-spacing:79.069157pt;}
.ws119{word-spacing:93.835898pt;}
.wse9{word-spacing:136.683520pt;}
.wsef{word-spacing:136.822339pt;}
.wse8{word-spacing:146.827071pt;}
.wsf4{word-spacing:148.417867pt;}
.wsb7{word-spacing:177.550508pt;}
._2{margin-left:-6.801135pt;}
._27{margin-left:-5.802257pt;}
._3{margin-left:-4.728914pt;}
._4{margin-left:-3.453701pt;}
._0{margin-left:-1.910686pt;}
._8{margin-left:-0.903276pt;}
._1f{width:1.210391pt;}
._3e{width:2.867094pt;}
._45{width:3.781821pt;}
._40{width:6.423483pt;}
._3f{width:7.772893pt;}
._6{width:10.786175pt;}
._1b{width:12.296599pt;}
._f{width:13.725485pt;}
._b{width:14.983750pt;}
._5{width:16.152695pt;}
._22{width:17.207961pt;}
._1{width:18.207969pt;}
._23{width:19.316380pt;}
._c{width:20.244003pt;}
._a{width:21.731751pt;}
._d{width:22.953830pt;}
._7{width:24.600980pt;}
._1e{width:25.566587pt;}
._20{width:26.721969pt;}
._9{width:27.646558pt;}
._12{width:29.032751pt;}
._e{width:30.286304pt;}
._21{width:31.650935pt;}
._1d{width:33.396391pt;}
._26{width:34.532395pt;}
._17{width:35.432757pt;}
._14{width:36.712758pt;}
._10{width:37.818213pt;}
._16{width:40.901852pt;}
._19{width:42.123671pt;}
._1a{width:43.900766pt;}
._3d{width:46.370948pt;}
._1c{width:47.592767pt;}
._25{width:48.906202pt;}
._15{width:52.654589pt;}
._13{width:58.179333pt;}
._24{width:60.276414pt;}
._18{width:63.763200pt;}
._41{width:101.213960pt;}
._43{width:106.245907pt;}
._42{width:108.593472pt;}
._44{width:115.972984pt;}
._30{width:190.452800pt;}
._33{width:204.999733pt;}
._37{width:213.493879pt;}
._3c{width:266.333067pt;}
._34{width:294.308492pt;}
._31{width:302.339056pt;}
._3b{width:328.474133pt;}
._35{width:343.021067pt;}
._3a{width:353.306133pt;}
._29{width:367.853067pt;}
._2e{width:371.923102pt;}
._2c{width:382.397067pt;}
._2b{width:397.639487pt;}
._28{width:436.388610pt;}
._36{width:514.967733pt;}
._39{width:581.130631pt;}
._2f{width:638.445067pt;}
._32{width:652.986133pt;}
._2a{width:872.532800pt;}
._2d{width:887.079733pt;}
._38{width:1313.111733pt;}
._46{width:1679.673223pt;}
._11{width:1708.761223pt;}
.fs12{font-size:22.739659pt;}
.fs10{font-size:23.203733pt;}
.fse{font-size:27.018667pt;}
.fs8{font-size:28.475733pt;}
.fsa{font-size:28.536533pt;}
.fsc{font-size:30.952000pt;}
.fs6{font-size:31.880533pt;}
.fsf{font-size:32.422400pt;}
.fs11{font-size:32.485227pt;}
.fs9{font-size:34.170880pt;}
.fsb{font-size:34.243840pt;}
.fs13{font-size:34.992533pt;}
.fsd{font-size:37.142400pt;}
.fs1{font-size:37.193600pt;}
.fs14{font-size:41.991040pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1de{bottom:6.552027pt;}
.y23f{bottom:6.705516pt;}
.y16a{bottom:7.027722pt;}
.y177{bottom:7.042727pt;}
.y19b{bottom:7.505860pt;}
.y240{bottom:9.813058pt;}
.y23e{bottom:16.984045pt;}
.y1dd{bottom:17.496697pt;}
.y277{bottom:18.155829pt;}
.y263{bottom:18.184438pt;}
.y169{bottom:18.562619pt;}
.y176{bottom:18.602253pt;}
.y19a{bottom:20.043838pt;}
.y241{bottom:23.247240pt;}
.y1df{bottom:24.789627pt;}
.y16b{bottom:26.248842pt;}
.y178{bottom:26.304887pt;}
.y19c{bottom:28.398460pt;}
.y262{bottom:29.595962pt;}
.y261{bottom:41.089061pt;}
.y1f0{bottom:43.688036pt;}
.y16c{bottom:43.813817pt;}
.y36{bottom:45.640000pt;}
.y279{bottom:50.664871pt;}
.y179{bottom:50.746030pt;}
.y260{bottom:52.500584pt;}
.y1e0{bottom:52.958954pt;}
.y172{bottom:56.024448pt;}
.y17d{bottom:56.144069pt;}
.y242{bottom:57.774396pt;}
.y16d{bottom:61.378791pt;}
.y1f1{bottom:62.586445pt;}
.y25f{bottom:63.993683pt;}
.y19d{bottom:64.329533pt;}
.y278{bottom:64.635553pt;}
.y17a{bottom:75.187172pt;}
.y25e{bottom:75.486783pt;}
.y256{bottom:76.190059pt;}
.y1e5{bottom:78.574293pt;}
.y16e{bottom:78.943766pt;}
.y1e1{bottom:81.128280pt;}
.y1f2{bottom:81.484854pt;}
.y27a{bottom:82.367757pt;}
.y259{bottom:85.527032pt;}
.ye0{bottom:87.204000pt;}
.y8f{bottom:87.364000pt;}
.y255{bottom:87.601582pt;}
.y1a1{bottom:90.013010pt;}
.yb4{bottom:90.021333pt;}
.y275{bottom:90.186398pt;}
.y26d{bottom:90.691464pt;}
.y21d{bottom:90.993333pt;}
.y243{bottom:92.301551pt;}
.y167{bottom:92.358667pt;}
.y2a6{bottom:93.465333pt;}
.y271{bottom:95.984000pt;}
.y27b{bottom:96.143210pt;}
.y16f{bottom:96.508740pt;}
.y1db{bottom:97.002667pt;}
.y147{bottom:97.246667pt;}
.y35{bottom:98.293333pt;}
.y64{bottom:98.628000pt;}
.y2e{bottom:98.824000pt;}
.y254{bottom:99.094682pt;}
.y12b{bottom:99.585333pt;}
.y17b{bottom:99.628315pt;}
.y19e{bottom:100.260606pt;}
.y1f3{bottom:100.383263pt;}
.y1ee{bottom:100.394611pt;}
.y108{bottom:100.860000pt;}
.ydf{bottom:101.814667pt;}
.y26c{bottom:102.102988pt;}
.y276{bottom:103.924954pt;}
.y248{bottom:104.377281pt;}
.y23c{bottom:104.701333pt;}
.y8e{bottom:105.429333pt;}
.yb3{bottom:108.086667pt;}
.y21c{bottom:109.058667pt;}
.y1e2{bottom:109.297607pt;}
.y1ed{bottom:110.399961pt;}
.y166{bottom:110.424000pt;}
.y253{bottom:110.506205pt;}
.y2a5{bottom:111.530667pt;}
.y270{bottom:111.925333pt;}
.y27c{bottom:112.074983pt;}
.y26b{bottom:113.596087pt;}
.y27e{bottom:114.042853pt;}
.y170{bottom:114.073715pt;}
.y1da{bottom:115.069333pt;}
.y146{bottom:115.312000pt;}
.y34{bottom:116.358667pt;}
.yde{bottom:116.426667pt;}
.y63{bottom:116.693333pt;}
.y2d{bottom:116.889333pt;}
.y12a{bottom:117.650667pt;}
.y107{bottom:118.925333pt;}
.y1f4{bottom:119.281672pt;}
.y1ec{bottom:120.405311pt;}
.y252{bottom:121.999304pt;}
.y23b{bottom:122.766667pt;}
.y8d{bottom:123.494667pt;}
.y17c{bottom:124.069457pt;}
.y26a{bottom:125.007610pt;}
.y1ba{bottom:125.353333pt;}
.y27d{bottom:125.809093pt;}
.y244{bottom:126.828706pt;}
.y21b{bottom:127.124000pt;}
.y26f{bottom:127.865333pt;}
.y1eb{bottom:127.964205pt;}
.y165{bottom:128.489333pt;}
.y2a4{bottom:129.596000pt;}
.yb2{bottom:129.765333pt;}
.y1fb{bottom:130.030711pt;}
.y171{bottom:131.638689pt;}
.y25d{bottom:132.333652pt;}
.y1d9{bottom:133.134667pt;}
.y145{bottom:133.378667pt;}
.y251{bottom:133.492403pt;}
.y33{bottom:134.424000pt;}
.y62{bottom:134.760000pt;}
.y2c{bottom:134.956000pt;}
.y129{bottom:135.716000pt;}
.ydd{bottom:136.117333pt;}
.y19f{bottom:136.191680pt;}
.y269{bottom:136.500709pt;}
.y106{bottom:136.992000pt;}
.y1e3{bottom:137.466934pt;}
.y1fa{bottom:137.684592pt;}
.y1ea{bottom:137.874567pt;}
.y1a8{bottom:138.042535pt;}
.y1f5{bottom:138.180082pt;}
.y23a{bottom:140.832000pt;}
.y8c{bottom:141.560000pt;}
.y24c{bottom:143.532653pt;}
.y25c{bottom:143.745176pt;}
.y21a{bottom:145.189333pt;}
.y1e9{bottom:145.433462pt;}
.y249{bottom:146.082830pt;}
.y164{bottom:146.556000pt;}
.y1b9{bottom:147.032000pt;}
.y2a3{bottom:147.661333pt;}
.y1f9{bottom:147.689942pt;}
.yb1{bottom:147.830667pt;}
.y268{bottom:147.993809pt;}
.y173{bottom:148.792309pt;}
.y187{bottom:149.110004pt;}
.y181{bottom:149.210327pt;}
.y1a7{bottom:149.395631pt;}
.y24a{bottom:150.441402pt;}
.y144{bottom:151.444000pt;}
.y61{bottom:152.825333pt;}
.y2b{bottom:153.021333pt;}
.y1d8{bottom:154.813333pt;}
.y105{bottom:155.057333pt;}
.y25b{bottom:155.156700pt;}
.y1f8{bottom:155.343824pt;}
.y1e8{bottom:155.438811pt;}
.y26e{bottom:156.690667pt;}
.y1f6{bottom:157.078491pt;}
.y128{bottom:157.394667pt;}
.ydc{bottom:157.926667pt;}
.y266{bottom:158.034058pt;}
.y1a6{bottom:158.054937pt;}
.y239{bottom:158.898667pt;}
.y183{bottom:159.237119pt;}
.y186{bottom:159.577115pt;}
.y8b{bottom:159.626667pt;}
.y180{bottom:159.677439pt;}
.y32{bottom:160.460000pt;}
.y284{bottom:160.656735pt;}
.y245{bottom:161.355861pt;}
.y219{bottom:163.254667pt;}
.y1b8{bottom:165.097333pt;}
.y1e7{bottom:165.349174pt;}
.y1e4{bottom:165.636261pt;}
.y2a2{bottom:165.728000pt;}
.y25a{bottom:166.568223pt;}
.y1a5{bottom:169.408034pt;}
.yb0{bottom:169.509333pt;}
.y18a{bottom:169.681929pt;}
.y18d{bottom:170.044226pt;}
.y17f{bottom:170.144550pt;}
.y60{bottom:170.890667pt;}
.y2a{bottom:171.086667pt;}
.y1a0{bottom:172.122753pt;}
.y163{bottom:172.590667pt;}
.y1d7{bottom:172.878667pt;}
.y1e6{bottom:172.908068pt;}
.y104{bottom:173.122667pt;}
.y283{bottom:173.491887pt;}
.y265{bottom:174.888466pt;}
.y127{bottom:175.460000pt;}
.y1f7{bottom:175.976900pt;}
.y274{bottom:176.186889pt;}
.y238{bottom:176.964000pt;}
.y8a{bottom:177.692000pt;}
.y250{bottom:177.979747pt;}
.y1a4{bottom:178.067340pt;}
.ydb{bottom:179.605333pt;}
.y189{bottom:180.126739pt;}
.y17e{bottom:180.611661pt;}
.y218{bottom:181.321333pt;}
.y18f{bottom:182.041333pt;}
.y1b7{bottom:183.162667pt;}
.y2a1{bottom:183.793333pt;}
.y282{bottom:186.327039pt;}
.y143{bottom:187.574667pt;}
.yaf{bottom:187.576000pt;}
.y5f{bottom:188.956000pt;}
.y29{bottom:189.152000pt;}
.y267{bottom:189.309695pt;}
.y24f{bottom:189.391270pt;}
.y1a3{bottom:189.420436pt;}
.y1d6{bottom:190.944000pt;}
.y103{bottom:191.188000pt;}
.y126{bottom:193.525333pt;}
.y237{bottom:195.029333pt;}
.y89{bottom:195.757333pt;}
.y246{bottom:195.883016pt;}
.y31{bottom:197.122667pt;}
.yda{bottom:197.670667pt;}
.y18e{bottom:197.982667pt;}
.y1a2{bottom:198.079742pt;}
.y281{bottom:199.162191pt;}
.y217{bottom:199.386667pt;}
.y24e{bottom:200.802794pt;}
.y2a0{bottom:201.858667pt;}
.y1b6{bottom:204.841333pt;}
.y142{bottom:205.640000pt;}
.yae{bottom:205.641333pt;}
.y162{bottom:206.597333pt;}
.y28{bottom:207.217333pt;}
.y1d5{bottom:209.009333pt;}
.y102{bottom:209.253333pt;}
.y125{bottom:211.592000pt;}
.y280{bottom:211.997342pt;}
.y24d{bottom:212.214317pt;}
.y236{bottom:213.094667pt;}
.y88{bottom:213.822667pt;}
.y5e{bottom:214.992000pt;}
.y30{bottom:215.188000pt;}
.yd9{bottom:215.736000pt;}
.y216{bottom:217.452000pt;}
.y29f{bottom:219.924000pt;}
.y24b{bottom:222.254567pt;}
.y273{bottom:222.666612pt;}
.y1b5{bottom:222.906667pt;}
.y141{bottom:223.706667pt;}
.y161{bottom:224.662667pt;}
.y27f{bottom:224.832494pt;}
.y27{bottom:225.284000pt;}
.y18b{bottom:226.808000pt;}
.y1d4{bottom:227.076000pt;}
.yad{bottom:227.320000pt;}
.y124{bottom:229.657333pt;}
.y247{bottom:230.410172pt;}
.y101{bottom:230.932000pt;}
.y235{bottom:231.160000pt;}
.y87{bottom:231.888000pt;}
.y2f{bottom:233.253333pt;}
.yd8{bottom:233.801333pt;}
.y215{bottom:235.517333pt;}
.y29e{bottom:237.989333pt;}
.y1b4{bottom:240.973333pt;}
.y160{bottom:242.728000pt;}
.y18c{bottom:245.005429pt;}
.y188{bottom:245.005689pt;}
.y1d3{bottom:245.141333pt;}
.yac{bottom:245.385333pt;}
.y123{bottom:247.722667pt;}
.y5d{bottom:248.997333pt;}
.y100{bottom:248.998667pt;}
.y234{bottom:249.226667pt;}
.y140{bottom:249.741333pt;}
.y86{bottom:249.954667pt;}
.y26{bottom:251.318667pt;}
.yd7{bottom:251.868000pt;}
.y214{bottom:253.582667pt;}
.y29d{bottom:256.056000pt;}
.y1b3{bottom:259.038667pt;}
.y15f{bottom:260.793333pt;}
.yab{bottom:263.450667pt;}
.y122{bottom:265.788000pt;}
.y1d2{bottom:266.820000pt;}
.y5c{bottom:267.064000pt;}
.y233{bottom:267.292000pt;}
.y85{bottom:268.020000pt;}
.y213{bottom:271.649333pt;}
.yd6{bottom:273.546667pt;}
.y29c{bottom:274.121333pt;}
.y15e{bottom:278.858667pt;}
.y1b2{bottom:280.717333pt;}
.y13f{bottom:283.748000pt;}
.y121{bottom:283.853333pt;}
.y1d1{bottom:284.885333pt;}
.y5b{bottom:285.129333pt;}
.y232{bottom:285.357333pt;}
.y84{bottom:286.085333pt;}
.y212{bottom:289.714667pt;}
.y25{bottom:290.616000pt;}
.yd5{bottom:291.612000pt;}
.y29b{bottom:292.186667pt;}
.y15d{bottom:296.925333pt;}
.y1b1{bottom:298.782667pt;}
.y13e{bottom:301.813333pt;}
.y1d0{bottom:302.950667pt;}
.y5a{bottom:303.194667pt;}
.y231{bottom:303.422667pt;}
.y83{bottom:304.150667pt;}
.y120{bottom:305.532000pt;}
.yff{bottom:306.808000pt;}
.y211{bottom:307.780000pt;}
.yd4{bottom:309.677333pt;}
.y29a{bottom:310.252000pt;}
.y24{bottom:314.154667pt;}
.y15c{bottom:314.990667pt;}
.y1b0{bottom:316.848000pt;}
.y13d{bottom:319.878667pt;}
.y1cf{bottom:321.016000pt;}
.y59{bottom:321.260000pt;}
.y230{bottom:321.488000pt;}
.y82{bottom:322.216000pt;}
.y11f{bottom:323.598667pt;}
.yaa{bottom:324.873333pt;}
.y210{bottom:325.845333pt;}
.yd3{bottom:327.742667pt;}
.y299{bottom:328.317333pt;}
.y23{bottom:330.094667pt;}
.y15b{bottom:333.056000pt;}
.y1af{bottom:334.913333pt;}
.y1ce{bottom:339.082667pt;}
.y58{bottom:339.325333pt;}
.y22f{bottom:339.554667pt;}
.y81{bottom:340.282667pt;}
.y13c{bottom:341.557333pt;}
.ya9{bottom:342.940000pt;}
.y20f{bottom:343.910667pt;}
.yd2{bottom:345.808000pt;}
.y22{bottom:346.034667pt;}
.y298{bottom:346.384000pt;}
.yfe{bottom:346.552000pt;}
.y11e{bottom:349.633333pt;}
.y15a{bottom:351.121333pt;}
.y1ae{bottom:356.592000pt;}
.y57{bottom:357.392000pt;}
.y22e{bottom:357.620000pt;}
.y80{bottom:358.348000pt;}
.y13b{bottom:359.622667pt;}
.y1cd{bottom:360.760000pt;}
.ya8{bottom:361.005333pt;}
.y21{bottom:361.974667pt;}
.y20e{bottom:361.977333pt;}
.yd1{bottom:363.874667pt;}
.y297{bottom:364.449333pt;}
.yfd{bottom:364.617333pt;}
.y159{bottom:369.186667pt;}
.y1ad{bottom:374.658667pt;}
.y22d{bottom:375.685333pt;}
.y7f{bottom:376.413333pt;}
.y13a{bottom:377.688000pt;}
.y20{bottom:377.914667pt;}
.y1cc{bottom:378.826667pt;}
.y56{bottom:379.070667pt;}
.y20d{bottom:380.042667pt;}
.y296{bottom:382.514667pt;}
.ya7{bottom:382.684000pt;}
.y11d{bottom:383.640000pt;}
.yd0{bottom:385.553333pt;}
.y158{bottom:390.865333pt;}
.y1ac{bottom:392.724000pt;}
.y22c{bottom:393.750667pt;}
.y1f{bottom:393.856000pt;}
.y7e{bottom:394.478667pt;}
.y139{bottom:395.754667pt;}
.y1cb{bottom:396.892000pt;}
.y55{bottom:397.136000pt;}
.y295{bottom:400.580000pt;}
.ya6{bottom:400.749333pt;}
.y11c{bottom:401.705333pt;}
.y20c{bottom:401.721333pt;}
.ycf{bottom:403.618667pt;}
.y157{bottom:408.932000pt;}
.y1e{bottom:409.796000pt;}
.y1ab{bottom:410.789333pt;}
.y22b{bottom:411.816000pt;}
.y7d{bottom:412.544000pt;}
.y138{bottom:413.820000pt;}
.y1ca{bottom:414.957333pt;}
.y54{bottom:415.201333pt;}
.y294{bottom:418.645333pt;}
.yfc{bottom:418.814667pt;}
.y11b{bottom:419.770667pt;}
.y20b{bottom:419.786667pt;}
.yce{bottom:421.684000pt;}
.ya5{bottom:422.428000pt;}
.y1d{bottom:425.736000pt;}
.y156{bottom:426.997333pt;}
.y22a{bottom:429.882667pt;}
.y7c{bottom:430.610667pt;}
.y137{bottom:431.885333pt;}
.y1aa{bottom:432.468000pt;}
.y1c9{bottom:433.022667pt;}
.y53{bottom:433.266667pt;}
.y293{bottom:436.712000pt;}
.y264{bottom:437.513333pt;}
.y11a{bottom:437.836000pt;}
.y20a{bottom:437.852000pt;}
.ya4{bottom:440.493333pt;}
.y1c{bottom:441.676000pt;}
.ycd{bottom:443.362667pt;}
.yfb{bottom:444.850667pt;}
.y155{bottom:445.062667pt;}
.y229{bottom:447.948000pt;}
.y7b{bottom:448.676000pt;}
.y136{bottom:449.950667pt;}
.y1c8{bottom:451.088000pt;}
.y52{bottom:451.332000pt;}
.y292{bottom:454.777333pt;}
.y258{bottom:455.711317pt;}
.y209{bottom:455.917333pt;}
.y1b{bottom:457.616000pt;}
.ycc{bottom:461.428000pt;}
.ya3{bottom:462.172000pt;}
.y184{bottom:462.289333pt;}
.y154{bottom:463.128000pt;}
.y119{bottom:463.872000pt;}
.y228{bottom:466.013333pt;}
.y7a{bottom:466.741333pt;}
.y135{bottom:468.016000pt;}
.y1c7{bottom:469.154667pt;}
.y51{bottom:469.398667pt;}
.y291{bottom:472.842667pt;}
.y1a{bottom:473.556000pt;}
.y208{bottom:473.984000pt;}
.yfa{bottom:478.856000pt;}
.y182{bottom:480.487216pt;}
.y185{bottom:480.487405pt;}
.y153{bottom:481.193333pt;}
.ya2{bottom:483.850667pt;}
.y227{bottom:484.078667pt;}
.y134{bottom:486.082667pt;}
.y50{bottom:487.464000pt;}
.y79{bottom:488.420000pt;}
.y19{bottom:489.497333pt;}
.y1c6{bottom:490.833333pt;}
.y290{bottom:490.908000pt;}
.y207{bottom:492.049333pt;}
.y1a9{bottom:494.369333pt;}
.yf9{bottom:496.921333pt;}
.y152{bottom:499.260000pt;}
.y118{bottom:500.534667pt;}
.ya1{bottom:501.916000pt;}
.y226{bottom:502.144000pt;}
.y133{bottom:504.148000pt;}
.y18{bottom:505.437333pt;}
.y4f{bottom:505.529333pt;}
.y78{bottom:506.485333pt;}
.y1c5{bottom:508.898667pt;}
.y28f{bottom:508.973333pt;}
.yf8{bottom:514.986667pt;}
.y151{bottom:517.325333pt;}
.y206{bottom:518.085333pt;}
.y117{bottom:518.600000pt;}
.y199{bottom:518.810888pt;}
.y225{bottom:520.210667pt;}
.y17{bottom:521.377333pt;}
.ycb{bottom:521.469333pt;}
.y132{bottom:522.213333pt;}
.y4e{bottom:523.594667pt;}
.y77{bottom:524.550667pt;}
.y1c4{bottom:526.964000pt;}
.y28e{bottom:527.040000pt;}
.yf7{bottom:533.053333pt;}
.y150{bottom:535.390667pt;}
.y116{bottom:536.665333pt;}
.y16{bottom:537.317333pt;}
.y224{bottom:538.276000pt;}
.yca{bottom:539.534667pt;}
.y131{bottom:540.278667pt;}
.y4d{bottom:541.660000pt;}
.ya0{bottom:541.661333pt;}
.y76{bottom:542.617333pt;}
.y28d{bottom:545.105333pt;}
.yf6{bottom:551.118667pt;}
.y1c3{bottom:553.000000pt;}
.y15{bottom:553.257333pt;}
.y14f{bottom:553.456000pt;}
.y205{bottom:554.746667pt;}
.yc9{bottom:557.601333pt;}
.y115{bottom:558.344000pt;}
.y4c{bottom:559.725333pt;}
.y9f{bottom:559.726667pt;}
.y75{bottom:560.682667pt;}
.y130{bottom:561.957333pt;}
.y28c{bottom:563.170667pt;}
.y223{bottom:564.312000pt;}
.y14{bottom:569.197333pt;}
.y14e{bottom:571.521333pt;}
.yf5{bottom:572.797333pt;}
.y204{bottom:572.813333pt;}
.yc8{bottom:575.666667pt;}
.y114{bottom:576.410667pt;}
.y4b{bottom:577.792000pt;}
.y74{bottom:578.748000pt;}
.y12f{bottom:580.022667pt;}
.y28b{bottom:581.236000pt;}
.y9e{bottom:581.405333pt;}
.y13{bottom:585.138667pt;}
.y1c2{bottom:587.005333pt;}
.y14d{bottom:589.588000pt;}
.yf4{bottom:590.862667pt;}
.y203{bottom:590.878667pt;}
.yc7{bottom:593.732000pt;}
.y113{bottom:594.476000pt;}
.y4a{bottom:595.857333pt;}
.y73{bottom:596.813333pt;}
.y12e{bottom:598.089333pt;}
.y28a{bottom:599.301333pt;}
.y9d{bottom:599.470667pt;}
.y222{bottom:600.973333pt;}
.y12{bottom:601.078667pt;}
.y1c1{bottom:605.070667pt;}
.y14c{bottom:607.653333pt;}
.yf3{bottom:608.928000pt;}
.y202{bottom:608.944000pt;}
.y112{bottom:612.541333pt;}
.y49{bottom:613.922667pt;}
.y72{bottom:614.878667pt;}
.yc6{bottom:615.410667pt;}
.y12d{bottom:616.154667pt;}
.y11{bottom:617.018667pt;}
.y289{bottom:617.368000pt;}
.y221{bottom:619.040000pt;}
.y9c{bottom:621.149333pt;}
.y14b{bottom:625.718667pt;}
.y1c0{bottom:626.749333pt;}
.yf2{bottom:626.993333pt;}
.y201{bottom:627.009333pt;}
.y111{bottom:630.606667pt;}
.y48{bottom:631.988000pt;}
.y71{bottom:632.945333pt;}
.y10{bottom:632.958667pt;}
.yc5{bottom:633.476000pt;}
.y12c{bottom:634.220000pt;}
.y220{bottom:637.105333pt;}
.y9b{bottom:639.214667pt;}
.y14a{bottom:643.784000pt;}
.y1bf{bottom:644.816000pt;}
.yf1{bottom:645.060000pt;}
.y200{bottom:645.074667pt;}
.yf{bottom:648.898667pt;}
.y47{bottom:650.053333pt;}
.y70{bottom:651.010667pt;}
.yc4{bottom:651.541333pt;}
.y110{bottom:652.285333pt;}
.y21f{bottom:655.170667pt;}
.y9a{bottom:657.280000pt;}
.y1be{bottom:662.881333pt;}
.yf0{bottom:663.125333pt;}
.y1ff{bottom:663.141333pt;}
.y288{bottom:663.328000pt;}
.ye{bottom:664.838667pt;}
.y46{bottom:668.120000pt;}
.y6f{bottom:669.076000pt;}
.y149{bottom:669.820000pt;}
.y10f{bottom:670.350667pt;}
.yc3{bottom:673.220000pt;}
.y21e{bottom:673.236000pt;}
.y174{bottom:677.250667pt;}
.y99{bottom:678.958667pt;}
.y287{bottom:679.269333pt;}
.yd{bottom:680.780000pt;}
.yef{bottom:681.190667pt;}
.y1fe{bottom:681.206667pt;}
.y1bd{bottom:684.560000pt;}
.y6e{bottom:687.141333pt;}
.y10e{bottom:688.417333pt;}
.yc2{bottom:691.286667pt;}
.y45{bottom:694.154667pt;}
.y286{bottom:695.209333pt;}
.y175{bottom:695.449329pt;}
.y168{bottom:695.449416pt;}
.yc{bottom:696.720000pt;}
.y98{bottom:697.024000pt;}
.yee{bottom:699.256000pt;}
.y1fd{bottom:699.272000pt;}
.y1bc{bottom:702.625333pt;}
.y6d{bottom:705.206667pt;}
.y10d{bottom:706.482667pt;}
.y285{bottom:711.149333pt;}
.yc1{bottom:712.965333pt;}
.y97{bottom:715.090667pt;}
.y257{bottom:718.334667pt;}
.yb{bottom:719.932000pt;}
.y1bb{bottom:720.690667pt;}
.yed{bottom:720.934667pt;}
.y6c{bottom:723.273333pt;}
.y10c{bottom:724.548000pt;}
.y44{bottom:728.161333pt;}
.yc0{bottom:731.030667pt;}
.y272{bottom:735.590355pt;}
.y23d{bottom:736.534168pt;}
.y96{bottom:736.769333pt;}
.yec{bottom:739.000000pt;}
.y6b{bottom:741.338667pt;}
.y10b{bottom:742.613333pt;}
.y1fc{bottom:745.233333pt;}
.y43{bottom:746.226667pt;}
.ybf{bottom:752.709333pt;}
.y95{bottom:754.834667pt;}
.yeb{bottom:757.066667pt;}
.ya{bottom:757.977333pt;}
.y6a{bottom:759.404000pt;}
.y148{bottom:760.678667pt;}
.y42{bottom:764.292000pt;}
.ybe{bottom:770.774667pt;}
.y198{bottom:772.138667pt;}
.y1ef{bottom:774.058667pt;}
.y94{bottom:776.513333pt;}
.y69{bottom:777.469333pt;}
.yea{bottom:778.745333pt;}
.y9{bottom:779.702667pt;}
.y41{bottom:782.357333pt;}
.ybd{bottom:788.840000pt;}
.y1dc{bottom:792.256524pt;}
.y93{bottom:794.578667pt;}
.y68{bottom:795.534667pt;}
.ye9{bottom:796.810667pt;}
.y40{bottom:800.424000pt;}
.y197{bottom:801.376000pt;}
.y8{bottom:809.281333pt;}
.ybc{bottom:810.518667pt;}
.y67{bottom:813.601333pt;}
.ye8{bottom:814.876000pt;}
.y92{bottom:816.257333pt;}
.y10a{bottom:818.489333pt;}
.y3f{bottom:822.102667pt;}
.y196{bottom:823.054667pt;}
.ybb{bottom:828.584000pt;}
.y66{bottom:831.666667pt;}
.ye7{bottom:832.941333pt;}
.y7{bottom:833.457333pt;}
.y91{bottom:834.322667pt;}
.y109{bottom:836.554667pt;}
.y3e{bottom:840.168000pt;}
.y195{bottom:844.733333pt;}
.yba{bottom:846.650667pt;}
.ye6{bottom:854.620000pt;}
.y65{bottom:857.701333pt;}
.y3d{bottom:858.233333pt;}
.y90{bottom:860.358667pt;}
.y6{bottom:860.816000pt;}
.y194{bottom:866.412000pt;}
.yb9{bottom:868.329333pt;}
.ye5{bottom:872.685333pt;}
.y3c{bottom:876.298667pt;}
.yb8{bottom:886.394667pt;}
.y193{bottom:888.090667pt;}
.ye4{bottom:890.752000pt;}
.y3b{bottom:894.364000pt;}
.y5{bottom:901.230667pt;}
.yb7{bottom:904.460000pt;}
.ye3{bottom:908.817333pt;}
.y192{bottom:909.769333pt;}
.y3a{bottom:912.430667pt;}
.yb6{bottom:922.525333pt;}
.y4{bottom:925.141333pt;}
.ye2{bottom:926.882667pt;}
.y39{bottom:930.496000pt;}
.y191{bottom:936.840000pt;}
.yb5{bottom:940.590667pt;}
.ye1{bottom:944.948000pt;}
.y38{bottom:948.561333pt;}
.y3{bottom:956.324000pt;}
.y37{bottom:966.626667pt;}
.y190{bottom:970.081333pt;}
.y2{bottom:1019.229333pt;}
.y1{bottom:1035.169333pt;}
.h26{height:16.076939pt;}
.h24{height:21.556268pt;}
.h27{height:21.788306pt;}
.hd{height:22.151367pt;}
.h20{height:25.100341pt;}
.h10{height:26.453956pt;}
.h14{height:26.510439pt;}
.h1d{height:28.754408pt;}
.h7{height:29.535032pt;}
.h21{height:30.120410pt;}
.h25{height:30.178776pt;}
.h11{height:31.744748pt;}
.h15{height:31.812527pt;}
.h29{height:32.508063pt;}
.h12{height:33.203700pt;}
.he{height:33.227050pt;}
.h1e{height:34.505290pt;}
.h9{height:36.010648pt;}
.h1a{height:36.887420pt;}
.h3{height:36.892753pt;}
.h8{height:36.918697pt;}
.h2b{height:39.009676pt;}
.h1b{height:39.431851pt;}
.h22{height:40.378215pt;}
.hb{height:40.397761pt;}
.h4{height:40.426170pt;}
.ha{height:43.213067pt;}
.h2{height:45.110186pt;}
.hc{height:50.649699pt;}
.h5{height:51.855535pt;}
.h6{height:52.671032pt;}
.h2a{height:68.447693pt;}
.hf{height:162.171455pt;}
.h16{height:172.616265pt;}
.h17{height:172.984827pt;}
.h19{height:183.451938pt;}
.h1f{height:188.979953pt;}
.h18{height:193.505885pt;}
.h13{height:194.019373pt;}
.h1c{height:216.491346pt;}
.h23{height:238.991927pt;}
.h28{height:245.647584pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:269.086078pt;}
.w5{width:285.361025pt;}
.w3{width:301.982527pt;}
.w2{width:301.987822pt;}
.w8{width:314.617579pt;}
.w4{width:314.619342pt;}
.w7{width:546.150506pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x49{left:7.033215pt;}
.x48{left:10.140757pt;}
.x18{left:11.621659pt;}
.x34{left:12.632285pt;}
.x17{left:17.083215pt;}
.x33{left:18.568782pt;}
.x3b{left:20.504635pt;}
.x16{left:21.610412pt;}
.x32{left:23.489666pt;}
.x3a{left:24.800181pt;}
.x15{left:26.137609pt;}
.x45{left:28.130448pt;}
.x1c{left:29.240943pt;}
.x3f{left:35.650537pt;}
.x38{left:39.576779pt;}
.x31{left:45.338302pt;}
.x13{left:59.484066pt;}
.x1d{left:63.633758pt;}
.x4f{left:72.988503pt;}
.xd{left:75.590667pt;}
.x12{left:78.501112pt;}
.x23{left:81.508106pt;}
.x2e{left:83.149333pt;}
.x21{left:85.438546pt;}
.x37{left:87.112006pt;}
.xf{left:91.854667pt;}
.x4{left:93.549333pt;}
.x27{left:96.873332pt;}
.x2b{left:98.005789pt;}
.xc{left:104.681333pt;}
.x40{left:106.416185pt;}
.x39{left:108.553615pt;}
.x56{left:114.369333pt;}
.x54{left:116.019917pt;}
.x50{left:119.474224pt;}
.x3d{left:123.206667pt;}
.x1e{left:124.173567pt;}
.x4e{left:127.833838pt;}
.x30{left:129.006667pt;}
.x14{left:134.803899pt;}
.x19{left:136.083082pt;}
.x2a{left:138.201333pt;}
.x36{left:141.206667pt;}
.x24{left:144.801245pt;}
.x22{left:147.538667pt;}
.x28{left:155.471052pt;}
.x2c{left:156.494536pt;}
.x1a{left:162.100000pt;}
.x52{left:167.436770pt;}
.x2{left:168.788000pt;}
.x53{left:176.828714pt;}
.x2f{left:181.902667pt;}
.x1{left:200.612000pt;}
.x1f{left:203.262124pt;}
.x51{left:204.385993pt;}
.x46{left:209.970945pt;}
.x25{left:214.771487pt;}
.x29{left:222.411272pt;}
.x3c{left:226.460332pt;}
.x6{left:233.734667pt;}
.x5{left:245.660000pt;}
.x35{left:259.428057pt;}
.x8{left:261.672000pt;}
.x47{left:263.248278pt;}
.x42{left:264.398667pt;}
.xa{left:271.961333pt;}
.x55{left:278.110525pt;}
.x4d{left:291.942667pt;}
.x3{left:325.742667pt;}
.x7{left:329.562667pt;}
.x9{left:335.756000pt;}
.x4c{left:345.556000pt;}
.xb{left:372.134667pt;}
.xe{left:403.492000pt;}
.x43{left:410.765333pt;}
.x1b{left:413.214213pt;}
.x10{left:419.756000pt;}
.x3e{left:429.362860pt;}
.x11{left:432.582667pt;}
.x44{left:442.270667pt;}
.x4a{left:457.988226pt;}
.x41{left:466.446667pt;}
.x2d{left:473.577333pt;}
.x4b{left:475.308421pt;}
.x26{left:481.916000pt;}
.x20{left:496.813333pt;}
}




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