
    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_061da27814455426585ddcfd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.724000;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_311a895d0ea6cad1a3b0966d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_56fb45c87783c69cf739845a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929286;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_2f5da37480921b82479fa67d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_dfc99b12d60eb6e0c9ff6bc6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000048;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_38538b1c31d695e2470a9021.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fa31445b9abdef2eb3f85698.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b945776c581e21eec3b52ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_91122479d51d3d259ef7447f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e9f1e5fc59d3eba5520f5ed2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_103cd3519f913a72fdcefed2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.200600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.487000px;}
.ls15{letter-spacing:-1.380000px;}
.ls58{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-1.173000px;}
.ls2f{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-1.035000px;}
.ls3d{letter-spacing:-0.897000px;}
.ls3e{letter-spacing:-0.896988px;}
.ls2d{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.780000px;}
.ls12{letter-spacing:-0.690000px;}
.ls1c{letter-spacing:-0.621000px;}
.ls2b{letter-spacing:-0.552000px;}
.ls3f{letter-spacing:-0.483000px;}
.ls4{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.441000px;}
.ls3{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.225000px;}
.ls56{letter-spacing:-0.063000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000300px;}
.ls28{letter-spacing:0.012300px;}
.ls40{letter-spacing:0.034500px;}
.ls36{letter-spacing:0.054000px;}
.ls42{letter-spacing:0.063000px;}
.lsc{letter-spacing:0.069000px;}
.ls39{letter-spacing:0.103500px;}
.ls21{letter-spacing:0.105900px;}
.ls53{letter-spacing:0.126000px;}
.ls14{letter-spacing:0.138000px;}
.ls3a{letter-spacing:0.140398px;}
.ls43{letter-spacing:0.151200px;}
.ls41{letter-spacing:0.157500px;}
.ls22{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.172500px;}
.ls1b{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.207000px;}
.ls2a{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.241500px;}
.ls44{letter-spacing:0.252000px;}
.ls35{letter-spacing:0.276000px;}
.ls29{letter-spacing:0.297000px;}
.ls11{letter-spacing:0.310500px;}
.ls37{letter-spacing:0.315000px;}
.ls2c{letter-spacing:0.345000px;}
.ls52{letter-spacing:0.378000px;}
.ls24{letter-spacing:0.379500px;}
.ls1d{letter-spacing:0.414000px;}
.ls45{letter-spacing:0.441000px;}
.ls20{letter-spacing:0.448500px;}
.ls19{letter-spacing:0.449100px;}
.ls26{letter-spacing:0.483000px;}
.ls51{letter-spacing:0.535500px;}
.ls10{letter-spacing:0.552000px;}
.ls7{letter-spacing:0.588000px;}
.ls9{letter-spacing:0.621000px;}
.ls49{letter-spacing:0.630000px;}
.ls23{letter-spacing:0.648000px;}
.ls38{letter-spacing:0.655500px;}
.lsd{letter-spacing:0.690000px;}
.ls46{letter-spacing:0.693000px;}
.ls4b{letter-spacing:0.756000px;}
.lsb{letter-spacing:0.759000px;}
.ls1e{letter-spacing:0.793500px;}
.ls57{letter-spacing:0.819000px;}
.ls13{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.862500px;}
.ls4c{letter-spacing:0.882000px;}
.ls33{letter-spacing:0.897000px;}
.ls30{letter-spacing:0.966000px;}
.ls5a{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.035000px;}
.ls48{letter-spacing:1.071000px;}
.ls1f{letter-spacing:1.104000px;}
.ls47{letter-spacing:1.197000px;}
.ls3c{letter-spacing:1.242000px;}
.ls3b{letter-spacing:1.311000px;}
.ls2e{letter-spacing:1.380000px;}
.ls4d{letter-spacing:1.386000px;}
.ls34{letter-spacing:1.449000px;}
.ls27{letter-spacing:1.518000px;}
.ls4e{letter-spacing:1.543500px;}
.lse{letter-spacing:1.587000px;}
.ls4a{letter-spacing:1.701000px;}
.ls4f{letter-spacing:1.827000px;}
.ls50{letter-spacing:1.921500px;}
.ls54{letter-spacing:2.079000px;}
.ls55{letter-spacing:2.205000px;}
.ls0{letter-spacing:12.510000px;}
.ls32{letter-spacing:13.500000px;}
.ls8{letter-spacing:540.610800px;}
.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;}
}
.wsd5{word-spacing:-18.561000px;}
.wsd4{word-spacing:-18.285000px;}
.ws68{word-spacing:-17.940000px;}
.wsd6{word-spacing:-17.457000px;}
.wsf5{word-spacing:-17.293500px;}
.ws92{word-spacing:-17.250000px;}
.wse3{word-spacing:-16.947000px;}
.ws67{word-spacing:-16.560000px;}
.wse0{word-spacing:-15.907500px;}
.ws1e{word-spacing:-15.750000px;}
.ws93{word-spacing:-13.716000px;}
.ws69{word-spacing:-13.689000px;}
.wsa5{word-spacing:-12.690000px;}
.ws40{word-spacing:-12.510000px;}
.ws80{word-spacing:-11.212350px;}
.wsdb{word-spacing:-10.315362px;}
.wsce{word-spacing:-8.915248px;}
.wsa4{word-spacing:-8.774850px;}
.ws105{word-spacing:-2.205000px;}
.wsf2{word-spacing:-1.386000px;}
.ws1c{word-spacing:-0.840000px;}
.ws118{word-spacing:-0.819000px;}
.wsf1{word-spacing:-0.756000px;}
.ws103{word-spacing:-0.693000px;}
.ws75{word-spacing:-0.690000px;}
.wsea{word-spacing:-0.441000px;}
.wsf7{word-spacing:-0.378000px;}
.wscb{word-spacing:-0.315000px;}
.ws1f{word-spacing:-0.294000px;}
.wse6{word-spacing:-0.189000px;}
.wsc0{word-spacing:-0.138000px;}
.wsd8{word-spacing:-0.069000px;}
.wsf4{word-spacing:-0.063000px;}
.ws0{word-spacing:0.000000px;}
.ws6a{word-spacing:0.069000px;}
.ws11{word-spacing:0.090000px;}
.wsdc{word-spacing:0.108000px;}
.ws8{word-spacing:0.135000px;}
.ws6e{word-spacing:0.138000px;}
.ws7e{word-spacing:0.162000px;}
.wsff{word-spacing:0.189000px;}
.ws63{word-spacing:0.207000px;}
.ws9{word-spacing:0.225000px;}
.ws3{word-spacing:0.270000px;}
.wsbe{word-spacing:0.276000px;}
.wsb6{word-spacing:0.315000px;}
.ws62{word-spacing:0.345000px;}
.wsc{word-spacing:0.360000px;}
.ws24{word-spacing:0.414000px;}
.ws89{word-spacing:0.432000px;}
.wsda{word-spacing:0.483000px;}
.ws11b{word-spacing:0.504000px;}
.ws7a{word-spacing:0.552000px;}
.ws72{word-spacing:0.594000px;}
.ws4b{word-spacing:0.621000px;}
.ws6d{word-spacing:0.690000px;}
.wsdf{word-spacing:0.702000px;}
.wse1{word-spacing:0.756000px;}
.ws5d{word-spacing:0.759000px;}
.ws19{word-spacing:0.810000px;}
.ws5c{word-spacing:0.828000px;}
.wsa{word-spacing:0.855000px;}
.wse5{word-spacing:0.882000px;}
.ws56{word-spacing:0.897000px;}
.ws16{word-spacing:0.900000px;}
.wsb5{word-spacing:0.945000px;}
.wsa8{word-spacing:0.966000px;}
.wsb{word-spacing:0.990000px;}
.wsac{word-spacing:1.026000px;}
.ws86{word-spacing:1.035000px;}
.wsb4{word-spacing:1.071000px;}
.ws7c{word-spacing:1.080000px;}
.ws1d{word-spacing:1.092000px;}
.ws60{word-spacing:1.104000px;}
.wsb3{word-spacing:1.134000px;}
.ws20{word-spacing:1.173000px;}
.ws99{word-spacing:1.188000px;}
.ws110{word-spacing:1.197000px;}
.ws7{word-spacing:1.215000px;}
.ws7b{word-spacing:1.242000px;}
.wse9{word-spacing:1.260000px;}
.ws87{word-spacing:1.296000px;}
.ws59{word-spacing:1.311000px;}
.ws30{word-spacing:1.380000px;}
.wsd1{word-spacing:1.404000px;}
.ws3b{word-spacing:1.449000px;}
.wsaa{word-spacing:1.512000px;}
.ws27{word-spacing:1.518000px;}
.ws1b{word-spacing:1.554000px;}
.ws65{word-spacing:1.587000px;}
.wsfb{word-spacing:1.638000px;}
.ws26{word-spacing:1.656000px;}
.ws11e{word-spacing:1.701000px;}
.ws15{word-spacing:1.710000px;}
.ws45{word-spacing:1.725000px;}
.ws107{word-spacing:1.764000px;}
.ws3e{word-spacing:1.794000px;}
.ws111{word-spacing:1.827000px;}
.wsb2{word-spacing:1.836000px;}
.ws3d{word-spacing:1.863000px;}
.ws29{word-spacing:1.932000px;}
.wsd3{word-spacing:1.944000px;}
.ws106{word-spacing:1.953000px;}
.wsde{word-spacing:1.998000px;}
.ws9b{word-spacing:2.001000px;}
.ws14{word-spacing:2.025000px;}
.ws82{word-spacing:2.070000px;}
.wsf6{word-spacing:2.079000px;}
.ws7d{word-spacing:2.106000px;}
.ws85{word-spacing:2.139000px;}
.ws6{word-spacing:2.160000px;}
.ws2d{word-spacing:2.208000px;}
.wscc{word-spacing:2.268000px;}
.ws39{word-spacing:2.277000px;}
.wsba{word-spacing:2.331000px;}
.ws64{word-spacing:2.346000px;}
.wsb7{word-spacing:2.394000px;}
.ws4c{word-spacing:2.415000px;}
.ws18{word-spacing:2.430000px;}
.wsfe{word-spacing:2.457000px;}
.ws4d{word-spacing:2.484000px;}
.wsc4{word-spacing:2.538000px;}
.ws54{word-spacing:2.553000px;}
.ws120{word-spacing:2.583000px;}
.wsc7{word-spacing:2.592000px;}
.ws79{word-spacing:2.622000px;}
.wsab{word-spacing:2.646000px;}
.ws76{word-spacing:2.691000px;}
.ws9f{word-spacing:2.709000px;}
.ws6c{word-spacing:2.760000px;}
.wsae{word-spacing:2.808000px;}
.ws22{word-spacing:2.829000px;}
.wsfc{word-spacing:2.835000px;}
.wsb1{word-spacing:2.862000px;}
.ws6b{word-spacing:2.898000px;}
.wsfa{word-spacing:2.961000px;}
.ws2f{word-spacing:2.967000px;}
.ws17{word-spacing:2.970000px;}
.wseb{word-spacing:3.024000px;}
.ws97{word-spacing:3.036000px;}
.ws117{word-spacing:3.087000px;}
.ws4a{word-spacing:3.105000px;}
.wse4{word-spacing:3.150000px;}
.wsa7{word-spacing:3.174000px;}
.wsd2{word-spacing:3.186000px;}
.ws100{word-spacing:3.213000px;}
.ws1a{word-spacing:3.240000px;}
.ws9d{word-spacing:3.243000px;}
.ws35{word-spacing:3.312000px;}
.ws113{word-spacing:3.339000px;}
.wsd0{word-spacing:3.348000px;}
.ws46{word-spacing:3.381000px;}
.ws11c{word-spacing:3.402000px;}
.wsf{word-spacing:3.420000px;}
.ws34{word-spacing:3.450000px;}
.wsd{word-spacing:3.465000px;}
.wsa1{word-spacing:3.519000px;}
.ws25{word-spacing:3.588000px;}
.wsc8{word-spacing:3.654000px;}
.ws4e{word-spacing:3.657000px;}
.ws109{word-spacing:3.717000px;}
.ws3f{word-spacing:3.726000px;}
.ws9e{word-spacing:3.780000px;}
.ws52{word-spacing:3.795000px;}
.ws5{word-spacing:3.825000px;}
.wsb0{word-spacing:3.834000px;}
.ws101{word-spacing:3.843000px;}
.ws43{word-spacing:3.864000px;}
.wsad{word-spacing:3.888000px;}
.ws11d{word-spacing:3.906000px;}
.wse{word-spacing:3.915000px;}
.ws70{word-spacing:3.933000px;}
.wsc1{word-spacing:3.942000px;}
.ws28{word-spacing:4.002000px;}
.wsb9{word-spacing:4.032000px;}
.ws47{word-spacing:4.071000px;}
.ws10b{word-spacing:4.095000px;}
.ws37{word-spacing:4.140000px;}
.ws112{word-spacing:4.158000px;}
.ws8c{word-spacing:4.209000px;}
.wsa3{word-spacing:4.212000px;}
.ws10e{word-spacing:4.221000px;}
.ws48{word-spacing:4.278000px;}
.ws10c{word-spacing:4.284000px;}
.ws5e{word-spacing:4.347000px;}
.ws114{word-spacing:4.410000px;}
.ws61{word-spacing:4.416000px;}
.ws9c{word-spacing:4.485000px;}
.ws12{word-spacing:4.545000px;}
.ws55{word-spacing:4.554000px;}
.ws102{word-spacing:4.599000px;}
.ws44{word-spacing:4.623000px;}
.ws115{word-spacing:4.662000px;}
.ws9a{word-spacing:4.692000px;}
.wsc9{word-spacing:4.725000px;}
.ws58{word-spacing:4.761000px;}
.wsed{word-spacing:4.788000px;}
.wsaf{word-spacing:4.830000px;}
.ws98{word-spacing:4.899000px;}
.wse8{word-spacing:4.914000px;}
.ws3c{word-spacing:4.968000px;}
.ws104{word-spacing:4.977000px;}
.ws88{word-spacing:5.022000px;}
.ws42{word-spacing:5.037000px;}
.wsa0{word-spacing:5.103000px;}
.ws4f{word-spacing:5.106000px;}
.ws38{word-spacing:5.175000px;}
.wsdd{word-spacing:5.184000px;}
.ws90{word-spacing:5.244000px;}
.ws10d{word-spacing:5.292000px;}
.ws5b{word-spacing:5.313000px;}
.ws2c{word-spacing:5.382000px;}
.ws10{word-spacing:5.400000px;}
.ws3a{word-spacing:5.451000px;}
.ws11f{word-spacing:5.481000px;}
.ws23{word-spacing:5.520000px;}
.ws8d{word-spacing:5.562000px;}
.ws57{word-spacing:5.589000px;}
.wsf8{word-spacing:5.607000px;}
.wsa2{word-spacing:5.616000px;}
.wsbf{word-spacing:5.658000px;}
.wsb8{word-spacing:5.670000px;}
.ws53{word-spacing:5.727000px;}
.ws50{word-spacing:5.796000px;}
.wsc5{word-spacing:5.832000px;}
.wsfd{word-spacing:5.859000px;}
.ws95{word-spacing:5.865000px;}
.ws51{word-spacing:5.934000px;}
.ws13{word-spacing:5.940000px;}
.ws10f{word-spacing:5.985000px;}
.ws7f{word-spacing:5.994000px;}
.ws36{word-spacing:6.003000px;}
.ws71{word-spacing:6.072000px;}
.ws74{word-spacing:6.141000px;}
.wsc2{word-spacing:6.210000px;}
.ws10a{word-spacing:6.237000px;}
.ws4{word-spacing:6.255000px;}
.ws32{word-spacing:6.279000px;}
.wsf0{word-spacing:6.300000px;}
.ws8e{word-spacing:6.348000px;}
.ws108{word-spacing:6.363000px;}
.ws96{word-spacing:6.417000px;}
.wse2{word-spacing:6.426000px;}
.wse7{word-spacing:6.552000px;}
.ws83{word-spacing:6.555000px;}
.wscd{word-spacing:6.624000px;}
.wsc3{word-spacing:6.642000px;}
.ws119{word-spacing:6.678000px;}
.ws8b{word-spacing:6.693000px;}
.wsc6{word-spacing:6.696000px;}
.wsef{word-spacing:6.741000px;}
.ws73{word-spacing:6.750000px;}
.ws84{word-spacing:6.762000px;}
.wsec{word-spacing:6.804000px;}
.wsa9{word-spacing:6.831000px;}
.wsa6{word-spacing:6.900000px;}
.wsee{word-spacing:6.930000px;}
.ws81{word-spacing:6.969000px;}
.wscf{word-spacing:7.038000px;}
.wsf3{word-spacing:7.056000px;}
.ws21{word-spacing:7.107000px;}
.wsf9{word-spacing:7.119000px;}
.ws77{word-spacing:7.176000px;}
.ws121{word-spacing:7.182000px;}
.wsd9{word-spacing:7.245000px;}
.ws2b{word-spacing:7.314000px;}
.ws49{word-spacing:7.383000px;}
.ws2e{word-spacing:7.452000px;}
.wsbc{word-spacing:7.521000px;}
.ws11a{word-spacing:7.560000px;}
.ws6f{word-spacing:7.590000px;}
.ws5f{word-spacing:7.659000px;}
.wsbb{word-spacing:7.686000px;}
.ws116{word-spacing:7.749000px;}
.ws78{word-spacing:7.797000px;}
.ws91{word-spacing:7.866000px;}
.wsca{word-spacing:7.875000px;}
.wsbd{word-spacing:7.935000px;}
.ws5a{word-spacing:8.004000px;}
.ws31{word-spacing:8.073000px;}
.ws8a{word-spacing:8.142000px;}
.wsd7{word-spacing:8.280000px;}
.ws8f{word-spacing:8.349000px;}
.ws66{word-spacing:8.418000px;}
.ws33{word-spacing:8.487000px;}
.ws94{word-spacing:8.556000px;}
.ws2a{word-spacing:8.625000px;}
.ws2{word-spacing:10.656000px;}
.ws1{word-spacing:13.344000px;}
.ws41{word-spacing:1109.619000px;}
._11{margin-left:-17.250000px;}
._9{margin-left:-15.180000px;}
._4{margin-left:-9.324000px;}
._7{margin-left:-1.176000px;}
._8{width:1.380000px;}
._6{width:2.766900px;}
._1{width:3.780000px;}
._f{width:5.727000px;}
._a{width:6.804000px;}
._e{width:7.938000px;}
._10{width:8.964300px;}
._2{width:9.990000px;}
._3{width:11.676000px;}
._0{width:13.344000px;}
._5{width:17.940000px;}
._b{width:23.118000px;}
._14{width:24.495000px;}
._13{width:26.151000px;}
._d{width:27.531000px;}
._12{width:31.464000px;}
._c{width:32.775000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.099400px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:44.849400px;}
.fs6{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:53.574900px;}
.y1{bottom:72.283650px;}
.y10c{bottom:99.766650px;}
.y12e{bottom:99.927300px;}
.y63{bottom:99.930150px;}
.y88{bottom:99.933300px;}
.y70{bottom:99.939150px;}
.ye3{bottom:99.942300px;}
.ycf{bottom:99.945150px;}
.y187{bottom:99.948150px;}
.y173{bottom:100.069800px;}
.y1c3{bottom:100.471050px;}
.y1c6{bottom:100.967100px;}
.y198{bottom:101.812200px;}
.y5e{bottom:102.036300px;}
.y33{bottom:110.549700px;}
.y12d{bottom:115.911300px;}
.y62{bottom:115.914150px;}
.y87{bottom:115.917300px;}
.y6f{bottom:115.923150px;}
.ye2{bottom:115.926300px;}
.yce{bottom:115.929150px;}
.y186{bottom:115.932150px;}
.y1c2{bottom:118.063800px;}
.y10b{bottom:118.396650px;}
.y1c5{bottom:118.559850px;}
.y172{bottom:118.648050px;}
.y197{bottom:119.404950px;}
.y5d{bottom:120.424800px;}
.y32{bottom:122.551200px;}
.y190{bottom:131.895300px;}
.y61{bottom:131.898150px;}
.y86{bottom:131.901300px;}
.y6e{bottom:131.907150px;}
.ye1{bottom:131.910300px;}
.ycd{bottom:131.913150px;}
.y185{bottom:131.916150px;}
.y1c1{bottom:135.656550px;}
.y12c{bottom:135.945300px;}
.y196{bottom:136.997700px;}
.y10a{bottom:137.026650px;}
.y171{bottom:137.226300px;}
.y31{bottom:138.799050px;}
.y5c{bottom:138.813300px;}
.y85{bottom:147.885300px;}
.y6d{bottom:147.891150px;}
.ye0{bottom:147.894300px;}
.ycc{bottom:147.897150px;}
.y184{bottom:147.900150px;}
.y12b{bottom:147.906150px;}
.y60{bottom:151.932300px;}
.y1c0{bottom:153.249300px;}
.y30{bottom:154.234050px;}
.y1c4{bottom:154.546050px;}
.y195{bottom:154.590450px;}
.y109{bottom:155.656650px;}
.y170{bottom:155.804550px;}
.y5b{bottom:157.201800px;}
.y6c{bottom:163.875150px;}
.ydf{bottom:163.878300px;}
.ycb{bottom:163.881150px;}
.y183{bottom:163.884150px;}
.y12a{bottom:163.890150px;}
.y84{bottom:167.919300px;}
.y1bf{bottom:170.842050px;}
.y2f{bottom:171.790050px;}
.y194{bottom:172.183200px;}
.y108{bottom:174.286650px;}
.y16f{bottom:174.382800px;}
.y5a{bottom:175.590300px;}
.y6b{bottom:179.859150px;}
.yde{bottom:179.862300px;}
.yca{bottom:179.865150px;}
.y182{bottom:179.868150px;}
.y129{bottom:179.874150px;}
.y2e{bottom:182.972550px;}
.y1be{bottom:188.434800px;}
.y193{bottom:189.775950px;}
.y107{bottom:192.916650px;}
.y16e{bottom:192.961050px;}
.y122{bottom:193.960800px;}
.y59{bottom:193.978800px;}
.ydd{bottom:195.846300px;}
.yc9{bottom:195.849150px;}
.y181{bottom:195.852150px;}
.y128{bottom:195.858150px;}
.y14b{bottom:197.920800px;}
.y2d{bottom:198.407550px;}
.y6a{bottom:199.893300px;}
.ya1{bottom:203.158050px;}
.y1bd{bottom:206.027550px;}
.y192{bottom:207.368700px;}
.y2c{bottom:209.590050px;}
.y16d{bottom:211.539300px;}
.y106{bottom:211.546650px;}
.yc8{bottom:211.833150px;}
.y180{bottom:211.836150px;}
.y127{bottom:211.842150px;}
.yae{bottom:212.334300px;}
.y83{bottom:212.343450px;}
.y121{bottom:212.349300px;}
.y58{bottom:212.367300px;}
.ydc{bottom:215.880300px;}
.yc2{bottom:216.292800px;}
.y14a{bottom:216.309300px;}
.ya0{bottom:221.546550px;}
.y1bc{bottom:223.620300px;}
.y17f{bottom:227.820150px;}
.y126{bottom:227.826150px;}
.y16c{bottom:230.117550px;}
.y105{bottom:230.176650px;}
.yad{bottom:230.722800px;}
.y82{bottom:230.731950px;}
.y120{bottom:230.737800px;}
.y57{bottom:230.755800px;}
.yc7{bottom:231.867300px;}
.y149{bottom:234.697800px;}
.yc1{bottom:234.700800px;}
.y9f{bottom:239.935050px;}
.y1bb{bottom:241.213050px;}
.y191{bottom:242.020050px;}
.y125{bottom:243.810150px;}
.y2b{bottom:244.596600px;}
.y17e{bottom:247.854300px;}
.y16b{bottom:248.695800px;}
.y104{bottom:248.806650px;}
.yac{bottom:249.111300px;}
.y81{bottom:249.120450px;}
.y11f{bottom:249.126300px;}
.y56{bottom:249.144300px;}
.y148{bottom:253.086300px;}
.yc0{bottom:253.089300px;}
.y9e{bottom:258.323550px;}
.y1ba{bottom:258.805800px;}
.y124{bottom:259.794150px;}
.y2a{bottom:266.545350px;}
.y16a{bottom:267.274050px;}
.y103{bottom:267.436650px;}
.yab{bottom:267.499800px;}
.ydb{bottom:267.502800px;}
.y80{bottom:267.508950px;}
.y11e{bottom:267.514800px;}
.y55{bottom:267.532800px;}
.y147{bottom:271.474800px;}
.ybf{bottom:271.477800px;}
.y1b9{bottom:276.398550px;}
.y9d{bottom:276.712050px;}
.y123{bottom:279.828300px;}
.y29{bottom:284.747850px;}
.y169{bottom:285.852300px;}
.y69{bottom:285.883800px;}
.yc6{bottom:285.885300px;}
.yaa{bottom:285.888300px;}
.yda{bottom:285.891300px;}
.y7f{bottom:285.897450px;}
.y11d{bottom:285.903300px;}
.y54{bottom:285.921300px;}
.y102{bottom:286.066650px;}
.y146{bottom:289.863300px;}
.ybe{bottom:289.866300px;}
.y1b8{bottom:293.991300px;}
.y9c{bottom:295.100550px;}
.y17d{bottom:295.115550px;}
.y28{bottom:298.697850px;}
.y68{bottom:304.272300px;}
.yc5{bottom:304.273800px;}
.ya9{bottom:304.276800px;}
.yd9{bottom:304.279800px;}
.y7e{bottom:304.285950px;}
.y11c{bottom:304.291800px;}
.y53{bottom:304.309800px;}
.y168{bottom:304.430550px;}
.y101{bottom:304.696650px;}
.y145{bottom:308.251800px;}
.ybd{bottom:308.254800px;}
.y1b7{bottom:311.584050px;}
.y27{bottom:312.647850px;}
.y9b{bottom:313.489050px;}
.y17c{bottom:313.504050px;}
.y67{bottom:322.660800px;}
.ya8{bottom:322.665300px;}
.yd8{bottom:322.668300px;}
.y7d{bottom:322.674450px;}
.y11b{bottom:322.680300px;}
.y52{bottom:322.698300px;}
.y167{bottom:323.008800px;}
.y100{bottom:323.326650px;}
.y26{bottom:326.597850px;}
.y144{bottom:326.640300px;}
.ybc{bottom:326.643300px;}
.y1b6{bottom:329.176800px;}
.y9a{bottom:331.877550px;}
.y17b{bottom:331.892550px;}
.y25{bottom:340.547850px;}
.y66{bottom:341.049300px;}
.yc4{bottom:341.050800px;}
.ya7{bottom:341.053800px;}
.yd7{bottom:341.056800px;}
.y7c{bottom:341.062950px;}
.y11a{bottom:341.068800px;}
.y51{bottom:341.086800px;}
.y166{bottom:341.587050px;}
.yff{bottom:341.956650px;}
.y143{bottom:345.028800px;}
.ybb{bottom:345.031800px;}
.y1b5{bottom:346.769550px;}
.y99{bottom:350.266050px;}
.y17a{bottom:350.281050px;}
.y24{bottom:354.497850px;}
.y65{bottom:359.437800px;}
.ya6{bottom:359.442300px;}
.yd6{bottom:359.445300px;}
.y7b{bottom:359.451450px;}
.y119{bottom:359.457300px;}
.y50{bottom:359.475300px;}
.y165{bottom:360.165300px;}
.yfe{bottom:360.586650px;}
.y142{bottom:363.417300px;}
.yba{bottom:363.420300px;}
.y1b4{bottom:364.362300px;}
.y23{bottom:368.447850px;}
.y98{bottom:368.654550px;}
.y179{bottom:368.669550px;}
.y64{bottom:377.826300px;}
.ya5{bottom:377.830800px;}
.yd5{bottom:377.833800px;}
.y7a{bottom:377.839950px;}
.y118{bottom:377.845800px;}
.y4f{bottom:377.863800px;}
.y164{bottom:378.743550px;}
.yfd{bottom:379.216650px;}
.y141{bottom:381.805800px;}
.yb9{bottom:381.808800px;}
.y1b3{bottom:381.955050px;}
.y22{bottom:382.397850px;}
.y97{bottom:387.043050px;}
.y178{bottom:387.058050px;}
.yc3{bottom:396.216300px;}
.ya4{bottom:396.219300px;}
.yd4{bottom:396.222300px;}
.y79{bottom:396.228450px;}
.y117{bottom:396.234300px;}
.y4e{bottom:396.252300px;}
.y21{bottom:396.347850px;}
.y163{bottom:397.321800px;}
.yfc{bottom:397.846650px;}
.y1b2{bottom:399.547800px;}
.y140{bottom:400.194300px;}
.yb8{bottom:400.197300px;}
.y96{bottom:405.431550px;}
.y177{bottom:405.446550px;}
.y20{bottom:410.297850px;}
.ya3{bottom:414.607800px;}
.yd3{bottom:414.610800px;}
.y78{bottom:414.616950px;}
.y116{bottom:414.622800px;}
.y4d{bottom:414.640800px;}
.y162{bottom:415.900050px;}
.yfb{bottom:416.476650px;}
.y1b1{bottom:417.140550px;}
.y13f{bottom:418.582800px;}
.yb7{bottom:418.585800px;}
.y95{bottom:423.820050px;}
.y176{bottom:423.835050px;}
.y1f{bottom:424.247850px;}
.ya2{bottom:432.996300px;}
.yd2{bottom:432.999300px;}
.y77{bottom:433.005450px;}
.y115{bottom:433.011300px;}
.y4c{bottom:433.029300px;}
.y161{bottom:434.478300px;}
.y1b0{bottom:434.733300px;}
.yfa{bottom:435.106650px;}
.yb6{bottom:436.974300px;}
.y13e{bottom:436.987800px;}
.y1e{bottom:438.197850px;}
.y94{bottom:442.208550px;}
.y175{bottom:442.223550px;}
.yd1{bottom:451.387800px;}
.y76{bottom:451.393950px;}
.y114{bottom:451.399800px;}
.y4b{bottom:451.417800px;}
.y1d{bottom:452.147850px;}
.y1af{bottom:452.326050px;}
.y160{bottom:453.056550px;}
.yf9{bottom:453.736650px;}
.yb5{bottom:455.362800px;}
.y13d{bottom:455.376300px;}
.y93{bottom:460.597050px;}
.y174{bottom:460.612050px;}
.y1c{bottom:466.097850px;}
.yd0{bottom:469.776300px;}
.y75{bottom:469.782450px;}
.y113{bottom:469.788300px;}
.y4a{bottom:469.806300px;}
.y1ae{bottom:469.918800px;}
.y15f{bottom:471.634800px;}
.yf8{bottom:472.366650px;}
.yb4{bottom:473.751300px;}
.y13c{bottom:473.764800px;}
.y92{bottom:478.985550px;}
.y1ad{bottom:487.511550px;}
.y74{bottom:488.170950px;}
.y112{bottom:488.176800px;}
.y49{bottom:488.194800px;}
.y15e{bottom:490.213050px;}
.yf7{bottom:490.996650px;}
.y13b{bottom:492.153300px;}
.y1b{bottom:496.034100px;}
.y91{bottom:497.374050px;}
.y1ac{bottom:505.104300px;}
.y73{bottom:506.559450px;}
.y111{bottom:506.565300px;}
.y48{bottom:506.583300px;}
.y15d{bottom:508.791300px;}
.yf6{bottom:509.626650px;}
.yb3{bottom:510.541800px;}
.y1a{bottom:514.236600px;}
.y90{bottom:515.762550px;}
.y1ab{bottom:522.697050px;}
.y72{bottom:524.947950px;}
.y110{bottom:524.953800px;}
.y47{bottom:524.971800px;}
.y15c{bottom:527.369550px;}
.yb2{bottom:528.134550px;}
.y19{bottom:528.186600px;}
.yf5{bottom:528.256650px;}
.y13a{bottom:528.930300px;}
.y1aa{bottom:540.289800px;}
.y18{bottom:542.136600px;}
.y71{bottom:543.336450px;}
.y10f{bottom:543.342300px;}
.y8f{bottom:543.345300px;}
.y46{bottom:543.360300px;}
.yb1{bottom:545.727300px;}
.y18f{bottom:545.947800px;}
.yf4{bottom:546.886650px;}
.y139{bottom:547.318800px;}
.y17{bottom:556.086600px;}
.y1a9{bottom:557.882550px;}
.y15b{bottom:558.712800px;}
.y8e{bottom:561.733800px;}
.y45{bottom:561.748800px;}
.yb0{bottom:563.320050px;}
.y18e{bottom:564.526050px;}
.yf3{bottom:565.516650px;}
.y138{bottom:565.707300px;}
.y16{bottom:570.036600px;}
.y10e{bottom:570.925050px;}
.y1a8{bottom:575.475300px;}
.y15a{bottom:577.291050px;}
.y8d{bottom:580.122300px;}
.y44{bottom:580.137300px;}
.yaf{bottom:580.912800px;}
.y18d{bottom:583.104300px;}
.y15{bottom:583.986600px;}
.y137{bottom:584.095800px;}
.yf2{bottom:584.146650px;}
.y10d{bottom:589.313550px;}
.y1a7{bottom:593.068050px;}
.y159{bottom:595.869300px;}
.y14{bottom:597.936600px;}
.y8c{bottom:598.510800px;}
.y43{bottom:598.525800px;}
.y18c{bottom:601.682550px;}
.y136{bottom:602.484300px;}
.yf1{bottom:602.776650px;}
.y1a6{bottom:610.660800px;}
.y13{bottom:611.886600px;}
.y158{bottom:614.447550px;}
.y8b{bottom:616.899300px;}
.y42{bottom:616.914300px;}
.y18b{bottom:620.260800px;}
.y135{bottom:620.872800px;}
.yf0{bottom:621.406650px;}
.y12{bottom:625.836600px;}
.y1a5{bottom:628.253550px;}
.y157{bottom:633.025800px;}
.y8a{bottom:635.287800px;}
.y41{bottom:635.302800px;}
.y18a{bottom:638.839050px;}
.y134{bottom:639.261300px;}
.y11{bottom:639.786600px;}
.yef{bottom:640.036650px;}
.y1a4{bottom:645.846300px;}
.y156{bottom:651.604050px;}
.y89{bottom:653.676300px;}
.y40{bottom:653.691300px;}
.y10{bottom:653.736600px;}
.y189{bottom:657.417300px;}
.yee{bottom:658.666650px;}
.y1a3{bottom:663.439050px;}
.yf{bottom:667.686600px;}
.y155{bottom:670.182300px;}
.y3f{bottom:672.079800px;}
.y188{bottom:675.995550px;}
.y133{bottom:676.051800px;}
.yed{bottom:677.296650px;}
.y1a2{bottom:681.031800px;}
.ye{bottom:681.636600px;}
.y154{bottom:688.760550px;}
.y3e{bottom:690.468300px;}
.y132{bottom:693.644550px;}
.yd{bottom:695.586600px;}
.y1a1{bottom:698.624550px;}
.y153{bottom:707.338800px;}
.y3d{bottom:708.856800px;}
.yc{bottom:709.536600px;}
.y131{bottom:711.237300px;}
.yec{bottom:714.327300px;}
.y1a0{bottom:716.217300px;}
.y152{bottom:725.917050px;}
.y3c{bottom:727.245300px;}
.y130{bottom:728.830050px;}
.yeb{bottom:732.156300px;}
.y19f{bottom:733.810050px;}
.y151{bottom:744.495300px;}
.y3b{bottom:745.633800px;}
.y12f{bottom:746.422800px;}
.yea{bottom:749.985300px;}
.y19e{bottom:751.402800px;}
.yb{bottom:756.483300px;}
.y150{bottom:763.073550px;}
.y3a{bottom:764.022300px;}
.ye9{bottom:767.814300px;}
.y19d{bottom:768.995550px;}
.ya{bottom:770.074800px;}
.y14f{bottom:781.651800px;}
.y39{bottom:782.410800px;}
.ye8{bottom:785.643300px;}
.y19c{bottom:786.588300px;}
.y9{bottom:791.661600px;}
.y14e{bottom:800.230050px;}
.y38{bottom:800.799300px;}
.ye7{bottom:803.472300px;}
.y19b{bottom:804.181050px;}
.y8{bottom:817.247250px;}
.y14d{bottom:818.808300px;}
.y37{bottom:819.187800px;}
.ye6{bottom:821.301300px;}
.y19a{bottom:821.773800px;}
.y14c{bottom:837.386550px;}
.y5f{bottom:837.576300px;}
.ye5{bottom:839.130300px;}
.y199{bottom:839.366550px;}
.y7{bottom:841.251750px;}
.y36{bottom:855.964800px;}
.ye4{bottom:856.959300px;}
.y6{bottom:869.511150px;}
.y34{bottom:894.455700px;}
.y5{bottom:895.003650px;}
.y2{bottom:932.060100px;}
.y4{bottom:949.388100px;}
.y3{bottom:962.888100px;}
.h11{height:30.401400px;}
.h13{height:30.402000px;}
.hc{height:30.912000px;}
.ha{height:31.206000px;}
.h9{height:33.165000px;}
.hb{height:33.435000px;}
.h4{height:35.328000px;}
.h3{height:35.376000px;}
.hd{height:36.246000px;}
.h2{height:42.720000px;}
.he{height:43.281738px;}
.h8{height:44.013000px;}
.h14{height:45.048000px;}
.h12{height:46.602000px;}
.h10{height:49.335000px;}
.h7{height:54.369000px;}
.h6{height:55.773714px;}
.hf{height:59.547000px;}
.h5{height:64.350000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:106.299150px;}
.x3{left:117.723000px;}
.x12{left:127.559100px;}
.x10{left:128.791950px;}
.xf{left:131.811900px;}
.x11{left:138.256050px;}
.x4{left:141.663150px;}
.xb{left:143.243550px;}
.x13{left:157.316700px;}
.x18{left:162.371550px;}
.x16{left:163.853850px;}
.x17{left:165.160800px;}
.x14{left:168.753000px;}
.x15{left:175.280550px;}
.xc{left:177.884850px;}
.xd{left:183.509850px;}
.x6{left:196.802550px;}
.x9{left:208.110450px;}
.x5{left:235.623150px;}
.x7{left:249.316050px;}
.xa{left:276.577950px;}
.x8{left:293.509800px;}
.x2{left:445.299000px;}
.x1{left:590.705550px;}
@media print{
.v2{vertical-align:-14.400533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.210667pt;}
.ls15{letter-spacing:-1.226667pt;}
.ls58{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-1.042667pt;}
.ls2f{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.920000pt;}
.ls3d{letter-spacing:-0.797333pt;}
.ls3e{letter-spacing:-0.797323pt;}
.ls2d{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls12{letter-spacing:-0.613333pt;}
.ls1c{letter-spacing:-0.552000pt;}
.ls2b{letter-spacing:-0.490667pt;}
.ls3f{letter-spacing:-0.429333pt;}
.ls4{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.392000pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.200000pt;}
.ls56{letter-spacing:-0.056000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000267pt;}
.ls28{letter-spacing:0.010933pt;}
.ls40{letter-spacing:0.030667pt;}
.ls36{letter-spacing:0.048000pt;}
.ls42{letter-spacing:0.056000pt;}
.lsc{letter-spacing:0.061333pt;}
.ls39{letter-spacing:0.092000pt;}
.ls21{letter-spacing:0.094133pt;}
.ls53{letter-spacing:0.112000pt;}
.ls14{letter-spacing:0.122667pt;}
.ls3a{letter-spacing:0.124798pt;}
.ls43{letter-spacing:0.134400pt;}
.ls41{letter-spacing:0.140000pt;}
.ls22{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.153333pt;}
.ls1b{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.184000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.214667pt;}
.ls44{letter-spacing:0.224000pt;}
.ls35{letter-spacing:0.245333pt;}
.ls29{letter-spacing:0.264000pt;}
.ls11{letter-spacing:0.276000pt;}
.ls37{letter-spacing:0.280000pt;}
.ls2c{letter-spacing:0.306667pt;}
.ls52{letter-spacing:0.336000pt;}
.ls24{letter-spacing:0.337333pt;}
.ls1d{letter-spacing:0.368000pt;}
.ls45{letter-spacing:0.392000pt;}
.ls20{letter-spacing:0.398667pt;}
.ls19{letter-spacing:0.399200pt;}
.ls26{letter-spacing:0.429333pt;}
.ls51{letter-spacing:0.476000pt;}
.ls10{letter-spacing:0.490667pt;}
.ls7{letter-spacing:0.522667pt;}
.ls9{letter-spacing:0.552000pt;}
.ls49{letter-spacing:0.560000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls38{letter-spacing:0.582667pt;}
.lsd{letter-spacing:0.613333pt;}
.ls46{letter-spacing:0.616000pt;}
.ls4b{letter-spacing:0.672000pt;}
.lsb{letter-spacing:0.674667pt;}
.ls1e{letter-spacing:0.705333pt;}
.ls57{letter-spacing:0.728000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.766667pt;}
.ls4c{letter-spacing:0.784000pt;}
.ls33{letter-spacing:0.797333pt;}
.ls30{letter-spacing:0.858667pt;}
.ls5a{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.920000pt;}
.ls48{letter-spacing:0.952000pt;}
.ls1f{letter-spacing:0.981333pt;}
.ls47{letter-spacing:1.064000pt;}
.ls3c{letter-spacing:1.104000pt;}
.ls3b{letter-spacing:1.165333pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls4d{letter-spacing:1.232000pt;}
.ls34{letter-spacing:1.288000pt;}
.ls27{letter-spacing:1.349333pt;}
.ls4e{letter-spacing:1.372000pt;}
.lse{letter-spacing:1.410667pt;}
.ls4a{letter-spacing:1.512000pt;}
.ls4f{letter-spacing:1.624000pt;}
.ls50{letter-spacing:1.708000pt;}
.ls54{letter-spacing:1.848000pt;}
.ls55{letter-spacing:1.960000pt;}
.ls0{letter-spacing:11.120000pt;}
.ls32{letter-spacing:12.000000pt;}
.ls8{letter-spacing:480.542933pt;}
.wsd5{word-spacing:-16.498667pt;}
.wsd4{word-spacing:-16.253333pt;}
.ws68{word-spacing:-15.946667pt;}
.wsd6{word-spacing:-15.517333pt;}
.wsf5{word-spacing:-15.372000pt;}
.ws92{word-spacing:-15.333333pt;}
.wse3{word-spacing:-15.064000pt;}
.ws67{word-spacing:-14.720000pt;}
.wse0{word-spacing:-14.140000pt;}
.ws1e{word-spacing:-14.000000pt;}
.ws93{word-spacing:-12.192000pt;}
.ws69{word-spacing:-12.168000pt;}
.wsa5{word-spacing:-11.280000pt;}
.ws40{word-spacing:-11.120000pt;}
.ws80{word-spacing:-9.966533pt;}
.wsdb{word-spacing:-9.169211pt;}
.wsce{word-spacing:-7.924665pt;}
.wsa4{word-spacing:-7.799867pt;}
.ws105{word-spacing:-1.960000pt;}
.wsf2{word-spacing:-1.232000pt;}
.ws1c{word-spacing:-0.746667pt;}
.ws118{word-spacing:-0.728000pt;}
.wsf1{word-spacing:-0.672000pt;}
.ws103{word-spacing:-0.616000pt;}
.ws75{word-spacing:-0.613333pt;}
.wsea{word-spacing:-0.392000pt;}
.wsf7{word-spacing:-0.336000pt;}
.wscb{word-spacing:-0.280000pt;}
.ws1f{word-spacing:-0.261333pt;}
.wse6{word-spacing:-0.168000pt;}
.wsc0{word-spacing:-0.122667pt;}
.wsd8{word-spacing:-0.061333pt;}
.wsf4{word-spacing:-0.056000pt;}
.ws0{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.061333pt;}
.ws11{word-spacing:0.080000pt;}
.wsdc{word-spacing:0.096000pt;}
.ws8{word-spacing:0.120000pt;}
.ws6e{word-spacing:0.122667pt;}
.ws7e{word-spacing:0.144000pt;}
.wsff{word-spacing:0.168000pt;}
.ws63{word-spacing:0.184000pt;}
.ws9{word-spacing:0.200000pt;}
.ws3{word-spacing:0.240000pt;}
.wsbe{word-spacing:0.245333pt;}
.wsb6{word-spacing:0.280000pt;}
.ws62{word-spacing:0.306667pt;}
.wsc{word-spacing:0.320000pt;}
.ws24{word-spacing:0.368000pt;}
.ws89{word-spacing:0.384000pt;}
.wsda{word-spacing:0.429333pt;}
.ws11b{word-spacing:0.448000pt;}
.ws7a{word-spacing:0.490667pt;}
.ws72{word-spacing:0.528000pt;}
.ws4b{word-spacing:0.552000pt;}
.ws6d{word-spacing:0.613333pt;}
.wsdf{word-spacing:0.624000pt;}
.wse1{word-spacing:0.672000pt;}
.ws5d{word-spacing:0.674667pt;}
.ws19{word-spacing:0.720000pt;}
.ws5c{word-spacing:0.736000pt;}
.wsa{word-spacing:0.760000pt;}
.wse5{word-spacing:0.784000pt;}
.ws56{word-spacing:0.797333pt;}
.ws16{word-spacing:0.800000pt;}
.wsb5{word-spacing:0.840000pt;}
.wsa8{word-spacing:0.858667pt;}
.wsb{word-spacing:0.880000pt;}
.wsac{word-spacing:0.912000pt;}
.ws86{word-spacing:0.920000pt;}
.wsb4{word-spacing:0.952000pt;}
.ws7c{word-spacing:0.960000pt;}
.ws1d{word-spacing:0.970667pt;}
.ws60{word-spacing:0.981333pt;}
.wsb3{word-spacing:1.008000pt;}
.ws20{word-spacing:1.042667pt;}
.ws99{word-spacing:1.056000pt;}
.ws110{word-spacing:1.064000pt;}
.ws7{word-spacing:1.080000pt;}
.ws7b{word-spacing:1.104000pt;}
.wse9{word-spacing:1.120000pt;}
.ws87{word-spacing:1.152000pt;}
.ws59{word-spacing:1.165333pt;}
.ws30{word-spacing:1.226667pt;}
.wsd1{word-spacing:1.248000pt;}
.ws3b{word-spacing:1.288000pt;}
.wsaa{word-spacing:1.344000pt;}
.ws27{word-spacing:1.349333pt;}
.ws1b{word-spacing:1.381333pt;}
.ws65{word-spacing:1.410667pt;}
.wsfb{word-spacing:1.456000pt;}
.ws26{word-spacing:1.472000pt;}
.ws11e{word-spacing:1.512000pt;}
.ws15{word-spacing:1.520000pt;}
.ws45{word-spacing:1.533333pt;}
.ws107{word-spacing:1.568000pt;}
.ws3e{word-spacing:1.594667pt;}
.ws111{word-spacing:1.624000pt;}
.wsb2{word-spacing:1.632000pt;}
.ws3d{word-spacing:1.656000pt;}
.ws29{word-spacing:1.717333pt;}
.wsd3{word-spacing:1.728000pt;}
.ws106{word-spacing:1.736000pt;}
.wsde{word-spacing:1.776000pt;}
.ws9b{word-spacing:1.778667pt;}
.ws14{word-spacing:1.800000pt;}
.ws82{word-spacing:1.840000pt;}
.wsf6{word-spacing:1.848000pt;}
.ws7d{word-spacing:1.872000pt;}
.ws85{word-spacing:1.901333pt;}
.ws6{word-spacing:1.920000pt;}
.ws2d{word-spacing:1.962667pt;}
.wscc{word-spacing:2.016000pt;}
.ws39{word-spacing:2.024000pt;}
.wsba{word-spacing:2.072000pt;}
.ws64{word-spacing:2.085333pt;}
.wsb7{word-spacing:2.128000pt;}
.ws4c{word-spacing:2.146667pt;}
.ws18{word-spacing:2.160000pt;}
.wsfe{word-spacing:2.184000pt;}
.ws4d{word-spacing:2.208000pt;}
.wsc4{word-spacing:2.256000pt;}
.ws54{word-spacing:2.269333pt;}
.ws120{word-spacing:2.296000pt;}
.wsc7{word-spacing:2.304000pt;}
.ws79{word-spacing:2.330667pt;}
.wsab{word-spacing:2.352000pt;}
.ws76{word-spacing:2.392000pt;}
.ws9f{word-spacing:2.408000pt;}
.ws6c{word-spacing:2.453333pt;}
.wsae{word-spacing:2.496000pt;}
.ws22{word-spacing:2.514667pt;}
.wsfc{word-spacing:2.520000pt;}
.wsb1{word-spacing:2.544000pt;}
.ws6b{word-spacing:2.576000pt;}
.wsfa{word-spacing:2.632000pt;}
.ws2f{word-spacing:2.637333pt;}
.ws17{word-spacing:2.640000pt;}
.wseb{word-spacing:2.688000pt;}
.ws97{word-spacing:2.698667pt;}
.ws117{word-spacing:2.744000pt;}
.ws4a{word-spacing:2.760000pt;}
.wse4{word-spacing:2.800000pt;}
.wsa7{word-spacing:2.821333pt;}
.wsd2{word-spacing:2.832000pt;}
.ws100{word-spacing:2.856000pt;}
.ws1a{word-spacing:2.880000pt;}
.ws9d{word-spacing:2.882667pt;}
.ws35{word-spacing:2.944000pt;}
.ws113{word-spacing:2.968000pt;}
.wsd0{word-spacing:2.976000pt;}
.ws46{word-spacing:3.005333pt;}
.ws11c{word-spacing:3.024000pt;}
.wsf{word-spacing:3.040000pt;}
.ws34{word-spacing:3.066667pt;}
.wsd{word-spacing:3.080000pt;}
.wsa1{word-spacing:3.128000pt;}
.ws25{word-spacing:3.189333pt;}
.wsc8{word-spacing:3.248000pt;}
.ws4e{word-spacing:3.250667pt;}
.ws109{word-spacing:3.304000pt;}
.ws3f{word-spacing:3.312000pt;}
.ws9e{word-spacing:3.360000pt;}
.ws52{word-spacing:3.373333pt;}
.ws5{word-spacing:3.400000pt;}
.wsb0{word-spacing:3.408000pt;}
.ws101{word-spacing:3.416000pt;}
.ws43{word-spacing:3.434667pt;}
.wsad{word-spacing:3.456000pt;}
.ws11d{word-spacing:3.472000pt;}
.wse{word-spacing:3.480000pt;}
.ws70{word-spacing:3.496000pt;}
.wsc1{word-spacing:3.504000pt;}
.ws28{word-spacing:3.557333pt;}
.wsb9{word-spacing:3.584000pt;}
.ws47{word-spacing:3.618667pt;}
.ws10b{word-spacing:3.640000pt;}
.ws37{word-spacing:3.680000pt;}
.ws112{word-spacing:3.696000pt;}
.ws8c{word-spacing:3.741333pt;}
.wsa3{word-spacing:3.744000pt;}
.ws10e{word-spacing:3.752000pt;}
.ws48{word-spacing:3.802667pt;}
.ws10c{word-spacing:3.808000pt;}
.ws5e{word-spacing:3.864000pt;}
.ws114{word-spacing:3.920000pt;}
.ws61{word-spacing:3.925333pt;}
.ws9c{word-spacing:3.986667pt;}
.ws12{word-spacing:4.040000pt;}
.ws55{word-spacing:4.048000pt;}
.ws102{word-spacing:4.088000pt;}
.ws44{word-spacing:4.109333pt;}
.ws115{word-spacing:4.144000pt;}
.ws9a{word-spacing:4.170667pt;}
.wsc9{word-spacing:4.200000pt;}
.ws58{word-spacing:4.232000pt;}
.wsed{word-spacing:4.256000pt;}
.wsaf{word-spacing:4.293333pt;}
.ws98{word-spacing:4.354667pt;}
.wse8{word-spacing:4.368000pt;}
.ws3c{word-spacing:4.416000pt;}
.ws104{word-spacing:4.424000pt;}
.ws88{word-spacing:4.464000pt;}
.ws42{word-spacing:4.477333pt;}
.wsa0{word-spacing:4.536000pt;}
.ws4f{word-spacing:4.538667pt;}
.ws38{word-spacing:4.600000pt;}
.wsdd{word-spacing:4.608000pt;}
.ws90{word-spacing:4.661333pt;}
.ws10d{word-spacing:4.704000pt;}
.ws5b{word-spacing:4.722667pt;}
.ws2c{word-spacing:4.784000pt;}
.ws10{word-spacing:4.800000pt;}
.ws3a{word-spacing:4.845333pt;}
.ws11f{word-spacing:4.872000pt;}
.ws23{word-spacing:4.906667pt;}
.ws8d{word-spacing:4.944000pt;}
.ws57{word-spacing:4.968000pt;}
.wsf8{word-spacing:4.984000pt;}
.wsa2{word-spacing:4.992000pt;}
.wsbf{word-spacing:5.029333pt;}
.wsb8{word-spacing:5.040000pt;}
.ws53{word-spacing:5.090667pt;}
.ws50{word-spacing:5.152000pt;}
.wsc5{word-spacing:5.184000pt;}
.wsfd{word-spacing:5.208000pt;}
.ws95{word-spacing:5.213333pt;}
.ws51{word-spacing:5.274667pt;}
.ws13{word-spacing:5.280000pt;}
.ws10f{word-spacing:5.320000pt;}
.ws7f{word-spacing:5.328000pt;}
.ws36{word-spacing:5.336000pt;}
.ws71{word-spacing:5.397333pt;}
.ws74{word-spacing:5.458667pt;}
.wsc2{word-spacing:5.520000pt;}
.ws10a{word-spacing:5.544000pt;}
.ws4{word-spacing:5.560000pt;}
.ws32{word-spacing:5.581333pt;}
.wsf0{word-spacing:5.600000pt;}
.ws8e{word-spacing:5.642667pt;}
.ws108{word-spacing:5.656000pt;}
.ws96{word-spacing:5.704000pt;}
.wse2{word-spacing:5.712000pt;}
.wse7{word-spacing:5.824000pt;}
.ws83{word-spacing:5.826667pt;}
.wscd{word-spacing:5.888000pt;}
.wsc3{word-spacing:5.904000pt;}
.ws119{word-spacing:5.936000pt;}
.ws8b{word-spacing:5.949333pt;}
.wsc6{word-spacing:5.952000pt;}
.wsef{word-spacing:5.992000pt;}
.ws73{word-spacing:6.000000pt;}
.ws84{word-spacing:6.010667pt;}
.wsec{word-spacing:6.048000pt;}
.wsa9{word-spacing:6.072000pt;}
.wsa6{word-spacing:6.133333pt;}
.wsee{word-spacing:6.160000pt;}
.ws81{word-spacing:6.194667pt;}
.wscf{word-spacing:6.256000pt;}
.wsf3{word-spacing:6.272000pt;}
.ws21{word-spacing:6.317333pt;}
.wsf9{word-spacing:6.328000pt;}
.ws77{word-spacing:6.378667pt;}
.ws121{word-spacing:6.384000pt;}
.wsd9{word-spacing:6.440000pt;}
.ws2b{word-spacing:6.501333pt;}
.ws49{word-spacing:6.562667pt;}
.ws2e{word-spacing:6.624000pt;}
.wsbc{word-spacing:6.685333pt;}
.ws11a{word-spacing:6.720000pt;}
.ws6f{word-spacing:6.746667pt;}
.ws5f{word-spacing:6.808000pt;}
.wsbb{word-spacing:6.832000pt;}
.ws116{word-spacing:6.888000pt;}
.ws78{word-spacing:6.930667pt;}
.ws91{word-spacing:6.992000pt;}
.wsca{word-spacing:7.000000pt;}
.wsbd{word-spacing:7.053333pt;}
.ws5a{word-spacing:7.114667pt;}
.ws31{word-spacing:7.176000pt;}
.ws8a{word-spacing:7.237333pt;}
.wsd7{word-spacing:7.360000pt;}
.ws8f{word-spacing:7.421333pt;}
.ws66{word-spacing:7.482667pt;}
.ws33{word-spacing:7.544000pt;}
.ws94{word-spacing:7.605333pt;}
.ws2a{word-spacing:7.666667pt;}
.ws2{word-spacing:9.472000pt;}
.ws1{word-spacing:11.861333pt;}
.ws41{word-spacing:986.328000pt;}
._11{margin-left:-15.333333pt;}
._9{margin-left:-13.493333pt;}
._4{margin-left:-8.288000pt;}
._7{margin-left:-1.045333pt;}
._8{width:1.226667pt;}
._6{width:2.459467pt;}
._1{width:3.360000pt;}
._f{width:5.090667pt;}
._a{width:6.048000pt;}
._e{width:7.056000pt;}
._10{width:7.968267pt;}
._2{width:8.880000pt;}
._3{width:10.378667pt;}
._0{width:11.861333pt;}
._5{width:15.946667pt;}
._b{width:20.549333pt;}
._14{width:21.773333pt;}
._13{width:23.245333pt;}
._d{width:24.472000pt;}
._12{width:27.968000pt;}
._c{width:29.133333pt;}
.fsb{font-size:31.199467pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:39.866133pt;}
.fs6{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:47.622133pt;}
.y1{bottom:64.252133pt;}
.y10c{bottom:88.681467pt;}
.y12e{bottom:88.824267pt;}
.y63{bottom:88.826800pt;}
.y88{bottom:88.829600pt;}
.y70{bottom:88.834800pt;}
.ye3{bottom:88.837600pt;}
.ycf{bottom:88.840133pt;}
.y187{bottom:88.842800pt;}
.y173{bottom:88.950933pt;}
.y1c3{bottom:89.307600pt;}
.y1c6{bottom:89.748533pt;}
.y198{bottom:90.499733pt;}
.y5e{bottom:90.698933pt;}
.y33{bottom:98.266400pt;}
.y12d{bottom:103.032267pt;}
.y62{bottom:103.034800pt;}
.y87{bottom:103.037600pt;}
.y6f{bottom:103.042800pt;}
.ye2{bottom:103.045600pt;}
.yce{bottom:103.048133pt;}
.y186{bottom:103.050800pt;}
.y1c2{bottom:104.945600pt;}
.y10b{bottom:105.241467pt;}
.y1c5{bottom:105.386533pt;}
.y172{bottom:105.464933pt;}
.y197{bottom:106.137733pt;}
.y5d{bottom:107.044267pt;}
.y32{bottom:108.934400pt;}
.y190{bottom:117.240267pt;}
.y61{bottom:117.242800pt;}
.y86{bottom:117.245600pt;}
.y6e{bottom:117.250800pt;}
.ye1{bottom:117.253600pt;}
.ycd{bottom:117.256133pt;}
.y185{bottom:117.258800pt;}
.y1c1{bottom:120.583600pt;}
.y12c{bottom:120.840267pt;}
.y196{bottom:121.775733pt;}
.y10a{bottom:121.801467pt;}
.y171{bottom:121.978933pt;}
.y31{bottom:123.376933pt;}
.y5c{bottom:123.389600pt;}
.y85{bottom:131.453600pt;}
.y6d{bottom:131.458800pt;}
.ye0{bottom:131.461600pt;}
.ycc{bottom:131.464133pt;}
.y184{bottom:131.466800pt;}
.y12b{bottom:131.472133pt;}
.y60{bottom:135.050933pt;}
.y1c0{bottom:136.221600pt;}
.y30{bottom:137.096933pt;}
.y1c4{bottom:137.374267pt;}
.y195{bottom:137.413733pt;}
.y109{bottom:138.361467pt;}
.y170{bottom:138.492933pt;}
.y5b{bottom:139.734933pt;}
.y6c{bottom:145.666800pt;}
.ydf{bottom:145.669600pt;}
.ycb{bottom:145.672133pt;}
.y183{bottom:145.674800pt;}
.y12a{bottom:145.680133pt;}
.y84{bottom:149.261600pt;}
.y1bf{bottom:151.859600pt;}
.y2f{bottom:152.702267pt;}
.y194{bottom:153.051733pt;}
.y108{bottom:154.921467pt;}
.y16f{bottom:155.006933pt;}
.y5a{bottom:156.080267pt;}
.y6b{bottom:159.874800pt;}
.yde{bottom:159.877600pt;}
.yca{bottom:159.880133pt;}
.y182{bottom:159.882800pt;}
.y129{bottom:159.888133pt;}
.y2e{bottom:162.642267pt;}
.y1be{bottom:167.497600pt;}
.y193{bottom:168.689733pt;}
.y107{bottom:171.481467pt;}
.y16e{bottom:171.520933pt;}
.y122{bottom:172.409600pt;}
.y59{bottom:172.425600pt;}
.ydd{bottom:174.085600pt;}
.yc9{bottom:174.088133pt;}
.y181{bottom:174.090800pt;}
.y128{bottom:174.096133pt;}
.y14b{bottom:175.929600pt;}
.y2d{bottom:176.362267pt;}
.y6a{bottom:177.682933pt;}
.ya1{bottom:180.584933pt;}
.y1bd{bottom:183.135600pt;}
.y192{bottom:184.327733pt;}
.y2c{bottom:186.302267pt;}
.y16d{bottom:188.034933pt;}
.y106{bottom:188.041467pt;}
.yc8{bottom:188.296133pt;}
.y180{bottom:188.298800pt;}
.y127{bottom:188.304133pt;}
.yae{bottom:188.741600pt;}
.y83{bottom:188.749733pt;}
.y121{bottom:188.754933pt;}
.y58{bottom:188.770933pt;}
.ydc{bottom:191.893600pt;}
.yc2{bottom:192.260267pt;}
.y14a{bottom:192.274933pt;}
.ya0{bottom:196.930267pt;}
.y1bc{bottom:198.773600pt;}
.y17f{bottom:202.506800pt;}
.y126{bottom:202.512133pt;}
.y16c{bottom:204.548933pt;}
.y105{bottom:204.601467pt;}
.yad{bottom:205.086933pt;}
.y82{bottom:205.095067pt;}
.y120{bottom:205.100267pt;}
.y57{bottom:205.116267pt;}
.yc7{bottom:206.104267pt;}
.y149{bottom:208.620267pt;}
.yc1{bottom:208.622933pt;}
.y9f{bottom:213.275600pt;}
.y1bb{bottom:214.411600pt;}
.y191{bottom:215.128933pt;}
.y125{bottom:216.720133pt;}
.y2b{bottom:217.419200pt;}
.y17e{bottom:220.314933pt;}
.y16b{bottom:221.062933pt;}
.y104{bottom:221.161467pt;}
.yac{bottom:221.432267pt;}
.y81{bottom:221.440400pt;}
.y11f{bottom:221.445600pt;}
.y56{bottom:221.461600pt;}
.y148{bottom:224.965600pt;}
.yc0{bottom:224.968267pt;}
.y9e{bottom:229.620933pt;}
.y1ba{bottom:230.049600pt;}
.y124{bottom:230.928133pt;}
.y2a{bottom:236.929200pt;}
.y16a{bottom:237.576933pt;}
.y103{bottom:237.721467pt;}
.yab{bottom:237.777600pt;}
.ydb{bottom:237.780267pt;}
.y80{bottom:237.785733pt;}
.y11e{bottom:237.790933pt;}
.y55{bottom:237.806933pt;}
.y147{bottom:241.310933pt;}
.ybf{bottom:241.313600pt;}
.y1b9{bottom:245.687600pt;}
.y9d{bottom:245.966267pt;}
.y123{bottom:248.736267pt;}
.y29{bottom:253.109200pt;}
.y169{bottom:254.090933pt;}
.y69{bottom:254.118933pt;}
.yc6{bottom:254.120267pt;}
.yaa{bottom:254.122933pt;}
.yda{bottom:254.125600pt;}
.y7f{bottom:254.131067pt;}
.y11d{bottom:254.136267pt;}
.y54{bottom:254.152267pt;}
.y102{bottom:254.281467pt;}
.y146{bottom:257.656267pt;}
.ybe{bottom:257.658933pt;}
.y1b8{bottom:261.325600pt;}
.y9c{bottom:262.311600pt;}
.y17d{bottom:262.324933pt;}
.y28{bottom:265.509200pt;}
.y68{bottom:270.464267pt;}
.yc5{bottom:270.465600pt;}
.ya9{bottom:270.468267pt;}
.yd9{bottom:270.470933pt;}
.y7e{bottom:270.476400pt;}
.y11c{bottom:270.481600pt;}
.y53{bottom:270.497600pt;}
.y168{bottom:270.604933pt;}
.y101{bottom:270.841467pt;}
.y145{bottom:274.001600pt;}
.ybd{bottom:274.004267pt;}
.y1b7{bottom:276.963600pt;}
.y27{bottom:277.909200pt;}
.y9b{bottom:278.656933pt;}
.y17c{bottom:278.670267pt;}
.y67{bottom:286.809600pt;}
.ya8{bottom:286.813600pt;}
.yd8{bottom:286.816267pt;}
.y7d{bottom:286.821733pt;}
.y11b{bottom:286.826933pt;}
.y52{bottom:286.842933pt;}
.y167{bottom:287.118933pt;}
.y100{bottom:287.401467pt;}
.y26{bottom:290.309200pt;}
.y144{bottom:290.346933pt;}
.ybc{bottom:290.349600pt;}
.y1b6{bottom:292.601600pt;}
.y9a{bottom:295.002267pt;}
.y17b{bottom:295.015600pt;}
.y25{bottom:302.709200pt;}
.y66{bottom:303.154933pt;}
.yc4{bottom:303.156267pt;}
.ya7{bottom:303.158933pt;}
.yd7{bottom:303.161600pt;}
.y7c{bottom:303.167067pt;}
.y11a{bottom:303.172267pt;}
.y51{bottom:303.188267pt;}
.y166{bottom:303.632933pt;}
.yff{bottom:303.961467pt;}
.y143{bottom:306.692267pt;}
.ybb{bottom:306.694933pt;}
.y1b5{bottom:308.239600pt;}
.y99{bottom:311.347600pt;}
.y17a{bottom:311.360933pt;}
.y24{bottom:315.109200pt;}
.y65{bottom:319.500267pt;}
.ya6{bottom:319.504267pt;}
.yd6{bottom:319.506933pt;}
.y7b{bottom:319.512400pt;}
.y119{bottom:319.517600pt;}
.y50{bottom:319.533600pt;}
.y165{bottom:320.146933pt;}
.yfe{bottom:320.521467pt;}
.y142{bottom:323.037600pt;}
.yba{bottom:323.040267pt;}
.y1b4{bottom:323.877600pt;}
.y23{bottom:327.509200pt;}
.y98{bottom:327.692933pt;}
.y179{bottom:327.706267pt;}
.y64{bottom:335.845600pt;}
.ya5{bottom:335.849600pt;}
.yd5{bottom:335.852267pt;}
.y7a{bottom:335.857733pt;}
.y118{bottom:335.862933pt;}
.y4f{bottom:335.878933pt;}
.y164{bottom:336.660933pt;}
.yfd{bottom:337.081467pt;}
.y141{bottom:339.382933pt;}
.yb9{bottom:339.385600pt;}
.y1b3{bottom:339.515600pt;}
.y22{bottom:339.909200pt;}
.y97{bottom:344.038267pt;}
.y178{bottom:344.051600pt;}
.yc3{bottom:352.192267pt;}
.ya4{bottom:352.194933pt;}
.yd4{bottom:352.197600pt;}
.y79{bottom:352.203067pt;}
.y117{bottom:352.208267pt;}
.y4e{bottom:352.224267pt;}
.y21{bottom:352.309200pt;}
.y163{bottom:353.174933pt;}
.yfc{bottom:353.641467pt;}
.y1b2{bottom:355.153600pt;}
.y140{bottom:355.728267pt;}
.yb8{bottom:355.730933pt;}
.y96{bottom:360.383600pt;}
.y177{bottom:360.396933pt;}
.y20{bottom:364.709200pt;}
.ya3{bottom:368.540267pt;}
.yd3{bottom:368.542933pt;}
.y78{bottom:368.548400pt;}
.y116{bottom:368.553600pt;}
.y4d{bottom:368.569600pt;}
.y162{bottom:369.688933pt;}
.yfb{bottom:370.201467pt;}
.y1b1{bottom:370.791600pt;}
.y13f{bottom:372.073600pt;}
.yb7{bottom:372.076267pt;}
.y95{bottom:376.728933pt;}
.y176{bottom:376.742267pt;}
.y1f{bottom:377.109200pt;}
.ya2{bottom:384.885600pt;}
.yd2{bottom:384.888267pt;}
.y77{bottom:384.893733pt;}
.y115{bottom:384.898933pt;}
.y4c{bottom:384.914933pt;}
.y161{bottom:386.202933pt;}
.y1b0{bottom:386.429600pt;}
.yfa{bottom:386.761467pt;}
.yb6{bottom:388.421600pt;}
.y13e{bottom:388.433600pt;}
.y1e{bottom:389.509200pt;}
.y94{bottom:393.074267pt;}
.y175{bottom:393.087600pt;}
.yd1{bottom:401.233600pt;}
.y76{bottom:401.239067pt;}
.y114{bottom:401.244267pt;}
.y4b{bottom:401.260267pt;}
.y1d{bottom:401.909200pt;}
.y1af{bottom:402.067600pt;}
.y160{bottom:402.716933pt;}
.yf9{bottom:403.321467pt;}
.yb5{bottom:404.766933pt;}
.y13d{bottom:404.778933pt;}
.y93{bottom:409.419600pt;}
.y174{bottom:409.432933pt;}
.y1c{bottom:414.309200pt;}
.yd0{bottom:417.578933pt;}
.y75{bottom:417.584400pt;}
.y113{bottom:417.589600pt;}
.y4a{bottom:417.605600pt;}
.y1ae{bottom:417.705600pt;}
.y15f{bottom:419.230933pt;}
.yf8{bottom:419.881467pt;}
.yb4{bottom:421.112267pt;}
.y13c{bottom:421.124267pt;}
.y92{bottom:425.764933pt;}
.y1ad{bottom:433.343600pt;}
.y74{bottom:433.929733pt;}
.y112{bottom:433.934933pt;}
.y49{bottom:433.950933pt;}
.y15e{bottom:435.744933pt;}
.yf7{bottom:436.441467pt;}
.y13b{bottom:437.469600pt;}
.y1b{bottom:440.919200pt;}
.y91{bottom:442.110267pt;}
.y1ac{bottom:448.981600pt;}
.y73{bottom:450.275067pt;}
.y111{bottom:450.280267pt;}
.y48{bottom:450.296267pt;}
.y15d{bottom:452.258933pt;}
.yf6{bottom:453.001467pt;}
.yb3{bottom:453.814933pt;}
.y1a{bottom:457.099200pt;}
.y90{bottom:458.455600pt;}
.y1ab{bottom:464.619600pt;}
.y72{bottom:466.620400pt;}
.y110{bottom:466.625600pt;}
.y47{bottom:466.641600pt;}
.y15c{bottom:468.772933pt;}
.yb2{bottom:469.452933pt;}
.y19{bottom:469.499200pt;}
.yf5{bottom:469.561467pt;}
.y13a{bottom:470.160267pt;}
.y1aa{bottom:480.257600pt;}
.y18{bottom:481.899200pt;}
.y71{bottom:482.965733pt;}
.y10f{bottom:482.970933pt;}
.y8f{bottom:482.973600pt;}
.y46{bottom:482.986933pt;}
.yb1{bottom:485.090933pt;}
.y18f{bottom:485.286933pt;}
.yf4{bottom:486.121467pt;}
.y139{bottom:486.505600pt;}
.y17{bottom:494.299200pt;}
.y1a9{bottom:495.895600pt;}
.y15b{bottom:496.633600pt;}
.y8e{bottom:499.318933pt;}
.y45{bottom:499.332267pt;}
.yb0{bottom:500.728933pt;}
.y18e{bottom:501.800933pt;}
.yf3{bottom:502.681467pt;}
.y138{bottom:502.850933pt;}
.y16{bottom:506.699200pt;}
.y10e{bottom:507.488933pt;}
.y1a8{bottom:511.533600pt;}
.y15a{bottom:513.147600pt;}
.y8d{bottom:515.664267pt;}
.y44{bottom:515.677600pt;}
.yaf{bottom:516.366933pt;}
.y18d{bottom:518.314933pt;}
.y15{bottom:519.099200pt;}
.y137{bottom:519.196267pt;}
.yf2{bottom:519.241467pt;}
.y10d{bottom:523.834267pt;}
.y1a7{bottom:527.171600pt;}
.y159{bottom:529.661600pt;}
.y14{bottom:531.499200pt;}
.y8c{bottom:532.009600pt;}
.y43{bottom:532.022933pt;}
.y18c{bottom:534.828933pt;}
.y136{bottom:535.541600pt;}
.yf1{bottom:535.801467pt;}
.y1a6{bottom:542.809600pt;}
.y13{bottom:543.899200pt;}
.y158{bottom:546.175600pt;}
.y8b{bottom:548.354933pt;}
.y42{bottom:548.368267pt;}
.y18b{bottom:551.342933pt;}
.y135{bottom:551.886933pt;}
.yf0{bottom:552.361467pt;}
.y12{bottom:556.299200pt;}
.y1a5{bottom:558.447600pt;}
.y157{bottom:562.689600pt;}
.y8a{bottom:564.700267pt;}
.y41{bottom:564.713600pt;}
.y18a{bottom:567.856933pt;}
.y134{bottom:568.232267pt;}
.y11{bottom:568.699200pt;}
.yef{bottom:568.921467pt;}
.y1a4{bottom:574.085600pt;}
.y156{bottom:579.203600pt;}
.y89{bottom:581.045600pt;}
.y40{bottom:581.058933pt;}
.y10{bottom:581.099200pt;}
.y189{bottom:584.370933pt;}
.yee{bottom:585.481467pt;}
.y1a3{bottom:589.723600pt;}
.yf{bottom:593.499200pt;}
.y155{bottom:595.717600pt;}
.y3f{bottom:597.404267pt;}
.y188{bottom:600.884933pt;}
.y133{bottom:600.934933pt;}
.yed{bottom:602.041467pt;}
.y1a2{bottom:605.361600pt;}
.ye{bottom:605.899200pt;}
.y154{bottom:612.231600pt;}
.y3e{bottom:613.749600pt;}
.y132{bottom:616.572933pt;}
.yd{bottom:618.299200pt;}
.y1a1{bottom:620.999600pt;}
.y153{bottom:628.745600pt;}
.y3d{bottom:630.094933pt;}
.yc{bottom:630.699200pt;}
.y131{bottom:632.210933pt;}
.yec{bottom:634.957600pt;}
.y1a0{bottom:636.637600pt;}
.y152{bottom:645.259600pt;}
.y3c{bottom:646.440267pt;}
.y130{bottom:647.848933pt;}
.yeb{bottom:650.805600pt;}
.y19f{bottom:652.275600pt;}
.y151{bottom:661.773600pt;}
.y3b{bottom:662.785600pt;}
.y12f{bottom:663.486933pt;}
.yea{bottom:666.653600pt;}
.y19e{bottom:667.913600pt;}
.yb{bottom:672.429600pt;}
.y150{bottom:678.287600pt;}
.y3a{bottom:679.130933pt;}
.ye9{bottom:682.501600pt;}
.y19d{bottom:683.551600pt;}
.ya{bottom:684.510933pt;}
.y14f{bottom:694.801600pt;}
.y39{bottom:695.476267pt;}
.ye8{bottom:698.349600pt;}
.y19c{bottom:699.189600pt;}
.y9{bottom:703.699200pt;}
.y14e{bottom:711.315600pt;}
.y38{bottom:711.821600pt;}
.ye7{bottom:714.197600pt;}
.y19b{bottom:714.827600pt;}
.y8{bottom:726.442000pt;}
.y14d{bottom:727.829600pt;}
.y37{bottom:728.166933pt;}
.ye6{bottom:730.045600pt;}
.y19a{bottom:730.465600pt;}
.y14c{bottom:744.343600pt;}
.y5f{bottom:744.512267pt;}
.ye5{bottom:745.893600pt;}
.y199{bottom:746.103600pt;}
.y7{bottom:747.779333pt;}
.y36{bottom:760.857600pt;}
.ye4{bottom:761.741600pt;}
.y6{bottom:772.898800pt;}
.y34{bottom:795.071733pt;}
.y5{bottom:795.558800pt;}
.y2{bottom:828.497867pt;}
.y4{bottom:843.900533pt;}
.y3{bottom:855.900533pt;}
.h11{height:27.023467pt;}
.h13{height:27.024000pt;}
.hc{height:27.477333pt;}
.ha{height:27.738667pt;}
.h9{height:29.480000pt;}
.hb{height:29.720000pt;}
.h4{height:31.402667pt;}
.h3{height:31.445333pt;}
.hd{height:32.218667pt;}
.h2{height:37.973333pt;}
.he{height:38.472656pt;}
.h8{height:39.122667pt;}
.h14{height:40.042667pt;}
.h12{height:41.424000pt;}
.h10{height:43.853333pt;}
.h7{height:48.328000pt;}
.h6{height:49.576635pt;}
.hf{height:52.930667pt;}
.h5{height:57.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:94.488133pt;}
.x3{left:104.642667pt;}
.x12{left:113.385867pt;}
.x10{left:114.481733pt;}
.xf{left:117.166133pt;}
.x11{left:122.894267pt;}
.x4{left:125.922800pt;}
.xb{left:127.327600pt;}
.x13{left:139.837067pt;}
.x18{left:144.330267pt;}
.x16{left:145.647867pt;}
.x17{left:146.809600pt;}
.x14{left:150.002667pt;}
.x15{left:155.804933pt;}
.xc{left:158.119867pt;}
.xd{left:163.119867pt;}
.x6{left:174.935600pt;}
.x9{left:184.987067pt;}
.x5{left:209.442800pt;}
.x7{left:221.614267pt;}
.xa{left:245.847067pt;}
.x8{left:260.897600pt;}
.x2{left:395.821333pt;}
.x1{left:525.071600pt;}
}




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