
    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_bd978bf3e09a5ca607a86470.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_a95aa9c585d396e75e5dda8b.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_635ef1e133a23dcf6b28391a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.169000;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_725195267b9d61585c353d7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740723;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_52908c332d2c114b45a497b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.000000,-0.248749,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248749,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248749,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249259,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249259,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249259,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249696,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249696,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249696,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249972,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249972,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249972,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250127,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250127,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250127,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250600,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250600,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250600,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249696,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m2{transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.820600px;}
.v3{vertical-align:28.800000px;}
.v4{vertical-align:39.676800px;}
.ls9{letter-spacing:-3.186000px;}
.ls36{letter-spacing:-2.685323px;}
.ls23{letter-spacing:-2.636059px;}
.ls1b{letter-spacing:-2.606726px;}
.ls2e{letter-spacing:-2.597652px;}
.ls15{letter-spacing:-2.577692px;}
.ls29{letter-spacing:-2.381445px;}
.ls19{letter-spacing:-1.986015px;}
.ls1f{letter-spacing:-1.911300px;}
.ls31{letter-spacing:-1.791940px;}
.ls38{letter-spacing:-1.791655px;}
.ls2c{letter-spacing:-1.744950px;}
.ls27{letter-spacing:-1.670106px;}
.ls1e{letter-spacing:-1.652737px;}
.ls18{letter-spacing:-1.601323px;}
.ls37{letter-spacing:-1.465709px;}
.ls2b{letter-spacing:-1.424529px;}
.ls7{letter-spacing:-1.056000px;}
.ls11{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.378000px;}
.ls5{letter-spacing:-0.073500px;}
.ls6{letter-spacing:-0.039600px;}
.ls4{letter-spacing:-0.021000px;}
.ls3b{letter-spacing:-0.010800px;}
.ls35{letter-spacing:-0.006300px;}
.lsf{letter-spacing:-0.006264px;}
.ls8{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.004080px;}
.lse{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls30{letter-spacing:0.416068px;}
.ls26{letter-spacing:0.458142px;}
.ls2f{letter-spacing:0.462298px;}
.ls25{letter-spacing:0.509486px;}
.ls1d{letter-spacing:0.514272px;}
.ls34{letter-spacing:0.585528px;}
.ls17{letter-spacing:0.610028px;}
.ls2a{letter-spacing:0.628914px;}
.lsa{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.996000px;}
.ls1a{letter-spacing:1.137487px;}
.ls32{letter-spacing:1.175548px;}
.ls39{letter-spacing:1.217462px;}
.ls28{letter-spacing:1.245809px;}
.ls20{letter-spacing:1.260740px;}
.ls2d{letter-spacing:1.285980px;}
.ls0{letter-spacing:2.435400px;}
.ls10{letter-spacing:6.075000px;}
.ls14{letter-spacing:9.954000px;}
.ls3a{letter-spacing:10.146600px;}
.ls12{letter-spacing:158.500800px;}
.ls13{letter-spacing:173.952000px;}
.ls33{letter-spacing:288.944239px;}
.ls21{letter-spacing:289.878145px;}
.ls22{letter-spacing:294.763057px;}
.ls1c{letter-spacing:300.428562px;}
.ls24{letter-spacing:302.027386px;}
.ls16{letter-spacing:306.947122px;}
.lsc{letter-spacing:1034.097600px;}
.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;}
}
.ws10f{word-spacing:-306.992988px;}
.ws13a{word-spacing:-302.072524px;}
.ws110{word-spacing:-300.473428px;}
.ws13c{word-spacing:-294.807085px;}
.ws13b{word-spacing:-289.921444px;}
.ws145{word-spacing:-288.987411px;}
.wsc6{word-spacing:-168.100800px;}
.ws143{word-spacing:-12.600000px;}
.ws144{word-spacing:-12.593700px;}
.ws0{word-spacing:-12.144000px;}
.ws53{word-spacing:-10.805400px;}
.ws52{word-spacing:-10.800000px;}
.ws1{word-spacing:-10.422000px;}
.ws168{word-spacing:-9.185400px;}
.wsbd{word-spacing:-9.180000px;}
.ws167{word-spacing:-8.316000px;}
.ws54{word-spacing:-6.264000px;}
.ws7f{word-spacing:-4.071600px;}
.ws83{word-spacing:-4.066200px;}
.ws18{word-spacing:-2.467800px;}
.ws182{word-spacing:-2.122200px;}
.ws17{word-spacing:-2.100600px;}
.ws11{word-spacing:-1.922400px;}
.ws14c{word-spacing:-1.749600px;}
.ws177{word-spacing:-1.738800px;}
.ws187{word-spacing:-1.728000px;}
.ws32{word-spacing:-1.614600px;}
.ws190{word-spacing:-1.485000px;}
.ws163{word-spacing:-1.409400px;}
.ws164{word-spacing:-1.182600px;}
.ws174{word-spacing:-1.117800px;}
.wsb{word-spacing:-1.090800px;}
.ws1a5{word-spacing:-1.058400px;}
.ws16c{word-spacing:-0.999000px;}
.ws178{word-spacing:-0.972000px;}
.wse5{word-spacing:-0.928800px;}
.ws188{word-spacing:-0.891000px;}
.ws74{word-spacing:-0.885600px;}
.ws16f{word-spacing:-0.610200px;}
.wsfe{word-spacing:-0.577800px;}
.ws13f{word-spacing:-0.564507px;}
.ws62{word-spacing:-0.545400px;}
.ws30{word-spacing:-0.432000px;}
.wscc{word-spacing:-0.421200px;}
.ws2c{word-spacing:-0.399600px;}
.ws193{word-spacing:-0.394200px;}
.ws138{word-spacing:-0.369020px;}
.ws192{word-spacing:-0.334800px;}
.ws159{word-spacing:-0.271987px;}
.ws136{word-spacing:-0.148494px;}
.ws12{word-spacing:-0.145800px;}
.ws191{word-spacing:-0.140400px;}
.ws10d{word-spacing:-0.124200px;}
.ws199{word-spacing:-0.113400px;}
.ws13d{word-spacing:-0.098738px;}
.ws1aa{word-spacing:-0.097200px;}
.ws141{word-spacing:-0.073197px;}
.wsba{word-spacing:-0.054000px;}
.ws13e{word-spacing:-0.051344px;}
.ws142{word-spacing:-0.026967px;}
.ws6c{word-spacing:-0.016200px;}
.ws10c{word-spacing:-0.010800px;}
.wsbc{word-spacing:-0.009600px;}
.wsa{word-spacing:-0.005400px;}
.wsbb{word-spacing:-0.004800px;}
.ws2{word-spacing:0.000000px;}
.ws6d{word-spacing:0.005400px;}
.ws4{word-spacing:0.021000px;}
.ws6{word-spacing:0.039600px;}
.ws5{word-spacing:0.073500px;}
.ws28{word-spacing:0.108000px;}
.ws197{word-spacing:0.297000px;}
.ws196{word-spacing:0.329400px;}
.ws2a{word-spacing:0.334800px;}
.ws8f{word-spacing:0.345600px;}
.ws19{word-spacing:0.378000px;}
.ws134{word-spacing:0.410400px;}
.ws24{word-spacing:0.507600px;}
.ws18f{word-spacing:0.621000px;}
.ws49{word-spacing:0.631800px;}
.ws166{word-spacing:0.648000px;}
.ws146{word-spacing:0.675000px;}
.ws38{word-spacing:0.707400px;}
.ws16{word-spacing:0.718200px;}
.wsa2{word-spacing:0.756000px;}
.ws14f{word-spacing:0.799200px;}
.ws15e{word-spacing:0.826200px;}
.ws170{word-spacing:0.842400px;}
.ws4d{word-spacing:0.918000px;}
.ws3e{word-spacing:0.928800px;}
.ws1a1{word-spacing:0.939600px;}
.ws18e{word-spacing:1.080000px;}
.wse6{word-spacing:1.085400px;}
.ws1e{word-spacing:1.144800px;}
.ws14{word-spacing:1.177200px;}
.ws88{word-spacing:1.231200px;}
.wscd{word-spacing:1.279800px;}
.ws98{word-spacing:1.339200px;}
.ws12f{word-spacing:1.344600px;}
.ws99{word-spacing:1.350000px;}
.ws117{word-spacing:1.355400px;}
.ws135{word-spacing:1.501200px;}
.ws151{word-spacing:1.571400px;}
.ws10{word-spacing:1.576800px;}
.ws25{word-spacing:1.598400px;}
.wsdd{word-spacing:1.614600px;}
.wsff{word-spacing:1.668600px;}
.ws4a{word-spacing:1.674000px;}
.ws84{word-spacing:1.679400px;}
.wsd{word-spacing:1.695600px;}
.wse{word-spacing:1.717200px;}
.ws140{word-spacing:1.761718px;}
.ws15a{word-spacing:1.779250px;}
.ws139{word-spacing:1.797989px;}
.ws1a3{word-spacing:1.846800px;}
.ws14b{word-spacing:1.868400px;}
.ws48{word-spacing:1.873800px;}
.ws158{word-spacing:1.917000px;}
.ws14a{word-spacing:1.976400px;}
.ws16a{word-spacing:1.998000px;}
.ws17d{word-spacing:2.008800px;}
.wsad{word-spacing:2.025000px;}
.ws137{word-spacing:2.062857px;}
.ws4e{word-spacing:2.079000px;}
.wsac{word-spacing:2.084400px;}
.ws4f{word-spacing:2.089800px;}
.ws118{word-spacing:2.100600px;}
.ws68{word-spacing:2.133000px;}
.ws47{word-spacing:2.203200px;}
.ws12a{word-spacing:2.241000px;}
.ws6a{word-spacing:2.278800px;}
.ws1f{word-spacing:2.305800px;}
.ws4b{word-spacing:2.316600px;}
.ws169{word-spacing:2.349000px;}
.ws1ad{word-spacing:2.354400px;}
.wsfd{word-spacing:2.381400px;}
.ws129{word-spacing:2.397600px;}
.ws100{word-spacing:2.419200px;}
.ws2e{word-spacing:2.457000px;}
.ws1ac{word-spacing:2.500200px;}
.ws69{word-spacing:2.581200px;}
.ws12d{word-spacing:2.624400px;}
.ws14e{word-spacing:2.629800px;}
.ws157{word-spacing:2.651400px;}
.ws171{word-spacing:2.683800px;}
.wsb8{word-spacing:2.689200px;}
.wse9{word-spacing:2.840400px;}
.ws16e{word-spacing:2.845800px;}
.ws126{word-spacing:2.889000px;}
.ws132{word-spacing:2.910600px;}
.wsd7{word-spacing:3.002400px;}
.ws13{word-spacing:3.126600px;}
.wsfb{word-spacing:3.142800px;}
.ws82{word-spacing:3.153600px;}
.ws80{word-spacing:3.164400px;}
.ws81{word-spacing:3.169800px;}
.ws1a0{word-spacing:3.175200px;}
.ws14d{word-spacing:3.229200px;}
.wsc{word-spacing:3.277800px;}
.wsb2{word-spacing:3.299400px;}
.ws19d{word-spacing:3.315600px;}
.wsfc{word-spacing:3.342600px;}
.ws16d{word-spacing:3.375000px;}
.ws102{word-spacing:3.391200px;}
.ws71{word-spacing:3.407400px;}
.wsb9{word-spacing:3.429000px;}
.ws21{word-spacing:3.450600px;}
.wse3{word-spacing:3.472200px;}
.wsb3{word-spacing:3.477600px;}
.ws19e{word-spacing:3.623400px;}
.wsf3{word-spacing:3.661200px;}
.ws78{word-spacing:3.672000px;}
.wsfa{word-spacing:3.693600px;}
.wse4{word-spacing:3.736800px;}
.ws89{word-spacing:3.753000px;}
.ws153{word-spacing:3.790800px;}
.wsae{word-spacing:3.839400px;}
.ws1a6{word-spacing:3.888000px;}
.ws2f{word-spacing:3.904200px;}
.ws2d{word-spacing:3.947400px;}
.wsd9{word-spacing:3.963600px;}
.ws70{word-spacing:4.006800px;}
.ws64{word-spacing:4.082400px;}
.ws1b{word-spacing:4.087800px;}
.wsd8{word-spacing:4.217400px;}
.wsce{word-spacing:4.249800px;}
.ws17a{word-spacing:4.303800px;}
.ws108{word-spacing:4.325400px;}
.ws72{word-spacing:4.363200px;}
.ws15{word-spacing:4.368600px;}
.wscb{word-spacing:4.401000px;}
.ws1a2{word-spacing:4.455000px;}
.ws150{word-spacing:4.460400px;}
.ws112{word-spacing:4.482000px;}
.wsda{word-spacing:4.590000px;}
.ws8{word-spacing:4.692600px;}
.ws155{word-spacing:4.741200px;}
.ws156{word-spacing:4.752000px;}
.ws41{word-spacing:4.827600px;}
.ws127{word-spacing:4.849200px;}
.ws34{word-spacing:4.854600px;}
.ws198{word-spacing:4.897800px;}
.ws22{word-spacing:4.914000px;}
.ws66{word-spacing:4.946400px;}
.ws8b{word-spacing:5.016600px;}
.ws11f{word-spacing:5.059800px;}
.ws131{word-spacing:5.113800px;}
.wsec{word-spacing:5.124600px;}
.ws180{word-spacing:5.173200px;}
.ws152{word-spacing:5.184000px;}
.ws195{word-spacing:5.200200px;}
.ws8e{word-spacing:5.238000px;}
.ws111{word-spacing:5.265000px;}
.wsf8{word-spacing:5.281200px;}
.wse0{word-spacing:5.356800px;}
.ws181{word-spacing:5.362200px;}
.ws7{word-spacing:5.502600px;}
.ws9{word-spacing:5.518800px;}
.ws1a7{word-spacing:5.583600px;}
.wse1{word-spacing:5.659200px;}
.ws65{word-spacing:5.799600px;}
.ws63{word-spacing:5.815800px;}
.ws35{word-spacing:5.826600px;}
.ws36{word-spacing:5.832000px;}
.ws23{word-spacing:5.875200px;}
.wsb0{word-spacing:5.972400px;}
.ws1ab{word-spacing:5.983200px;}
.wse7{word-spacing:6.026400px;}
.wse8{word-spacing:6.031800px;}
.ws93{word-spacing:6.053400px;}
.wsf{word-spacing:6.075000px;}
.ws3b{word-spacing:6.085800px;}
.wsf9{word-spacing:6.102000px;}
.ws96{word-spacing:6.112800px;}
.ws189{word-spacing:6.134400px;}
.wsb4{word-spacing:6.204600px;}
.ws154{word-spacing:6.215400px;}
.ws11d{word-spacing:6.226200px;}
.ws18a{word-spacing:6.253200px;}
.wsa3{word-spacing:6.382800px;}
.ws183{word-spacing:6.393600px;}
.ws18d{word-spacing:6.399000px;}
.wsaf{word-spacing:6.409800px;}
.ws1a{word-spacing:6.426000px;}
.ws51{word-spacing:6.507000px;}
.ws15c{word-spacing:6.528600px;}
.ws46{word-spacing:6.539400px;}
.ws119{word-spacing:6.550200px;}
.ws1a4{word-spacing:6.555600px;}
.wse2{word-spacing:6.571800px;}
.ws90{word-spacing:6.625800px;}
.wsa8{word-spacing:6.642000px;}
.ws19c{word-spacing:6.685200px;}
.ws87{word-spacing:6.782400px;}
.ws26{word-spacing:6.847200px;}
.ws147{word-spacing:6.858000px;}
.ws149{word-spacing:6.874200px;}
.ws43{word-spacing:6.890400px;}
.ws1a9{word-spacing:6.901200px;}
.wsd4{word-spacing:6.912000px;}
.wsd5{word-spacing:6.917400px;}
.wsa9{word-spacing:6.933600px;}
.ws8c{word-spacing:6.944400px;}
.ws165{word-spacing:6.966000px;}
.ws130{word-spacing:7.036200px;}
.ws16b{word-spacing:7.084800px;}
.ws101{word-spacing:7.095600px;}
.ws3a{word-spacing:7.138800px;}
.ws3c{word-spacing:7.160400px;}
.ws97{word-spacing:7.246800px;}
.ws39{word-spacing:7.252200px;}
.ws1ae{word-spacing:7.263000px;}
.ws29{word-spacing:7.327800px;}
.ws1d{word-spacing:7.365600px;}
.ws1c{word-spacing:7.473600px;}
.ws116{word-spacing:7.479000px;}
.wsdc{word-spacing:7.511400px;}
.ws184{word-spacing:7.516800px;}
.wsa5{word-spacing:7.538400px;}
.ws85{word-spacing:7.554600px;}
.ws148{word-spacing:7.738200px;}
.ws11b{word-spacing:7.765200px;}
.wsaa{word-spacing:7.797600px;}
.wsde{word-spacing:7.889400px;}
.ws103{word-spacing:7.965000px;}
.wsf6{word-spacing:7.975800px;}
.wsed{word-spacing:7.997400px;}
.ws73{word-spacing:8.127000px;}
.wsdf{word-spacing:8.132400px;}
.wsab{word-spacing:8.197200px;}
.wsa4{word-spacing:8.218800px;}
.ws106{word-spacing:8.272800px;}
.ws107{word-spacing:8.278200px;}
.ws17b{word-spacing:8.289000px;}
.wsb1{word-spacing:8.310600px;}
.ws10a{word-spacing:8.380800px;}
.ws10b{word-spacing:8.386200px;}
.ws113{word-spacing:8.569800px;}
.wsd6{word-spacing:8.656200px;}
.wsa6{word-spacing:8.791200px;}
.ws12c{word-spacing:8.839800px;}
.wsef{word-spacing:8.877600px;}
.ws173{word-spacing:8.893800px;}
.ws76{word-spacing:9.023400px;}
.ws109{word-spacing:9.061200px;}
.ws42{word-spacing:9.099000px;}
.ws44{word-spacing:9.109800px;}
.wsf7{word-spacing:9.115200px;}
.ws11a{word-spacing:9.120600px;}
.ws11c{word-spacing:9.136800px;}
.wsf4{word-spacing:9.142200px;}
.ws7a{word-spacing:9.288000px;}
.ws79{word-spacing:9.293400px;}
.ws3d{word-spacing:9.325800px;}
.ws17f{word-spacing:9.336600px;}
.ws8d{word-spacing:9.358200px;}
.ws121{word-spacing:9.579600px;}
.ws6e{word-spacing:9.660600px;}
.ws6f{word-spacing:9.666000px;}
.ws104{word-spacing:9.806400px;}
.ws105{word-spacing:9.817200px;}
.ws92{word-spacing:9.882000px;}
.wsf5{word-spacing:9.925200px;}
.ws114{word-spacing:9.936000px;}
.ws115{word-spacing:9.952200px;}
.ws133{word-spacing:9.984600px;}
.wsf2{word-spacing:9.995400px;}
.ws128{word-spacing:10.049400px;}
.ws20{word-spacing:10.087200px;}
.wsa7{word-spacing:10.141200px;}
.ws11e{word-spacing:10.254600px;}
.wsf1{word-spacing:10.276200px;}
.ws50{word-spacing:10.578600px;}
.ws75{word-spacing:10.589400px;}
.ws179{word-spacing:10.605600px;}
.ws77{word-spacing:10.616400px;}
.ws45{word-spacing:10.643400px;}
.ws4c{word-spacing:10.665000px;}
.ws37{word-spacing:10.827000px;}
.ws91{word-spacing:10.832400px;}
.ws12b{word-spacing:10.924200px;}
.ws17e{word-spacing:10.983600px;}
.ws15d{word-spacing:11.161800px;}
.ws2b{word-spacing:11.167200px;}
.ws18c{word-spacing:11.248200px;}
.ws120{word-spacing:11.253600px;}
.ws122{word-spacing:11.269800px;}
.ws67{word-spacing:11.275200px;}
.ws123{word-spacing:11.491200px;}
.ws33{word-spacing:11.518200px;}
.ws6b{word-spacing:11.734200px;}
.ws19a{word-spacing:11.923200px;}
.ws19b{word-spacing:11.939400px;}
.ws9f{word-spacing:12.052800px;}
.ws12e{word-spacing:12.209400px;}
.ws125{word-spacing:12.241800px;}
.ws31{word-spacing:12.771000px;}
.ws15b{word-spacing:12.943800px;}
.wsee{word-spacing:13.219200px;}
.ws1a8{word-spacing:13.224600px;}
.ws18b{word-spacing:13.230000px;}
.ws86{word-spacing:13.311000px;}
.ws7d{word-spacing:14.040000px;}
.ws175{word-spacing:14.094000px;}
.ws94{word-spacing:14.288400px;}
.ws15f{word-spacing:14.439600px;}
.wsd1{word-spacing:14.644800px;}
.wscf{word-spacing:14.806800px;}
.wsd0{word-spacing:14.817600px;}
.ws40{word-spacing:14.823000px;}
.ws27{word-spacing:15.184800px;}
.ws7e{word-spacing:15.206400px;}
.ws124{word-spacing:15.406200px;}
.ws162{word-spacing:15.546600px;}
.wsea{word-spacing:15.811200px;}
.wseb{word-spacing:15.832800px;}
.wsa1{word-spacing:15.854400px;}
.ws95{word-spacing:16.016400px;}
.ws3{word-spacing:16.200000px;}
.wsa0{word-spacing:16.362000px;}
.ws176{word-spacing:16.567200px;}
.wsf0{word-spacing:16.885800px;}
.ws160{word-spacing:16.988400px;}
.ws8a{word-spacing:17.236800px;}
.ws19f{word-spacing:17.863200px;}
.ws161{word-spacing:17.949600px;}
.ws9e{word-spacing:18.543600px;}
.ws3f{word-spacing:19.294200px;}
.ws9d{word-spacing:20.088000px;}
.ws194{word-spacing:20.120400px;}
.ws9c{word-spacing:21.114000px;}
.ws172{word-spacing:22.032000px;}
.ws7c{word-spacing:22.588200px;}
.wsdb{word-spacing:24.165000px;}
.ws7b{word-spacing:24.197400px;}
.ws186{word-spacing:25.347600px;}
.ws9a{word-spacing:25.660800px;}
.wsd2{word-spacing:25.768800px;}
.wsd3{word-spacing:26.632800px;}
.wsb7{word-spacing:28.674000px;}
.ws9b{word-spacing:29.278800px;}
.ws17c{word-spacing:32.470200px;}
.ws185{word-spacing:33.215400px;}
.wsb6{word-spacing:40.230000px;}
.wsb5{word-spacing:41.094000px;}
.wsc4{word-spacing:41.395200px;}
.ws56{word-spacing:59.179200px;}
.wsc8{word-spacing:62.088000px;}
.wsc1{word-spacing:73.123200px;}
.wsc0{word-spacing:73.963200px;}
.wsc7{word-spacing:84.364800px;}
.wsbf{word-spacing:93.312000px;}
.wsc2{word-spacing:114.240000px;}
.ws59{word-spacing:121.838400px;}
.ws61{word-spacing:122.260800px;}
.wsc5{word-spacing:135.393600px;}
.wsc9{word-spacing:135.907200px;}
.ws5f{word-spacing:136.531200px;}
.ws5d{word-spacing:136.540800px;}
.wsbe{word-spacing:138.936000px;}
.ws5b{word-spacing:145.641600px;}
.wsc3{word-spacing:146.020800px;}
.ws57{word-spacing:161.702400px;}
.ws10e{word-spacing:162.427200px;}
.ws58{word-spacing:316.310400px;}
.ws5a{word-spacing:331.723200px;}
.ws55{word-spacing:353.232000px;}
.ws60{word-spacing:355.272000px;}
.ws5e{word-spacing:383.020800px;}
.ws5c{word-spacing:394.612800px;}
.wsca{word-spacing:554.054400px;}
._2c{margin-left:-553.970400px;}
._42{margin-left:-310.177495px;}
._44{margin-left:-304.870334px;}
._43{margin-left:-303.688284px;}
._46{margin-left:-297.551603px;}
._45{margin-left:-292.496159px;}
._39{margin-left:-158.496000px;}
._11{margin-left:-34.851600px;}
._1a{margin-left:-33.315600px;}
._f{margin-left:-26.848800px;}
._10{margin-left:-25.228800px;}
._16{margin-left:-23.409000px;}
._17{margin-left:-22.161600px;}
._18{margin-left:-19.690200px;}
._d{margin-left:-18.149400px;}
._b{margin-left:-16.188300px;}
._c{margin-left:-14.184900px;}
._12{margin-left:-12.685500px;}
._19{margin-left:-10.648800px;}
._30{margin-left:-9.536400px;}
._14{margin-left:-7.773000px;}
._2e{margin-left:-6.693000px;}
._0{margin-left:-5.562000px;}
._2{margin-left:-3.888000px;}
._8{margin-left:-2.811000px;}
._1{margin-left:-1.188000px;}
._a{width:1.492500px;}
._5{width:2.572500px;}
._6{width:3.958500px;}
._9{width:5.635500px;}
._7{width:6.831000px;}
._e{width:8.569800px;}
._15{width:10.260000px;}
._2f{width:15.390000px;}
._13{width:17.532600px;}
._40{width:48.504000px;}
._3e{width:71.692800px;}
._41{width:93.969600px;}
._3c{width:119.577600px;}
._3a{width:120.700800px;}
._1c{width:121.867200px;}
._3f{width:124.281600px;}
._3b{width:125.716800px;}
._3d{width:133.065600px;}
._1d{width:141.364800px;}
._36{width:172.833600px;}
._1b{width:180.484800px;}
._20{width:183.720000px;}
._37{width:190.646400px;}
._35{width:192.196800px;}
._32{width:203.740800px;}
._22{width:205.382400px;}
._1f{width:216.748800px;}
._33{width:221.544000px;}
._31{width:223.089600px;}
._1e{width:233.788800px;}
._38{width:236.112000px;}
._23{width:246.302400px;}
._2b{width:250.171200px;}
._34{width:254.121600px;}
._2a{width:264.422400px;}
._25{width:265.910400px;}
._28{width:282.710400px;}
._27{width:291.806400px;}
._29{width:312.590400px;}
._24{width:325.430400px;}
._21{width:327.542400px;}
._26{width:344.726400px;}
._2d{width:494.473200px;}
._4{width:894.326400px;}
._3{width:954.860400px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs14{font-size:37.776000px;}
.fsf{font-size:37.886400px;}
.fs11{font-size:38.524800px;}
.fsb{font-size:39.257400px;}
.fsd{font-size:39.495000px;}
.fs9{font-size:40.133400px;}
.fs13{font-size:43.172400px;}
.fse{font-size:43.299000px;}
.fs10{font-size:44.028000px;}
.fsa{font-size:44.866200px;}
.fsc{font-size:45.138000px;}
.fs8{font-size:45.866400px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs12{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:78.579900px;}
.y184{bottom:114.946200px;}
.y2e{bottom:114.976950px;}
.ye2{bottom:115.217100px;}
.y107{bottom:115.398900px;}
.y90{bottom:116.752950px;}
.y163{bottom:117.067050px;}
.y16a{bottom:123.112350px;}
.ye1{bottom:129.617100px;}
.y183{bottom:131.146200px;}
.y2d{bottom:131.176950px;}
.y162{bottom:133.267050px;}
.y8f{bottom:137.005350px;}
.y169{bottom:139.312350px;}
.ye0{bottom:144.017100px;}
.y8e{bottom:144.211350px;}
.y106{bottom:144.543900px;}
.y182{bottom:147.346200px;}
.y2c{bottom:147.376950px;}
.y161{bottom:149.467050px;}
.y103{bottom:151.159050px;}
.y168{bottom:155.512350px;}
.y105{bottom:162.769050px;}
.y133{bottom:162.803550px;}
.y2b{bottom:163.576950px;}
.ydf{bottom:164.276700px;}
.y160{bottom:165.667050px;}
.y181{bottom:167.797350px;}
.y8d{bottom:171.258150px;}
.y167{bottom:171.712350px;}
.y102{bottom:175.390401px;}
.y8c{bottom:178.464150px;}
.y2a{bottom:179.776950px;}
.y15f{bottom:181.867050px;}
.yde{bottom:184.123500px;}
.y166{bottom:187.912350px;}
.yfa{bottom:190.849050px;}
.y132{bottom:190.853550px;}
.y29{bottom:195.976950px;}
.y12f{bottom:197.266050px;}
.y15e{bottom:198.067050px;}
.y104{bottom:198.071550px;}
.ydd{bottom:203.976300px;}
.y165{bottom:204.112350px;}
.y8b{bottom:205.510950px;}
.y131{bottom:208.741050px;}
.y28{bottom:212.176950px;}
.y8a{bottom:212.716950px;}
.y15d{bottom:218.519550px;}
.y164{bottom:220.312350px;}
.y12e{bottom:221.113554px;}
.yfb{bottom:221.694562px;}
.ydc{bottom:223.829100px;}
.y27{bottom:228.376950px;}
.y123{bottom:236.281200px;}
.y89{bottom:239.763750px;}
.y130{bottom:243.367200px;}
.ydb{bottom:243.681900px;}
.y26{bottom:244.576950px;}
.y88{bottom:246.969750px;}
.yfc{bottom:251.125668px;}
.y124{bottom:256.930332px;}
.y25{bottom:260.776950px;}
.yda{bottom:263.534700px;}
.yd5{bottom:263.541900px;}
.y87{bottom:274.016550px;}
.y24{bottom:276.976950px;}
.y125{bottom:277.513422px;}
.y86{bottom:281.222550px;}
.yfd{bottom:281.971181px;}
.y14f{bottom:283.312050px;}
.yd9{bottom:283.387500px;}
.y23{bottom:293.176950px;}
.y14e{bottom:299.512050px;}
.y126{bottom:299.581356px;}
.yd8{bottom:303.240300px;}
.y85{bottom:308.269350px;}
.y22{bottom:309.376950px;}
.yfe{bottom:312.816693px;}
.y84{bottom:315.475350px;}
.y14d{bottom:315.712050px;}
.y127{bottom:320.164446px;}
.yd7{bottom:323.093100px;}
.y21{bottom:325.576950px;}
.y14c{bottom:331.912050px;}
.y128{bottom:340.814679px;}
.y20{bottom:341.776950px;}
.y83{bottom:342.896550px;}
.yd6{bottom:342.945900px;}
.yff{bottom:343.662206px;}
.y1f{bottom:357.976950px;}
.y14b{bottom:360.868200px;}
.y129{bottom:361.463811px;}
.yd4{bottom:363.173100px;}
.y82{bottom:364.384200px;}
.y100{bottom:373.093311px;}
.yd3{bottom:373.094700px;}
.y1e{bottom:374.176950px;}
.y12a{bottom:382.112943px;}
.y14a{bottom:389.824350px;}
.y1d{bottom:390.376950px;}
.y101{bottom:403.938824px;}
.y12b{bottom:404.114835px;}
.yd2{bottom:404.503650px;}
.y149{bottom:406.024350px;}
.y1c{bottom:406.576950px;}
.y81{bottom:407.541000px;}
.y57{bottom:413.437350px;}
.y148{bottom:422.224350px;}
.y1b{bottom:422.776950px;}
.y80{bottom:423.741000px;}
.y12c{bottom:424.697925px;}
.y56{bottom:429.637350px;}
.y147{bottom:438.424350px;}
.y1a{bottom:438.976950px;}
.y7f{bottom:439.941000px;}
.y180{bottom:443.356650px;}
.y12d{bottom:445.348158px;}
.y55{bottom:445.837350px;}
.yd1{bottom:446.020050px;}
.yf9{bottom:449.270700px;}
.y146{bottom:454.624350px;}
.y19{bottom:455.175600px;}
.y7e{bottom:456.141000px;}
.y17f{bottom:459.556650px;}
.y54{bottom:462.037350px;}
.yd0{bottom:465.872850px;}
.y145{bottom:470.824350px;}
.y18{bottom:471.375600px;}
.y7d{bottom:472.341000px;}
.y17e{bottom:475.756650px;}
.yf8{bottom:476.174850px;}
.y53{bottom:478.237350px;}
.yf5{bottom:482.857200px;}
.ycf{bottom:485.725650px;}
.y144{bottom:487.024350px;}
.y17{bottom:487.575600px;}
.y7c{bottom:488.541000px;}
.y122{bottom:489.233850px;}
.y17d{bottom:491.956650px;}
.y52{bottom:494.437350px;}
.yf7{bottom:494.804700px;}
.y143{bottom:503.224350px;}
.y16{bottom:503.775600px;}
.y7b{bottom:504.741000px;}
.yce{bottom:505.946850px;}
.yf4{bottom:507.691375px;}
.y17c{bottom:508.156650px;}
.y51{bottom:510.637350px;}
.y121{bottom:518.441700px;}
.y142{bottom:519.424350px;}
.ycd{bottom:520.346850px;}
.y7a{bottom:520.941000px;}
.yed{bottom:523.492350px;}
.y17b{bottom:524.356650px;}
.y11e{bottom:524.854200px;}
.y50{bottom:526.837350px;}
.yf6{bottom:530.849700px;}
.y141{bottom:535.624350px;}
.y120{bottom:536.059200px;}
.y79{bottom:537.141000px;}
.ycc{bottom:540.188850px;}
.y17a{bottom:540.556650px;}
.y4f{bottom:543.037350px;}
.y11d{bottom:548.211427px;}
.y140{bottom:551.824350px;}
.y78{bottom:553.341000px;}
.y179{bottom:556.756650px;}
.y4e{bottom:559.237350px;}
.yee{bottom:559.338088px;}
.ycb{bottom:561.676350px;}
.y115{bottom:563.126850px;}
.y77{bottom:569.541000px;}
.y11f{bottom:570.146850px;}
.y13f{bottom:572.275350px;}
.y15{bottom:572.903700px;}
.y178{bottom:572.956650px;}
.y4d{bottom:575.437350px;}
.y76{bottom:585.741000px;}
.y177{bottom:589.156650px;}
.y4c{bottom:591.637350px;}
.y116{bottom:592.894912px;}
.y13e{bottom:594.527850px;}
.yef{bottom:596.591925px;}
.y14{bottom:601.859850px;}
.y75{bottom:601.941000px;}
.y176{bottom:605.356650px;}
.yca{bottom:605.356950px;}
.y4b{bottom:607.837350px;}
.yaa{bottom:609.544650px;}
.y13{bottom:618.059850px;}
.y74{bottom:618.141000px;}
.y117{bottom:621.309881px;}
.y175{bottom:621.556650px;}
.yc9{bottom:621.556950px;}
.y4a{bottom:624.037350px;}
.ya9{bottom:625.744650px;}
.yf0{bottom:632.437663px;}
.y12{bottom:634.259850px;}
.y73{bottom:634.341000px;}
.y13d{bottom:634.687500px;}
.y174{bottom:637.756650px;}
.yc8{bottom:637.756950px;}
.y49{bottom:640.237350px;}
.ya8{bottom:641.944650px;}
.y11{bottom:650.459850px;}
.y72{bottom:650.541000px;}
.y13c{bottom:650.887500px;}
.y118{bottom:651.079026px;}
.y173{bottom:653.956650px;}
.yc7{bottom:653.956950px;}
.y48{bottom:656.437500px;}
.ya7{bottom:658.144650px;}
.y10{bottom:666.659850px;}
.y71{bottom:666.741000px;}
.y13b{bottom:667.087500px;}
.yf1{bottom:668.282255px;}
.y172{bottom:670.156650px;}
.yc6{bottom:670.156950px;}
.y47{bottom:672.637500px;}
.ya6{bottom:674.344650px;}
.y119{bottom:680.847089px;}
.yf{bottom:682.859850px;}
.y70{bottom:682.941000px;}
.y13a{bottom:683.287500px;}
.y171{bottom:686.356650px;}
.yc5{bottom:686.356950px;}
.y46{bottom:688.837500px;}
.ya5{bottom:690.544650px;}
.ye{bottom:699.059850px;}
.y6f{bottom:699.141000px;}
.y139{bottom:699.487500px;}
.y170{bottom:702.556650px;}
.yc4{bottom:702.556950px;}
.y45{bottom:705.037500px;}
.yf2{bottom:705.536092px;}
.ya4{bottom:706.744650px;}
.y11a{bottom:710.615151px;}
.yd{bottom:715.259700px;}
.y6e{bottom:715.341000px;}
.y138{bottom:715.687500px;}
.y16f{bottom:718.756650px;}
.yc3{bottom:718.756950px;}
.y44{bottom:721.237500px;}
.ya3{bottom:722.944650px;}
.yc{bottom:731.459700px;}
.y6d{bottom:731.541000px;}
.y137{bottom:731.887500px;}
.y16e{bottom:734.956650px;}
.yc2{bottom:734.956950px;}
.y43{bottom:737.437500px;}
.y11b{bottom:739.031202px;}
.ya2{bottom:739.144650px;}
.yf3{bottom:741.313030px;}
.yb{bottom:747.659700px;}
.y6c{bottom:747.741000px;}
.y136{bottom:748.087500px;}
.y16d{bottom:751.156650px;}
.yc1{bottom:751.156950px;}
.y42{bottom:753.637500px;}
.ya1{bottom:755.344650px;}
.y6b{bottom:763.941000px;}
.y135{bottom:764.287500px;}
.y16c{bottom:767.356650px;}
.yc0{bottom:767.356950px;}
.y11c{bottom:768.798182px;}
.y41{bottom:769.837500px;}
.ya0{bottom:771.544650px;}
.ya{bottom:776.615850px;}
.y6a{bottom:780.141000px;}
.y16b{bottom:783.556650px;}
.ybf{bottom:783.556950px;}
.y134{bottom:784.740000px;}
.y40{bottom:786.037500px;}
.y9f{bottom:787.744650px;}
.y9{bottom:792.815850px;}
.y69{bottom:796.341000px;}
.yec{bottom:799.756650px;}
.ybe{bottom:799.756950px;}
.y3f{bottom:802.237500px;}
.y9e{bottom:803.944650px;}
.y114{bottom:811.354500px;}
.y68{bottom:812.541000px;}
.yeb{bottom:815.956650px;}
.ybd{bottom:815.956950px;}
.y3e{bottom:818.437500px;}
.y9d{bottom:820.144650px;}
.y15c{bottom:824.443500px;}
.y8{bottom:826.022700px;}
.y67{bottom:828.741000px;}
.yea{bottom:832.156650px;}
.ybc{bottom:832.156950px;}
.y3d{bottom:834.637500px;}
.y113{bottom:835.620000px;}
.y9c{bottom:836.344650px;}
.y110{bottom:842.302500px;}
.y66{bottom:844.941000px;}
.ye9{bottom:848.356650px;}
.ybb{bottom:848.356950px;}
.y15b{bottom:850.402500px;}
.y3c{bottom:850.837500px;}
.y9b{bottom:852.544650px;}
.y112{bottom:853.979850px;}
.y158{bottom:856.815000px;}
.y65{bottom:861.141000px;}
.ye8{bottom:864.556650px;}
.yba{bottom:864.556950px;}
.y10f{bottom:866.678812px;}
.y15a{bottom:867.952500px;}
.y9a{bottom:868.744650px;}
.y3b{bottom:871.288500px;}
.y7{bottom:871.335000px;}
.y64{bottom:877.341000px;}
.y157{bottom:880.109246px;}
.ye7{bottom:880.756650px;}
.yb9{bottom:880.756950px;}
.y108{bottom:882.195000px;}
.y99{bottom:884.944650px;}
.y111{bottom:889.485000px;}
.y150{bottom:894.885000px;}
.ye6{bottom:896.956650px;}
.yb8{bottom:896.956950px;}
.y63{bottom:897.793650px;}
.y98{bottom:901.144650px;}
.y159{bottom:901.972650px;}
.y3a{bottom:905.397000px;}
.y6{bottom:908.143500px;}
.ye5{bottom:913.156650px;}
.yb7{bottom:913.156950px;}
.y97{bottom:917.344650px;}
.y109{bottom:917.436493px;}
.y62{bottom:927.649500px;}
.y151{bottom:928.635024px;}
.ye4{bottom:929.356650px;}
.yb6{bottom:929.356950px;}
.y96{bottom:933.544650px;}
.y61{bottom:943.849500px;}
.y39{bottom:945.556650px;}
.yb5{bottom:945.556950px;}
.y95{bottom:949.744650px;}
.y10a{bottom:954.087421px;}
.y60{bottom:960.049500px;}
.y38{bottom:961.756650px;}
.yb4{bottom:961.756950px;}
.y152{bottom:963.733106px;}
.y94{bottom:965.944650px;}
.y5f{bottom:976.249500px;}
.y37{bottom:977.956650px;}
.yb3{bottom:977.956950px;}
.y93{bottom:982.144650px;}
.y5{bottom:989.271000px;}
.y10b{bottom:989.385337px;}
.y5e{bottom:992.449500px;}
.y36{bottom:994.156650px;}
.yb2{bottom:994.156950px;}
.y153{bottom:997.483129px;}
.y92{bottom:998.344650px;}
.y5d{bottom:1008.649500px;}
.y35{bottom:1010.356650px;}
.yb1{bottom:1010.356950px;}
.y91{bottom:1018.797150px;}
.y4{bottom:1020.771000px;}
.y10c{bottom:1024.626831px;}
.y34{bottom:1026.556650px;}
.yb0{bottom:1026.556950px;}
.y5c{bottom:1029.100650px;}
.y154{bottom:1031.168394px;}
.y33{bottom:1042.756650px;}
.yaf{bottom:1042.756950px;}
.y5b{bottom:1058.956050px;}
.y32{bottom:1058.956650px;}
.yae{bottom:1058.956950px;}
.y10d{bottom:1061.346594px;}
.y155{bottom:1066.268635px;}
.y5a{bottom:1075.156050px;}
.y31{bottom:1075.156650px;}
.yad{bottom:1075.156950px;}
.y59{bottom:1091.356050px;}
.y30{bottom:1091.356650px;}
.yac{bottom:1091.356950px;}
.y10e{bottom:1096.588087px;}
.y156{bottom:1100.018659px;}
.y58{bottom:1107.556050px;}
.y2f{bottom:1107.556650px;}
.yab{bottom:1107.556950px;}
.y3{bottom:1129.624800px;}
.y2{bottom:1167.084600px;}
.ye3{bottom:1167.084750px;}
.h1b{height:27.501961px;}
.h16{height:27.582335px;}
.h18{height:28.047108px;}
.h12{height:28.580461px;}
.h14{height:28.753440px;}
.h10{height:29.218213px;}
.h1a{height:31.430688px;}
.h15{height:31.522856px;}
.h17{height:32.053588px;}
.h11{height:32.663820px;}
.h13{height:32.861698px;}
.hf{height:33.391993px;}
.h9{height:39.168000px;}
.hd{height:43.608000px;}
.h8{height:43.632000px;}
.h7{height:46.512000px;}
.h1{height:49.086000px;}
.h5{height:49.086600px;}
.h6{height:51.408000px;}
.h4{height:53.856000px;}
.h19{height:54.540000px;}
.h3{height:65.448000px;}
.hc{height:67.968000px;}
.ha{height:72.408000px;}
.hb{height:72.432000px;}
.he{height:78.844800px;}
.h2{height:95.445000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xb{left:106.062600px;}
.x14{left:108.188850px;}
.xc{left:118.820100px;}
.x2{left:127.322550px;}
.x17{left:129.447450px;}
.x13{left:132.234450px;}
.xe{left:134.829450px;}
.x8{left:140.076750px;}
.x7{left:148.582350px;}
.xd{left:151.014450px;}
.x1c{left:170.073300px;}
.x3{left:174.210450px;}
.x16{left:176.092950px;}
.x18{left:186.135300px;}
.x19{left:188.115300px;}
.x1a{left:189.369300px;}
.x1b{left:191.205300px;}
.x3c{left:211.635450px;}
.x23{left:237.873450px;}
.x2d{left:259.132950px;}
.x21{left:266.406450px;}
.x3a{left:269.619524px;}
.x39{left:274.951950px;}
.x1e{left:277.207650px;}
.x24{left:281.863950px;}
.x1d{left:282.943950px;}
.x31{left:285.507450px;}
.x29{left:292.768502px;}
.x2f{left:295.567802px;}
.x28{left:298.371450px;}
.x2e{left:300.964950px;}
.x33{left:301.977450px;}
.x27{left:302.991450px;}
.x22{left:304.476450px;}
.x2c{left:319.431450px;}
.x32{left:321.147450px;}
.x36{left:322.632450px;}
.x25{left:332.493429px;}
.x1f{left:334.582123px;}
.x2a{left:349.000500px;}
.x34{left:351.458345px;}
.x5{left:356.844600px;}
.x4{left:369.506100px;}
.x37{left:378.662100px;}
.x38{left:398.153100px;}
.x6{left:422.960100px;}
.x3d{left:431.641950px;}
.xf{left:444.590550px;}
.x1{left:449.343600px;}
.x11{left:457.346100px;}
.x9{left:465.847950px;}
.xa{left:478.604100px;}
.x15{left:494.112450px;}
.x3b{left:525.917250px;}
.x10{left:528.225750px;}
.x12{left:533.370600px;}
.x26{left:543.291600px;}
.x20{left:549.704250px;}
.x30{left:551.390250px;}
.x35{left:557.600100px;}
.x2b{left:559.934250px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.840533pt;}
.v3{vertical-align:25.600000pt;}
.v4{vertical-align:35.268267pt;}
.ls9{letter-spacing:-2.832000pt;}
.ls36{letter-spacing:-2.386954pt;}
.ls23{letter-spacing:-2.343164pt;}
.ls1b{letter-spacing:-2.317090pt;}
.ls2e{letter-spacing:-2.309024pt;}
.ls15{letter-spacing:-2.291281pt;}
.ls29{letter-spacing:-2.116840pt;}
.ls19{letter-spacing:-1.765347pt;}
.ls1f{letter-spacing:-1.698933pt;}
.ls31{letter-spacing:-1.592835pt;}
.ls38{letter-spacing:-1.592582pt;}
.ls2c{letter-spacing:-1.551066pt;}
.ls27{letter-spacing:-1.484539pt;}
.ls1e{letter-spacing:-1.469099pt;}
.ls18{letter-spacing:-1.423398pt;}
.ls37{letter-spacing:-1.302852pt;}
.ls2b{letter-spacing:-1.266248pt;}
.ls7{letter-spacing:-0.938667pt;}
.ls11{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:-0.065333pt;}
.ls6{letter-spacing:-0.035200pt;}
.ls4{letter-spacing:-0.018667pt;}
.ls3b{letter-spacing:-0.009600pt;}
.ls35{letter-spacing:-0.005600pt;}
.lsf{letter-spacing:-0.005568pt;}
.ls8{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003627pt;}
.lse{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls30{letter-spacing:0.369838pt;}
.ls26{letter-spacing:0.407237pt;}
.ls2f{letter-spacing:0.410931pt;}
.ls25{letter-spacing:0.452876pt;}
.ls1d{letter-spacing:0.457131pt;}
.ls34{letter-spacing:0.520469pt;}
.ls17{letter-spacing:0.542247pt;}
.ls2a{letter-spacing:0.559035pt;}
.lsa{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.885333pt;}
.ls1a{letter-spacing:1.011099pt;}
.ls32{letter-spacing:1.044931pt;}
.ls39{letter-spacing:1.082188pt;}
.ls28{letter-spacing:1.107386pt;}
.ls20{letter-spacing:1.120658pt;}
.ls2d{letter-spacing:1.143094pt;}
.ls0{letter-spacing:2.164800pt;}
.ls10{letter-spacing:5.400000pt;}
.ls14{letter-spacing:8.848000pt;}
.ls3a{letter-spacing:9.019200pt;}
.ls12{letter-spacing:140.889600pt;}
.ls13{letter-spacing:154.624000pt;}
.ls33{letter-spacing:256.839323pt;}
.ls21{letter-spacing:257.669462pt;}
.ls22{letter-spacing:262.011606pt;}
.ls1c{letter-spacing:267.047611pt;}
.ls24{letter-spacing:268.468787pt;}
.ls16{letter-spacing:272.841886pt;}
.lsc{letter-spacing:919.197867pt;}
.ws10f{word-spacing:-272.882656pt;}
.ws13a{word-spacing:-268.508910pt;}
.ws110{word-spacing:-267.087492pt;}
.ws13c{word-spacing:-262.050742pt;}
.ws13b{word-spacing:-257.707950pt;}
.ws145{word-spacing:-256.877699pt;}
.wsc6{word-spacing:-149.422933pt;}
.ws143{word-spacing:-11.200000pt;}
.ws144{word-spacing:-11.194400pt;}
.ws0{word-spacing:-10.794667pt;}
.ws53{word-spacing:-9.604800pt;}
.ws52{word-spacing:-9.600000pt;}
.ws1{word-spacing:-9.264000pt;}
.ws168{word-spacing:-8.164800pt;}
.wsbd{word-spacing:-8.160000pt;}
.ws167{word-spacing:-7.392000pt;}
.ws54{word-spacing:-5.568000pt;}
.ws7f{word-spacing:-3.619200pt;}
.ws83{word-spacing:-3.614400pt;}
.ws18{word-spacing:-2.193600pt;}
.ws182{word-spacing:-1.886400pt;}
.ws17{word-spacing:-1.867200pt;}
.ws11{word-spacing:-1.708800pt;}
.ws14c{word-spacing:-1.555200pt;}
.ws177{word-spacing:-1.545600pt;}
.ws187{word-spacing:-1.536000pt;}
.ws32{word-spacing:-1.435200pt;}
.ws190{word-spacing:-1.320000pt;}
.ws163{word-spacing:-1.252800pt;}
.ws164{word-spacing:-1.051200pt;}
.ws174{word-spacing:-0.993600pt;}
.wsb{word-spacing:-0.969600pt;}
.ws1a5{word-spacing:-0.940800pt;}
.ws16c{word-spacing:-0.888000pt;}
.ws178{word-spacing:-0.864000pt;}
.wse5{word-spacing:-0.825600pt;}
.ws188{word-spacing:-0.792000pt;}
.ws74{word-spacing:-0.787200pt;}
.ws16f{word-spacing:-0.542400pt;}
.wsfe{word-spacing:-0.513600pt;}
.ws13f{word-spacing:-0.501784pt;}
.ws62{word-spacing:-0.484800pt;}
.ws30{word-spacing:-0.384000pt;}
.wscc{word-spacing:-0.374400pt;}
.ws2c{word-spacing:-0.355200pt;}
.ws193{word-spacing:-0.350400pt;}
.ws138{word-spacing:-0.328017pt;}
.ws192{word-spacing:-0.297600pt;}
.ws159{word-spacing:-0.241766pt;}
.ws136{word-spacing:-0.131994pt;}
.ws12{word-spacing:-0.129600pt;}
.ws191{word-spacing:-0.124800pt;}
.ws10d{word-spacing:-0.110400pt;}
.ws199{word-spacing:-0.100800pt;}
.ws13d{word-spacing:-0.087767pt;}
.ws1aa{word-spacing:-0.086400pt;}
.ws141{word-spacing:-0.065064pt;}
.wsba{word-spacing:-0.048000pt;}
.ws13e{word-spacing:-0.045639pt;}
.ws142{word-spacing:-0.023971pt;}
.ws6c{word-spacing:-0.014400pt;}
.ws10c{word-spacing:-0.009600pt;}
.wsbc{word-spacing:-0.008533pt;}
.wsa{word-spacing:-0.004800pt;}
.wsbb{word-spacing:-0.004267pt;}
.ws2{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.004800pt;}
.ws4{word-spacing:0.018667pt;}
.ws6{word-spacing:0.035200pt;}
.ws5{word-spacing:0.065333pt;}
.ws28{word-spacing:0.096000pt;}
.ws197{word-spacing:0.264000pt;}
.ws196{word-spacing:0.292800pt;}
.ws2a{word-spacing:0.297600pt;}
.ws8f{word-spacing:0.307200pt;}
.ws19{word-spacing:0.336000pt;}
.ws134{word-spacing:0.364800pt;}
.ws24{word-spacing:0.451200pt;}
.ws18f{word-spacing:0.552000pt;}
.ws49{word-spacing:0.561600pt;}
.ws166{word-spacing:0.576000pt;}
.ws146{word-spacing:0.600000pt;}
.ws38{word-spacing:0.628800pt;}
.ws16{word-spacing:0.638400pt;}
.wsa2{word-spacing:0.672000pt;}
.ws14f{word-spacing:0.710400pt;}
.ws15e{word-spacing:0.734400pt;}
.ws170{word-spacing:0.748800pt;}
.ws4d{word-spacing:0.816000pt;}
.ws3e{word-spacing:0.825600pt;}
.ws1a1{word-spacing:0.835200pt;}
.ws18e{word-spacing:0.960000pt;}
.wse6{word-spacing:0.964800pt;}
.ws1e{word-spacing:1.017600pt;}
.ws14{word-spacing:1.046400pt;}
.ws88{word-spacing:1.094400pt;}
.wscd{word-spacing:1.137600pt;}
.ws98{word-spacing:1.190400pt;}
.ws12f{word-spacing:1.195200pt;}
.ws99{word-spacing:1.200000pt;}
.ws117{word-spacing:1.204800pt;}
.ws135{word-spacing:1.334400pt;}
.ws151{word-spacing:1.396800pt;}
.ws10{word-spacing:1.401600pt;}
.ws25{word-spacing:1.420800pt;}
.wsdd{word-spacing:1.435200pt;}
.wsff{word-spacing:1.483200pt;}
.ws4a{word-spacing:1.488000pt;}
.ws84{word-spacing:1.492800pt;}
.wsd{word-spacing:1.507200pt;}
.wse{word-spacing:1.526400pt;}
.ws140{word-spacing:1.565971pt;}
.ws15a{word-spacing:1.581555pt;}
.ws139{word-spacing:1.598212pt;}
.ws1a3{word-spacing:1.641600pt;}
.ws14b{word-spacing:1.660800pt;}
.ws48{word-spacing:1.665600pt;}
.ws158{word-spacing:1.704000pt;}
.ws14a{word-spacing:1.756800pt;}
.ws16a{word-spacing:1.776000pt;}
.ws17d{word-spacing:1.785600pt;}
.wsad{word-spacing:1.800000pt;}
.ws137{word-spacing:1.833650pt;}
.ws4e{word-spacing:1.848000pt;}
.wsac{word-spacing:1.852800pt;}
.ws4f{word-spacing:1.857600pt;}
.ws118{word-spacing:1.867200pt;}
.ws68{word-spacing:1.896000pt;}
.ws47{word-spacing:1.958400pt;}
.ws12a{word-spacing:1.992000pt;}
.ws6a{word-spacing:2.025600pt;}
.ws1f{word-spacing:2.049600pt;}
.ws4b{word-spacing:2.059200pt;}
.ws169{word-spacing:2.088000pt;}
.ws1ad{word-spacing:2.092800pt;}
.wsfd{word-spacing:2.116800pt;}
.ws129{word-spacing:2.131200pt;}
.ws100{word-spacing:2.150400pt;}
.ws2e{word-spacing:2.184000pt;}
.ws1ac{word-spacing:2.222400pt;}
.ws69{word-spacing:2.294400pt;}
.ws12d{word-spacing:2.332800pt;}
.ws14e{word-spacing:2.337600pt;}
.ws157{word-spacing:2.356800pt;}
.ws171{word-spacing:2.385600pt;}
.wsb8{word-spacing:2.390400pt;}
.wse9{word-spacing:2.524800pt;}
.ws16e{word-spacing:2.529600pt;}
.ws126{word-spacing:2.568000pt;}
.ws132{word-spacing:2.587200pt;}
.wsd7{word-spacing:2.668800pt;}
.ws13{word-spacing:2.779200pt;}
.wsfb{word-spacing:2.793600pt;}
.ws82{word-spacing:2.803200pt;}
.ws80{word-spacing:2.812800pt;}
.ws81{word-spacing:2.817600pt;}
.ws1a0{word-spacing:2.822400pt;}
.ws14d{word-spacing:2.870400pt;}
.wsc{word-spacing:2.913600pt;}
.wsb2{word-spacing:2.932800pt;}
.ws19d{word-spacing:2.947200pt;}
.wsfc{word-spacing:2.971200pt;}
.ws16d{word-spacing:3.000000pt;}
.ws102{word-spacing:3.014400pt;}
.ws71{word-spacing:3.028800pt;}
.wsb9{word-spacing:3.048000pt;}
.ws21{word-spacing:3.067200pt;}
.wse3{word-spacing:3.086400pt;}
.wsb3{word-spacing:3.091200pt;}
.ws19e{word-spacing:3.220800pt;}
.wsf3{word-spacing:3.254400pt;}
.ws78{word-spacing:3.264000pt;}
.wsfa{word-spacing:3.283200pt;}
.wse4{word-spacing:3.321600pt;}
.ws89{word-spacing:3.336000pt;}
.ws153{word-spacing:3.369600pt;}
.wsae{word-spacing:3.412800pt;}
.ws1a6{word-spacing:3.456000pt;}
.ws2f{word-spacing:3.470400pt;}
.ws2d{word-spacing:3.508800pt;}
.wsd9{word-spacing:3.523200pt;}
.ws70{word-spacing:3.561600pt;}
.ws64{word-spacing:3.628800pt;}
.ws1b{word-spacing:3.633600pt;}
.wsd8{word-spacing:3.748800pt;}
.wsce{word-spacing:3.777600pt;}
.ws17a{word-spacing:3.825600pt;}
.ws108{word-spacing:3.844800pt;}
.ws72{word-spacing:3.878400pt;}
.ws15{word-spacing:3.883200pt;}
.wscb{word-spacing:3.912000pt;}
.ws1a2{word-spacing:3.960000pt;}
.ws150{word-spacing:3.964800pt;}
.ws112{word-spacing:3.984000pt;}
.wsda{word-spacing:4.080000pt;}
.ws8{word-spacing:4.171200pt;}
.ws155{word-spacing:4.214400pt;}
.ws156{word-spacing:4.224000pt;}
.ws41{word-spacing:4.291200pt;}
.ws127{word-spacing:4.310400pt;}
.ws34{word-spacing:4.315200pt;}
.ws198{word-spacing:4.353600pt;}
.ws22{word-spacing:4.368000pt;}
.ws66{word-spacing:4.396800pt;}
.ws8b{word-spacing:4.459200pt;}
.ws11f{word-spacing:4.497600pt;}
.ws131{word-spacing:4.545600pt;}
.wsec{word-spacing:4.555200pt;}
.ws180{word-spacing:4.598400pt;}
.ws152{word-spacing:4.608000pt;}
.ws195{word-spacing:4.622400pt;}
.ws8e{word-spacing:4.656000pt;}
.ws111{word-spacing:4.680000pt;}
.wsf8{word-spacing:4.694400pt;}
.wse0{word-spacing:4.761600pt;}
.ws181{word-spacing:4.766400pt;}
.ws7{word-spacing:4.891200pt;}
.ws9{word-spacing:4.905600pt;}
.ws1a7{word-spacing:4.963200pt;}
.wse1{word-spacing:5.030400pt;}
.ws65{word-spacing:5.155200pt;}
.ws63{word-spacing:5.169600pt;}
.ws35{word-spacing:5.179200pt;}
.ws36{word-spacing:5.184000pt;}
.ws23{word-spacing:5.222400pt;}
.wsb0{word-spacing:5.308800pt;}
.ws1ab{word-spacing:5.318400pt;}
.wse7{word-spacing:5.356800pt;}
.wse8{word-spacing:5.361600pt;}
.ws93{word-spacing:5.380800pt;}
.wsf{word-spacing:5.400000pt;}
.ws3b{word-spacing:5.409600pt;}
.wsf9{word-spacing:5.424000pt;}
.ws96{word-spacing:5.433600pt;}
.ws189{word-spacing:5.452800pt;}
.wsb4{word-spacing:5.515200pt;}
.ws154{word-spacing:5.524800pt;}
.ws11d{word-spacing:5.534400pt;}
.ws18a{word-spacing:5.558400pt;}
.wsa3{word-spacing:5.673600pt;}
.ws183{word-spacing:5.683200pt;}
.ws18d{word-spacing:5.688000pt;}
.wsaf{word-spacing:5.697600pt;}
.ws1a{word-spacing:5.712000pt;}
.ws51{word-spacing:5.784000pt;}
.ws15c{word-spacing:5.803200pt;}
.ws46{word-spacing:5.812800pt;}
.ws119{word-spacing:5.822400pt;}
.ws1a4{word-spacing:5.827200pt;}
.wse2{word-spacing:5.841600pt;}
.ws90{word-spacing:5.889600pt;}
.wsa8{word-spacing:5.904000pt;}
.ws19c{word-spacing:5.942400pt;}
.ws87{word-spacing:6.028800pt;}
.ws26{word-spacing:6.086400pt;}
.ws147{word-spacing:6.096000pt;}
.ws149{word-spacing:6.110400pt;}
.ws43{word-spacing:6.124800pt;}
.ws1a9{word-spacing:6.134400pt;}
.wsd4{word-spacing:6.144000pt;}
.wsd5{word-spacing:6.148800pt;}
.wsa9{word-spacing:6.163200pt;}
.ws8c{word-spacing:6.172800pt;}
.ws165{word-spacing:6.192000pt;}
.ws130{word-spacing:6.254400pt;}
.ws16b{word-spacing:6.297600pt;}
.ws101{word-spacing:6.307200pt;}
.ws3a{word-spacing:6.345600pt;}
.ws3c{word-spacing:6.364800pt;}
.ws97{word-spacing:6.441600pt;}
.ws39{word-spacing:6.446400pt;}
.ws1ae{word-spacing:6.456000pt;}
.ws29{word-spacing:6.513600pt;}
.ws1d{word-spacing:6.547200pt;}
.ws1c{word-spacing:6.643200pt;}
.ws116{word-spacing:6.648000pt;}
.wsdc{word-spacing:6.676800pt;}
.ws184{word-spacing:6.681600pt;}
.wsa5{word-spacing:6.700800pt;}
.ws85{word-spacing:6.715200pt;}
.ws148{word-spacing:6.878400pt;}
.ws11b{word-spacing:6.902400pt;}
.wsaa{word-spacing:6.931200pt;}
.wsde{word-spacing:7.012800pt;}
.ws103{word-spacing:7.080000pt;}
.wsf6{word-spacing:7.089600pt;}
.wsed{word-spacing:7.108800pt;}
.ws73{word-spacing:7.224000pt;}
.wsdf{word-spacing:7.228800pt;}
.wsab{word-spacing:7.286400pt;}
.wsa4{word-spacing:7.305600pt;}
.ws106{word-spacing:7.353600pt;}
.ws107{word-spacing:7.358400pt;}
.ws17b{word-spacing:7.368000pt;}
.wsb1{word-spacing:7.387200pt;}
.ws10a{word-spacing:7.449600pt;}
.ws10b{word-spacing:7.454400pt;}
.ws113{word-spacing:7.617600pt;}
.wsd6{word-spacing:7.694400pt;}
.wsa6{word-spacing:7.814400pt;}
.ws12c{word-spacing:7.857600pt;}
.wsef{word-spacing:7.891200pt;}
.ws173{word-spacing:7.905600pt;}
.ws76{word-spacing:8.020800pt;}
.ws109{word-spacing:8.054400pt;}
.ws42{word-spacing:8.088000pt;}
.ws44{word-spacing:8.097600pt;}
.wsf7{word-spacing:8.102400pt;}
.ws11a{word-spacing:8.107200pt;}
.ws11c{word-spacing:8.121600pt;}
.wsf4{word-spacing:8.126400pt;}
.ws7a{word-spacing:8.256000pt;}
.ws79{word-spacing:8.260800pt;}
.ws3d{word-spacing:8.289600pt;}
.ws17f{word-spacing:8.299200pt;}
.ws8d{word-spacing:8.318400pt;}
.ws121{word-spacing:8.515200pt;}
.ws6e{word-spacing:8.587200pt;}
.ws6f{word-spacing:8.592000pt;}
.ws104{word-spacing:8.716800pt;}
.ws105{word-spacing:8.726400pt;}
.ws92{word-spacing:8.784000pt;}
.wsf5{word-spacing:8.822400pt;}
.ws114{word-spacing:8.832000pt;}
.ws115{word-spacing:8.846400pt;}
.ws133{word-spacing:8.875200pt;}
.wsf2{word-spacing:8.884800pt;}
.ws128{word-spacing:8.932800pt;}
.ws20{word-spacing:8.966400pt;}
.wsa7{word-spacing:9.014400pt;}
.ws11e{word-spacing:9.115200pt;}
.wsf1{word-spacing:9.134400pt;}
.ws50{word-spacing:9.403200pt;}
.ws75{word-spacing:9.412800pt;}
.ws179{word-spacing:9.427200pt;}
.ws77{word-spacing:9.436800pt;}
.ws45{word-spacing:9.460800pt;}
.ws4c{word-spacing:9.480000pt;}
.ws37{word-spacing:9.624000pt;}
.ws91{word-spacing:9.628800pt;}
.ws12b{word-spacing:9.710400pt;}
.ws17e{word-spacing:9.763200pt;}
.ws15d{word-spacing:9.921600pt;}
.ws2b{word-spacing:9.926400pt;}
.ws18c{word-spacing:9.998400pt;}
.ws120{word-spacing:10.003200pt;}
.ws122{word-spacing:10.017600pt;}
.ws67{word-spacing:10.022400pt;}
.ws123{word-spacing:10.214400pt;}
.ws33{word-spacing:10.238400pt;}
.ws6b{word-spacing:10.430400pt;}
.ws19a{word-spacing:10.598400pt;}
.ws19b{word-spacing:10.612800pt;}
.ws9f{word-spacing:10.713600pt;}
.ws12e{word-spacing:10.852800pt;}
.ws125{word-spacing:10.881600pt;}
.ws31{word-spacing:11.352000pt;}
.ws15b{word-spacing:11.505600pt;}
.wsee{word-spacing:11.750400pt;}
.ws1a8{word-spacing:11.755200pt;}
.ws18b{word-spacing:11.760000pt;}
.ws86{word-spacing:11.832000pt;}
.ws7d{word-spacing:12.480000pt;}
.ws175{word-spacing:12.528000pt;}
.ws94{word-spacing:12.700800pt;}
.ws15f{word-spacing:12.835200pt;}
.wsd1{word-spacing:13.017600pt;}
.wscf{word-spacing:13.161600pt;}
.wsd0{word-spacing:13.171200pt;}
.ws40{word-spacing:13.176000pt;}
.ws27{word-spacing:13.497600pt;}
.ws7e{word-spacing:13.516800pt;}
.ws124{word-spacing:13.694400pt;}
.ws162{word-spacing:13.819200pt;}
.wsea{word-spacing:14.054400pt;}
.wseb{word-spacing:14.073600pt;}
.wsa1{word-spacing:14.092800pt;}
.ws95{word-spacing:14.236800pt;}
.ws3{word-spacing:14.400000pt;}
.wsa0{word-spacing:14.544000pt;}
.ws176{word-spacing:14.726400pt;}
.wsf0{word-spacing:15.009600pt;}
.ws160{word-spacing:15.100800pt;}
.ws8a{word-spacing:15.321600pt;}
.ws19f{word-spacing:15.878400pt;}
.ws161{word-spacing:15.955200pt;}
.ws9e{word-spacing:16.483200pt;}
.ws3f{word-spacing:17.150400pt;}
.ws9d{word-spacing:17.856000pt;}
.ws194{word-spacing:17.884800pt;}
.ws9c{word-spacing:18.768000pt;}
.ws172{word-spacing:19.584000pt;}
.ws7c{word-spacing:20.078400pt;}
.wsdb{word-spacing:21.480000pt;}
.ws7b{word-spacing:21.508800pt;}
.ws186{word-spacing:22.531200pt;}
.ws9a{word-spacing:22.809600pt;}
.wsd2{word-spacing:22.905600pt;}
.wsd3{word-spacing:23.673600pt;}
.wsb7{word-spacing:25.488000pt;}
.ws9b{word-spacing:26.025600pt;}
.ws17c{word-spacing:28.862400pt;}
.ws185{word-spacing:29.524800pt;}
.wsb6{word-spacing:35.760000pt;}
.wsb5{word-spacing:36.528000pt;}
.wsc4{word-spacing:36.795733pt;}
.ws56{word-spacing:52.603733pt;}
.wsc8{word-spacing:55.189333pt;}
.wsc1{word-spacing:64.998400pt;}
.wsc0{word-spacing:65.745067pt;}
.wsc7{word-spacing:74.990933pt;}
.wsbf{word-spacing:82.944000pt;}
.wsc2{word-spacing:101.546667pt;}
.ws59{word-spacing:108.300800pt;}
.ws61{word-spacing:108.676267pt;}
.wsc5{word-spacing:120.349867pt;}
.wsc9{word-spacing:120.806400pt;}
.ws5f{word-spacing:121.361067pt;}
.ws5d{word-spacing:121.369600pt;}
.wsbe{word-spacing:123.498667pt;}
.ws5b{word-spacing:129.459200pt;}
.wsc3{word-spacing:129.796267pt;}
.ws57{word-spacing:143.735467pt;}
.ws10e{word-spacing:144.379733pt;}
.ws58{word-spacing:281.164800pt;}
.ws5a{word-spacing:294.865067pt;}
.ws55{word-spacing:313.984000pt;}
.ws60{word-spacing:315.797333pt;}
.ws5e{word-spacing:340.462933pt;}
.ws5c{word-spacing:350.766933pt;}
.wsca{word-spacing:492.492800pt;}
._2c{margin-left:-492.418133pt;}
._42{margin-left:-275.713329pt;}
._44{margin-left:-270.995852pt;}
._43{margin-left:-269.945141pt;}
._46{margin-left:-264.490314pt;}
._45{margin-left:-259.996586pt;}
._39{margin-left:-140.885333pt;}
._11{margin-left:-30.979200pt;}
._1a{margin-left:-29.613867pt;}
._f{margin-left:-23.865600pt;}
._10{margin-left:-22.425600pt;}
._16{margin-left:-20.808000pt;}
._17{margin-left:-19.699200pt;}
._18{margin-left:-17.502400pt;}
._d{margin-left:-16.132800pt;}
._b{margin-left:-14.389600pt;}
._c{margin-left:-12.608800pt;}
._12{margin-left:-11.276000pt;}
._19{margin-left:-9.465600pt;}
._30{margin-left:-8.476800pt;}
._14{margin-left:-6.909333pt;}
._2e{margin-left:-5.949333pt;}
._0{margin-left:-4.944000pt;}
._2{margin-left:-3.456000pt;}
._8{margin-left:-2.498667pt;}
._1{margin-left:-1.056000pt;}
._a{width:1.326667pt;}
._5{width:2.286667pt;}
._6{width:3.518667pt;}
._9{width:5.009333pt;}
._7{width:6.072000pt;}
._e{width:7.617600pt;}
._15{width:9.120000pt;}
._2f{width:13.680000pt;}
._13{width:15.584533pt;}
._40{width:43.114667pt;}
._3e{width:63.726933pt;}
._41{width:83.528533pt;}
._3c{width:106.291200pt;}
._3a{width:107.289600pt;}
._1c{width:108.326400pt;}
._3f{width:110.472533pt;}
._3b{width:111.748267pt;}
._3d{width:118.280533pt;}
._1d{width:125.657600pt;}
._36{width:153.629867pt;}
._1b{width:160.430933pt;}
._20{width:163.306667pt;}
._37{width:169.463467pt;}
._35{width:170.841600pt;}
._32{width:181.102933pt;}
._22{width:182.562133pt;}
._1f{width:192.665600pt;}
._33{width:196.928000pt;}
._31{width:198.301867pt;}
._1e{width:207.812267pt;}
._38{width:209.877333pt;}
._23{width:218.935467pt;}
._2b{width:222.374400pt;}
._34{width:225.885867pt;}
._2a{width:235.042133pt;}
._25{width:236.364800pt;}
._28{width:251.298133pt;}
._27{width:259.383467pt;}
._29{width:277.858133pt;}
._24{width:289.271467pt;}
._21{width:291.148800pt;}
._26{width:306.423467pt;}
._2d{width:439.531733pt;}
._4{width:794.956800pt;}
._3{width:848.764800pt;}
.fs4{font-size:27.840000pt;}
.fs14{font-size:33.578667pt;}
.fsf{font-size:33.676800pt;}
.fs11{font-size:34.244267pt;}
.fsb{font-size:34.895467pt;}
.fsd{font-size:35.106667pt;}
.fs9{font-size:35.674133pt;}
.fs13{font-size:38.375467pt;}
.fse{font-size:38.488000pt;}
.fs10{font-size:39.136000pt;}
.fsa{font-size:39.881067pt;}
.fsc{font-size:40.122667pt;}
.fs8{font-size:40.770133pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs12{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.848800pt;}
.y184{bottom:102.174400pt;}
.y2e{bottom:102.201733pt;}
.ye2{bottom:102.415200pt;}
.y107{bottom:102.576800pt;}
.y90{bottom:103.780400pt;}
.y163{bottom:104.059600pt;}
.y16a{bottom:109.433200pt;}
.ye1{bottom:115.215200pt;}
.y183{bottom:116.574400pt;}
.y2d{bottom:116.601733pt;}
.y162{bottom:118.459600pt;}
.y8f{bottom:121.782533pt;}
.y169{bottom:123.833200pt;}
.ye0{bottom:128.015200pt;}
.y8e{bottom:128.187867pt;}
.y106{bottom:128.483467pt;}
.y182{bottom:130.974400pt;}
.y2c{bottom:131.001733pt;}
.y161{bottom:132.859600pt;}
.y103{bottom:134.363600pt;}
.y168{bottom:138.233200pt;}
.y105{bottom:144.683600pt;}
.y133{bottom:144.714267pt;}
.y2b{bottom:145.401733pt;}
.ydf{bottom:146.023733pt;}
.y160{bottom:147.259600pt;}
.y181{bottom:149.153200pt;}
.y8d{bottom:152.229467pt;}
.y167{bottom:152.633200pt;}
.y102{bottom:155.902578pt;}
.y8c{bottom:158.634800pt;}
.y2a{bottom:159.801733pt;}
.y15f{bottom:161.659600pt;}
.yde{bottom:163.665333pt;}
.y166{bottom:167.033200pt;}
.yfa{bottom:169.643600pt;}
.y132{bottom:169.647600pt;}
.y29{bottom:174.201733pt;}
.y12f{bottom:175.347600pt;}
.y15e{bottom:176.059600pt;}
.y104{bottom:176.063600pt;}
.ydd{bottom:181.312267pt;}
.y165{bottom:181.433200pt;}
.y8b{bottom:182.676400pt;}
.y131{bottom:185.547600pt;}
.y28{bottom:188.601733pt;}
.y8a{bottom:189.081733pt;}
.y15d{bottom:194.239600pt;}
.y164{bottom:195.833200pt;}
.y12e{bottom:196.545381pt;}
.yfb{bottom:197.061833pt;}
.ydc{bottom:198.959200pt;}
.y27{bottom:203.001733pt;}
.y123{bottom:210.027733pt;}
.y89{bottom:213.123333pt;}
.y130{bottom:216.326400pt;}
.ydb{bottom:216.606133pt;}
.y26{bottom:217.401733pt;}
.y88{bottom:219.528667pt;}
.yfc{bottom:223.222816pt;}
.y124{bottom:228.382517pt;}
.y25{bottom:231.801733pt;}
.yda{bottom:234.253067pt;}
.yd5{bottom:234.259467pt;}
.y87{bottom:243.570267pt;}
.y24{bottom:246.201733pt;}
.y125{bottom:246.678597pt;}
.y86{bottom:249.975600pt;}
.yfd{bottom:250.641049pt;}
.y14f{bottom:251.832933pt;}
.yd9{bottom:251.900000pt;}
.y23{bottom:260.601733pt;}
.y14e{bottom:266.232933pt;}
.y126{bottom:266.294539pt;}
.yd8{bottom:269.546933pt;}
.y85{bottom:274.017200pt;}
.y22{bottom:275.001733pt;}
.yfe{bottom:278.059283pt;}
.y84{bottom:280.422533pt;}
.y14d{bottom:280.632933pt;}
.y127{bottom:284.590619pt;}
.yd7{bottom:287.193867pt;}
.y21{bottom:289.401733pt;}
.y14c{bottom:295.032933pt;}
.y128{bottom:302.946381pt;}
.y20{bottom:303.801733pt;}
.y83{bottom:304.796933pt;}
.yd6{bottom:304.840800pt;}
.yff{bottom:305.477516pt;}
.y1f{bottom:318.201733pt;}
.y14b{bottom:320.771733pt;}
.y129{bottom:321.301165pt;}
.yd4{bottom:322.820533pt;}
.y82{bottom:323.897067pt;}
.y100{bottom:331.638499pt;}
.yd3{bottom:331.639733pt;}
.y1e{bottom:332.601733pt;}
.y12a{bottom:339.655949pt;}
.y14a{bottom:346.510533pt;}
.y1d{bottom:347.001733pt;}
.y101{bottom:359.056732pt;}
.y12b{bottom:359.213187pt;}
.yd2{bottom:359.558800pt;}
.y149{bottom:360.910533pt;}
.y1c{bottom:361.401733pt;}
.y81{bottom:362.258667pt;}
.y57{bottom:367.499867pt;}
.y148{bottom:375.310533pt;}
.y1b{bottom:375.801733pt;}
.y80{bottom:376.658667pt;}
.y12c{bottom:377.509267pt;}
.y56{bottom:381.899867pt;}
.y147{bottom:389.710533pt;}
.y1a{bottom:390.201733pt;}
.y7f{bottom:391.058667pt;}
.y180{bottom:394.094800pt;}
.y12d{bottom:395.865029pt;}
.y55{bottom:396.299867pt;}
.yd1{bottom:396.462267pt;}
.yf9{bottom:399.351733pt;}
.y146{bottom:404.110533pt;}
.y19{bottom:404.600533pt;}
.y7e{bottom:405.458667pt;}
.y17f{bottom:408.494800pt;}
.y54{bottom:410.699867pt;}
.yd0{bottom:414.109200pt;}
.y145{bottom:418.510533pt;}
.y18{bottom:419.000533pt;}
.y7d{bottom:419.858667pt;}
.y17e{bottom:422.894800pt;}
.yf8{bottom:423.266533pt;}
.y53{bottom:425.099867pt;}
.yf5{bottom:429.206400pt;}
.ycf{bottom:431.756133pt;}
.y144{bottom:432.910533pt;}
.y17{bottom:433.400533pt;}
.y7c{bottom:434.258667pt;}
.y122{bottom:434.874533pt;}
.y17d{bottom:437.294800pt;}
.y52{bottom:439.499867pt;}
.yf7{bottom:439.826400pt;}
.y143{bottom:447.310533pt;}
.y16{bottom:447.800533pt;}
.y7b{bottom:448.658667pt;}
.yce{bottom:449.730533pt;}
.yf4{bottom:451.281222pt;}
.y17c{bottom:451.694800pt;}
.y51{bottom:453.899867pt;}
.y121{bottom:460.837067pt;}
.y142{bottom:461.710533pt;}
.ycd{bottom:462.530533pt;}
.y7a{bottom:463.058667pt;}
.yed{bottom:465.326533pt;}
.y17b{bottom:466.094800pt;}
.y11e{bottom:466.537067pt;}
.y50{bottom:468.299867pt;}
.yf6{bottom:471.866400pt;}
.y141{bottom:476.110533pt;}
.y120{bottom:476.497067pt;}
.y79{bottom:477.458667pt;}
.ycc{bottom:480.167867pt;}
.y17a{bottom:480.494800pt;}
.y4f{bottom:482.699867pt;}
.y11d{bottom:487.299046pt;}
.y140{bottom:490.510533pt;}
.y78{bottom:491.858667pt;}
.y179{bottom:494.894800pt;}
.y4e{bottom:497.099867pt;}
.yee{bottom:497.189412pt;}
.ycb{bottom:499.267867pt;}
.y115{bottom:500.557200pt;}
.y77{bottom:506.258667pt;}
.y11f{bottom:506.797200pt;}
.y13f{bottom:508.689200pt;}
.y15{bottom:509.247733pt;}
.y178{bottom:509.294800pt;}
.y4d{bottom:511.499867pt;}
.y76{bottom:520.658667pt;}
.y177{bottom:523.694800pt;}
.y4c{bottom:525.899867pt;}
.y116{bottom:527.017700pt;}
.y13e{bottom:528.469200pt;}
.yef{bottom:530.303933pt;}
.y14{bottom:534.986533pt;}
.y75{bottom:535.058667pt;}
.y176{bottom:538.094800pt;}
.yca{bottom:538.095067pt;}
.y4b{bottom:540.299867pt;}
.yaa{bottom:541.817467pt;}
.y13{bottom:549.386533pt;}
.y74{bottom:549.458667pt;}
.y117{bottom:552.275450pt;}
.y175{bottom:552.494800pt;}
.yc9{bottom:552.495067pt;}
.y4a{bottom:554.699867pt;}
.ya9{bottom:556.217467pt;}
.yf0{bottom:562.166812pt;}
.y12{bottom:563.786533pt;}
.y73{bottom:563.858667pt;}
.y13d{bottom:564.166667pt;}
.y174{bottom:566.894800pt;}
.yc8{bottom:566.895067pt;}
.y49{bottom:569.099867pt;}
.ya8{bottom:570.617467pt;}
.y11{bottom:578.186533pt;}
.y72{bottom:578.258667pt;}
.y13c{bottom:578.566667pt;}
.y118{bottom:578.736912pt;}
.y173{bottom:581.294800pt;}
.yc7{bottom:581.295067pt;}
.y48{bottom:583.500000pt;}
.ya7{bottom:585.017467pt;}
.y10{bottom:592.586533pt;}
.y71{bottom:592.658667pt;}
.y13b{bottom:592.966667pt;}
.yf1{bottom:594.028671pt;}
.y172{bottom:595.694800pt;}
.yc6{bottom:595.695067pt;}
.y47{bottom:597.900000pt;}
.ya6{bottom:599.417467pt;}
.y119{bottom:605.197412pt;}
.yf{bottom:606.986533pt;}
.y70{bottom:607.058667pt;}
.y13a{bottom:607.366667pt;}
.y171{bottom:610.094800pt;}
.yc5{bottom:610.095067pt;}
.y46{bottom:612.300000pt;}
.ya5{bottom:613.817467pt;}
.ye{bottom:621.386533pt;}
.y6f{bottom:621.458667pt;}
.y139{bottom:621.766667pt;}
.y170{bottom:624.494800pt;}
.yc4{bottom:624.495067pt;}
.y45{bottom:626.700000pt;}
.yf2{bottom:627.143193pt;}
.ya4{bottom:628.217467pt;}
.y11a{bottom:631.657912pt;}
.yd{bottom:635.786400pt;}
.y6e{bottom:635.858667pt;}
.y138{bottom:636.166667pt;}
.y16f{bottom:638.894800pt;}
.yc3{bottom:638.895067pt;}
.y44{bottom:641.100000pt;}
.ya3{bottom:642.617467pt;}
.yc{bottom:650.186400pt;}
.y6d{bottom:650.258667pt;}
.y137{bottom:650.566667pt;}
.y16e{bottom:653.294800pt;}
.yc2{bottom:653.295067pt;}
.y43{bottom:655.500000pt;}
.y11b{bottom:656.916624pt;}
.ya2{bottom:657.017467pt;}
.yf3{bottom:658.944916pt;}
.yb{bottom:664.586400pt;}
.y6c{bottom:664.658667pt;}
.y136{bottom:664.966667pt;}
.y16d{bottom:667.694800pt;}
.yc1{bottom:667.695067pt;}
.y42{bottom:669.900000pt;}
.ya1{bottom:671.417467pt;}
.y6b{bottom:679.058667pt;}
.y135{bottom:679.366667pt;}
.y16c{bottom:682.094800pt;}
.yc0{bottom:682.095067pt;}
.y11c{bottom:683.376162pt;}
.y41{bottom:684.300000pt;}
.ya0{bottom:685.817467pt;}
.ya{bottom:690.325200pt;}
.y6a{bottom:693.458667pt;}
.y16b{bottom:696.494800pt;}
.ybf{bottom:696.495067pt;}
.y134{bottom:697.546667pt;}
.y40{bottom:698.700000pt;}
.y9f{bottom:700.217467pt;}
.y9{bottom:704.725200pt;}
.y69{bottom:707.858667pt;}
.yec{bottom:710.894800pt;}
.ybe{bottom:710.895067pt;}
.y3f{bottom:713.100000pt;}
.y9e{bottom:714.617467pt;}
.y114{bottom:721.204000pt;}
.y68{bottom:722.258667pt;}
.yeb{bottom:725.294800pt;}
.ybd{bottom:725.295067pt;}
.y3e{bottom:727.500000pt;}
.y9d{bottom:729.017467pt;}
.y15c{bottom:732.838667pt;}
.y8{bottom:734.242400pt;}
.y67{bottom:736.658667pt;}
.yea{bottom:739.694800pt;}
.ybc{bottom:739.695067pt;}
.y3d{bottom:741.900000pt;}
.y113{bottom:742.773333pt;}
.y9c{bottom:743.417467pt;}
.y110{bottom:748.713333pt;}
.y66{bottom:751.058667pt;}
.ye9{bottom:754.094800pt;}
.ybb{bottom:754.095067pt;}
.y15b{bottom:755.913333pt;}
.y3c{bottom:756.300000pt;}
.y9b{bottom:757.817467pt;}
.y112{bottom:759.093200pt;}
.y158{bottom:761.613333pt;}
.y65{bottom:765.458667pt;}
.ye8{bottom:768.494800pt;}
.yba{bottom:768.495067pt;}
.y10f{bottom:770.381167pt;}
.y15a{bottom:771.513333pt;}
.y9a{bottom:772.217467pt;}
.y3b{bottom:774.478667pt;}
.y7{bottom:774.520000pt;}
.y64{bottom:779.858667pt;}
.y157{bottom:782.319330pt;}
.ye7{bottom:782.894800pt;}
.yb9{bottom:782.895067pt;}
.y108{bottom:784.173333pt;}
.y99{bottom:786.617467pt;}
.y111{bottom:790.653333pt;}
.y150{bottom:795.453333pt;}
.ye6{bottom:797.294800pt;}
.yb8{bottom:797.295067pt;}
.y63{bottom:798.038800pt;}
.y98{bottom:801.017467pt;}
.y159{bottom:801.753467pt;}
.y3a{bottom:804.797333pt;}
.y6{bottom:807.238667pt;}
.ye5{bottom:811.694800pt;}
.yb7{bottom:811.695067pt;}
.y97{bottom:815.417467pt;}
.y109{bottom:815.499105pt;}
.y62{bottom:824.577333pt;}
.y151{bottom:825.453354pt;}
.ye4{bottom:826.094800pt;}
.yb6{bottom:826.095067pt;}
.y96{bottom:829.817467pt;}
.y61{bottom:838.977333pt;}
.y39{bottom:840.494800pt;}
.yb5{bottom:840.495067pt;}
.y95{bottom:844.217467pt;}
.y10a{bottom:848.077708pt;}
.y60{bottom:853.377333pt;}
.y38{bottom:854.894800pt;}
.yb4{bottom:854.895067pt;}
.y152{bottom:856.651649pt;}
.y94{bottom:858.617467pt;}
.y5f{bottom:867.777333pt;}
.y37{bottom:869.294800pt;}
.yb3{bottom:869.295067pt;}
.y93{bottom:873.017467pt;}
.y5{bottom:879.352000pt;}
.y10b{bottom:879.453633pt;}
.y5e{bottom:882.177333pt;}
.y36{bottom:883.694800pt;}
.yb2{bottom:883.695067pt;}
.y153{bottom:886.651670pt;}
.y92{bottom:887.417467pt;}
.y5d{bottom:896.577333pt;}
.y35{bottom:898.094800pt;}
.yb1{bottom:898.095067pt;}
.y91{bottom:905.597467pt;}
.y4{bottom:907.352000pt;}
.y10c{bottom:910.779405pt;}
.y34{bottom:912.494800pt;}
.yb0{bottom:912.495067pt;}
.y5c{bottom:914.756133pt;}
.y154{bottom:916.594128pt;}
.y33{bottom:926.894800pt;}
.yaf{bottom:926.895067pt;}
.y5b{bottom:941.294267pt;}
.y32{bottom:941.294800pt;}
.yae{bottom:941.295067pt;}
.y10d{bottom:943.419194pt;}
.y155{bottom:947.794342pt;}
.y5a{bottom:955.694267pt;}
.y31{bottom:955.694800pt;}
.yad{bottom:955.695067pt;}
.y59{bottom:970.094267pt;}
.y30{bottom:970.094800pt;}
.yac{bottom:970.095067pt;}
.y10e{bottom:974.744966pt;}
.y156{bottom:977.794363pt;}
.y58{bottom:984.494267pt;}
.y2f{bottom:984.494800pt;}
.yab{bottom:984.495067pt;}
.y3{bottom:1004.110933pt;}
.y2{bottom:1037.408533pt;}
.ye3{bottom:1037.408667pt;}
.h1b{height:24.446188pt;}
.h16{height:24.517631pt;}
.h18{height:24.930762pt;}
.h12{height:25.404854pt;}
.h14{height:25.558613pt;}
.h10{height:25.971745pt;}
.h1a{height:27.938389pt;}
.h15{height:28.020316pt;}
.h17{height:28.492078pt;}
.h11{height:29.034507pt;}
.h13{height:29.210398pt;}
.hf{height:29.681772pt;}
.h9{height:34.816000pt;}
.hd{height:38.762667pt;}
.h8{height:38.784000pt;}
.h7{height:41.344000pt;}
.h1{height:43.632000pt;}
.h5{height:43.632533pt;}
.h6{height:45.696000pt;}
.h4{height:47.872000pt;}
.h19{height:48.480000pt;}
.h3{height:58.176000pt;}
.hc{height:60.416000pt;}
.ha{height:64.362667pt;}
.hb{height:64.384000pt;}
.he{height:70.084267pt;}
.h2{height:84.840000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xb{left:94.277867pt;}
.x14{left:96.167867pt;}
.xc{left:105.617867pt;}
.x2{left:113.175600pt;}
.x17{left:115.064400pt;}
.x13{left:117.541733pt;}
.xe{left:119.848400pt;}
.x8{left:124.512667pt;}
.x7{left:132.073200pt;}
.xd{left:134.235067pt;}
.x1c{left:151.176267pt;}
.x3{left:154.853733pt;}
.x16{left:156.527067pt;}
.x18{left:165.453600pt;}
.x19{left:167.213600pt;}
.x1a{left:168.328267pt;}
.x1b{left:169.960267pt;}
.x3c{left:188.120400pt;}
.x23{left:211.443067pt;}
.x2d{left:230.340400pt;}
.x21{left:236.805733pt;}
.x3a{left:239.661799pt;}
.x39{left:244.401733pt;}
.x1e{left:246.406800pt;}
.x24{left:250.545733pt;}
.x1d{left:251.505733pt;}
.x31{left:253.784400pt;}
.x29{left:260.238668pt;}
.x2f{left:262.726935pt;}
.x28{left:265.219067pt;}
.x2e{left:267.524400pt;}
.x33{left:268.424400pt;}
.x27{left:269.325733pt;}
.x22{left:270.645733pt;}
.x2c{left:283.939067pt;}
.x32{left:285.464400pt;}
.x36{left:286.784400pt;}
.x25{left:295.549715pt;}
.x1f{left:297.406331pt;}
.x2a{left:310.222667pt;}
.x34{left:312.407418pt;}
.x5{left:317.195200pt;}
.x4{left:328.449867pt;}
.x37{left:336.588533pt;}
.x38{left:353.913867pt;}
.x6{left:375.964533pt;}
.x3d{left:383.681733pt;}
.xf{left:395.191600pt;}
.x1{left:399.416533pt;}
.x11{left:406.529867pt;}
.x9{left:414.087067pt;}
.xa{left:425.425867pt;}
.x15{left:439.211067pt;}
.x3b{left:467.482000pt;}
.x10{left:469.534000pt;}
.x12{left:474.107200pt;}
.x26{left:482.925867pt;}
.x20{left:488.626000pt;}
.x30{left:490.124667pt;}
.x35{left:495.644533pt;}
.x2b{left:497.719333pt;}
}




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