
    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_9966f72133fe1e7bcba7be4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_9b35a8f7200c2248c2e66ce7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090000;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_b067f40ec05743fa4a2e698a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.189000;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_fb167fc3b030b24cf79567df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4815244dce80fc49bf5b46a9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_434a06dd84ec00b15a45b72d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.000000,-0.250250,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250250,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250250,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250420,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250420,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250420,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249581,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.841200px;}
.ls2e{letter-spacing:-5.004840px;}
.ls31{letter-spacing:-2.207191px;}
.ls39{letter-spacing:-2.206286px;}
.ls2d{letter-spacing:-1.804179px;}
.ls34{letter-spacing:-1.803440px;}
.lsa{letter-spacing:-1.404000px;}
.ls36{letter-spacing:-1.400594px;}
.ls28{letter-spacing:-1.296000px;}
.ls8{letter-spacing:-1.056000px;}
.ls14{letter-spacing:-0.928800px;}
.ls12{letter-spacing:-0.864000px;}
.ls2f{letter-spacing:-0.605600px;}
.ls9{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.469800px;}
.lsf{letter-spacing:-0.464400px;}
.ls3a{letter-spacing:-0.384000px;}
.ls16{letter-spacing:-0.383400px;}
.ls11{letter-spacing:-0.313200px;}
.ls15{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.232200px;}
.ls10{letter-spacing:-0.205200px;}
.ls32{letter-spacing:-0.186718px;}
.ls7{letter-spacing:-0.126000px;}
.ls19{letter-spacing:-0.027000px;}
.ls1b{letter-spacing:-0.021600px;}
.ls18{letter-spacing:-0.010800px;}
.ls3c{letter-spacing:-0.006300px;}
.ls13{letter-spacing:-0.005400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000480px;}
.lsd{letter-spacing:0.004080px;}
.ls1c{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls1d{letter-spacing:0.009600px;}
.ls3d{letter-spacing:0.010800px;}
.ls33{letter-spacing:0.028726px;}
.ls6{letter-spacing:0.042000px;}
.ls5{letter-spacing:0.063000px;}
.ls2{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.398520px;}
.ls2c{letter-spacing:0.829114px;}
.ls2b{letter-spacing:0.829454px;}
.ls3{letter-spacing:0.864000px;}
.ls38{letter-spacing:1.587964px;}
.ls30{letter-spacing:1.588615px;}
.ls2a{letter-spacing:1.797561px;}
.ls35{letter-spacing:1.803440px;}
.ls0{letter-spacing:2.435400px;}
.ls29{letter-spacing:6.075000px;}
.ls17{letter-spacing:6.409800px;}
.ls3b{letter-spacing:7.479000px;}
.ls24{letter-spacing:326.809680px;}
.ls21{letter-spacing:350.692560px;}
.ls26{letter-spacing:350.693160px;}
.ls20{letter-spacing:353.977680px;}
.ls23{letter-spacing:359.362080px;}
.ls22{letter-spacing:362.458320px;}
.ls1f{letter-spacing:386.050080px;}
.ls25{letter-spacing:386.056080px;}
.ls1e{letter-spacing:389.146320px;}
.ls27{letter-spacing:415.834320px;}
.lsb{letter-spacing:545.323200px;}
.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;}
}
.ws161{word-spacing:-12.600000px;}
.ws162{word-spacing:-12.593700px;}
.ws0{word-spacing:-12.144000px;}
.ws4c{word-spacing:-11.400000px;}
.ws49{word-spacing:-10.805400px;}
.ws4b{word-spacing:-10.800000px;}
.ws1{word-spacing:-10.260000px;}
.wsd2{word-spacing:-9.600000px;}
.ws187{word-spacing:-9.185400px;}
.ws3{word-spacing:-9.180000px;}
.ws2{word-spacing:-8.640000px;}
.wsd3{word-spacing:-8.169600px;}
.wsd4{word-spacing:-8.160000px;}
.ws152{word-spacing:-7.776000px;}
.ws4a{word-spacing:-6.264000px;}
.ws188{word-spacing:-4.676400px;}
.ws1cd{word-spacing:-2.640600px;}
.ws1ec{word-spacing:-2.516400px;}
.ws1ed{word-spacing:-2.489400px;}
.ws1cc{word-spacing:-2.241000px;}
.ws1ee{word-spacing:-2.116800px;}
.ws205{word-spacing:-2.073600px;}
.ws206{word-spacing:-2.068200px;}
.ws12a{word-spacing:-1.850283px;}
.ws1c3{word-spacing:-1.809000px;}
.ws121{word-spacing:-1.635477px;}
.ws127{word-spacing:-1.634807px;}
.ws16c{word-spacing:-1.603800px;}
.ws45{word-spacing:-1.501200px;}
.ws180{word-spacing:-1.431000px;}
.ws9{word-spacing:-1.420200px;}
.ws178{word-spacing:-1.398600px;}
.ws22{word-spacing:-1.366200px;}
.ws18f{word-spacing:-1.339200px;}
.ws207{word-spacing:-1.333800px;}
.ws181{word-spacing:-1.323000px;}
.ws1f3{word-spacing:-1.258200px;}
.wsa{word-spacing:-1.209600px;}
.ws16e{word-spacing:-1.080000px;}
.ws1f2{word-spacing:-1.069200px;}
.ws13b{word-spacing:-0.918000px;}
.ws14f{word-spacing:-0.896081px;}
.ws122{word-spacing:-0.876316px;}
.ws128{word-spacing:-0.875957px;}
.ws184{word-spacing:-0.831600px;}
.ws1fe{word-spacing:-0.783000px;}
.ws85{word-spacing:-0.707400px;}
.ws177{word-spacing:-0.696600px;}
.ws37{word-spacing:-0.658800px;}
.ws108{word-spacing:-0.631800px;}
.ws208{word-spacing:-0.626400px;}
.ws168{word-spacing:-0.614400px;}
.ws21{word-spacing:-0.588600px;}
.ws1c{word-spacing:-0.545400px;}
.ws17f{word-spacing:-0.529200px;}
.ws1ad{word-spacing:-0.523800px;}
.ws209{word-spacing:-0.507600px;}
.ws1a4{word-spacing:-0.469800px;}
.ws1a5{word-spacing:-0.453600px;}
.ws1ac{word-spacing:-0.448200px;}
.ws1fb{word-spacing:-0.405000px;}
.ws183{word-spacing:-0.313200px;}
.wsf9{word-spacing:-0.280800px;}
.ws80{word-spacing:-0.275400px;}
.ws20b{word-spacing:-0.151200px;}
.ws87{word-spacing:-0.135000px;}
.ws148{word-spacing:-0.081000px;}
.ws6{word-spacing:-0.063000px;}
.ws7{word-spacing:-0.042000px;}
.ws50{word-spacing:-0.005400px;}
.wsdd{word-spacing:-0.004800px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.043200px;}
.wsc{word-spacing:0.054000px;}
.ws72{word-spacing:0.097200px;}
.ws8{word-spacing:0.126000px;}
.ws1f8{word-spacing:0.162000px;}
.ws1f7{word-spacing:0.167400px;}
.ws1f9{word-spacing:0.189000px;}
.ws1ae{word-spacing:0.243000px;}
.ws1c0{word-spacing:0.302400px;}
.ws169{word-spacing:0.313200px;}
.ws1cb{word-spacing:0.340200px;}
.ws16a{word-spacing:0.345600px;}
.ws3a{word-spacing:0.383400px;}
.ws112{word-spacing:0.394200px;}
.ws33{word-spacing:0.410400px;}
.ws1e6{word-spacing:0.421200px;}
.ws141{word-spacing:0.480600px;}
.ws200{word-spacing:0.502200px;}
.ws1b3{word-spacing:0.513000px;}
.ws17b{word-spacing:0.523800px;}
.ws20d{word-spacing:0.540000px;}
.ws1f6{word-spacing:0.550800px;}
.ws20a{word-spacing:0.588600px;}
.ws29{word-spacing:0.615600px;}
.ws20c{word-spacing:0.631800px;}
.ws53{word-spacing:0.637200px;}
.ws16b{word-spacing:0.680400px;}
.ws91{word-spacing:0.723600px;}
.ws1c4{word-spacing:0.729000px;}
.ws17d{word-spacing:0.734400px;}
.ws12f{word-spacing:0.745200px;}
.ws54{word-spacing:0.750600px;}
.ws11e{word-spacing:0.772200px;}
.ws65{word-spacing:0.777600px;}
.ws176{word-spacing:0.804600px;}
.ws182{word-spacing:0.874800px;}
.ws51{word-spacing:0.880200px;}
.ws3d{word-spacing:0.885600px;}
.ws1c8{word-spacing:0.907200px;}
.ws1b0{word-spacing:0.912600px;}
.wsf{word-spacing:0.945000px;}
.ws175{word-spacing:0.950400px;}
.ws18e{word-spacing:0.966600px;}
.ws11{word-spacing:0.993600px;}
.ws15{word-spacing:1.004400px;}
.ws11d{word-spacing:1.009800px;}
.wsa0{word-spacing:1.015200px;}
.ws44{word-spacing:1.047600px;}
.ws27{word-spacing:1.053000px;}
.ws17{word-spacing:1.112400px;}
.ws116{word-spacing:1.128600px;}
.ws117{word-spacing:1.134000px;}
.ws6f{word-spacing:1.166400px;}
.ws179{word-spacing:1.177200px;}
.wse{word-spacing:1.231200px;}
.ws84{word-spacing:1.274400px;}
.ws114{word-spacing:1.328400px;}
.ws126{word-spacing:1.353751px;}
.ws1fa{word-spacing:1.387800px;}
.ws195{word-spacing:1.393200px;}
.ws150{word-spacing:1.402388px;}
.ws138{word-spacing:1.404000px;}
.ws10d{word-spacing:1.409400px;}
.ws16d{word-spacing:1.414800px;}
.ws73{word-spacing:1.431000px;}
.ws172{word-spacing:1.447200px;}
.ws14e{word-spacing:1.508592px;}
.ws1b2{word-spacing:1.555200px;}
.ws17e{word-spacing:1.571400px;}
.wsa2{word-spacing:1.582200px;}
.ws134{word-spacing:1.620000px;}
.ws135{word-spacing:1.625400px;}
.ws173{word-spacing:1.728000px;}
.ws28{word-spacing:1.744200px;}
.ws124{word-spacing:1.756598px;}
.ws11f{word-spacing:1.757318px;}
.ws7e{word-spacing:1.765800px;}
.ws151{word-spacing:1.799109px;}
.ws10{word-spacing:1.809000px;}
.ws1b1{word-spacing:1.830600px;}
.ws109{word-spacing:1.846800px;}
.ws130{word-spacing:1.890000px;}
.ws20e{word-spacing:1.900800px;}
.ws102{word-spacing:1.906200px;}
.ws47{word-spacing:1.917000px;}
.ws48{word-spacing:1.927800px;}
.ws18{word-spacing:1.976400px;}
.ws10b{word-spacing:2.008800px;}
.ws62{word-spacing:2.014200px;}
.ws1a{word-spacing:2.041200px;}
.ws3c{word-spacing:2.052000px;}
.ws115{word-spacing:2.057400px;}
.ws1f1{word-spacing:2.062800px;}
.ws174{word-spacing:2.068200px;}
.ws4e{word-spacing:2.122200px;}
.wsa3{word-spacing:2.127600px;}
.ws129{word-spacing:2.159444px;}
.ws1a3{word-spacing:2.160000px;}
.ws123{word-spacing:2.160329px;}
.ws26{word-spacing:2.257200px;}
.ws71{word-spacing:2.273400px;}
.wsf2{word-spacing:2.338200px;}
.ws194{word-spacing:2.376000px;}
.ws3f{word-spacing:2.397600px;}
.ws1f0{word-spacing:2.430000px;}
.ws32{word-spacing:2.451600px;}
.ws189{word-spacing:2.489400px;}
.ws1d4{word-spacing:2.494800px;}
.ws1f5{word-spacing:2.516400px;}
.ws66{word-spacing:2.554200px;}
.ws67{word-spacing:2.570400px;}
.wsb5{word-spacing:2.592000px;}
.ws19{word-spacing:2.640600px;}
.ws1c9{word-spacing:2.667600px;}
.ws16f{word-spacing:2.678400px;}
.ws1b4{word-spacing:2.710800px;}
.ws55{word-spacing:2.764800px;}
.ws1eb{word-spacing:2.797200px;}
.wsb4{word-spacing:2.824200px;}
.ws119{word-spacing:2.867400px;}
.ws31{word-spacing:2.883600px;}
.ws1ab{word-spacing:2.916000px;}
.ws17c{word-spacing:2.943000px;}
.ws1d{word-spacing:3.007800px;}
.wsf0{word-spacing:3.202200px;}
.ws13e{word-spacing:3.207600px;}
.ws1e7{word-spacing:3.218400px;}
.ws1af{word-spacing:3.229200px;}
.ws56{word-spacing:3.250800px;}
.ws1c1{word-spacing:3.256200px;}
.ws98{word-spacing:3.321000px;}
.ws105{word-spacing:3.337200px;}
.ws165{word-spacing:3.342600px;}
.ws166{word-spacing:3.353400px;}
.ws199{word-spacing:3.412800px;}
.ws133{word-spacing:3.445200px;}
.ws1bd{word-spacing:3.466800px;}
.ws14{word-spacing:3.537000px;}
.ws3e{word-spacing:3.547800px;}
.ws1e{word-spacing:3.553200px;}
.wsd6{word-spacing:3.580200px;}
.ws1b9{word-spacing:3.618000px;}
.ws186{word-spacing:3.699000px;}
.wsf3{word-spacing:3.747600px;}
.wsf1{word-spacing:3.769200px;}
.ws1a2{word-spacing:3.790800px;}
.wsf7{word-spacing:3.888000px;}
.ws1d3{word-spacing:3.915000px;}
.ws86{word-spacing:3.925800px;}
.ws10f{word-spacing:4.050000px;}
.ws171{word-spacing:4.055400px;}
.ws13d{word-spacing:4.060800px;}
.wsfa{word-spacing:4.077000px;}
.ws1be{word-spacing:4.082400px;}
.ws16{word-spacing:4.098600px;}
.ws5d{word-spacing:4.104000px;}
.ws1de{word-spacing:4.158000px;}
.ws101{word-spacing:4.163400px;}
.ws83{word-spacing:4.174200px;}
.ws9a{word-spacing:4.185000px;}
.ws1f{word-spacing:4.282200px;}
.ws46{word-spacing:4.287600px;}
.ws204{word-spacing:4.298400px;}
.ws9c{word-spacing:4.314600px;}
.ws13{word-spacing:4.406400px;}
.ws164{word-spacing:4.460400px;}
.ws12d{word-spacing:4.509000px;}
.ws18b{word-spacing:4.568400px;}
.ws12b{word-spacing:4.644000px;}
.ws1a1{word-spacing:4.703400px;}
.ws12c{word-spacing:4.708800px;}
.wsd{word-spacing:4.746600px;}
.wsfe{word-spacing:4.768200px;}
.ws1dd{word-spacing:4.887000px;}
.ws192{word-spacing:4.892400px;}
.ws99{word-spacing:4.897800px;}
.ws43{word-spacing:4.903200px;}
.ws193{word-spacing:4.914000px;}
.ws9b{word-spacing:4.919400px;}
.ws7c{word-spacing:5.005800px;}
.ws1b{word-spacing:5.065200px;}
.ws185{word-spacing:5.124600px;}
.ws60{word-spacing:5.146200px;}
.ws3b{word-spacing:5.151600px;}
.ws142{word-spacing:5.157000px;}
.ws132{word-spacing:5.248800px;}
.ws17a{word-spacing:5.340600px;}
.ws12{word-spacing:5.346000px;}
.wsae{word-spacing:5.378400px;}
.wsac{word-spacing:5.383800px;}
.ws6d{word-spacing:5.394600px;}
.ws6e{word-spacing:5.410800px;}
.ws1fc{word-spacing:5.437800px;}
.ws1a0{word-spacing:5.508000px;}
.ws196{word-spacing:5.551200px;}
.ws197{word-spacing:5.556600px;}
.ws75{word-spacing:5.621400px;}
.ws6c{word-spacing:5.718600px;}
.ws113{word-spacing:5.751000px;}
.ws170{word-spacing:5.756400px;}
.wsa8{word-spacing:5.799600px;}
.ws5f{word-spacing:5.821200px;}
.wsad{word-spacing:5.826600px;}
.ws63{word-spacing:5.832000px;}
.wsdb{word-spacing:5.859000px;}
.ws1b6{word-spacing:5.875200px;}
.ws10a{word-spacing:5.902200px;}
.ws1ba{word-spacing:6.021000px;}
.ws1c6{word-spacing:6.031800px;}
.ws1bb{word-spacing:6.042600px;}
.ws2d{word-spacing:6.053400px;}
.wsf8{word-spacing:6.064200px;}
.ws74{word-spacing:6.075000px;}
.ws190{word-spacing:6.096600px;}
.ws1a6{word-spacing:6.177600px;}
.ws18c{word-spacing:6.204600px;}
.wsa7{word-spacing:6.215400px;}
.wsd8{word-spacing:6.334200px;}
.wsb0{word-spacing:6.409800px;}
.ws61{word-spacing:6.458400px;}
.wsa4{word-spacing:6.480000px;}
.ws18d{word-spacing:6.501600px;}
.ws25{word-spacing:6.523200px;}
.ws58{word-spacing:6.571800px;}
.ws12e{word-spacing:6.604200px;}
.ws76{word-spacing:6.615000px;}
.ws1e2{word-spacing:6.631200px;}
.wsd9{word-spacing:6.642000px;}
.wsde{word-spacing:6.648000px;}
.wsab{word-spacing:6.663600px;}
.ws2f{word-spacing:6.679800px;}
.ws167{word-spacing:6.685200px;}
.ws30{word-spacing:6.690600px;}
.ws14b{word-spacing:6.712200px;}
.wsa5{word-spacing:6.760800px;}
.wsa9{word-spacing:6.825600px;}
.ws143{word-spacing:6.890400px;}
.ws144{word-spacing:6.895800px;}
.ws1b5{word-spacing:6.906600px;}
.wsb6{word-spacing:7.009200px;}
.wsb7{word-spacing:7.020000px;}
.ws2b{word-spacing:7.041600px;}
.ws1d9{word-spacing:7.084800px;}
.ws1c7{word-spacing:7.101000px;}
.ws106{word-spacing:7.149600px;}
.ws11c{word-spacing:7.165800px;}
.ws107{word-spacing:7.171200px;}
.ws1bc{word-spacing:7.263000px;}
.ws1d1{word-spacing:7.268400px;}
.ws1a9{word-spacing:7.279200px;}
.ws1dc{word-spacing:7.327800px;}
.ws34{word-spacing:7.381800px;}
.ws1c2{word-spacing:7.392600px;}
.ws131{word-spacing:7.435800px;}
.ws39{word-spacing:7.479000px;}
.ws140{word-spacing:7.549200px;}
.ws59{word-spacing:7.668000px;}
.ws13f{word-spacing:7.684200px;}
.ws191{word-spacing:7.689600px;}
.ws5a{word-spacing:7.695000px;}
.wsb3{word-spacing:7.727400px;}
.ws1e3{word-spacing:7.797600px;}
.ws93{word-spacing:7.916400px;}
.ws1e0{word-spacing:7.992000px;}
.ws1ef{word-spacing:8.019000px;}
.ws5b{word-spacing:8.040600px;}
.ws4f{word-spacing:8.056800px;}
.ws118{word-spacing:8.067600px;}
.wsda{word-spacing:8.186400px;}
.ws198{word-spacing:8.245800px;}
.ws1b8{word-spacing:8.418600px;}
.ws19c{word-spacing:8.456400px;}
.ws1a8{word-spacing:8.564400px;}
.ws82{word-spacing:8.618400px;}
.ws57{word-spacing:8.748000px;}
.ws14c{word-spacing:8.839800px;}
.wsd7{word-spacing:8.850600px;}
.ws1db{word-spacing:8.904600px;}
.ws1d5{word-spacing:8.947800px;}
.ws20f{word-spacing:8.980200px;}
.ws10e{word-spacing:9.201600px;}
.ws81{word-spacing:9.223200px;}
.ws1e8{word-spacing:9.271800px;}
.ws1bf{word-spacing:9.342000px;}
.ws19e{word-spacing:9.358200px;}
.ws41{word-spacing:9.363600px;}
.ws1df{word-spacing:9.374400px;}
.ws1e1{word-spacing:9.412200px;}
.ws201{word-spacing:9.417600px;}
.ws70{word-spacing:9.439200px;}
.ws5e{word-spacing:9.444600px;}
.ws1ff{word-spacing:9.493200px;}
.ws19d{word-spacing:9.525600px;}
.ws11a{word-spacing:9.531000px;}
.ws19f{word-spacing:9.536400px;}
.ws14a{word-spacing:9.558000px;}
.ws1ea{word-spacing:9.633600px;}
.ws96{word-spacing:9.644400px;}
.ws97{word-spacing:9.666000px;}
.ws1cf{word-spacing:9.844200px;}
.ws1d0{word-spacing:9.849600px;}
.wsb8{word-spacing:9.973800px;}
.ws1d2{word-spacing:10.000800px;}
.wsdc{word-spacing:10.098000px;}
.ws94{word-spacing:10.108800px;}
.ws20{word-spacing:10.125000px;}
.ws35{word-spacing:10.200600px;}
.ws2a{word-spacing:10.216800px;}
.ws1c5{word-spacing:10.276200px;}
.ws36{word-spacing:10.292400px;}
.wsa6{word-spacing:10.308600px;}
.ws95{word-spacing:10.389600px;}
.ws64{word-spacing:10.427400px;}
.ws1aa{word-spacing:10.470600px;}
.ws1da{word-spacing:10.476000px;}
.ws1d6{word-spacing:10.530000px;}
.ws14d{word-spacing:10.638000px;}
.ws146{word-spacing:10.713600px;}
.ws147{word-spacing:10.724400px;}
.wsb1{word-spacing:10.832400px;}
.wsaf{word-spacing:10.837800px;}
.wsf5{word-spacing:10.935000px;}
.ws11b{word-spacing:10.989000px;}
.ws42{word-spacing:11.010600px;}
.ws13c{word-spacing:11.113200px;}
.ws19a{word-spacing:11.156400px;}
.ws103{word-spacing:11.259000px;}
.ws1f4{word-spacing:11.275200px;}
.ws136{word-spacing:11.523600px;}
.ws137{word-spacing:11.529000px;}
.ws52{word-spacing:11.647800px;}
.ws120{word-spacing:11.766998px;}
.wsf6{word-spacing:11.799000px;}
.ws6b{word-spacing:11.858400px;}
.ws100{word-spacing:11.955600px;}
.ws8f{word-spacing:12.128400px;}
.ws104{word-spacing:12.209400px;}
.ws1fd{word-spacing:12.312000px;}
.ws69{word-spacing:12.420000px;}
.wsfd{word-spacing:12.430800px;}
.ws68{word-spacing:12.447000px;}
.ws6a{word-spacing:12.528000px;}
.ws23{word-spacing:12.976200px;}
.ws110{word-spacing:13.051800px;}
.ws111{word-spacing:13.068000px;}
.wsf4{word-spacing:13.078800px;}
.ws90{word-spacing:13.122000px;}
.ws19b{word-spacing:13.132800px;}
.wsb9{word-spacing:13.197600px;}
.ws1a7{word-spacing:13.262400px;}
.ws9f{word-spacing:13.327200px;}
.ws4d{word-spacing:13.386600px;}
.ws7d{word-spacing:13.478400px;}
.ws1e5{word-spacing:13.494600px;}
.ws13a{word-spacing:13.554000px;}
.ws10c{word-spacing:13.672800px;}
.ws145{word-spacing:13.753800px;}
.ws2e{word-spacing:13.780800px;}
.ws203{word-spacing:13.797000px;}
.ws92{word-spacing:13.996800px;}
.ws1b7{word-spacing:14.067000px;}
.wsff{word-spacing:14.326200px;}
.ws7a{word-spacing:14.412600px;}
.ws1e4{word-spacing:14.650200px;}
.ws79{word-spacing:14.752800px;}
.ws1d8{word-spacing:14.844600px;}
.ws8e{word-spacing:14.904000px;}
.ws88{word-spacing:15.001200px;}
.ws1ca{word-spacing:15.044400px;}
.ws1ce{word-spacing:15.201000px;}
.ws5c{word-spacing:15.265800px;}
.wsaa{word-spacing:15.395400px;}
.ws89{word-spacing:15.865200px;}
.ws40{word-spacing:15.973200px;}
.ws5{word-spacing:16.200000px;}
.ws202{word-spacing:16.227000px;}
.ws24{word-spacing:16.281000px;}
.ws18a{word-spacing:16.416000px;}
.ws9e{word-spacing:16.756200px;}
.ws78{word-spacing:16.896600px;}
.wsa1{word-spacing:17.010000px;}
.ws38{word-spacing:17.415000px;}
.ws7f{word-spacing:17.901000px;}
.ws77{word-spacing:18.133200px;}
.ws8d{word-spacing:19.375200px;}
.ws9d{word-spacing:19.585800px;}
.ws1d7{word-spacing:19.726200px;}
.wsb2{word-spacing:20.320200px;}
.ws1e9{word-spacing:20.331000px;}
.ws8c{word-spacing:21.178800px;}
.ws7b{word-spacing:21.416400px;}
.ws8a{word-spacing:22.021200px;}
.ws8b{word-spacing:22.042800px;}
.wsfc{word-spacing:22.264200px;}
.ws149{word-spacing:22.939200px;}
.wsfb{word-spacing:23.560200px;}
.ws163{word-spacing:25.023600px;}
.ws2c{word-spacing:27.918000px;}
.ws139{word-spacing:36.034200px;}
.ws125{word-spacing:95.437113px;}
.wsd5{word-spacing:238.219200px;}
.wsbf{word-spacing:456.000000px;}
.ws15c{word-spacing:459.806400px;}
.ws160{word-spacing:464.035200px;}
.ws15e{word-spacing:464.040000px;}
.ws15a{word-spacing:477.960000px;}
.ws154{word-spacing:482.083200px;}
.ws158{word-spacing:482.088000px;}
.wsba{word-spacing:482.692800px;}
.ws156{word-spacing:504.360000px;}
.wsbc{word-spacing:509.390400px;}
.wsbe{word-spacing:527.683200px;}
.wsbd{word-spacing:534.153600px;}
.wscc{word-spacing:736.104000px;}
.wsc9{word-spacing:752.472000px;}
.wsc5{word-spacing:757.915200px;}
.wse7{word-spacing:758.472000px;}
.wsca{word-spacing:759.384000px;}
.wsc4{word-spacing:760.939200px;}
.wsc1{word-spacing:761.275200px;}
.wscd{word-spacing:763.147200px;}
.wse3{word-spacing:763.915200px;}
.wsc8{word-spacing:764.472000px;}
.wse8{word-spacing:765.384000px;}
.wsc6{word-spacing:765.720000px;}
.wse2{word-spacing:766.939200px;}
.wsdf{word-spacing:767.275200px;}
.wsd1{word-spacing:767.352000px;}
.wsd0{word-spacing:768.667200px;}
.wsea{word-spacing:768.792000px;}
.wseb{word-spacing:769.147200px;}
.wsce{word-spacing:769.704000px;}
.wse6{word-spacing:770.472000px;}
.wsc7{word-spacing:771.307200px;}
.wse4{word-spacing:771.720000px;}
.wscb{word-spacing:771.787200px;}
.wscf{word-spacing:772.296000px;}
.wsc2{word-spacing:772.603200px;}
.wsef{word-spacing:773.352000px;}
.wsee{word-spacing:774.667200px;}
.wsec{word-spacing:775.704000px;}
.wse5{word-spacing:777.307200px;}
.wse9{word-spacing:777.787200px;}
.wsed{word-spacing:778.296000px;}
.wse0{word-spacing:778.603200px;}
.wsc3{word-spacing:784.651200px;}
.wse1{word-spacing:790.651200px;}
.ws15f{word-spacing:792.859200px;}
.ws15b{word-spacing:795.979200px;}
.ws155{word-spacing:808.507200px;}
.wsc0{word-spacing:811.339200px;}
.ws15d{word-spacing:813.739200px;}
.ws159{word-spacing:815.064000px;}
.ws153{word-spacing:816.312000px;}
.ws157{word-spacing:835.243200px;}
.wsbb{word-spacing:1034.064000px;}
._1b{margin-left:-238.135200px;}
._11{margin-left:-34.878600px;}
._45{margin-left:-33.555600px;}
._19{margin-left:-29.635200px;}
._16{margin-left:-27.637200px;}
._3e{margin-left:-25.009200px;}
._15{margin-left:-19.026900px;}
._e{margin-left:-17.955000px;}
._d{margin-left:-16.232400px;}
._12{margin-left:-14.859900px;}
._10{margin-left:-13.645800px;}
._1d{margin-left:-12.641400px;}
._48{margin-left:-11.332800px;}
._c{margin-left:-10.062000px;}
._f{margin-left:-8.424000px;}
._a{margin-left:-7.207200px;}
._0{margin-left:-5.562000px;}
._2{margin-left:-3.888000px;}
._7{margin-left:-2.214000px;}
._1{margin-left:-1.188000px;}
._b{width:1.144800px;}
._5{width:2.488500px;}
._6{width:3.874500px;}
._9{width:5.133000px;}
._8{width:7.141500px;}
._2f{width:8.210700px;}
._14{width:9.747000px;}
._49{width:10.800000px;}
._17{width:13.192200px;}
._1a{width:15.066000px;}
._13{width:16.275600px;}
._47{width:17.296200px;}
._18{width:19.591200px;}
._46{width:23.889600px;}
._3d{width:99.496712px;}
._3c{width:102.133950px;}
._39{width:103.884617px;}
._3a{width:113.655984px;}
._3b{width:117.705519px;}
._36{width:129.612308px;}
._38{width:131.786836px;}
._37{width:136.867776px;}
._35{width:140.496224px;}
._1c{width:147.329700px;}
._41{width:294.422400px;}
._40{width:333.648000px;}
._31{width:359.561880px;}
._3f{width:363.292800px;}
._44{width:491.683200px;}
._43{width:495.926400px;}
._42{width:513.969600px;}
._26{width:543.758400px;}
._24{width:564.456000px;}
._28{width:602.745600px;}
._2a{width:619.449600px;}
._2c{width:655.612800px;}
._32{width:661.612800px;}
._29{width:688.296000px;}
._2b{width:695.894400px;}
._30{width:701.894400px;}
._20{width:722.409600px;}
._2d{width:727.675200px;}
._33{width:733.675200px;}
._2e{width:754.209600px;}
._22{width:762.691200px;}
._21{width:783.768000px;}
._34{width:786.897600px;}
._1e{width:825.052800px;}
._1f{width:829.233600px;}
._4{width:879.314400px;}
._3{width:939.848400px;}
._27{width:979.968000px;}
._23{width:998.841600px;}
._25{width:1025.236800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.840000px;}
.fs7{font-size:31.320000px;}
.fse{font-size:46.842600px;}
.fs9{font-size:46.861800px;}
.fsc{font-size:47.876400px;}
.fs4{font-size:48.000000px;}
.fs10{font-size:50.395200px;}
.fsf{font-size:50.445600px;}
.fsd{font-size:53.068200px;}
.fsb{font-size:53.980800px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:54.071400px;}
.fs6{font-size:57.000000px;}
.fs11{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y169{bottom:0.901350px;}
.y161{bottom:1.801350px;}
.y145{bottom:1.801650px;}
.y16b{bottom:2.701350px;}
.y15f{bottom:6.305700px;}
.y143{bottom:6.309000px;}
.y14c{bottom:7.209150px;}
.y167{bottom:8.107350px;}
.y14b{bottom:30.640500px;}
.y166{bottom:33.331350px;}
.y141{bottom:37.387027px;}
.y15d{bottom:41.294880px;}
.y14a{bottom:54.070650px;}
.y135{bottom:54.511500px;}
.y152{bottom:58.415850px;}
.y165{bottom:58.553850px;}
.y136{bottom:73.436638px;}
.y149{bottom:77.502150px;}
.y1{bottom:78.579900px;}
.y153{bottom:80.034881px;}
.y164{bottom:82.876350px;}
.y137{bottom:92.361776px;}
.y148{bottom:100.932150px;}
.y154{bottom:101.653912px;}
.y163{bottom:108.098850px;}
.y138{bottom:112.187832px;}
.y20f{bottom:114.946200px;}
.y10d{bottom:115.733550px;}
.y66{bottom:116.713050px;}
.ycc{bottom:117.716550px;}
.y2e{bottom:118.081350px;}
.y1d4{bottom:119.605500px;}
.y155{bottom:123.272943px;}
.y120{bottom:123.713700px;}
.y147{bottom:124.363650px;}
.y20a{bottom:125.650200px;}
.y133{bottom:128.556150px;}
.y9b{bottom:128.597550px;}
.y10c{bottom:130.133550px;}
.y139{bottom:131.112970px;}
.y20e{bottom:131.146200px;}
.ycb{bottom:132.116550px;}
.y65{bottom:132.913050px;}
.y162{bottom:133.321500px;}
.y2d{bottom:134.281350px;}
.y1d3{bottom:135.805500px;}
.y11f{bottom:139.913700px;}
.y209{bottom:141.850200px;}
.y10b{bottom:144.533550px;}
.y132{bottom:144.756150px;}
.y9a{bottom:144.797550px;}
.y156{bottom:144.891974px;}
.yca{bottom:146.516550px;}
.y20d{bottom:147.346200px;}
.y64{bottom:149.113050px;}
.y13a{bottom:150.036936px;}
.y2c{bottom:150.481350px;}
.y1d2{bottom:152.005500px;}
.y11e{bottom:156.113700px;}
.y208{bottom:158.050200px;}
.y10a{bottom:158.933550px;}
.yc9{bottom:160.916550px;}
.y131{bottom:160.956150px;}
.y99{bottom:160.997550px;}
.y20c{bottom:163.546200px;}
.y63{bottom:165.313050px;}
.y157{bottom:166.511005px;}
.y2b{bottom:166.681350px;}
.y1d1{bottom:168.205500px;}
.y13b{bottom:168.962074px;}
.y11d{bottom:172.313700px;}
.y109{bottom:173.333550px;}
.y207{bottom:174.250200px;}
.yc8{bottom:175.316550px;}
.y19b{bottom:176.798550px;}
.y130{bottom:177.156150px;}
.y98{bottom:177.197550px;}
.y2a{bottom:182.881350px;}
.y20b{bottom:183.997350px;}
.y1d0{bottom:184.405500px;}
.y62{bottom:185.765550px;}
.y13c{bottom:187.886041px;}
.y158{bottom:188.130036px;}
.y11c{bottom:188.513700px;}
.y206{bottom:190.450200px;}
.y12f{bottom:193.356150px;}
.y97{bottom:193.397550px;}
.y108{bottom:193.592550px;}
.yc7{bottom:195.575550px;}
.y29{bottom:199.081350px;}
.y1cf{bottom:200.605500px;}
.y11b{bottom:204.713700px;}
.y19a{bottom:205.754700px;}
.y205{bottom:206.650200px;}
.y13d{bottom:206.811178px;}
.y12e{bottom:209.556150px;}
.y159{bottom:209.749067px;}
.y107{bottom:213.439050px;}
.y96{bottom:213.850050px;}
.y28{bottom:215.281350px;}
.yc6{bottom:215.422050px;}
.y61{bottom:215.621550px;}
.y1ce{bottom:216.805500px;}
.y11a{bottom:220.913700px;}
.y199{bottom:221.954700px;}
.y204{bottom:222.850200px;}
.y12d{bottom:225.756150px;}
.y13e{bottom:226.637234px;}
.y15a{bottom:231.370440px;}
.y27{bottom:231.481350px;}
.y60{bottom:231.820200px;}
.y1cd{bottom:233.005500px;}
.y106{bottom:233.279550px;}
.yc5{bottom:235.262550px;}
.y119{bottom:237.113700px;}
.y198{bottom:238.154700px;}
.y203{bottom:239.050200px;}
.y12c{bottom:241.956150px;}
.y13f{bottom:245.562372px;}
.y26{bottom:247.681350px;}
.y95{bottom:247.957050px;}
.y5f{bottom:248.020200px;}
.y1cc{bottom:249.205500px;}
.y15b{bottom:252.989471px;}
.y105{bottom:253.126050px;}
.y118{bottom:253.313700px;}
.y197{bottom:254.354700px;}
.yc4{bottom:255.109200px;}
.y202{bottom:255.250200px;}
.y12b{bottom:258.156150px;}
.y25{bottom:263.881350px;}
.y5e{bottom:264.221550px;}
.y140{bottom:264.487510px;}
.y1cb{bottom:265.405500px;}
.y117{bottom:269.513700px;}
.y196{bottom:270.554700px;}
.y201{bottom:271.450200px;}
.y104{bottom:272.978550px;}
.y12a{bottom:274.356150px;}
.y15c{bottom:274.608502px;}
.yc3{bottom:274.961550px;}
.y24{bottom:280.081350px;}
.y5d{bottom:280.421550px;}
.y1ca{bottom:281.605500px;}
.y116{bottom:285.713700px;}
.y195{bottom:286.754700px;}
.y200{bottom:287.650200px;}
.y94{bottom:288.116700px;}
.y129{bottom:290.556150px;}
.y103{bottom:292.831200px;}
.yc2{bottom:294.814050px;}
.y23{bottom:296.281350px;}
.y5c{bottom:296.621550px;}
.y1c9{bottom:297.805500px;}
.y115{bottom:301.913700px;}
.y194{bottom:302.954700px;}
.y1ff{bottom:303.850200px;}
.y93{bottom:304.316700px;}
.y128{bottom:306.756150px;}
.y22{bottom:312.481350px;}
.y102{bottom:312.683700px;}
.y5b{bottom:312.820200px;}
.y1c8{bottom:314.005500px;}
.yc1{bottom:314.666700px;}
.y114{bottom:318.113700px;}
.y193{bottom:319.154700px;}
.y1fe{bottom:320.050200px;}
.y92{bottom:320.516700px;}
.y127{bottom:322.956150px;}
.y21{bottom:328.681350px;}
.y5a{bottom:329.020200px;}
.y1c7{bottom:330.205500px;}
.y101{bottom:332.536200px;}
.y113{bottom:334.313700px;}
.yc0{bottom:334.519200px;}
.y192{bottom:335.354700px;}
.y1fd{bottom:336.250200px;}
.y91{bottom:336.716700px;}
.y126{bottom:339.156150px;}
.y20{bottom:344.881350px;}
.y1c6{bottom:346.405500px;}
.y59{bottom:349.472700px;}
.y112{bottom:350.513700px;}
.y191{bottom:351.554700px;}
.y100{bottom:352.388550px;}
.y1fc{bottom:352.450200px;}
.y90{bottom:352.916700px;}
.ybf{bottom:354.371700px;}
.y125{bottom:355.356150px;}
.y1f{bottom:361.081350px;}
.y1c5{bottom:362.605500px;}
.y111{bottom:366.713700px;}
.y190{bottom:367.754700px;}
.y1fb{bottom:368.650200px;}
.y124{bottom:371.556150px;}
.yff{bottom:372.241200px;}
.y8f{bottom:373.369200px;}
.ybe{bottom:374.225700px;}
.y1e{bottom:377.281350px;}
.y1c4{bottom:378.805500px;}
.y58{bottom:379.328850px;}
.y110{bottom:382.913700px;}
.y18f{bottom:383.954700px;}
.y1fa{bottom:384.850200px;}
.y123{bottom:387.756150px;}
.yfe{bottom:392.093700px;}
.ybd{bottom:394.078200px;}
.y1c3{bottom:395.005500px;}
.y57{bottom:395.528850px;}
.y10f{bottom:399.113700px;}
.y18e{bottom:400.154700px;}
.y1f9{bottom:401.050200px;}
.y8e{bottom:403.225350px;}
.y122{bottom:403.956150px;}
.y1c2{bottom:411.205500px;}
.y56{bottom:411.728850px;}
.yfd{bottom:411.940200px;}
.ybc{bottom:413.924850px;}
.y18d{bottom:416.354700px;}
.y1f8{bottom:417.250200px;}
.y8d{bottom:419.425350px;}
.y10e{bottom:419.566200px;}
.y121{bottom:420.156150px;}
.y1c1{bottom:427.405500px;}
.y55{bottom:427.928850px;}
.y1d{bottom:428.003550px;}
.yfc{bottom:431.786700px;}
.y18c{bottom:432.554700px;}
.y1f7{bottom:433.450200px;}
.ybb{bottom:433.771200px;}
.y8c{bottom:435.625350px;}
.y1c0{bottom:443.605500px;}
.y54{bottom:444.128850px;}
.y18b{bottom:448.754700px;}
.y1f6{bottom:449.650200px;}
.yfb{bottom:451.639200px;}
.y8b{bottom:451.825350px;}
.yba{bottom:453.623700px;}
.y1c{bottom:456.959700px;}
.y1bf{bottom:459.805500px;}
.y53{bottom:460.328850px;}
.y16c{bottom:462.041700px;}
.y18a{bottom:464.954700px;}
.y1f5{bottom:465.850800px;}
.y8a{bottom:468.025350px;}
.yfa{bottom:471.491700px;}
.y1b{bottom:473.159700px;}
.yb9{bottom:473.476350px;}
.y1be{bottom:476.005500px;}
.y52{bottom:476.528850px;}
.y151{bottom:480.693000px;}
.y1f4{bottom:482.050800px;}
.y89{bottom:484.225350px;}
.y189{bottom:485.405850px;}
.y1a{bottom:489.359700px;}
.yf9{bottom:491.344350px;}
.y1bd{bottom:492.204150px;}
.y51{bottom:492.728850px;}
.yb8{bottom:493.328850px;}
.y15e{bottom:494.067000px;}
.y1f3{bottom:498.250800px;}
.y88{bottom:500.425350px;}
.y19{bottom:505.559700px;}
.y188{bottom:507.658200px;}
.y1bc{bottom:508.404150px;}
.y50{bottom:508.928850px;}
.yf8{bottom:511.196850px;}
.yb7{bottom:513.181200px;}
.y1f2{bottom:514.450800px;}
.y87{bottom:516.625350px;}
.y18{bottom:521.759700px;}
.y1bb{bottom:524.604150px;}
.y4f{bottom:525.128850px;}
.y1f1{bottom:530.650800px;}
.yf7{bottom:531.049350px;}
.y86{bottom:532.825350px;}
.yb6{bottom:533.033700px;}
.y17{bottom:537.959700px;}
.y1ba{bottom:540.804150px;}
.y4e{bottom:541.328850px;}
.y1f0{bottom:546.850800px;}
.y187{bottom:547.818000px;}
.yf6{bottom:550.901850px;}
.yb5{bottom:552.886350px;}
.y85{bottom:553.277850px;}
.y16{bottom:554.159700px;}
.y1b9{bottom:557.004150px;}
.y4d{bottom:557.528850px;}
.y1ef{bottom:563.050800px;}
.y186{bottom:564.018000px;}
.y15{bottom:570.359700px;}
.y84{bottom:570.377850px;}
.yf5{bottom:570.755850px;}
.yb4{bottom:572.738850px;}
.y1b8{bottom:573.204150px;}
.y4c{bottom:573.728850px;}
.y1ee{bottom:579.250800px;}
.y185{bottom:580.218000px;}
.y14{bottom:586.559700px;}
.y1b7{bottom:589.404150px;}
.y4b{bottom:589.928850px;}
.yf4{bottom:590.608950px;}
.yb3{bottom:592.591050px;}
.y1ed{bottom:595.450800px;}
.y184{bottom:596.418000px;}
.y83{bottom:600.232350px;}
.y13{bottom:602.759700px;}
.y1b6{bottom:605.604150px;}
.y4a{bottom:610.381350px;}
.yf3{bottom:610.830150px;}
.y1ec{bottom:611.650800px;}
.y183{bottom:612.618000px;}
.yb2{bottom:612.812250px;}
.y82{bottom:616.432350px;}
.y12{bottom:618.959700px;}
.y1b5{bottom:621.804150px;}
.yf2{bottom:625.230150px;}
.yb1{bottom:627.212250px;}
.y1eb{bottom:627.850800px;}
.yf0{bottom:627.949350px;}
.y160{bottom:628.288500px;}
.y182{bottom:628.818000px;}
.yaf{bottom:629.933850px;}
.y81{bottom:632.632350px;}
.y11{bottom:635.159700px;}
.y1b4{bottom:638.004150px;}
.y49{bottom:640.237350px;}
.y1ea{bottom:644.050800px;}
.y181{bottom:645.018000px;}
.yf1{bottom:645.070950px;}
.yb0{bottom:647.053050px;}
.y80{bottom:648.832350px;}
.y10{bottom:651.359700px;}
.y1b3{bottom:654.204150px;}
.y48{bottom:656.437350px;}
.y1e9{bottom:660.250800px;}
.y180{bottom:661.218000px;}
.y7f{bottom:665.032350px;}
.y16a{bottom:665.223000px;}
.yef{bottom:666.557850px;}
.yf{bottom:667.559700px;}
.yae{bottom:668.538750px;}
.y1b2{bottom:670.404150px;}
.y47{bottom:672.637350px;}
.y1e8{bottom:676.450800px;}
.y17f{bottom:677.418000px;}
.y7e{bottom:681.232350px;}
.ye{bottom:683.759700px;}
.y1b1{bottom:686.604150px;}
.y46{bottom:688.837350px;}
.y1e7{bottom:692.650800px;}
.y17e{bottom:693.618000px;}
.yd{bottom:699.959700px;}
.y7d{bottom:701.684850px;}
.yee{bottom:702.556050px;}
.y1b0{bottom:702.804150px;}
.y45{bottom:705.037350px;}
.y1e6{bottom:708.850800px;}
.y17d{bottom:709.818000px;}
.yad{bottom:710.056350px;}
.yed{bottom:718.756050px;}
.y1af{bottom:719.004150px;}
.y1e5{bottom:725.050800px;}
.y44{bottom:725.488500px;}
.y17c{bottom:726.018000px;}
.yc{bottom:728.915850px;}
.yac{bottom:729.909150px;}
.y7c{bottom:731.541000px;}
.yd4{bottom:733.249650px;}
.yec{bottom:734.956050px;}
.y1ae{bottom:735.204150px;}
.y168{bottom:735.486000px;}
.y1e4{bottom:741.250800px;}
.y17b{bottom:742.218000px;}
.yb{bottom:745.115850px;}
.y7b{bottom:747.741000px;}
.yd3{bottom:749.449650px;}
.yab{bottom:749.761950px;}
.yeb{bottom:751.156050px;}
.y1ad{bottom:751.404150px;}
.y1e3{bottom:757.450800px;}
.y17a{bottom:758.418000px;}
.y43{bottom:759.596850px;}
.ya{bottom:761.315850px;}
.y7a{bottom:763.941000px;}
.yd2{bottom:765.649650px;}
.yea{bottom:767.356050px;}
.y1ac{bottom:767.604150px;}
.yaa{bottom:769.615950px;}
.y1e2{bottom:773.650800px;}
.y179{bottom:778.870350px;}
.y79{bottom:780.141000px;}
.yd1{bottom:781.849650px;}
.ye9{bottom:783.556050px;}
.y1ab{bottom:783.804150px;}
.ya9{bottom:789.462750px;}
.y1e1{bottom:789.850800px;}
.y9{bottom:794.522700px;}
.yd0{bottom:798.049650px;}
.ye8{bottom:799.756050px;}
.y42{bottom:799.756650px;}
.y1aa{bottom:800.004150px;}
.y78{bottom:800.593350px;}
.y1e0{bottom:806.050800px;}
.y150{bottom:807.189000px;}
.ya8{bottom:809.303550px;}
.ycf{bottom:814.249650px;}
.ye7{bottom:815.956050px;}
.y41{bottom:815.956650px;}
.y1a9{bottom:816.204150px;}
.y178{bottom:817.028250px;}
.y1df{bottom:822.250800px;}
.y134{bottom:825.841500px;}
.ya7{bottom:829.144350px;}
.y77{bottom:830.449650px;}
.y177{bottom:831.428250px;}
.ye6{bottom:832.156050px;}
.y40{bottom:832.156650px;}
.y1a8{bottom:832.404150px;}
.y142{bottom:834.393000px;}
.y1de{bottom:838.450800px;}
.y8{bottom:839.835000px;}
.y76{bottom:846.649650px;}
.ye5{bottom:848.356050px;}
.y3f{bottom:848.356650px;}
.y1a7{bottom:848.604150px;}
.ya6{bottom:848.985150px;}
.y176{bottom:851.686650px;}
.y1dd{bottom:854.649450px;}
.y75{bottom:862.849650px;}
.ye4{bottom:864.556050px;}
.y3e{bottom:864.556650px;}
.y1a6{bottom:864.804150px;}
.ya5{bottom:868.831950px;}
.y1dc{bottom:870.849450px;}
.y175{bottom:871.539450px;}
.y7{bottom:876.643500px;}
.y74{bottom:879.049650px;}
.ye3{bottom:880.756050px;}
.y3d{bottom:880.756650px;}
.y1a5{bottom:881.004150px;}
.y1db{bottom:887.049450px;}
.ya4{bottom:888.684750px;}
.y174{bottom:891.392250px;}
.y73{bottom:895.249650px;}
.ye2{bottom:896.956050px;}
.y3c{bottom:896.956650px;}
.y1a4{bottom:897.204150px;}
.y1da{bottom:903.249450px;}
.ya3{bottom:908.537550px;}
.y173{bottom:911.245050px;}
.y72{bottom:911.449650px;}
.ye1{bottom:913.156050px;}
.y3b{bottom:913.156650px;}
.y1a3{bottom:913.404150px;}
.y1d9{bottom:919.449450px;}
.y71{bottom:927.649650px;}
.ya2{bottom:928.390350px;}
.ye0{bottom:929.356050px;}
.y3a{bottom:929.356650px;}
.y1a2{bottom:929.604150px;}
.y172{bottom:931.097850px;}
.y1d8{bottom:935.649450px;}
.y70{bottom:943.849650px;}
.ydf{bottom:945.556050px;}
.y39{bottom:945.556650px;}
.y1a1{bottom:945.804150px;}
.ya1{bottom:948.243150px;}
.y171{bottom:950.950650px;}
.y1d7{bottom:951.849450px;}
.y6{bottom:957.771000px;}
.y6f{bottom:960.049650px;}
.yde{bottom:961.756050px;}
.y38{bottom:961.756650px;}
.y1a0{bottom:962.004150px;}
.y144{bottom:964.164000px;}
.y1d6{bottom:968.050800px;}
.ya0{bottom:968.095950px;}
.y146{bottom:968.670000px;}
.y170{bottom:970.803450px;}
.y6e{bottom:976.249650px;}
.ydd{bottom:977.956050px;}
.y37{bottom:977.956650px;}
.y19f{bottom:982.456650px;}
.y1d5{bottom:984.250800px;}
.y9f{bottom:988.317150px;}
.y5{bottom:989.271000px;}
.y16f{bottom:991.024650px;}
.y6d{bottom:992.449650px;}
.ydc{bottom:994.156050px;}
.y36{bottom:994.156650px;}
.yce{bottom:996.700500px;}
.y14e{bottom:998.287827px;}
.y9d{bottom:1002.717150px;}
.ydb{bottom:1010.356050px;}
.y35{bottom:1010.356650px;}
.y16e{bottom:1012.512150px;}
.y6c{bottom:1012.900650px;}
.y9e{bottom:1017.117150px;}
.y4{bottom:1020.771000px;}
.yda{bottom:1026.556050px;}
.y34{bottom:1026.556650px;}
.y16d{bottom:1026.912150px;}
.y9c{bottom:1038.606150px;}
.yd9{bottom:1042.756050px;}
.y6b{bottom:1042.756350px;}
.y33{bottom:1042.756650px;}
.y19e{bottom:1054.705500px;}
.yd8{bottom:1058.956050px;}
.y6a{bottom:1058.956350px;}
.y32{bottom:1058.956650px;}
.y14d{bottom:1068.660150px;}
.y19d{bottom:1070.905500px;}
.yd7{bottom:1075.156050px;}
.y69{bottom:1075.156350px;}
.y31{bottom:1075.156650px;}
.y19c{bottom:1087.105500px;}
.yd6{bottom:1091.356050px;}
.y68{bottom:1091.356350px;}
.y30{bottom:1091.356650px;}
.y14f{bottom:1105.720650px;}
.yd5{bottom:1107.556050px;}
.y67{bottom:1107.556350px;}
.y2f{bottom:1107.556650px;}
.y3{bottom:1129.624800px;}
.y2{bottom:1167.084600px;}
.ycd{bottom:1167.084750px;}
.h1e{height:12.612000px;}
.h1f{height:14.412000px;}
.h19{height:21.619500px;}
.hf{height:22.530000px;}
.h17{height:32.524501px;}
.h18{height:32.529185px;}
.he{height:32.537832px;}
.h14{height:32.728008px;}
.h1c{height:34.154559px;}
.h1a{height:34.188717px;}
.h15{height:36.277090px;}
.h12{height:36.584644px;}
.h10{height:36.646046px;}
.h8{height:39.168000px;}
.h20{height:43.392000px;}
.h9{height:43.608000px;}
.hb{height:43.608600px;}
.ha{height:43.609200px;}
.hc{height:43.614000px;}
.h7{height:43.632000px;}
.h6{height:46.512000px;}
.h1b{height:46.843500px;}
.h22{height:48.816000px;}
.h1{height:49.086000px;}
.h5{height:51.408000px;}
.h11{height:52.269000px;}
.h4{height:53.856000px;}
.h21{height:54.540000px;}
.h3{height:65.448000px;}
.h2{height:95.445000px;}
.h13{height:140.584500px;}
.h1d{height:150.436500px;}
.hd{height:292.425000px;}
.h16{height:302.536500px;}
.h0{height:1263.000000px;}
.w8{width:21.597000px;}
.w4{width:22.492500px;}
.wb{width:27.897000px;}
.w9{width:56.695500px;}
.wa{width:57.594000px;}
.w5{width:58.479000px;}
.w7{width:120.588000px;}
.w3{width:149.346000px;}
.w2{width:479.526000px;}
.w6{width:486.850500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3d{left:1.800600px;}
.x3f{left:15.294450px;}
.x3b{left:33.286669px;}
.x44{left:36.895784px;}
.x3a{left:38.685450px;}
.x43{left:42.295950px;}
.x3c{left:82.769259px;}
.xd{left:106.062600px;}
.x39{left:108.188250px;}
.xe{left:118.818750px;}
.x2{left:127.322550px;}
.x27{left:129.447150px;}
.xa{left:140.076000px;}
.x4{left:143.895450px;}
.x9{left:148.582350px;}
.xf{left:151.014450px;}
.x1d{left:152.533950px;}
.x31{left:155.139450px;}
.x28{left:163.584750px;}
.x29{left:173.614950px;}
.x6{left:175.747950px;}
.x10{left:194.407950px;}
.x12{left:197.037450px;}
.x5{left:210.239700px;}
.x3{left:212.586450px;}
.x11{left:216.024450px;}
.x30{left:223.527450px;}
.x3e{left:225.463500px;}
.x4c{left:232.894950px;}
.x34{left:331.769850px;}
.x33{left:349.811850px;}
.x2c{left:353.029350px;}
.x7{left:367.643100px;}
.x2b{left:371.071350px;}
.x20{left:376.270350px;}
.x49{left:378.662100px;}
.x4a{left:398.153100px;}
.x32{left:400.768650px;}
.x1f{left:403.689150px;}
.x4d{left:410.379600px;}
.x4b{left:414.534600px;}
.x1e{left:417.651150px;}
.x45{left:419.833500px;}
.x8{left:422.959350px;}
.x14{left:444.589800px;}
.x1{left:445.590600px;}
.x13{left:457.345950px;}
.x18{left:464.301600px;}
.xb{left:465.848550px;}
.xc{left:478.604700px;}
.x2a{left:480.036150px;}
.x1b{left:493.361100px;}
.x36{left:496.437450px;}
.x35{left:514.574250px;}
.x2d{left:517.698150px;}
.x23{left:525.773550px;}
.x17{left:536.676600px;}
.x1a{left:538.200600px;}
.x1c{left:539.418600px;}
.x22{left:549.593550px;}
.x41{left:553.139250px;}
.x19{left:554.224800px;}
.x47{left:561.120000px;}
.x21{left:563.650350px;}
.x16{left:567.861750px;}
.x15{left:573.419250px;}
.x42{left:580.211725px;}
.x48{left:583.617000px;}
.x40{left:618.622500px;}
.x46{left:624.114000px;}
.x38{left:655.543050px;}
.x26{left:671.772750px;}
.x2f{left:676.802550px;}
.x37{left:679.339050px;}
.x25{left:689.934750px;}
.x2e{left:700.598550px;}
.x24{left:709.650750px;}
@media print{
.v1{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.081067pt;}
.ls2e{letter-spacing:-4.448747pt;}
.ls31{letter-spacing:-1.961947pt;}
.ls39{letter-spacing:-1.961144pt;}
.ls2d{letter-spacing:-1.603715pt;}
.ls34{letter-spacing:-1.603058pt;}
.lsa{letter-spacing:-1.248000pt;}
.ls36{letter-spacing:-1.244972pt;}
.ls28{letter-spacing:-1.152000pt;}
.ls8{letter-spacing:-0.938667pt;}
.ls14{letter-spacing:-0.825600pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls2f{letter-spacing:-0.538311pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.417600pt;}
.lsf{letter-spacing:-0.412800pt;}
.ls3a{letter-spacing:-0.341333pt;}
.ls16{letter-spacing:-0.340800pt;}
.ls11{letter-spacing:-0.278400pt;}
.ls15{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.206400pt;}
.ls10{letter-spacing:-0.182400pt;}
.ls32{letter-spacing:-0.165972pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls19{letter-spacing:-0.024000pt;}
.ls1b{letter-spacing:-0.019200pt;}
.ls18{letter-spacing:-0.009600pt;}
.ls3c{letter-spacing:-0.005600pt;}
.ls13{letter-spacing:-0.004800pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000427pt;}
.lsd{letter-spacing:0.003627pt;}
.ls1c{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls1d{letter-spacing:0.008533pt;}
.ls3d{letter-spacing:0.009600pt;}
.ls33{letter-spacing:0.025534pt;}
.ls6{letter-spacing:0.037333pt;}
.ls5{letter-spacing:0.056000pt;}
.ls2{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.354240pt;}
.ls2c{letter-spacing:0.736990pt;}
.ls2b{letter-spacing:0.737292pt;}
.ls3{letter-spacing:0.768000pt;}
.ls38{letter-spacing:1.411524pt;}
.ls30{letter-spacing:1.412102pt;}
.ls2a{letter-spacing:1.597832pt;}
.ls35{letter-spacing:1.603058pt;}
.ls0{letter-spacing:2.164800pt;}
.ls29{letter-spacing:5.400000pt;}
.ls17{letter-spacing:5.697600pt;}
.ls3b{letter-spacing:6.648000pt;}
.ls24{letter-spacing:290.497493pt;}
.ls21{letter-spacing:311.726720pt;}
.ls26{letter-spacing:311.727253pt;}
.ls20{letter-spacing:314.646827pt;}
.ls23{letter-spacing:319.432960pt;}
.ls22{letter-spacing:322.185173pt;}
.ls1f{letter-spacing:343.155627pt;}
.ls25{letter-spacing:343.160960pt;}
.ls1e{letter-spacing:345.907840pt;}
.ls27{letter-spacing:369.630507pt;}
.lsb{letter-spacing:484.731733pt;}
.ws161{word-spacing:-11.200000pt;}
.ws162{word-spacing:-11.194400pt;}
.ws0{word-spacing:-10.794667pt;}
.ws4c{word-spacing:-10.133333pt;}
.ws49{word-spacing:-9.604800pt;}
.ws4b{word-spacing:-9.600000pt;}
.ws1{word-spacing:-9.120000pt;}
.wsd2{word-spacing:-8.533333pt;}
.ws187{word-spacing:-8.164800pt;}
.ws3{word-spacing:-8.160000pt;}
.ws2{word-spacing:-7.680000pt;}
.wsd3{word-spacing:-7.261867pt;}
.wsd4{word-spacing:-7.253333pt;}
.ws152{word-spacing:-6.912000pt;}
.ws4a{word-spacing:-5.568000pt;}
.ws188{word-spacing:-4.156800pt;}
.ws1cd{word-spacing:-2.347200pt;}
.ws1ec{word-spacing:-2.236800pt;}
.ws1ed{word-spacing:-2.212800pt;}
.ws1cc{word-spacing:-1.992000pt;}
.ws1ee{word-spacing:-1.881600pt;}
.ws205{word-spacing:-1.843200pt;}
.ws206{word-spacing:-1.838400pt;}
.ws12a{word-spacing:-1.644696pt;}
.ws1c3{word-spacing:-1.608000pt;}
.ws121{word-spacing:-1.453757pt;}
.ws127{word-spacing:-1.453162pt;}
.ws16c{word-spacing:-1.425600pt;}
.ws45{word-spacing:-1.334400pt;}
.ws180{word-spacing:-1.272000pt;}
.ws9{word-spacing:-1.262400pt;}
.ws178{word-spacing:-1.243200pt;}
.ws22{word-spacing:-1.214400pt;}
.ws18f{word-spacing:-1.190400pt;}
.ws207{word-spacing:-1.185600pt;}
.ws181{word-spacing:-1.176000pt;}
.ws1f3{word-spacing:-1.118400pt;}
.wsa{word-spacing:-1.075200pt;}
.ws16e{word-spacing:-0.960000pt;}
.ws1f2{word-spacing:-0.950400pt;}
.ws13b{word-spacing:-0.816000pt;}
.ws14f{word-spacing:-0.796517pt;}
.ws122{word-spacing:-0.778947pt;}
.ws128{word-spacing:-0.778628pt;}
.ws184{word-spacing:-0.739200pt;}
.ws1fe{word-spacing:-0.696000pt;}
.ws85{word-spacing:-0.628800pt;}
.ws177{word-spacing:-0.619200pt;}
.ws37{word-spacing:-0.585600pt;}
.ws108{word-spacing:-0.561600pt;}
.ws208{word-spacing:-0.556800pt;}
.ws168{word-spacing:-0.546133pt;}
.ws21{word-spacing:-0.523200pt;}
.ws1c{word-spacing:-0.484800pt;}
.ws17f{word-spacing:-0.470400pt;}
.ws1ad{word-spacing:-0.465600pt;}
.ws209{word-spacing:-0.451200pt;}
.ws1a4{word-spacing:-0.417600pt;}
.ws1a5{word-spacing:-0.403200pt;}
.ws1ac{word-spacing:-0.398400pt;}
.ws1fb{word-spacing:-0.360000pt;}
.ws183{word-spacing:-0.278400pt;}
.wsf9{word-spacing:-0.249600pt;}
.ws80{word-spacing:-0.244800pt;}
.ws20b{word-spacing:-0.134400pt;}
.ws87{word-spacing:-0.120000pt;}
.ws148{word-spacing:-0.072000pt;}
.ws6{word-spacing:-0.056000pt;}
.ws7{word-spacing:-0.037333pt;}
.ws50{word-spacing:-0.004800pt;}
.wsdd{word-spacing:-0.004267pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.038400pt;}
.wsc{word-spacing:0.048000pt;}
.ws72{word-spacing:0.086400pt;}
.ws8{word-spacing:0.112000pt;}
.ws1f8{word-spacing:0.144000pt;}
.ws1f7{word-spacing:0.148800pt;}
.ws1f9{word-spacing:0.168000pt;}
.ws1ae{word-spacing:0.216000pt;}
.ws1c0{word-spacing:0.268800pt;}
.ws169{word-spacing:0.278400pt;}
.ws1cb{word-spacing:0.302400pt;}
.ws16a{word-spacing:0.307200pt;}
.ws3a{word-spacing:0.340800pt;}
.ws112{word-spacing:0.350400pt;}
.ws33{word-spacing:0.364800pt;}
.ws1e6{word-spacing:0.374400pt;}
.ws141{word-spacing:0.427200pt;}
.ws200{word-spacing:0.446400pt;}
.ws1b3{word-spacing:0.456000pt;}
.ws17b{word-spacing:0.465600pt;}
.ws20d{word-spacing:0.480000pt;}
.ws1f6{word-spacing:0.489600pt;}
.ws20a{word-spacing:0.523200pt;}
.ws29{word-spacing:0.547200pt;}
.ws20c{word-spacing:0.561600pt;}
.ws53{word-spacing:0.566400pt;}
.ws16b{word-spacing:0.604800pt;}
.ws91{word-spacing:0.643200pt;}
.ws1c4{word-spacing:0.648000pt;}
.ws17d{word-spacing:0.652800pt;}
.ws12f{word-spacing:0.662400pt;}
.ws54{word-spacing:0.667200pt;}
.ws11e{word-spacing:0.686400pt;}
.ws65{word-spacing:0.691200pt;}
.ws176{word-spacing:0.715200pt;}
.ws182{word-spacing:0.777600pt;}
.ws51{word-spacing:0.782400pt;}
.ws3d{word-spacing:0.787200pt;}
.ws1c8{word-spacing:0.806400pt;}
.ws1b0{word-spacing:0.811200pt;}
.wsf{word-spacing:0.840000pt;}
.ws175{word-spacing:0.844800pt;}
.ws18e{word-spacing:0.859200pt;}
.ws11{word-spacing:0.883200pt;}
.ws15{word-spacing:0.892800pt;}
.ws11d{word-spacing:0.897600pt;}
.wsa0{word-spacing:0.902400pt;}
.ws44{word-spacing:0.931200pt;}
.ws27{word-spacing:0.936000pt;}
.ws17{word-spacing:0.988800pt;}
.ws116{word-spacing:1.003200pt;}
.ws117{word-spacing:1.008000pt;}
.ws6f{word-spacing:1.036800pt;}
.ws179{word-spacing:1.046400pt;}
.wse{word-spacing:1.094400pt;}
.ws84{word-spacing:1.132800pt;}
.ws114{word-spacing:1.180800pt;}
.ws126{word-spacing:1.203334pt;}
.ws1fa{word-spacing:1.233600pt;}
.ws195{word-spacing:1.238400pt;}
.ws150{word-spacing:1.246567pt;}
.ws138{word-spacing:1.248000pt;}
.ws10d{word-spacing:1.252800pt;}
.ws16d{word-spacing:1.257600pt;}
.ws73{word-spacing:1.272000pt;}
.ws172{word-spacing:1.286400pt;}
.ws14e{word-spacing:1.340971pt;}
.ws1b2{word-spacing:1.382400pt;}
.ws17e{word-spacing:1.396800pt;}
.wsa2{word-spacing:1.406400pt;}
.ws134{word-spacing:1.440000pt;}
.ws135{word-spacing:1.444800pt;}
.ws173{word-spacing:1.536000pt;}
.ws28{word-spacing:1.550400pt;}
.ws124{word-spacing:1.561420pt;}
.ws11f{word-spacing:1.562060pt;}
.ws7e{word-spacing:1.569600pt;}
.ws151{word-spacing:1.599208pt;}
.ws10{word-spacing:1.608000pt;}
.ws1b1{word-spacing:1.627200pt;}
.ws109{word-spacing:1.641600pt;}
.ws130{word-spacing:1.680000pt;}
.ws20e{word-spacing:1.689600pt;}
.ws102{word-spacing:1.694400pt;}
.ws47{word-spacing:1.704000pt;}
.ws48{word-spacing:1.713600pt;}
.ws18{word-spacing:1.756800pt;}
.ws10b{word-spacing:1.785600pt;}
.ws62{word-spacing:1.790400pt;}
.ws1a{word-spacing:1.814400pt;}
.ws3c{word-spacing:1.824000pt;}
.ws115{word-spacing:1.828800pt;}
.ws1f1{word-spacing:1.833600pt;}
.ws174{word-spacing:1.838400pt;}
.ws4e{word-spacing:1.886400pt;}
.wsa3{word-spacing:1.891200pt;}
.ws129{word-spacing:1.919506pt;}
.ws1a3{word-spacing:1.920000pt;}
.ws123{word-spacing:1.920292pt;}
.ws26{word-spacing:2.006400pt;}
.ws71{word-spacing:2.020800pt;}
.wsf2{word-spacing:2.078400pt;}
.ws194{word-spacing:2.112000pt;}
.ws3f{word-spacing:2.131200pt;}
.ws1f0{word-spacing:2.160000pt;}
.ws32{word-spacing:2.179200pt;}
.ws189{word-spacing:2.212800pt;}
.ws1d4{word-spacing:2.217600pt;}
.ws1f5{word-spacing:2.236800pt;}
.ws66{word-spacing:2.270400pt;}
.ws67{word-spacing:2.284800pt;}
.wsb5{word-spacing:2.304000pt;}
.ws19{word-spacing:2.347200pt;}
.ws1c9{word-spacing:2.371200pt;}
.ws16f{word-spacing:2.380800pt;}
.ws1b4{word-spacing:2.409600pt;}
.ws55{word-spacing:2.457600pt;}
.ws1eb{word-spacing:2.486400pt;}
.wsb4{word-spacing:2.510400pt;}
.ws119{word-spacing:2.548800pt;}
.ws31{word-spacing:2.563200pt;}
.ws1ab{word-spacing:2.592000pt;}
.ws17c{word-spacing:2.616000pt;}
.ws1d{word-spacing:2.673600pt;}
.wsf0{word-spacing:2.846400pt;}
.ws13e{word-spacing:2.851200pt;}
.ws1e7{word-spacing:2.860800pt;}
.ws1af{word-spacing:2.870400pt;}
.ws56{word-spacing:2.889600pt;}
.ws1c1{word-spacing:2.894400pt;}
.ws98{word-spacing:2.952000pt;}
.ws105{word-spacing:2.966400pt;}
.ws165{word-spacing:2.971200pt;}
.ws166{word-spacing:2.980800pt;}
.ws199{word-spacing:3.033600pt;}
.ws133{word-spacing:3.062400pt;}
.ws1bd{word-spacing:3.081600pt;}
.ws14{word-spacing:3.144000pt;}
.ws3e{word-spacing:3.153600pt;}
.ws1e{word-spacing:3.158400pt;}
.wsd6{word-spacing:3.182400pt;}
.ws1b9{word-spacing:3.216000pt;}
.ws186{word-spacing:3.288000pt;}
.wsf3{word-spacing:3.331200pt;}
.wsf1{word-spacing:3.350400pt;}
.ws1a2{word-spacing:3.369600pt;}
.wsf7{word-spacing:3.456000pt;}
.ws1d3{word-spacing:3.480000pt;}
.ws86{word-spacing:3.489600pt;}
.ws10f{word-spacing:3.600000pt;}
.ws171{word-spacing:3.604800pt;}
.ws13d{word-spacing:3.609600pt;}
.wsfa{word-spacing:3.624000pt;}
.ws1be{word-spacing:3.628800pt;}
.ws16{word-spacing:3.643200pt;}
.ws5d{word-spacing:3.648000pt;}
.ws1de{word-spacing:3.696000pt;}
.ws101{word-spacing:3.700800pt;}
.ws83{word-spacing:3.710400pt;}
.ws9a{word-spacing:3.720000pt;}
.ws1f{word-spacing:3.806400pt;}
.ws46{word-spacing:3.811200pt;}
.ws204{word-spacing:3.820800pt;}
.ws9c{word-spacing:3.835200pt;}
.ws13{word-spacing:3.916800pt;}
.ws164{word-spacing:3.964800pt;}
.ws12d{word-spacing:4.008000pt;}
.ws18b{word-spacing:4.060800pt;}
.ws12b{word-spacing:4.128000pt;}
.ws1a1{word-spacing:4.180800pt;}
.ws12c{word-spacing:4.185600pt;}
.wsd{word-spacing:4.219200pt;}
.wsfe{word-spacing:4.238400pt;}
.ws1dd{word-spacing:4.344000pt;}
.ws192{word-spacing:4.348800pt;}
.ws99{word-spacing:4.353600pt;}
.ws43{word-spacing:4.358400pt;}
.ws193{word-spacing:4.368000pt;}
.ws9b{word-spacing:4.372800pt;}
.ws7c{word-spacing:4.449600pt;}
.ws1b{word-spacing:4.502400pt;}
.ws185{word-spacing:4.555200pt;}
.ws60{word-spacing:4.574400pt;}
.ws3b{word-spacing:4.579200pt;}
.ws142{word-spacing:4.584000pt;}
.ws132{word-spacing:4.665600pt;}
.ws17a{word-spacing:4.747200pt;}
.ws12{word-spacing:4.752000pt;}
.wsae{word-spacing:4.780800pt;}
.wsac{word-spacing:4.785600pt;}
.ws6d{word-spacing:4.795200pt;}
.ws6e{word-spacing:4.809600pt;}
.ws1fc{word-spacing:4.833600pt;}
.ws1a0{word-spacing:4.896000pt;}
.ws196{word-spacing:4.934400pt;}
.ws197{word-spacing:4.939200pt;}
.ws75{word-spacing:4.996800pt;}
.ws6c{word-spacing:5.083200pt;}
.ws113{word-spacing:5.112000pt;}
.ws170{word-spacing:5.116800pt;}
.wsa8{word-spacing:5.155200pt;}
.ws5f{word-spacing:5.174400pt;}
.wsad{word-spacing:5.179200pt;}
.ws63{word-spacing:5.184000pt;}
.wsdb{word-spacing:5.208000pt;}
.ws1b6{word-spacing:5.222400pt;}
.ws10a{word-spacing:5.246400pt;}
.ws1ba{word-spacing:5.352000pt;}
.ws1c6{word-spacing:5.361600pt;}
.ws1bb{word-spacing:5.371200pt;}
.ws2d{word-spacing:5.380800pt;}
.wsf8{word-spacing:5.390400pt;}
.ws74{word-spacing:5.400000pt;}
.ws190{word-spacing:5.419200pt;}
.ws1a6{word-spacing:5.491200pt;}
.ws18c{word-spacing:5.515200pt;}
.wsa7{word-spacing:5.524800pt;}
.wsd8{word-spacing:5.630400pt;}
.wsb0{word-spacing:5.697600pt;}
.ws61{word-spacing:5.740800pt;}
.wsa4{word-spacing:5.760000pt;}
.ws18d{word-spacing:5.779200pt;}
.ws25{word-spacing:5.798400pt;}
.ws58{word-spacing:5.841600pt;}
.ws12e{word-spacing:5.870400pt;}
.ws76{word-spacing:5.880000pt;}
.ws1e2{word-spacing:5.894400pt;}
.wsd9{word-spacing:5.904000pt;}
.wsde{word-spacing:5.909333pt;}
.wsab{word-spacing:5.923200pt;}
.ws2f{word-spacing:5.937600pt;}
.ws167{word-spacing:5.942400pt;}
.ws30{word-spacing:5.947200pt;}
.ws14b{word-spacing:5.966400pt;}
.wsa5{word-spacing:6.009600pt;}
.wsa9{word-spacing:6.067200pt;}
.ws143{word-spacing:6.124800pt;}
.ws144{word-spacing:6.129600pt;}
.ws1b5{word-spacing:6.139200pt;}
.wsb6{word-spacing:6.230400pt;}
.wsb7{word-spacing:6.240000pt;}
.ws2b{word-spacing:6.259200pt;}
.ws1d9{word-spacing:6.297600pt;}
.ws1c7{word-spacing:6.312000pt;}
.ws106{word-spacing:6.355200pt;}
.ws11c{word-spacing:6.369600pt;}
.ws107{word-spacing:6.374400pt;}
.ws1bc{word-spacing:6.456000pt;}
.ws1d1{word-spacing:6.460800pt;}
.ws1a9{word-spacing:6.470400pt;}
.ws1dc{word-spacing:6.513600pt;}
.ws34{word-spacing:6.561600pt;}
.ws1c2{word-spacing:6.571200pt;}
.ws131{word-spacing:6.609600pt;}
.ws39{word-spacing:6.648000pt;}
.ws140{word-spacing:6.710400pt;}
.ws59{word-spacing:6.816000pt;}
.ws13f{word-spacing:6.830400pt;}
.ws191{word-spacing:6.835200pt;}
.ws5a{word-spacing:6.840000pt;}
.wsb3{word-spacing:6.868800pt;}
.ws1e3{word-spacing:6.931200pt;}
.ws93{word-spacing:7.036800pt;}
.ws1e0{word-spacing:7.104000pt;}
.ws1ef{word-spacing:7.128000pt;}
.ws5b{word-spacing:7.147200pt;}
.ws4f{word-spacing:7.161600pt;}
.ws118{word-spacing:7.171200pt;}
.wsda{word-spacing:7.276800pt;}
.ws198{word-spacing:7.329600pt;}
.ws1b8{word-spacing:7.483200pt;}
.ws19c{word-spacing:7.516800pt;}
.ws1a8{word-spacing:7.612800pt;}
.ws82{word-spacing:7.660800pt;}
.ws57{word-spacing:7.776000pt;}
.ws14c{word-spacing:7.857600pt;}
.wsd7{word-spacing:7.867200pt;}
.ws1db{word-spacing:7.915200pt;}
.ws1d5{word-spacing:7.953600pt;}
.ws20f{word-spacing:7.982400pt;}
.ws10e{word-spacing:8.179200pt;}
.ws81{word-spacing:8.198400pt;}
.ws1e8{word-spacing:8.241600pt;}
.ws1bf{word-spacing:8.304000pt;}
.ws19e{word-spacing:8.318400pt;}
.ws41{word-spacing:8.323200pt;}
.ws1df{word-spacing:8.332800pt;}
.ws1e1{word-spacing:8.366400pt;}
.ws201{word-spacing:8.371200pt;}
.ws70{word-spacing:8.390400pt;}
.ws5e{word-spacing:8.395200pt;}
.ws1ff{word-spacing:8.438400pt;}
.ws19d{word-spacing:8.467200pt;}
.ws11a{word-spacing:8.472000pt;}
.ws19f{word-spacing:8.476800pt;}
.ws14a{word-spacing:8.496000pt;}
.ws1ea{word-spacing:8.563200pt;}
.ws96{word-spacing:8.572800pt;}
.ws97{word-spacing:8.592000pt;}
.ws1cf{word-spacing:8.750400pt;}
.ws1d0{word-spacing:8.755200pt;}
.wsb8{word-spacing:8.865600pt;}
.ws1d2{word-spacing:8.889600pt;}
.wsdc{word-spacing:8.976000pt;}
.ws94{word-spacing:8.985600pt;}
.ws20{word-spacing:9.000000pt;}
.ws35{word-spacing:9.067200pt;}
.ws2a{word-spacing:9.081600pt;}
.ws1c5{word-spacing:9.134400pt;}
.ws36{word-spacing:9.148800pt;}
.wsa6{word-spacing:9.163200pt;}
.ws95{word-spacing:9.235200pt;}
.ws64{word-spacing:9.268800pt;}
.ws1aa{word-spacing:9.307200pt;}
.ws1da{word-spacing:9.312000pt;}
.ws1d6{word-spacing:9.360000pt;}
.ws14d{word-spacing:9.456000pt;}
.ws146{word-spacing:9.523200pt;}
.ws147{word-spacing:9.532800pt;}
.wsb1{word-spacing:9.628800pt;}
.wsaf{word-spacing:9.633600pt;}
.wsf5{word-spacing:9.720000pt;}
.ws11b{word-spacing:9.768000pt;}
.ws42{word-spacing:9.787200pt;}
.ws13c{word-spacing:9.878400pt;}
.ws19a{word-spacing:9.916800pt;}
.ws103{word-spacing:10.008000pt;}
.ws1f4{word-spacing:10.022400pt;}
.ws136{word-spacing:10.243200pt;}
.ws137{word-spacing:10.248000pt;}
.ws52{word-spacing:10.353600pt;}
.ws120{word-spacing:10.459554pt;}
.wsf6{word-spacing:10.488000pt;}
.ws6b{word-spacing:10.540800pt;}
.ws100{word-spacing:10.627200pt;}
.ws8f{word-spacing:10.780800pt;}
.ws104{word-spacing:10.852800pt;}
.ws1fd{word-spacing:10.944000pt;}
.ws69{word-spacing:11.040000pt;}
.wsfd{word-spacing:11.049600pt;}
.ws68{word-spacing:11.064000pt;}
.ws6a{word-spacing:11.136000pt;}
.ws23{word-spacing:11.534400pt;}
.ws110{word-spacing:11.601600pt;}
.ws111{word-spacing:11.616000pt;}
.wsf4{word-spacing:11.625600pt;}
.ws90{word-spacing:11.664000pt;}
.ws19b{word-spacing:11.673600pt;}
.wsb9{word-spacing:11.731200pt;}
.ws1a7{word-spacing:11.788800pt;}
.ws9f{word-spacing:11.846400pt;}
.ws4d{word-spacing:11.899200pt;}
.ws7d{word-spacing:11.980800pt;}
.ws1e5{word-spacing:11.995200pt;}
.ws13a{word-spacing:12.048000pt;}
.ws10c{word-spacing:12.153600pt;}
.ws145{word-spacing:12.225600pt;}
.ws2e{word-spacing:12.249600pt;}
.ws203{word-spacing:12.264000pt;}
.ws92{word-spacing:12.441600pt;}
.ws1b7{word-spacing:12.504000pt;}
.wsff{word-spacing:12.734400pt;}
.ws7a{word-spacing:12.811200pt;}
.ws1e4{word-spacing:13.022400pt;}
.ws79{word-spacing:13.113600pt;}
.ws1d8{word-spacing:13.195200pt;}
.ws8e{word-spacing:13.248000pt;}
.ws88{word-spacing:13.334400pt;}
.ws1ca{word-spacing:13.372800pt;}
.ws1ce{word-spacing:13.512000pt;}
.ws5c{word-spacing:13.569600pt;}
.wsaa{word-spacing:13.684800pt;}
.ws89{word-spacing:14.102400pt;}
.ws40{word-spacing:14.198400pt;}
.ws5{word-spacing:14.400000pt;}
.ws202{word-spacing:14.424000pt;}
.ws24{word-spacing:14.472000pt;}
.ws18a{word-spacing:14.592000pt;}
.ws9e{word-spacing:14.894400pt;}
.ws78{word-spacing:15.019200pt;}
.wsa1{word-spacing:15.120000pt;}
.ws38{word-spacing:15.480000pt;}
.ws7f{word-spacing:15.912000pt;}
.ws77{word-spacing:16.118400pt;}
.ws8d{word-spacing:17.222400pt;}
.ws9d{word-spacing:17.409600pt;}
.ws1d7{word-spacing:17.534400pt;}
.wsb2{word-spacing:18.062400pt;}
.ws1e9{word-spacing:18.072000pt;}
.ws8c{word-spacing:18.825600pt;}
.ws7b{word-spacing:19.036800pt;}
.ws8a{word-spacing:19.574400pt;}
.ws8b{word-spacing:19.593600pt;}
.wsfc{word-spacing:19.790400pt;}
.ws149{word-spacing:20.390400pt;}
.wsfb{word-spacing:20.942400pt;}
.ws163{word-spacing:22.243200pt;}
.ws2c{word-spacing:24.816000pt;}
.ws139{word-spacing:32.030400pt;}
.ws125{word-spacing:84.832990pt;}
.wsd5{word-spacing:211.750400pt;}
.wsbf{word-spacing:405.333333pt;}
.ws15c{word-spacing:408.716800pt;}
.ws160{word-spacing:412.475733pt;}
.ws15e{word-spacing:412.480000pt;}
.ws15a{word-spacing:424.853333pt;}
.ws154{word-spacing:428.518400pt;}
.ws158{word-spacing:428.522667pt;}
.wsba{word-spacing:429.060267pt;}
.ws156{word-spacing:448.320000pt;}
.wsbc{word-spacing:452.791467pt;}
.wsbe{word-spacing:469.051733pt;}
.wsbd{word-spacing:474.803200pt;}
.wscc{word-spacing:654.314667pt;}
.wsc9{word-spacing:668.864000pt;}
.wsc5{word-spacing:673.702400pt;}
.wse7{word-spacing:674.197333pt;}
.wsca{word-spacing:675.008000pt;}
.wsc4{word-spacing:676.390400pt;}
.wsc1{word-spacing:676.689067pt;}
.wscd{word-spacing:678.353067pt;}
.wse3{word-spacing:679.035733pt;}
.wsc8{word-spacing:679.530667pt;}
.wse8{word-spacing:680.341333pt;}
.wsc6{word-spacing:680.640000pt;}
.wse2{word-spacing:681.723733pt;}
.wsdf{word-spacing:682.022400pt;}
.wsd1{word-spacing:682.090667pt;}
.wsd0{word-spacing:683.259733pt;}
.wsea{word-spacing:683.370667pt;}
.wseb{word-spacing:683.686400pt;}
.wsce{word-spacing:684.181333pt;}
.wse6{word-spacing:684.864000pt;}
.wsc7{word-spacing:685.606400pt;}
.wse4{word-spacing:685.973333pt;}
.wscb{word-spacing:686.033067pt;}
.wscf{word-spacing:686.485333pt;}
.wsc2{word-spacing:686.758400pt;}
.wsef{word-spacing:687.424000pt;}
.wsee{word-spacing:688.593067pt;}
.wsec{word-spacing:689.514667pt;}
.wse5{word-spacing:690.939733pt;}
.wse9{word-spacing:691.366400pt;}
.wsed{word-spacing:691.818667pt;}
.wse0{word-spacing:692.091733pt;}
.wsc3{word-spacing:697.467733pt;}
.wse1{word-spacing:702.801067pt;}
.ws15f{word-spacing:704.763733pt;}
.ws15b{word-spacing:707.537067pt;}
.ws155{word-spacing:718.673067pt;}
.wsc0{word-spacing:721.190400pt;}
.ws15d{word-spacing:723.323733pt;}
.ws159{word-spacing:724.501333pt;}
.ws153{word-spacing:725.610667pt;}
.ws157{word-spacing:742.438400pt;}
.wsbb{word-spacing:919.168000pt;}
._1b{margin-left:-211.675733pt;}
._11{margin-left:-31.003200pt;}
._45{margin-left:-29.827200pt;}
._19{margin-left:-26.342400pt;}
._16{margin-left:-24.566400pt;}
._3e{margin-left:-22.230400pt;}
._15{margin-left:-16.912800pt;}
._e{margin-left:-15.960000pt;}
._d{margin-left:-14.428800pt;}
._12{margin-left:-13.208800pt;}
._10{margin-left:-12.129600pt;}
._1d{margin-left:-11.236800pt;}
._48{margin-left:-10.073600pt;}
._c{margin-left:-8.944000pt;}
._f{margin-left:-7.488000pt;}
._a{margin-left:-6.406400pt;}
._0{margin-left:-4.944000pt;}
._2{margin-left:-3.456000pt;}
._7{margin-left:-1.968000pt;}
._1{margin-left:-1.056000pt;}
._b{width:1.017600pt;}
._5{width:2.212000pt;}
._6{width:3.444000pt;}
._9{width:4.562667pt;}
._8{width:6.348000pt;}
._2f{width:7.298400pt;}
._14{width:8.664000pt;}
._49{width:9.600000pt;}
._17{width:11.726400pt;}
._1a{width:13.392000pt;}
._13{width:14.467200pt;}
._47{width:15.374400pt;}
._18{width:17.414400pt;}
._46{width:21.235200pt;}
._3d{width:88.441521pt;}
._3c{width:90.785733pt;}
._39{width:92.341882pt;}
._3a{width:101.027541pt;}
._3b{width:104.627128pt;}
._36{width:115.210941pt;}
._38{width:117.143855pt;}
._37{width:121.660245pt;}
._35{width:124.885533pt;}
._1c{width:130.959733pt;}
._41{width:261.708800pt;}
._40{width:296.576000pt;}
._31{width:319.610560pt;}
._3f{width:322.926933pt;}
._44{width:437.051733pt;}
._43{width:440.823467pt;}
._42{width:456.861867pt;}
._26{width:483.340800pt;}
._24{width:501.738667pt;}
._28{width:535.773867pt;}
._2a{width:550.621867pt;}
._2c{width:582.766933pt;}
._32{width:588.100267pt;}
._29{width:611.818667pt;}
._2b{width:618.572800pt;}
._30{width:623.906133pt;}
._20{width:642.141867pt;}
._2d{width:646.822400pt;}
._33{width:652.155733pt;}
._2e{width:670.408533pt;}
._22{width:677.947733pt;}
._21{width:696.682667pt;}
._34{width:699.464533pt;}
._1e{width:733.380267pt;}
._1f{width:737.096533pt;}
._4{width:781.612800pt;}
._3{width:835.420800pt;}
._27{width:871.082667pt;}
._23{width:887.859200pt;}
._25{width:911.321600pt;}
.fs8{font-size:24.746667pt;}
.fs7{font-size:27.840000pt;}
.fse{font-size:41.637867pt;}
.fs9{font-size:41.654933pt;}
.fsc{font-size:42.556800pt;}
.fs4{font-size:42.666667pt;}
.fs10{font-size:44.795733pt;}
.fsf{font-size:44.840533pt;}
.fsd{font-size:47.171733pt;}
.fsb{font-size:47.982933pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:48.063467pt;}
.fs6{font-size:50.666667pt;}
.fs11{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:0.801200pt;}
.y161{bottom:1.601200pt;}
.y145{bottom:1.601467pt;}
.y16b{bottom:2.401200pt;}
.y15f{bottom:5.605067pt;}
.y143{bottom:5.608000pt;}
.y14c{bottom:6.408133pt;}
.y167{bottom:7.206533pt;}
.y14b{bottom:27.236000pt;}
.y166{bottom:29.627867pt;}
.y141{bottom:33.232913pt;}
.y15d{bottom:36.706560pt;}
.y14a{bottom:48.062800pt;}
.y135{bottom:48.454667pt;}
.y152{bottom:51.925200pt;}
.y165{bottom:52.047867pt;}
.y136{bottom:65.277011pt;}
.y149{bottom:68.890800pt;}
.y1{bottom:69.848800pt;}
.y153{bottom:71.142116pt;}
.y164{bottom:73.667867pt;}
.y137{bottom:82.099356pt;}
.y148{bottom:89.717467pt;}
.y154{bottom:90.359033pt;}
.y163{bottom:96.087867pt;}
.y138{bottom:99.722517pt;}
.y20f{bottom:102.174400pt;}
.y10d{bottom:102.874267pt;}
.y66{bottom:103.744933pt;}
.ycc{bottom:104.636933pt;}
.y2e{bottom:104.961200pt;}
.y1d4{bottom:106.316000pt;}
.y155{bottom:109.575949pt;}
.y120{bottom:109.967733pt;}
.y147{bottom:110.545467pt;}
.y20a{bottom:111.689067pt;}
.y133{bottom:114.272133pt;}
.y9b{bottom:114.308933pt;}
.y10c{bottom:115.674267pt;}
.y139{bottom:116.544862pt;}
.y20e{bottom:116.574400pt;}
.ycb{bottom:117.436933pt;}
.y65{bottom:118.144933pt;}
.y162{bottom:118.508000pt;}
.y2d{bottom:119.361200pt;}
.y1d3{bottom:120.716000pt;}
.y11f{bottom:124.367733pt;}
.y209{bottom:126.089067pt;}
.y10b{bottom:128.474267pt;}
.y132{bottom:128.672133pt;}
.y9a{bottom:128.708933pt;}
.y156{bottom:128.792866pt;}
.yca{bottom:130.236933pt;}
.y20d{bottom:130.974400pt;}
.y64{bottom:132.544933pt;}
.y13a{bottom:133.366166pt;}
.y2c{bottom:133.761200pt;}
.y1d2{bottom:135.116000pt;}
.y11e{bottom:138.767733pt;}
.y208{bottom:140.489067pt;}
.y10a{bottom:141.274267pt;}
.yc9{bottom:143.036933pt;}
.y131{bottom:143.072133pt;}
.y99{bottom:143.108933pt;}
.y20c{bottom:145.374400pt;}
.y63{bottom:146.944933pt;}
.y157{bottom:148.009782pt;}
.y2b{bottom:148.161200pt;}
.y1d1{bottom:149.516000pt;}
.y13b{bottom:150.188510pt;}
.y11d{bottom:153.167733pt;}
.y109{bottom:154.074267pt;}
.y207{bottom:154.889067pt;}
.yc8{bottom:155.836933pt;}
.y19b{bottom:157.154267pt;}
.y130{bottom:157.472133pt;}
.y98{bottom:157.508933pt;}
.y2a{bottom:162.561200pt;}
.y20b{bottom:163.553200pt;}
.y1d0{bottom:163.916000pt;}
.y62{bottom:165.124933pt;}
.y13c{bottom:167.009814pt;}
.y158{bottom:167.226698pt;}
.y11c{bottom:167.567733pt;}
.y206{bottom:169.289067pt;}
.y12f{bottom:171.872133pt;}
.y97{bottom:171.908933pt;}
.y108{bottom:172.082267pt;}
.yc7{bottom:173.844933pt;}
.y29{bottom:176.961200pt;}
.y1cf{bottom:178.316000pt;}
.y11b{bottom:181.967733pt;}
.y19a{bottom:182.893067pt;}
.y205{bottom:183.689067pt;}
.y13d{bottom:183.832159pt;}
.y12e{bottom:186.272133pt;}
.y159{bottom:186.443615pt;}
.y107{bottom:189.723600pt;}
.y96{bottom:190.088933pt;}
.y28{bottom:191.361200pt;}
.yc6{bottom:191.486267pt;}
.y61{bottom:191.663600pt;}
.y1ce{bottom:192.716000pt;}
.y11a{bottom:196.367733pt;}
.y199{bottom:197.293067pt;}
.y204{bottom:198.089067pt;}
.y12d{bottom:200.672133pt;}
.y13e{bottom:201.455320pt;}
.y15a{bottom:205.662613pt;}
.y27{bottom:205.761200pt;}
.y60{bottom:206.062400pt;}
.y1cd{bottom:207.116000pt;}
.y106{bottom:207.359600pt;}
.yc5{bottom:209.122267pt;}
.y119{bottom:210.767733pt;}
.y198{bottom:211.693067pt;}
.y203{bottom:212.489067pt;}
.y12c{bottom:215.072133pt;}
.y13f{bottom:218.277664pt;}
.y26{bottom:220.161200pt;}
.y95{bottom:220.406267pt;}
.y5f{bottom:220.462400pt;}
.y1cc{bottom:221.516000pt;}
.y15b{bottom:224.879530pt;}
.y105{bottom:225.000933pt;}
.y118{bottom:225.167733pt;}
.y197{bottom:226.093067pt;}
.yc4{bottom:226.763733pt;}
.y202{bottom:226.889067pt;}
.y12b{bottom:229.472133pt;}
.y25{bottom:234.561200pt;}
.y5e{bottom:234.863600pt;}
.y140{bottom:235.100009pt;}
.y1cb{bottom:235.916000pt;}
.y117{bottom:239.567733pt;}
.y196{bottom:240.493067pt;}
.y201{bottom:241.289067pt;}
.y104{bottom:242.647600pt;}
.y12a{bottom:243.872133pt;}
.y15c{bottom:244.096446pt;}
.yc3{bottom:244.410267pt;}
.y24{bottom:248.961200pt;}
.y5d{bottom:249.263600pt;}
.y1ca{bottom:250.316000pt;}
.y116{bottom:253.967733pt;}
.y195{bottom:254.893067pt;}
.y200{bottom:255.689067pt;}
.y94{bottom:256.103733pt;}
.y129{bottom:258.272133pt;}
.y103{bottom:260.294400pt;}
.yc2{bottom:262.056933pt;}
.y23{bottom:263.361200pt;}
.y5c{bottom:263.663600pt;}
.y1c9{bottom:264.716000pt;}
.y115{bottom:268.367733pt;}
.y194{bottom:269.293067pt;}
.y1ff{bottom:270.089067pt;}
.y93{bottom:270.503733pt;}
.y128{bottom:272.672133pt;}
.y22{bottom:277.761200pt;}
.y102{bottom:277.941067pt;}
.y5b{bottom:278.062400pt;}
.y1c8{bottom:279.116000pt;}
.yc1{bottom:279.703733pt;}
.y114{bottom:282.767733pt;}
.y193{bottom:283.693067pt;}
.y1fe{bottom:284.489067pt;}
.y92{bottom:284.903733pt;}
.y127{bottom:287.072133pt;}
.y21{bottom:292.161200pt;}
.y5a{bottom:292.462400pt;}
.y1c7{bottom:293.516000pt;}
.y101{bottom:295.587733pt;}
.y113{bottom:297.167733pt;}
.yc0{bottom:297.350400pt;}
.y192{bottom:298.093067pt;}
.y1fd{bottom:298.889067pt;}
.y91{bottom:299.303733pt;}
.y126{bottom:301.472133pt;}
.y20{bottom:306.561200pt;}
.y1c6{bottom:307.916000pt;}
.y59{bottom:310.642400pt;}
.y112{bottom:311.567733pt;}
.y191{bottom:312.493067pt;}
.y100{bottom:313.234267pt;}
.y1fc{bottom:313.289067pt;}
.y90{bottom:313.703733pt;}
.ybf{bottom:314.997067pt;}
.y125{bottom:315.872133pt;}
.y1f{bottom:320.961200pt;}
.y1c5{bottom:322.316000pt;}
.y111{bottom:325.967733pt;}
.y190{bottom:326.893067pt;}
.y1fb{bottom:327.689067pt;}
.y124{bottom:330.272133pt;}
.yff{bottom:330.881067pt;}
.y8f{bottom:331.883733pt;}
.ybe{bottom:332.645067pt;}
.y1e{bottom:335.361200pt;}
.y1c4{bottom:336.716000pt;}
.y58{bottom:337.181200pt;}
.y110{bottom:340.367733pt;}
.y18f{bottom:341.293067pt;}
.y1fa{bottom:342.089067pt;}
.y123{bottom:344.672133pt;}
.yfe{bottom:348.527733pt;}
.ybd{bottom:350.291733pt;}
.y1c3{bottom:351.116000pt;}
.y57{bottom:351.581200pt;}
.y10f{bottom:354.767733pt;}
.y18e{bottom:355.693067pt;}
.y1f9{bottom:356.489067pt;}
.y8e{bottom:358.422533pt;}
.y122{bottom:359.072133pt;}
.y1c2{bottom:365.516000pt;}
.y56{bottom:365.981200pt;}
.yfd{bottom:366.169067pt;}
.ybc{bottom:367.933200pt;}
.y18d{bottom:370.093067pt;}
.y1f8{bottom:370.889067pt;}
.y8d{bottom:372.822533pt;}
.y10e{bottom:372.947733pt;}
.y121{bottom:373.472133pt;}
.y1c1{bottom:379.916000pt;}
.y55{bottom:380.381200pt;}
.y1d{bottom:380.447600pt;}
.yfc{bottom:383.810400pt;}
.y18c{bottom:384.493067pt;}
.y1f7{bottom:385.289067pt;}
.ybb{bottom:385.574400pt;}
.y8c{bottom:387.222533pt;}
.y1c0{bottom:394.316000pt;}
.y54{bottom:394.781200pt;}
.y18b{bottom:398.893067pt;}
.y1f6{bottom:399.689067pt;}
.yfb{bottom:401.457067pt;}
.y8b{bottom:401.622533pt;}
.yba{bottom:403.221067pt;}
.y1c{bottom:406.186400pt;}
.y1bf{bottom:408.716000pt;}
.y53{bottom:409.181200pt;}
.y16c{bottom:410.703733pt;}
.y18a{bottom:413.293067pt;}
.y1f5{bottom:414.089600pt;}
.y8a{bottom:416.022533pt;}
.yfa{bottom:419.103733pt;}
.y1b{bottom:420.586400pt;}
.yb9{bottom:420.867867pt;}
.y1be{bottom:423.116000pt;}
.y52{bottom:423.581200pt;}
.y151{bottom:427.282667pt;}
.y1f4{bottom:428.489600pt;}
.y89{bottom:430.422533pt;}
.y189{bottom:431.471867pt;}
.y1a{bottom:434.986400pt;}
.yf9{bottom:436.750533pt;}
.y1bd{bottom:437.514800pt;}
.y51{bottom:437.981200pt;}
.yb8{bottom:438.514533pt;}
.y15e{bottom:439.170667pt;}
.y1f3{bottom:442.889600pt;}
.y88{bottom:444.822533pt;}
.y19{bottom:449.386400pt;}
.y188{bottom:451.251733pt;}
.y1bc{bottom:451.914800pt;}
.y50{bottom:452.381200pt;}
.yf8{bottom:454.397200pt;}
.yb7{bottom:456.161067pt;}
.y1f2{bottom:457.289600pt;}
.y87{bottom:459.222533pt;}
.y18{bottom:463.786400pt;}
.y1bb{bottom:466.314800pt;}
.y4f{bottom:466.781200pt;}
.y1f1{bottom:471.689600pt;}
.yf7{bottom:472.043867pt;}
.y86{bottom:473.622533pt;}
.yb6{bottom:473.807733pt;}
.y17{bottom:478.186400pt;}
.y1ba{bottom:480.714800pt;}
.y4e{bottom:481.181200pt;}
.y1f0{bottom:486.089600pt;}
.y187{bottom:486.949333pt;}
.yf6{bottom:489.690533pt;}
.yb5{bottom:491.454533pt;}
.y85{bottom:491.802533pt;}
.y16{bottom:492.586400pt;}
.y1b9{bottom:495.114800pt;}
.y4d{bottom:495.581200pt;}
.y1ef{bottom:500.489600pt;}
.y186{bottom:501.349333pt;}
.y15{bottom:506.986400pt;}
.y84{bottom:507.002533pt;}
.yf5{bottom:507.338533pt;}
.yb4{bottom:509.101200pt;}
.y1b8{bottom:509.514800pt;}
.y4c{bottom:509.981200pt;}
.y1ee{bottom:514.889600pt;}
.y185{bottom:515.749333pt;}
.y14{bottom:521.386400pt;}
.y1b7{bottom:523.914800pt;}
.y4b{bottom:524.381200pt;}
.yf4{bottom:524.985733pt;}
.yb3{bottom:526.747600pt;}
.y1ed{bottom:529.289600pt;}
.y184{bottom:530.149333pt;}
.y83{bottom:533.539867pt;}
.y13{bottom:535.786400pt;}
.y1b6{bottom:538.314800pt;}
.y4a{bottom:542.561200pt;}
.yf3{bottom:542.960133pt;}
.y1ec{bottom:543.689600pt;}
.y183{bottom:544.549333pt;}
.yb2{bottom:544.722000pt;}
.y82{bottom:547.939867pt;}
.y12{bottom:550.186400pt;}
.y1b5{bottom:552.714800pt;}
.yf2{bottom:555.760133pt;}
.yb1{bottom:557.522000pt;}
.y1eb{bottom:558.089600pt;}
.yf0{bottom:558.177200pt;}
.y160{bottom:558.478667pt;}
.y182{bottom:558.949333pt;}
.yaf{bottom:559.941200pt;}
.y81{bottom:562.339867pt;}
.y11{bottom:564.586400pt;}
.y1b4{bottom:567.114800pt;}
.y49{bottom:569.099867pt;}
.y1ea{bottom:572.489600pt;}
.y181{bottom:573.349333pt;}
.yf1{bottom:573.396400pt;}
.yb0{bottom:575.158267pt;}
.y80{bottom:576.739867pt;}
.y10{bottom:578.986400pt;}
.y1b3{bottom:581.514800pt;}
.y48{bottom:583.499867pt;}
.y1e9{bottom:586.889600pt;}
.y180{bottom:587.749333pt;}
.y7f{bottom:591.139867pt;}
.y16a{bottom:591.309333pt;}
.yef{bottom:592.495867pt;}
.yf{bottom:593.386400pt;}
.yae{bottom:594.256667pt;}
.y1b2{bottom:595.914800pt;}
.y47{bottom:597.899867pt;}
.y1e8{bottom:601.289600pt;}
.y17f{bottom:602.149333pt;}
.y7e{bottom:605.539867pt;}
.ye{bottom:607.786400pt;}
.y1b1{bottom:610.314800pt;}
.y46{bottom:612.299867pt;}
.y1e7{bottom:615.689600pt;}
.y17e{bottom:616.549333pt;}
.yd{bottom:622.186400pt;}
.y7d{bottom:623.719867pt;}
.yee{bottom:624.494267pt;}
.y1b0{bottom:624.714800pt;}
.y45{bottom:626.699867pt;}
.y1e6{bottom:630.089600pt;}
.y17d{bottom:630.949333pt;}
.yad{bottom:631.161200pt;}
.yed{bottom:638.894267pt;}
.y1af{bottom:639.114800pt;}
.y1e5{bottom:644.489600pt;}
.y44{bottom:644.878667pt;}
.y17c{bottom:645.349333pt;}
.yc{bottom:647.925200pt;}
.yac{bottom:648.808133pt;}
.y7c{bottom:650.258667pt;}
.yd4{bottom:651.777467pt;}
.yec{bottom:653.294267pt;}
.y1ae{bottom:653.514800pt;}
.y168{bottom:653.765333pt;}
.y1e4{bottom:658.889600pt;}
.y17b{bottom:659.749333pt;}
.yb{bottom:662.325200pt;}
.y7b{bottom:664.658667pt;}
.yd3{bottom:666.177467pt;}
.yab{bottom:666.455067pt;}
.yeb{bottom:667.694267pt;}
.y1ad{bottom:667.914800pt;}
.y1e3{bottom:673.289600pt;}
.y17a{bottom:674.149333pt;}
.y43{bottom:675.197200pt;}
.ya{bottom:676.725200pt;}
.y7a{bottom:679.058667pt;}
.yd2{bottom:680.577467pt;}
.yea{bottom:682.094267pt;}
.y1ac{bottom:682.314800pt;}
.yaa{bottom:684.103067pt;}
.y1e2{bottom:687.689600pt;}
.y179{bottom:692.329200pt;}
.y79{bottom:693.458667pt;}
.yd1{bottom:694.977467pt;}
.ye9{bottom:696.494267pt;}
.y1ab{bottom:696.714800pt;}
.ya9{bottom:701.744667pt;}
.y1e1{bottom:702.089600pt;}
.y9{bottom:706.242400pt;}
.yd0{bottom:709.377467pt;}
.ye8{bottom:710.894267pt;}
.y42{bottom:710.894800pt;}
.y1aa{bottom:711.114800pt;}
.y78{bottom:711.638533pt;}
.y1e0{bottom:716.489600pt;}
.y150{bottom:717.501333pt;}
.ya8{bottom:719.380933pt;}
.ycf{bottom:723.777467pt;}
.ye7{bottom:725.294267pt;}
.y41{bottom:725.294800pt;}
.y1a9{bottom:725.514800pt;}
.y178{bottom:726.247333pt;}
.y1df{bottom:730.889600pt;}
.y134{bottom:734.081333pt;}
.ya7{bottom:737.017200pt;}
.y77{bottom:738.177467pt;}
.y177{bottom:739.047333pt;}
.ye6{bottom:739.694267pt;}
.y40{bottom:739.694800pt;}
.y1a8{bottom:739.914800pt;}
.y142{bottom:741.682667pt;}
.y1de{bottom:745.289600pt;}
.y8{bottom:746.520000pt;}
.y76{bottom:752.577467pt;}
.ye5{bottom:754.094267pt;}
.y3f{bottom:754.094800pt;}
.y1a7{bottom:754.314800pt;}
.ya6{bottom:754.653467pt;}
.y176{bottom:757.054800pt;}
.y1dd{bottom:759.688400pt;}
.y75{bottom:766.977467pt;}
.ye4{bottom:768.494267pt;}
.y3e{bottom:768.494800pt;}
.y1a6{bottom:768.714800pt;}
.ya5{bottom:772.295067pt;}
.y1dc{bottom:774.088400pt;}
.y175{bottom:774.701733pt;}
.y7{bottom:779.238667pt;}
.y74{bottom:781.377467pt;}
.ye3{bottom:782.894267pt;}
.y3d{bottom:782.894800pt;}
.y1a5{bottom:783.114800pt;}
.y1db{bottom:788.488400pt;}
.ya4{bottom:789.942000pt;}
.y174{bottom:792.348667pt;}
.y73{bottom:795.777467pt;}
.ye2{bottom:797.294267pt;}
.y3c{bottom:797.294800pt;}
.y1a4{bottom:797.514800pt;}
.y1da{bottom:802.888400pt;}
.ya3{bottom:807.588933pt;}
.y173{bottom:809.995600pt;}
.y72{bottom:810.177467pt;}
.ye1{bottom:811.694267pt;}
.y3b{bottom:811.694800pt;}
.y1a3{bottom:811.914800pt;}
.y1d9{bottom:817.288400pt;}
.y71{bottom:824.577467pt;}
.ya2{bottom:825.235867pt;}
.ye0{bottom:826.094267pt;}
.y3a{bottom:826.094800pt;}
.y1a2{bottom:826.314800pt;}
.y172{bottom:827.642533pt;}
.y1d8{bottom:831.688400pt;}
.y70{bottom:838.977467pt;}
.ydf{bottom:840.494267pt;}
.y39{bottom:840.494800pt;}
.y1a1{bottom:840.714800pt;}
.ya1{bottom:842.882800pt;}
.y171{bottom:845.289467pt;}
.y1d7{bottom:846.088400pt;}
.y6{bottom:851.352000pt;}
.y6f{bottom:853.377467pt;}
.yde{bottom:854.894267pt;}
.y38{bottom:854.894800pt;}
.y1a0{bottom:855.114800pt;}
.y144{bottom:857.034667pt;}
.y1d6{bottom:860.489600pt;}
.ya0{bottom:860.529733pt;}
.y146{bottom:861.040000pt;}
.y170{bottom:862.936400pt;}
.y6e{bottom:867.777467pt;}
.ydd{bottom:869.294267pt;}
.y37{bottom:869.294800pt;}
.y19f{bottom:873.294800pt;}
.y1d5{bottom:874.889600pt;}
.y9f{bottom:878.504133pt;}
.y5{bottom:879.352000pt;}
.y16f{bottom:880.910800pt;}
.y6d{bottom:882.177467pt;}
.ydc{bottom:883.694267pt;}
.y36{bottom:883.694800pt;}
.yce{bottom:885.956000pt;}
.y14e{bottom:887.366957pt;}
.y9d{bottom:891.304133pt;}
.ydb{bottom:898.094267pt;}
.y35{bottom:898.094800pt;}
.y16e{bottom:900.010800pt;}
.y6c{bottom:900.356133pt;}
.y9e{bottom:904.104133pt;}
.y4{bottom:907.352000pt;}
.yda{bottom:912.494267pt;}
.y34{bottom:912.494800pt;}
.y16d{bottom:912.810800pt;}
.y9c{bottom:923.205467pt;}
.yd9{bottom:926.894267pt;}
.y6b{bottom:926.894533pt;}
.y33{bottom:926.894800pt;}
.y19e{bottom:937.516000pt;}
.yd8{bottom:941.294267pt;}
.y6a{bottom:941.294533pt;}
.y32{bottom:941.294800pt;}
.y14d{bottom:949.920133pt;}
.y19d{bottom:951.916000pt;}
.yd7{bottom:955.694267pt;}
.y69{bottom:955.694533pt;}
.y31{bottom:955.694800pt;}
.y19c{bottom:966.316000pt;}
.yd6{bottom:970.094267pt;}
.y68{bottom:970.094533pt;}
.y30{bottom:970.094800pt;}
.y14f{bottom:982.862800pt;}
.yd5{bottom:984.494267pt;}
.y67{bottom:984.494533pt;}
.y2f{bottom:984.494800pt;}
.y3{bottom:1004.110933pt;}
.y2{bottom:1037.408533pt;}
.ycd{bottom:1037.408667pt;}
.h1e{height:11.210667pt;}
.h1f{height:12.810667pt;}
.h19{height:19.217333pt;}
.hf{height:20.026667pt;}
.h17{height:28.910667pt;}
.h18{height:28.914831pt;}
.he{height:28.922517pt;}
.h14{height:29.091563pt;}
.h1c{height:30.359608pt;}
.h1a{height:30.389971pt;}
.h15{height:32.246302pt;}
.h12{height:32.519683pt;}
.h10{height:32.574264pt;}
.h8{height:34.816000pt;}
.h20{height:38.570667pt;}
.h9{height:38.762667pt;}
.hb{height:38.763200pt;}
.ha{height:38.763733pt;}
.hc{height:38.768000pt;}
.h7{height:38.784000pt;}
.h6{height:41.344000pt;}
.h1b{height:41.638667pt;}
.h22{height:43.392000pt;}
.h1{height:43.632000pt;}
.h5{height:45.696000pt;}
.h11{height:46.461333pt;}
.h4{height:47.872000pt;}
.h21{height:48.480000pt;}
.h3{height:58.176000pt;}
.h2{height:84.840000pt;}
.h13{height:124.964000pt;}
.h1d{height:133.721333pt;}
.hd{height:259.933333pt;}
.h16{height:268.921333pt;}
.h0{height:1122.666667pt;}
.w8{width:19.197333pt;}
.w4{width:19.993333pt;}
.wb{width:24.797333pt;}
.w9{width:50.396000pt;}
.wa{width:51.194667pt;}
.w5{width:51.981333pt;}
.w7{width:107.189333pt;}
.w3{width:132.752000pt;}
.w2{width:426.245333pt;}
.w6{width:432.756000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3d{left:1.600533pt;}
.x3f{left:13.595067pt;}
.x3b{left:29.588150pt;}
.x44{left:32.796252pt;}
.x3a{left:34.387067pt;}
.x43{left:37.596400pt;}
.x3c{left:73.572675pt;}
.xd{left:94.277867pt;}
.x39{left:96.167333pt;}
.xe{left:105.616667pt;}
.x2{left:113.175600pt;}
.x27{left:115.064133pt;}
.xa{left:124.512000pt;}
.x4{left:127.907067pt;}
.x9{left:132.073200pt;}
.xf{left:134.235067pt;}
.x1d{left:135.585733pt;}
.x31{left:137.901733pt;}
.x28{left:145.408667pt;}
.x29{left:154.324400pt;}
.x6{left:156.220400pt;}
.x10{left:172.807067pt;}
.x12{left:175.144400pt;}
.x5{left:186.879733pt;}
.x3{left:188.965733pt;}
.x11{left:192.021733pt;}
.x30{left:198.691067pt;}
.x3e{left:200.412000pt;}
.x4c{left:207.017733pt;}
.x34{left:294.906533pt;}
.x33{left:310.943867pt;}
.x2c{left:313.803867pt;}
.x7{left:326.793867pt;}
.x2b{left:329.841200pt;}
.x20{left:334.462533pt;}
.x49{left:336.588533pt;}
.x4a{left:353.913867pt;}
.x32{left:356.238800pt;}
.x1f{left:358.834800pt;}
.x4d{left:364.781867pt;}
.x4b{left:368.475200pt;}
.x1e{left:371.245467pt;}
.x45{left:373.185333pt;}
.x8{left:375.963867pt;}
.x14{left:395.190933pt;}
.x1{left:396.080533pt;}
.x13{left:406.529733pt;}
.x18{left:412.712533pt;}
.xb{left:414.087600pt;}
.xc{left:425.426400pt;}
.x2a{left:426.698800pt;}
.x1b{left:438.543200pt;}
.x36{left:441.277733pt;}
.x35{left:457.399333pt;}
.x2d{left:460.176133pt;}
.x23{left:467.354267pt;}
.x17{left:477.045867pt;}
.x1a{left:478.400533pt;}
.x1c{left:479.483200pt;}
.x22{left:488.527600pt;}
.x41{left:491.679333pt;}
.x19{left:492.644267pt;}
.x47{left:498.773333pt;}
.x21{left:501.022533pt;}
.x16{left:504.766000pt;}
.x15{left:509.706000pt;}
.x42{left:515.743756pt;}
.x48{left:518.770667pt;}
.x40{left:549.886667pt;}
.x46{left:554.768000pt;}
.x38{left:582.704933pt;}
.x26{left:597.131333pt;}
.x2f{left:601.602267pt;}
.x37{left:603.856933pt;}
.x25{left:613.275333pt;}
.x2e{left:622.754267pt;}
.x24{left:630.800667pt;}
}




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