
    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_b2d2fe7914babd6d659a7ab2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_13ad4c6cc53f65a94a5c1230.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003418;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_8fb7485db8b96f18c3d8f89c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.847168;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_7470bc28c0de4b022d1d34c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_be39f8450a9e1948e195c0d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_c08a286f3b1f172fec7ce2bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_abfe8ac41fd1991edfaaae0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_13ad4c6cc53f65a94a5c1230.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003418;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_8fb7485db8b96f18c3d8f89c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.847168;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);}
.v2{vertical-align:-25.079400px;}
.v4{vertical-align:-23.940000px;}
.v8{vertical-align:-20.520000px;}
.va{vertical-align:-1.404000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:19.116000px;}
.v6{vertical-align:20.483400px;}
.v5{vertical-align:21.636000px;}
.v3{vertical-align:23.922000px;}
.v1{vertical-align:29.640000px;}
.v7{vertical-align:60.048000px;}
.ls37{letter-spacing:-0.504000px;}
.ls3a{letter-spacing:-0.189000px;}
.ls39{letter-spacing:-0.063000px;}
.ls1b{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.042840px;}
.ls27{letter-spacing:0.063000px;}
.ls25{letter-spacing:0.126000px;}
.ls4f{letter-spacing:0.155040px;}
.ls5a{letter-spacing:0.189000px;}
.ls62{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.430920px;}
.ls4a{letter-spacing:0.431160px;}
.ls48{letter-spacing:0.431760px;}
.ls58{letter-spacing:0.433236px;}
.ls50{letter-spacing:0.440640px;}
.ls26{letter-spacing:0.441000px;}
.ls2e{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.567000px;}
.ls7{letter-spacing:0.570000px;}
.ls77{letter-spacing:0.587520px;}
.lsd{letter-spacing:0.627000px;}
.ls3e{letter-spacing:0.630000px;}
.ls41{letter-spacing:0.646800px;}
.ls40{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.685440px;}
.ls15{letter-spacing:0.693000px;}
.ls3f{letter-spacing:0.716400px;}
.ls29{letter-spacing:0.756000px;}
.ls67{letter-spacing:0.807840px;}
.ls70{letter-spacing:0.810000px;}
.ls56{letter-spacing:0.819000px;}
.ls60{letter-spacing:0.864000px;}
.ls28{letter-spacing:0.882000px;}
.ls4c{letter-spacing:0.918000px;}
.ls35{letter-spacing:0.945000px;}
.ls6e{letter-spacing:0.972000px;}
.ls5{letter-spacing:0.975840px;}
.ls24{letter-spacing:1.008000px;}
.ls6c{letter-spacing:1.026000px;}
.ls18{letter-spacing:1.071000px;}
.ls51{letter-spacing:1.080000px;}
.ls4b{letter-spacing:1.134000px;}
.ls3{letter-spacing:1.153320px;}
.ls4{letter-spacing:1.153920px;}
.ls2{letter-spacing:1.166880px;}
.ls5b{letter-spacing:1.188000px;}
.ls8{letter-spacing:1.197000px;}
.ls5e{letter-spacing:1.198200px;}
.ls65{letter-spacing:1.242000px;}
.lsb{letter-spacing:1.254000px;}
.ls20{letter-spacing:1.260000px;}
.ls6b{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.311000px;}
.ls55{letter-spacing:1.323000px;}
.ls6f{letter-spacing:1.350000px;}
.lsf{letter-spacing:1.368000px;}
.ls16{letter-spacing:1.386000px;}
.ls6a{letter-spacing:1.404000px;}
.ls12{letter-spacing:1.425000px;}
.ls2d{letter-spacing:1.449000px;}
.ls6{letter-spacing:1.452000px;}
.ls75{letter-spacing:1.458000px;}
.ls68{letter-spacing:1.468800px;}
.ls21{letter-spacing:1.512000px;}
.ls6d{letter-spacing:1.566000px;}
.ls13{letter-spacing:1.575000px;}
.lse{letter-spacing:1.596000px;}
.ls63{letter-spacing:1.620000px;}
.ls1e{letter-spacing:1.638000px;}
.ls64{letter-spacing:1.674000px;}
.ls2f{letter-spacing:1.701000px;}
.ls1{letter-spacing:1.716000px;}
.ls0{letter-spacing:1.728000px;}
.ls57{letter-spacing:1.764000px;}
.ls10{letter-spacing:1.767000px;}
.ls69{letter-spacing:1.782000px;}
.ls3c{letter-spacing:1.827000px;}
.ls1f{letter-spacing:1.890000px;}
.lsa{letter-spacing:1.938000px;}
.ls5c{letter-spacing:1.944000px;}
.ls2b{letter-spacing:1.953000px;}
.ls11{letter-spacing:1.995000px;}
.ls72{letter-spacing:1.998000px;}
.ls2c{letter-spacing:2.016000px;}
.ls36{letter-spacing:2.046000px;}
.ls3b{letter-spacing:2.079000px;}
.ls73{letter-spacing:2.106000px;}
.ls30{letter-spacing:2.142000px;}
.ls5d{letter-spacing:2.160000px;}
.ls9{letter-spacing:2.166000px;}
.ls3d{letter-spacing:2.205000px;}
.ls74{letter-spacing:2.214000px;}
.ls1a{letter-spacing:2.268000px;}
.ls71{letter-spacing:2.322000px;}
.ls23{letter-spacing:2.331000px;}
.ls5f{letter-spacing:2.376000px;}
.ls2a{letter-spacing:2.394000px;}
.ls76{letter-spacing:2.430000px;}
.ls17{letter-spacing:2.457000px;}
.ls33{letter-spacing:2.475600px;}
.ls61{letter-spacing:2.484000px;}
.ls59{letter-spacing:2.520000px;}
.ls31{letter-spacing:2.583000px;}
.ls32{letter-spacing:2.603400px;}
.ls66{letter-spacing:2.706000px;}
.ls19{letter-spacing:2.772000px;}
.ls34{letter-spacing:2.835000px;}
.ls22{letter-spacing:2.898000px;}
.ls54{letter-spacing:2.961000px;}
.ls52{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.339000px;}
.ls14{letter-spacing:3.717000px;}
.ls1c{letter-spacing:4.473000px;}
.ls49{letter-spacing:64.638000px;}
.ls47{letter-spacing:86.400000px;}
.ls46{letter-spacing:184.302000px;}
.ls42{letter-spacing:198.180000px;}
.ls44{letter-spacing:204.660000px;}
.ls45{letter-spacing:212.058000px;}
.ls43{letter-spacing:218.538000px;}
.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;}
}
.ws2{word-spacing:-19.278000px;}
.ws88{word-spacing:-17.688000px;}
.ws6b{word-spacing:-17.028000px;}
.ws22{word-spacing:-16.632000px;}
.ws6c{word-spacing:-16.506000px;}
.ws55{word-spacing:-16.191000px;}
.ws20{word-spacing:-15.246000px;}
.ws5b{word-spacing:-14.202000px;}
.ws1{word-spacing:-14.136000px;}
.ws57{word-spacing:-13.965000px;}
.wsac{word-spacing:-13.878000px;}
.ws5d{word-spacing:-13.824000px;}
.ws1f{word-spacing:-13.797000px;}
.ws61{word-spacing:-13.770000px;}
.ws0{word-spacing:-13.631280px;}
.ws5f{word-spacing:-13.608000px;}
.ws58{word-spacing:-13.338000px;}
.ws63{word-spacing:-12.690000px;}
.ws54{word-spacing:-10.752840px;}
.ws21{word-spacing:-10.110240px;}
.ws8a{word-spacing:-10.098000px;}
.ws89{word-spacing:-9.437040px;}
.ws56{word-spacing:-9.263640px;}
.wsad{word-spacing:-9.216720px;}
.ws5e{word-spacing:-9.069840px;}
.ws2f{word-spacing:-4.536000px;}
.ws94{word-spacing:-4.410000px;}
.ws67{word-spacing:-4.347000px;}
.ws66{word-spacing:-4.221000px;}
.ws7b{word-spacing:-4.032000px;}
.ws75{word-spacing:-3.969000px;}
.ws77{word-spacing:-3.906000px;}
.ws80{word-spacing:-3.843000px;}
.ws83{word-spacing:-3.780000px;}
.ws14{word-spacing:-3.717000px;}
.ws2b{word-spacing:-3.654000px;}
.ws8b{word-spacing:-3.591000px;}
.ws3a{word-spacing:-3.528000px;}
.ws82{word-spacing:-3.465000px;}
.ws5{word-spacing:-3.363000px;}
.wsa8{word-spacing:-3.348000px;}
.ws4f{word-spacing:-3.276000px;}
.ws8d{word-spacing:-3.213000px;}
.ws99{word-spacing:-3.186000px;}
.ws33{word-spacing:-3.150000px;}
.wsaf{word-spacing:-3.132000px;}
.ws7f{word-spacing:-3.087000px;}
.ws93{word-spacing:-3.024000px;}
.ws95{word-spacing:-2.961000px;}
.ws48{word-spacing:-2.835000px;}
.ws45{word-spacing:-2.772000px;}
.ws96{word-spacing:-2.709000px;}
.wsb6{word-spacing:-2.646000px;}
.ws9c{word-spacing:-2.538000px;}
.ws7c{word-spacing:-2.520000px;}
.wsa2{word-spacing:-2.484000px;}
.wsba{word-spacing:-2.430000px;}
.ws91{word-spacing:-2.331000px;}
.ws97{word-spacing:-2.268000px;}
.ws78{word-spacing:-2.142000px;}
.ws79{word-spacing:-2.016000px;}
.ws40{word-spacing:-1.890000px;}
.ws1c{word-spacing:-1.764000px;}
.wsb0{word-spacing:-1.728000px;}
.wsb5{word-spacing:-1.674000px;}
.ws18{word-spacing:-1.638000px;}
.wsa9{word-spacing:-1.620000px;}
.ws2d{word-spacing:-1.575000px;}
.ws26{word-spacing:-1.512000px;}
.ws64{word-spacing:-1.449000px;}
.wsb1{word-spacing:-1.404000px;}
.ws8c{word-spacing:-1.386000px;}
.wsa5{word-spacing:-1.296000px;}
.ws70{word-spacing:-1.260000px;}
.wsa7{word-spacing:-1.188000px;}
.ws23{word-spacing:-1.134000px;}
.ws98{word-spacing:-1.080000px;}
.ws29{word-spacing:-1.008000px;}
.ws46{word-spacing:-0.945000px;}
.ws15{word-spacing:-0.882000px;}
.wsab{word-spacing:-0.864000px;}
.ws3f{word-spacing:-0.819000px;}
.wsc0{word-spacing:-0.810000px;}
.ws13{word-spacing:-0.693000px;}
.ws69{word-spacing:-0.648000px;}
.ws34{word-spacing:-0.630000px;}
.wsb2{word-spacing:-0.594000px;}
.ws19{word-spacing:-0.504000px;}
.ws25{word-spacing:-0.441000px;}
.wsb3{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.378000px;}
.ws51{word-spacing:-0.252000px;}
.wsbc{word-spacing:-0.216000px;}
.ws36{word-spacing:-0.063000px;}
.wsb{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.063000px;}
.ws4d{word-spacing:0.126000px;}
.ws44{word-spacing:0.189000px;}
.ws9e{word-spacing:0.216000px;}
.ws38{word-spacing:0.252000px;}
.wsb4{word-spacing:0.270000px;}
.ws39{word-spacing:0.315000px;}
.ws1a{word-spacing:0.378000px;}
.ws9d{word-spacing:0.432000px;}
.ws8f{word-spacing:0.441000px;}
.ws3d{word-spacing:0.693000px;}
.wsd{word-spacing:0.741000px;}
.ws68{word-spacing:0.798000px;}
.wsc{word-spacing:0.855000px;}
.wsa1{word-spacing:0.864000px;}
.ws74{word-spacing:1.008000px;}
.wsa4{word-spacing:1.026000px;}
.wsb9{word-spacing:1.134000px;}
.wsf{word-spacing:1.140000px;}
.ws2e{word-spacing:1.188000px;}
.ws7e{word-spacing:1.197000px;}
.wsc4{word-spacing:1.242000px;}
.ws8e{word-spacing:1.260000px;}
.wsaa{word-spacing:1.296000px;}
.ws10{word-spacing:1.311000px;}
.ws52{word-spacing:1.323000px;}
.wsae{word-spacing:1.350000px;}
.ws50{word-spacing:1.386000px;}
.ws2a{word-spacing:1.449000px;}
.ws8{word-spacing:1.482000px;}
.ws90{word-spacing:1.512000px;}
.ws65{word-spacing:1.764000px;}
.wse{word-spacing:1.824000px;}
.ws37{word-spacing:1.827000px;}
.ws81{word-spacing:1.890000px;}
.ws9{word-spacing:1.938000px;}
.ws6a{word-spacing:1.944000px;}
.wsa{word-spacing:1.995000px;}
.ws47{word-spacing:2.016000px;}
.ws7{word-spacing:2.052000px;}
.ws4e{word-spacing:2.079000px;}
.wsbe{word-spacing:2.160000px;}
.ws11{word-spacing:2.205000px;}
.ws9a{word-spacing:2.214000px;}
.ws27{word-spacing:2.268000px;}
.ws6{word-spacing:2.280000px;}
.wsa0{word-spacing:2.322000px;}
.ws31{word-spacing:2.331000px;}
.wsa3{word-spacing:2.376000px;}
.ws7d{word-spacing:2.394000px;}
.ws32{word-spacing:2.457000px;}
.ws4{word-spacing:2.484000px;}
.wsc1{word-spacing:2.538000px;}
.ws41{word-spacing:2.583000px;}
.ws7a{word-spacing:2.646000px;}
.ws3e{word-spacing:2.709000px;}
.wsbb{word-spacing:2.754000px;}
.ws1e{word-spacing:2.772000px;}
.wsc3{word-spacing:2.808000px;}
.ws2c{word-spacing:2.835000px;}
.wsbd{word-spacing:2.862000px;}
.ws85{word-spacing:2.907000px;}
.ws9b{word-spacing:2.916000px;}
.ws43{word-spacing:2.961000px;}
.ws42{word-spacing:3.024000px;}
.wsbf{word-spacing:3.078000px;}
.ws72{word-spacing:3.087000px;}
.ws35{word-spacing:3.150000px;}
.ws17{word-spacing:3.213000px;}
.wsb7{word-spacing:3.240000px;}
.ws4a{word-spacing:3.276000px;}
.ws73{word-spacing:3.339000px;}
.wsb8{word-spacing:3.348000px;}
.ws49{word-spacing:3.591000px;}
.ws9f{word-spacing:3.618000px;}
.wsc2{word-spacing:3.672000px;}
.ws71{word-spacing:3.717000px;}
.wsa6{word-spacing:3.888000px;}
.ws3b{word-spacing:4.032000px;}
.ws3c{word-spacing:4.158000px;}
.ws1d{word-spacing:4.221000px;}
.ws24{word-spacing:4.284000px;}
.ws84{word-spacing:4.332000px;}
.ws92{word-spacing:4.473000px;}
.ws28{word-spacing:4.536000px;}
.ws4b{word-spacing:4.725000px;}
.ws76{word-spacing:4.851000px;}
.ws53{word-spacing:5.292000px;}
.ws4c{word-spacing:5.607000px;}
.ws16{word-spacing:5.796000px;}
.ws12{word-spacing:6.993000px;}
.ws87{word-spacing:8.094000px;}
.ws86{word-spacing:21.261000px;}
.ws62{word-spacing:24.246000px;}
.ws60{word-spacing:72.360000px;}
.ws5c{word-spacing:121.770000px;}
.ws6e{word-spacing:155.196000px;}
.ws6f{word-spacing:155.250000px;}
.ws5a{word-spacing:167.184000px;}
.ws6d{word-spacing:258.768000px;}
.ws59{word-spacing:997.434000px;}
._5{margin-left:-9.519120px;}
._a{margin-left:-6.993000px;}
._8{margin-left:-5.922000px;}
._2{margin-left:-4.686000px;}
._7{margin-left:-3.219000px;}
._0{margin-left:-2.112000px;}
._6{margin-left:-1.005000px;}
._4{width:1.404000px;}
._3{width:2.808000px;}
._9{width:3.825000px;}
._15{width:29.214000px;}
._14{width:34.776000px;}
._19{width:49.194000px;}
._d{width:62.532000px;}
._16{width:69.012000px;}
._18{width:76.410000px;}
._b{width:87.426000px;}
._11{width:89.370000px;}
._1a{width:97.740000px;}
._f{width:103.302000px;}
._e{width:105.084000px;}
._17{width:118.044000px;}
._c{width:129.978000px;}
._12{width:131.922000px;}
._10{width:145.800000px;}
._1c{width:187.467000px;}
._13{width:212.760000px;}
._1d{width:218.916000px;}
._1b{width:346.086000px;}
._1{width:1166.088000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:36.720000px;}
.fsc{font-size:36.882000px;}
.fs9{font-size:38.760000px;}
.fs8{font-size:42.840000px;}
.fs6{font-size:44.880000px;}
.fs5{font-size:53.040000px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:95.920650px;}
.y30{bottom:97.408200px;}
.y1b1{bottom:130.871850px;}
.y181{bottom:131.331000px;}
.y62{bottom:131.544600px;}
.y14e{bottom:131.616750px;}
.y95{bottom:131.694750px;}
.y145{bottom:131.730750px;}
.y28{bottom:131.866050px;}
.y2f{bottom:131.881800px;}
.y217{bottom:133.429350px;}
.y1e4{bottom:133.483350px;}
.yf6{bottom:135.511200px;}
.yf5{bottom:149.916900px;}
.y1b0{bottom:150.365850px;}
.y180{bottom:150.829500px;}
.y61{bottom:151.043100px;}
.y94{bottom:151.193250px;}
.y144{bottom:151.229250px;}
.y27{bottom:151.364550px;}
.y2e{bottom:151.380300px;}
.y216{bottom:152.923350px;}
.y1e3{bottom:152.977350px;}
.y14d{bottom:163.598250px;}
.yf4{bottom:169.410900px;}
.y1af{bottom:169.859850px;}
.y17f{bottom:170.328000px;}
.y60{bottom:170.541600px;}
.y93{bottom:170.694750px;}
.y143{bottom:170.727750px;}
.y26{bottom:170.863050px;}
.y2d{bottom:170.878800px;}
.y215{bottom:172.417350px;}
.y1e2{bottom:172.471350px;}
.y14c{bottom:182.174250px;}
.yf3{bottom:188.904900px;}
.y1ae{bottom:189.353850px;}
.y17e{bottom:189.826500px;}
.y5f{bottom:190.040100px;}
.y92{bottom:190.193250px;}
.y142{bottom:190.226250px;}
.y25{bottom:190.361550px;}
.y2c{bottom:190.377300px;}
.y214{bottom:191.911350px;}
.y1e1{bottom:191.965350px;}
.y14b{bottom:202.370250px;}
.yf2{bottom:208.398900px;}
.y1ad{bottom:208.847850px;}
.y17d{bottom:209.325000px;}
.y5e{bottom:209.538600px;}
.y91{bottom:209.696250px;}
.y141{bottom:209.724750px;}
.y24{bottom:209.860050px;}
.y2b{bottom:209.875800px;}
.y213{bottom:211.405350px;}
.y1e0{bottom:211.459350px;}
.y1ac{bottom:228.341850px;}
.y17c{bottom:228.823500px;}
.y5d{bottom:229.037100px;}
.y90{bottom:229.194750px;}
.y140{bottom:229.223250px;}
.y23{bottom:229.358550px;}
.y2a{bottom:229.374300px;}
.y212{bottom:230.899350px;}
.y1df{bottom:230.953350px;}
.y14a{bottom:233.448150px;}
.yef{bottom:241.365900px;}
.yed{bottom:241.371150px;}
.yf0{bottom:241.379400px;}
.y1ab{bottom:247.835850px;}
.y17b{bottom:248.322000px;}
.y5c{bottom:248.535600px;}
.y8f{bottom:248.693250px;}
.y13f{bottom:248.721750px;}
.y22{bottom:248.857050px;}
.y29{bottom:248.872800px;}
.y211{bottom:250.393350px;}
.y1de{bottom:250.447350px;}
.y149{bottom:252.942150px;}
.yee{bottom:256.364400px;}
.yec{bottom:256.369650px;}
.yf1{bottom:256.377900px;}
.y1aa{bottom:267.329850px;}
.y17a{bottom:267.820500px;}
.y5b{bottom:268.034100px;}
.y13e{bottom:268.220250px;}
.y8e{bottom:268.286100px;}
.y210{bottom:269.887350px;}
.y1dd{bottom:269.941350px;}
.y148{bottom:272.436150px;}
.ye9{bottom:277.132650px;}
.yea{bottom:277.146150px;}
.ye7{bottom:277.227000px;}
.y1a9{bottom:286.823850px;}
.y179{bottom:287.319000px;}
.y5a{bottom:287.532600px;}
.y13d{bottom:287.718750px;}
.y8d{bottom:287.784600px;}
.y20f{bottom:289.381350px;}
.y1dc{bottom:289.435350px;}
.y147{bottom:291.930150px;}
.ye8{bottom:292.131150px;}
.yeb{bottom:292.144650px;}
.ye6{bottom:292.225500px;}
.y1a8{bottom:306.317850px;}
.y178{bottom:306.817500px;}
.y59{bottom:307.031100px;}
.y13c{bottom:307.217250px;}
.y8c{bottom:307.283100px;}
.y20e{bottom:308.875350px;}
.y1db{bottom:308.929350px;}
.y146{bottom:311.424150px;}
.ye3{bottom:313.353000px;}
.ye4{bottom:313.366500px;}
.y1a7{bottom:325.811850px;}
.y177{bottom:326.316000px;}
.y58{bottom:326.529600px;}
.y13b{bottom:326.715750px;}
.y8b{bottom:326.781600px;}
.ye2{bottom:328.351500px;}
.ye5{bottom:328.365000px;}
.y20d{bottom:328.369350px;}
.y1da{bottom:328.423350px;}
.y1a6{bottom:345.329850px;}
.y176{bottom:345.814500px;}
.y112{bottom:345.838950px;}
.y57{bottom:346.028100px;}
.y13a{bottom:346.214250px;}
.y8a{bottom:346.280100px;}
.y20c{bottom:347.863350px;}
.y1d9{bottom:347.917350px;}
.ydf{bottom:349.479000px;}
.ye0{bottom:349.492500px;}
.y21{bottom:357.535050px;}
.yde{bottom:364.477500px;}
.ye1{bottom:364.491000px;}
.y1a5{bottom:364.823850px;}
.y175{bottom:365.313000px;}
.y111{bottom:365.337450px;}
.y56{bottom:365.526600px;}
.y139{bottom:365.712750px;}
.y89{bottom:365.778600px;}
.y20b{bottom:367.357350px;}
.y1d8{bottom:367.411350px;}
.y1a4{bottom:384.317850px;}
.y174{bottom:384.811500px;}
.y55{bottom:385.025100px;}
.y138{bottom:385.211250px;}
.y88{bottom:385.277100px;}
.ydb{bottom:385.605000px;}
.ydc{bottom:385.618500px;}
.y20a{bottom:386.851350px;}
.y1d7{bottom:386.905350px;}
.y20{bottom:396.166800px;}
.yda{bottom:400.603500px;}
.ydd{bottom:400.617000px;}
.y1a3{bottom:403.811850px;}
.y110{bottom:403.971300px;}
.y173{bottom:404.310000px;}
.y54{bottom:404.523600px;}
.y137{bottom:404.709750px;}
.y87{bottom:404.775600px;}
.y1d6{bottom:406.399350px;}
.y209{bottom:406.696350px;}
.y1f{bottom:415.660800px;}
.yd7{bottom:421.731000px;}
.yd8{bottom:421.744500px;}
.y1a2{bottom:423.371850px;}
.y172{bottom:423.808500px;}
.y53{bottom:424.022100px;}
.y136{bottom:424.208250px;}
.y86{bottom:424.274100px;}
.y1d5{bottom:425.893350px;}
.y208{bottom:426.190350px;}
.y1e{bottom:435.154800px;}
.yd6{bottom:436.729500px;}
.yd9{bottom:436.743000px;}
.y1a1{bottom:442.865850px;}
.y171{bottom:443.307000px;}
.y52{bottom:443.520600px;}
.y135{bottom:443.706750px;}
.y85{bottom:443.772600px;}
.y1d4{bottom:445.387350px;}
.y207{bottom:445.684350px;}
.y1d{bottom:454.648800px;}
.yd3{bottom:457.857000px;}
.yd4{bottom:457.870500px;}
.y1a0{bottom:462.359850px;}
.y170{bottom:462.805500px;}
.y51{bottom:463.019100px;}
.y10f{bottom:463.049100px;}
.y134{bottom:463.205250px;}
.y84{bottom:463.271100px;}
.y1d3{bottom:464.881350px;}
.y206{bottom:465.178350px;}
.yd2{bottom:472.855500px;}
.yd5{bottom:472.869000px;}
.y1c{bottom:474.142800px;}
.y19f{bottom:481.853850px;}
.y16f{bottom:482.304000px;}
.y50{bottom:482.517600px;}
.y10e{bottom:482.547600px;}
.y133{bottom:482.703750px;}
.y83{bottom:482.769600px;}
.y1d2{bottom:484.375350px;}
.y205{bottom:484.672350px;}
.y1b{bottom:493.636800px;}
.ycf{bottom:493.983000px;}
.yd0{bottom:493.996500px;}
.ycd{bottom:494.075100px;}
.y19e{bottom:501.347850px;}
.y16e{bottom:501.802500px;}
.y4f{bottom:502.016100px;}
.y10d{bottom:502.046100px;}
.y132{bottom:502.202250px;}
.y82{bottom:502.268100px;}
.y1d1{bottom:503.869350px;}
.y204{bottom:504.166350px;}
.yce{bottom:508.981500px;}
.yd1{bottom:508.995000px;}
.ycc{bottom:509.073600px;}
.y1a{bottom:513.130800px;}
.y19d{bottom:520.841850px;}
.y16d{bottom:521.301000px;}
.y4e{bottom:521.519100px;}
.y10c{bottom:521.544600px;}
.y131{bottom:521.700750px;}
.y81{bottom:521.766600px;}
.y1d0{bottom:523.363350px;}
.y203{bottom:523.660350px;}
.yc9{bottom:530.201100px;}
.yca{bottom:530.214600px;}
.y19{bottom:532.624800px;}
.y19c{bottom:540.335850px;}
.y16c{bottom:540.799500px;}
.y4d{bottom:541.017600px;}
.y10b{bottom:541.043100px;}
.y130{bottom:541.199250px;}
.y80{bottom:541.265100px;}
.y1cf{bottom:542.857350px;}
.y202{bottom:543.154350px;}
.yc8{bottom:545.199600px;}
.ycb{bottom:545.213100px;}
.y18{bottom:552.118800px;}
.y19b{bottom:559.829850px;}
.y16b{bottom:560.298000px;}
.y4c{bottom:560.516100px;}
.y10a{bottom:560.541600px;}
.y12f{bottom:560.697750px;}
.y7f{bottom:560.763600px;}
.y1ce{bottom:562.351350px;}
.y201{bottom:562.648350px;}
.yc5{bottom:566.327100px;}
.yc6{bottom:566.340600px;}
.y17{bottom:571.612800px;}
.y19a{bottom:579.323850px;}
.y16a{bottom:579.796500px;}
.y4b{bottom:580.014600px;}
.y109{bottom:580.040100px;}
.y12e{bottom:580.196250px;}
.y7e{bottom:580.262100px;}
.yc4{bottom:581.325600px;}
.yc7{bottom:581.339100px;}
.y1cd{bottom:582.007350px;}
.y200{bottom:582.142350px;}
.y16{bottom:591.106800px;}
.y199{bottom:598.817850px;}
.y169{bottom:599.295000px;}
.y108{bottom:599.538600px;}
.y12d{bottom:599.694750px;}
.y7d{bottom:599.760600px;}
.y1cc{bottom:601.501350px;}
.y1ff{bottom:601.636350px;}
.yc0{bottom:602.453100px;}
.yc2{bottom:602.466600px;}
.ybf{bottom:609.945600px;}
.y15{bottom:610.600800px;}
.yc1{bottom:617.451600px;}
.yc3{bottom:617.465100px;}
.y198{bottom:618.311850px;}
.y4a{bottom:618.648450px;}
.y168{bottom:618.793500px;}
.y107{bottom:619.037100px;}
.y12c{bottom:619.193250px;}
.y7c{bottom:619.259100px;}
.y1cb{bottom:620.995350px;}
.y1fe{bottom:621.130350px;}
.y14{bottom:630.094800px;}
.y197{bottom:637.877850px;}
.y167{bottom:638.292000px;}
.y106{bottom:638.535600px;}
.ybc{bottom:638.565600px;}
.ybd{bottom:638.579100px;}
.y12b{bottom:638.691750px;}
.y7b{bottom:638.757600px;}
.y1ca{bottom:640.489350px;}
.y1fd{bottom:640.624350px;}
.y13{bottom:649.588800px;}
.ybb{bottom:653.564100px;}
.ybe{bottom:653.577600px;}
.y196{bottom:657.371850px;}
.y166{bottom:657.790500px;}
.y105{bottom:658.034100px;}
.y12a{bottom:658.200750px;}
.y7a{bottom:658.256100px;}
.y1c9{bottom:659.983350px;}
.y1fc{bottom:660.118350px;}
.y12{bottom:669.082800px;}
.yb8{bottom:674.691600px;}
.yb9{bottom:674.705100px;}
.yb6{bottom:674.765250px;}
.y195{bottom:676.865850px;}
.y165{bottom:677.289000px;}
.y104{bottom:677.532600px;}
.y129{bottom:677.699250px;}
.y49{bottom:677.724750px;}
.y79{bottom:677.754600px;}
.y1c8{bottom:679.477350px;}
.y1fb{bottom:679.612350px;}
.y11{bottom:688.576800px;}
.yb7{bottom:689.690100px;}
.yba{bottom:689.703600px;}
.yb5{bottom:689.763750px;}
.y194{bottom:696.359850px;}
.y164{bottom:696.787500px;}
.y103{bottom:697.031100px;}
.y128{bottom:697.197750px;}
.y48{bottom:697.223250px;}
.y78{bottom:697.253100px;}
.y1c7{bottom:698.971350px;}
.y1fa{bottom:699.106350px;}
.y10{bottom:708.070800px;}
.yb2{bottom:710.891250px;}
.yb3{bottom:710.904750px;}
.y193{bottom:715.853850px;}
.y163{bottom:716.286000px;}
.y102{bottom:716.529600px;}
.y127{bottom:716.696250px;}
.y47{bottom:716.721750px;}
.y77{bottom:716.751600px;}
.y1c6{bottom:718.465350px;}
.y1f9{bottom:718.600350px;}
.yb1{bottom:725.889750px;}
.yb4{bottom:725.903250px;}
.yf{bottom:727.564800px;}
.y192{bottom:735.347850px;}
.y162{bottom:735.784500px;}
.y101{bottom:736.028100px;}
.y126{bottom:736.194750px;}
.y46{bottom:736.220250px;}
.y76{bottom:736.250100px;}
.y1c5{bottom:737.959350px;}
.y1f8{bottom:738.094350px;}
.yae{bottom:747.017250px;}
.yaf{bottom:747.030750px;}
.ye{bottom:747.058800px;}
.y191{bottom:754.841850px;}
.y161{bottom:755.283000px;}
.y100{bottom:755.526600px;}
.y125{bottom:755.693250px;}
.y45{bottom:755.718750px;}
.y75{bottom:755.748600px;}
.y1c4{bottom:757.453350px;}
.y1f7{bottom:757.588350px;}
.yad{bottom:762.015750px;}
.yb0{bottom:762.029250px;}
.yd{bottom:766.552800px;}
.y190{bottom:774.335850px;}
.y160{bottom:774.781500px;}
.yff{bottom:775.025100px;}
.y124{bottom:775.209750px;}
.y44{bottom:775.217250px;}
.y74{bottom:775.247100px;}
.y1c3{bottom:776.947350px;}
.y1f6{bottom:777.082350px;}
.yaa{bottom:782.954250px;}
.yab{bottom:782.967750px;}
.y18f{bottom:793.829850px;}
.y15f{bottom:794.280000px;}
.yfe{bottom:794.523600px;}
.y123{bottom:794.708250px;}
.y43{bottom:794.715750px;}
.y73{bottom:794.745600px;}
.y1c2{bottom:796.441350px;}
.y1f5{bottom:796.576350px;}
.ya9{bottom:797.952750px;}
.yac{bottom:797.966250px;}
.yc{bottom:807.307800px;}
.y18e{bottom:813.323850px;}
.y15e{bottom:813.778500px;}
.yfd{bottom:814.022100px;}
.y122{bottom:814.206750px;}
.y42{bottom:814.214250px;}
.y72{bottom:814.244100px;}
.y1c1{bottom:815.935350px;}
.y1f4{bottom:816.070350px;}
.ya6{bottom:820.416750px;}
.ya7{bottom:820.430250px;}
.ya2{bottom:830.765550px;}
.y18d{bottom:832.817850px;}
.yb{bottom:833.179800px;}
.y15d{bottom:833.277000px;}
.yfc{bottom:833.520600px;}
.y121{bottom:833.705250px;}
.y41{bottom:833.712750px;}
.y71{bottom:833.742600px;}
.ya5{bottom:835.415250px;}
.ya8{bottom:835.428750px;}
.y1c0{bottom:835.429350px;}
.y1f3{bottom:835.564350px;}
.ya4{bottom:838.460550px;}
.ya1{bottom:845.764050px;}
.y18c{bottom:852.311850px;}
.y15c{bottom:852.775500px;}
.yfb{bottom:853.019100px;}
.y120{bottom:853.203750px;}
.y40{bottom:853.211250px;}
.y70{bottom:853.241100px;}
.y1bf{bottom:854.923350px;}
.y1f2{bottom:855.058350px;}
.ya3{bottom:857.306550px;}
.ya{bottom:861.955650px;}
.y18b{bottom:871.805850px;}
.y15b{bottom:872.274000px;}
.yfa{bottom:872.517600px;}
.y11f{bottom:872.702250px;}
.y3f{bottom:872.709750px;}
.y6f{bottom:872.739600px;}
.y1be{bottom:874.417350px;}
.y1f1{bottom:874.552350px;}
.y9{bottom:884.455650px;}
.ya0{bottom:888.457650px;}
.y15a{bottom:891.772500px;}
.yf9{bottom:892.016100px;}
.y11e{bottom:892.200750px;}
.y3e{bottom:892.208250px;}
.y6e{bottom:892.238100px;}
.y1bd{bottom:893.911350px;}
.y1f0{bottom:894.046350px;}
.y8{bottom:906.955650px;}
.y9f{bottom:907.951650px;}
.y18a{bottom:910.439700px;}
.y159{bottom:911.271000px;}
.yf8{bottom:911.514600px;}
.y11d{bottom:911.699250px;}
.y3d{bottom:911.706750px;}
.y6d{bottom:911.736600px;}
.y1bc{bottom:913.405350px;}
.y1ef{bottom:913.540350px;}
.y158{bottom:930.769500px;}
.y11c{bottom:931.197750px;}
.y3c{bottom:931.205250px;}
.y6c{bottom:931.235100px;}
.y7{bottom:931.689750px;}
.y1bb{bottom:932.899350px;}
.y1ee{bottom:933.034350px;}
.yf7{bottom:950.148450px;}
.y157{bottom:950.268000px;}
.y9e{bottom:950.694600px;}
.y11b{bottom:950.696250px;}
.y3b{bottom:950.703750px;}
.y6b{bottom:950.733600px;}
.y1ba{bottom:952.393350px;}
.y1ed{bottom:952.528350px;}
.y189{bottom:969.561750px;}
.y156{bottom:969.777000px;}
.y9d{bottom:970.193100px;}
.y11a{bottom:970.194750px;}
.y3a{bottom:970.202250px;}
.y6a{bottom:970.232100px;}
.y1b9{bottom:971.887350px;}
.y1ec{bottom:972.022350px;}
.y6{bottom:982.701750px;}
.y188{bottom:989.060250px;}
.y155{bottom:989.275500px;}
.y119{bottom:989.693250px;}
.y39{bottom:989.700750px;}
.y9c{bottom:989.716500px;}
.y69{bottom:989.730600px;}
.y1b8{bottom:991.381350px;}
.y1eb{bottom:991.516350px;}
.y21d{bottom:992.906850px;}
.y187{bottom:1008.558750px;}
.y154{bottom:1008.774000px;}
.y118{bottom:1009.197450px;}
.y38{bottom:1009.199250px;}
.y9b{bottom:1009.215000px;}
.y68{bottom:1009.229100px;}
.y1b7{bottom:1010.875350px;}
.y1ea{bottom:1011.010350px;}
.y21c{bottom:1012.400850px;}
.y5{bottom:1015.695750px;}
.y186{bottom:1028.057250px;}
.y153{bottom:1028.272500px;}
.y117{bottom:1028.695950px;}
.y37{bottom:1028.697750px;}
.y9a{bottom:1028.713500px;}
.y67{bottom:1028.727600px;}
.y1b6{bottom:1030.369350px;}
.y1e9{bottom:1030.504350px;}
.y185{bottom:1047.555750px;}
.y152{bottom:1047.771000px;}
.y116{bottom:1048.194450px;}
.y36{bottom:1048.196250px;}
.y99{bottom:1048.212000px;}
.y66{bottom:1048.226100px;}
.y4{bottom:1048.689750px;}
.y1b5{bottom:1049.863350px;}
.y21b{bottom:1049.903850px;}
.y1e8{bottom:1049.998350px;}
.y184{bottom:1067.054250px;}
.y151{bottom:1067.269500px;}
.y115{bottom:1067.692950px;}
.y35{bottom:1067.694750px;}
.y98{bottom:1067.710500px;}
.y65{bottom:1067.724600px;}
.y1b4{bottom:1069.357350px;}
.y21a{bottom:1069.397850px;}
.y1e7{bottom:1069.492350px;}
.y183{bottom:1086.552750px;}
.y150{bottom:1086.768000px;}
.y114{bottom:1087.191450px;}
.y34{bottom:1087.193250px;}
.y97{bottom:1087.209000px;}
.y64{bottom:1087.223100px;}
.y1b3{bottom:1088.851350px;}
.y219{bottom:1088.891850px;}
.y1e6{bottom:1088.986350px;}
.y182{bottom:1106.051250px;}
.y14f{bottom:1106.266500px;}
.y113{bottom:1106.689950px;}
.y33{bottom:1106.691750px;}
.y96{bottom:1106.707500px;}
.y63{bottom:1106.721600px;}
.y1b2{bottom:1108.345350px;}
.y218{bottom:1108.385850px;}
.y1e5{bottom:1108.480350px;}
.y32{bottom:1140.621300px;}
.y3{bottom:1141.152900px;}
.y31{bottom:1177.129050px;}
.y2{bottom:1177.660650px;}
.h1a{height:26.585280px;}
.h7{height:32.493120px;}
.h11{height:39.096000px;}
.h1e{height:39.114600px;}
.h9{height:41.268000px;}
.h4{height:41.441895px;}
.h2{height:42.421875px;}
.ha{height:45.612000px;}
.h24{height:45.701280px;}
.h23{height:46.457280px;}
.h18{height:46.727880px;}
.h17{height:46.736880px;}
.h16{height:46.810680px;}
.h20{height:46.817280px;}
.h21{height:46.841280px;}
.h22{height:47.009280px;}
.h12{height:47.068680px;}
.h19{height:47.084280px;}
.hb{height:47.520000px;}
.h8{height:47.784000px;}
.h3{height:47.888672px;}
.h10{height:49.698240px;}
.hd{height:54.578760px;}
.hf{height:54.856560px;}
.h1c{height:54.884160px;}
.h1f{height:54.914160px;}
.h1d{height:54.920160px;}
.h1b{height:54.933360px;}
.hc{height:54.938160px;}
.he{height:54.944160px;}
.h6{height:68.040960px;}
.h14{height:68.310000px;}
.h15{height:69.120000px;}
.h5{height:77.760000px;}
.h13{height:99.144000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:94.606350px;}
.x1{left:95.669250px;}
.x3{left:104.169150px;}
.x4{left:108.425250px;}
.x31{left:178.056600px;}
.x45{left:181.587750px;}
.x14{left:185.097300px;}
.x3d{left:188.222100px;}
.x23{left:191.806800px;}
.xb{left:194.277300px;}
.x3b{left:201.384600px;}
.xa{left:203.673300px;}
.x13{left:204.955800px;}
.x22{left:206.589300px;}
.x2c{left:208.377600px;}
.x1d{left:210.045300px;}
.x33{left:263.093100px;}
.x15{left:270.133800px;}
.x3e{left:273.258600px;}
.x25{left:276.843300px;}
.xd{left:279.327300px;}
.xc{left:285.348300px;}
.x32{left:286.421100px;}
.x8{left:290.074500px;}
.x24{left:291.612300px;}
.x2d{left:293.400600px;}
.x1e{left:295.081800px;}
.x35{left:348.129600px;}
.x17{left:355.170300px;}
.x3f{left:356.688600px;}
.x44{left:358.587000px;}
.x27{left:361.879800px;}
.xe{left:365.187300px;}
.x34{left:371.457600px;}
.x16{left:375.028800px;}
.x26{left:376.648800px;}
.x2e{left:378.437100px;}
.x1f{left:380.118300px;}
.x5{left:457.083000px;}
.x36{left:464.027100px;}
.x7{left:469.837350px;}
.x18{left:471.067800px;}
.x40{left:474.192600px;}
.x28{left:477.777300px;}
.xf{left:480.274800px;}
.x3c{left:550.130100px;}
.x38{left:555.219600px;}
.x1a{left:557.170800px;}
.x42{left:560.295600px;}
.x29{left:563.880300px;}
.x11{left:566.391300px;}
.x10{left:572.412300px;}
.x37{left:573.458100px;}
.x19{left:577.029300px;}
.x41{left:578.534100px;}
.x2f{left:580.410600px;}
.x20{left:582.132300px;}
.x2{left:591.363600px;}
.x47{left:633.657750px;}
.x3a{left:636.233100px;}
.x1c{left:643.273800px;}
.x43{left:646.398600px;}
.x2b{left:649.969800px;}
.x12{left:653.317800px;}
.x39{left:659.561100px;}
.x1b{left:663.132300px;}
.x2a{left:664.752300px;}
.x30{left:666.500100px;}
.x21{left:668.235300px;}
.x9{left:771.214500px;}
.x6{left:774.744150px;}
@media print{
.v2{vertical-align:-22.292800pt;}
.v4{vertical-align:-21.280000pt;}
.v8{vertical-align:-18.240000pt;}
.va{vertical-align:-1.248000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:16.992000pt;}
.v6{vertical-align:18.207467pt;}
.v5{vertical-align:19.232000pt;}
.v3{vertical-align:21.264000pt;}
.v1{vertical-align:26.346667pt;}
.v7{vertical-align:53.376000pt;}
.ls37{letter-spacing:-0.448000pt;}
.ls3a{letter-spacing:-0.168000pt;}
.ls39{letter-spacing:-0.056000pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.038080pt;}
.ls27{letter-spacing:0.056000pt;}
.ls25{letter-spacing:0.112000pt;}
.ls4f{letter-spacing:0.137813pt;}
.ls5a{letter-spacing:0.168000pt;}
.ls62{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.383040pt;}
.ls4a{letter-spacing:0.383253pt;}
.ls48{letter-spacing:0.383787pt;}
.ls58{letter-spacing:0.385099pt;}
.ls50{letter-spacing:0.391680pt;}
.ls26{letter-spacing:0.392000pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.504000pt;}
.ls7{letter-spacing:0.506667pt;}
.ls77{letter-spacing:0.522240pt;}
.lsd{letter-spacing:0.557333pt;}
.ls3e{letter-spacing:0.560000pt;}
.ls41{letter-spacing:0.574933pt;}
.ls40{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.609280pt;}
.ls15{letter-spacing:0.616000pt;}
.ls3f{letter-spacing:0.636800pt;}
.ls29{letter-spacing:0.672000pt;}
.ls67{letter-spacing:0.718080pt;}
.ls70{letter-spacing:0.720000pt;}
.ls56{letter-spacing:0.728000pt;}
.ls60{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.784000pt;}
.ls4c{letter-spacing:0.816000pt;}
.ls35{letter-spacing:0.840000pt;}
.ls6e{letter-spacing:0.864000pt;}
.ls5{letter-spacing:0.867413pt;}
.ls24{letter-spacing:0.896000pt;}
.ls6c{letter-spacing:0.912000pt;}
.ls18{letter-spacing:0.952000pt;}
.ls51{letter-spacing:0.960000pt;}
.ls4b{letter-spacing:1.008000pt;}
.ls3{letter-spacing:1.025173pt;}
.ls4{letter-spacing:1.025707pt;}
.ls2{letter-spacing:1.037227pt;}
.ls5b{letter-spacing:1.056000pt;}
.ls8{letter-spacing:1.064000pt;}
.ls5e{letter-spacing:1.065067pt;}
.ls65{letter-spacing:1.104000pt;}
.lsb{letter-spacing:1.114667pt;}
.ls20{letter-spacing:1.120000pt;}
.ls6b{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.165333pt;}
.ls55{letter-spacing:1.176000pt;}
.ls6f{letter-spacing:1.200000pt;}
.lsf{letter-spacing:1.216000pt;}
.ls16{letter-spacing:1.232000pt;}
.ls6a{letter-spacing:1.248000pt;}
.ls12{letter-spacing:1.266667pt;}
.ls2d{letter-spacing:1.288000pt;}
.ls6{letter-spacing:1.290667pt;}
.ls75{letter-spacing:1.296000pt;}
.ls68{letter-spacing:1.305600pt;}
.ls21{letter-spacing:1.344000pt;}
.ls6d{letter-spacing:1.392000pt;}
.ls13{letter-spacing:1.400000pt;}
.lse{letter-spacing:1.418667pt;}
.ls63{letter-spacing:1.440000pt;}
.ls1e{letter-spacing:1.456000pt;}
.ls64{letter-spacing:1.488000pt;}
.ls2f{letter-spacing:1.512000pt;}
.ls1{letter-spacing:1.525333pt;}
.ls0{letter-spacing:1.536000pt;}
.ls57{letter-spacing:1.568000pt;}
.ls10{letter-spacing:1.570667pt;}
.ls69{letter-spacing:1.584000pt;}
.ls3c{letter-spacing:1.624000pt;}
.ls1f{letter-spacing:1.680000pt;}
.lsa{letter-spacing:1.722667pt;}
.ls5c{letter-spacing:1.728000pt;}
.ls2b{letter-spacing:1.736000pt;}
.ls11{letter-spacing:1.773333pt;}
.ls72{letter-spacing:1.776000pt;}
.ls2c{letter-spacing:1.792000pt;}
.ls36{letter-spacing:1.818667pt;}
.ls3b{letter-spacing:1.848000pt;}
.ls73{letter-spacing:1.872000pt;}
.ls30{letter-spacing:1.904000pt;}
.ls5d{letter-spacing:1.920000pt;}
.ls9{letter-spacing:1.925333pt;}
.ls3d{letter-spacing:1.960000pt;}
.ls74{letter-spacing:1.968000pt;}
.ls1a{letter-spacing:2.016000pt;}
.ls71{letter-spacing:2.064000pt;}
.ls23{letter-spacing:2.072000pt;}
.ls5f{letter-spacing:2.112000pt;}
.ls2a{letter-spacing:2.128000pt;}
.ls76{letter-spacing:2.160000pt;}
.ls17{letter-spacing:2.184000pt;}
.ls33{letter-spacing:2.200533pt;}
.ls61{letter-spacing:2.208000pt;}
.ls59{letter-spacing:2.240000pt;}
.ls31{letter-spacing:2.296000pt;}
.ls32{letter-spacing:2.314133pt;}
.ls66{letter-spacing:2.405333pt;}
.ls19{letter-spacing:2.464000pt;}
.ls34{letter-spacing:2.520000pt;}
.ls22{letter-spacing:2.576000pt;}
.ls54{letter-spacing:2.632000pt;}
.ls52{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:2.968000pt;}
.ls14{letter-spacing:3.304000pt;}
.ls1c{letter-spacing:3.976000pt;}
.ls49{letter-spacing:57.456000pt;}
.ls47{letter-spacing:76.800000pt;}
.ls46{letter-spacing:163.824000pt;}
.ls42{letter-spacing:176.160000pt;}
.ls44{letter-spacing:181.920000pt;}
.ls45{letter-spacing:188.496000pt;}
.ls43{letter-spacing:194.256000pt;}
.ws2{word-spacing:-17.136000pt;}
.ws88{word-spacing:-15.722667pt;}
.ws6b{word-spacing:-15.136000pt;}
.ws22{word-spacing:-14.784000pt;}
.ws6c{word-spacing:-14.672000pt;}
.ws55{word-spacing:-14.392000pt;}
.ws20{word-spacing:-13.552000pt;}
.ws5b{word-spacing:-12.624000pt;}
.ws1{word-spacing:-12.565333pt;}
.ws57{word-spacing:-12.413333pt;}
.wsac{word-spacing:-12.336000pt;}
.ws5d{word-spacing:-12.288000pt;}
.ws1f{word-spacing:-12.264000pt;}
.ws61{word-spacing:-12.240000pt;}
.ws0{word-spacing:-12.116693pt;}
.ws5f{word-spacing:-12.096000pt;}
.ws58{word-spacing:-11.856000pt;}
.ws63{word-spacing:-11.280000pt;}
.ws54{word-spacing:-9.558080pt;}
.ws21{word-spacing:-8.986880pt;}
.ws8a{word-spacing:-8.976000pt;}
.ws89{word-spacing:-8.388480pt;}
.ws56{word-spacing:-8.234347pt;}
.wsad{word-spacing:-8.192640pt;}
.ws5e{word-spacing:-8.062080pt;}
.ws2f{word-spacing:-4.032000pt;}
.ws94{word-spacing:-3.920000pt;}
.ws67{word-spacing:-3.864000pt;}
.ws66{word-spacing:-3.752000pt;}
.ws7b{word-spacing:-3.584000pt;}
.ws75{word-spacing:-3.528000pt;}
.ws77{word-spacing:-3.472000pt;}
.ws80{word-spacing:-3.416000pt;}
.ws83{word-spacing:-3.360000pt;}
.ws14{word-spacing:-3.304000pt;}
.ws2b{word-spacing:-3.248000pt;}
.ws8b{word-spacing:-3.192000pt;}
.ws3a{word-spacing:-3.136000pt;}
.ws82{word-spacing:-3.080000pt;}
.ws5{word-spacing:-2.989333pt;}
.wsa8{word-spacing:-2.976000pt;}
.ws4f{word-spacing:-2.912000pt;}
.ws8d{word-spacing:-2.856000pt;}
.ws99{word-spacing:-2.832000pt;}
.ws33{word-spacing:-2.800000pt;}
.wsaf{word-spacing:-2.784000pt;}
.ws7f{word-spacing:-2.744000pt;}
.ws93{word-spacing:-2.688000pt;}
.ws95{word-spacing:-2.632000pt;}
.ws48{word-spacing:-2.520000pt;}
.ws45{word-spacing:-2.464000pt;}
.ws96{word-spacing:-2.408000pt;}
.wsb6{word-spacing:-2.352000pt;}
.ws9c{word-spacing:-2.256000pt;}
.ws7c{word-spacing:-2.240000pt;}
.wsa2{word-spacing:-2.208000pt;}
.wsba{word-spacing:-2.160000pt;}
.ws91{word-spacing:-2.072000pt;}
.ws97{word-spacing:-2.016000pt;}
.ws78{word-spacing:-1.904000pt;}
.ws79{word-spacing:-1.792000pt;}
.ws40{word-spacing:-1.680000pt;}
.ws1c{word-spacing:-1.568000pt;}
.wsb0{word-spacing:-1.536000pt;}
.wsb5{word-spacing:-1.488000pt;}
.ws18{word-spacing:-1.456000pt;}
.wsa9{word-spacing:-1.440000pt;}
.ws2d{word-spacing:-1.400000pt;}
.ws26{word-spacing:-1.344000pt;}
.ws64{word-spacing:-1.288000pt;}
.wsb1{word-spacing:-1.248000pt;}
.ws8c{word-spacing:-1.232000pt;}
.wsa5{word-spacing:-1.152000pt;}
.ws70{word-spacing:-1.120000pt;}
.wsa7{word-spacing:-1.056000pt;}
.ws23{word-spacing:-1.008000pt;}
.ws98{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.896000pt;}
.ws46{word-spacing:-0.840000pt;}
.ws15{word-spacing:-0.784000pt;}
.wsab{word-spacing:-0.768000pt;}
.ws3f{word-spacing:-0.728000pt;}
.wsc0{word-spacing:-0.720000pt;}
.ws13{word-spacing:-0.616000pt;}
.ws69{word-spacing:-0.576000pt;}
.ws34{word-spacing:-0.560000pt;}
.wsb2{word-spacing:-0.528000pt;}
.ws19{word-spacing:-0.448000pt;}
.ws25{word-spacing:-0.392000pt;}
.wsb3{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.336000pt;}
.ws51{word-spacing:-0.224000pt;}
.wsbc{word-spacing:-0.192000pt;}
.ws36{word-spacing:-0.056000pt;}
.wsb{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.056000pt;}
.ws4d{word-spacing:0.112000pt;}
.ws44{word-spacing:0.168000pt;}
.ws9e{word-spacing:0.192000pt;}
.ws38{word-spacing:0.224000pt;}
.wsb4{word-spacing:0.240000pt;}
.ws39{word-spacing:0.280000pt;}
.ws1a{word-spacing:0.336000pt;}
.ws9d{word-spacing:0.384000pt;}
.ws8f{word-spacing:0.392000pt;}
.ws3d{word-spacing:0.616000pt;}
.wsd{word-spacing:0.658667pt;}
.ws68{word-spacing:0.709333pt;}
.wsc{word-spacing:0.760000pt;}
.wsa1{word-spacing:0.768000pt;}
.ws74{word-spacing:0.896000pt;}
.wsa4{word-spacing:0.912000pt;}
.wsb9{word-spacing:1.008000pt;}
.wsf{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.056000pt;}
.ws7e{word-spacing:1.064000pt;}
.wsc4{word-spacing:1.104000pt;}
.ws8e{word-spacing:1.120000pt;}
.wsaa{word-spacing:1.152000pt;}
.ws10{word-spacing:1.165333pt;}
.ws52{word-spacing:1.176000pt;}
.wsae{word-spacing:1.200000pt;}
.ws50{word-spacing:1.232000pt;}
.ws2a{word-spacing:1.288000pt;}
.ws8{word-spacing:1.317333pt;}
.ws90{word-spacing:1.344000pt;}
.ws65{word-spacing:1.568000pt;}
.wse{word-spacing:1.621333pt;}
.ws37{word-spacing:1.624000pt;}
.ws81{word-spacing:1.680000pt;}
.ws9{word-spacing:1.722667pt;}
.ws6a{word-spacing:1.728000pt;}
.wsa{word-spacing:1.773333pt;}
.ws47{word-spacing:1.792000pt;}
.ws7{word-spacing:1.824000pt;}
.ws4e{word-spacing:1.848000pt;}
.wsbe{word-spacing:1.920000pt;}
.ws11{word-spacing:1.960000pt;}
.ws9a{word-spacing:1.968000pt;}
.ws27{word-spacing:2.016000pt;}
.ws6{word-spacing:2.026667pt;}
.wsa0{word-spacing:2.064000pt;}
.ws31{word-spacing:2.072000pt;}
.wsa3{word-spacing:2.112000pt;}
.ws7d{word-spacing:2.128000pt;}
.ws32{word-spacing:2.184000pt;}
.ws4{word-spacing:2.208000pt;}
.wsc1{word-spacing:2.256000pt;}
.ws41{word-spacing:2.296000pt;}
.ws7a{word-spacing:2.352000pt;}
.ws3e{word-spacing:2.408000pt;}
.wsbb{word-spacing:2.448000pt;}
.ws1e{word-spacing:2.464000pt;}
.wsc3{word-spacing:2.496000pt;}
.ws2c{word-spacing:2.520000pt;}
.wsbd{word-spacing:2.544000pt;}
.ws85{word-spacing:2.584000pt;}
.ws9b{word-spacing:2.592000pt;}
.ws43{word-spacing:2.632000pt;}
.ws42{word-spacing:2.688000pt;}
.wsbf{word-spacing:2.736000pt;}
.ws72{word-spacing:2.744000pt;}
.ws35{word-spacing:2.800000pt;}
.ws17{word-spacing:2.856000pt;}
.wsb7{word-spacing:2.880000pt;}
.ws4a{word-spacing:2.912000pt;}
.ws73{word-spacing:2.968000pt;}
.wsb8{word-spacing:2.976000pt;}
.ws49{word-spacing:3.192000pt;}
.ws9f{word-spacing:3.216000pt;}
.wsc2{word-spacing:3.264000pt;}
.ws71{word-spacing:3.304000pt;}
.wsa6{word-spacing:3.456000pt;}
.ws3b{word-spacing:3.584000pt;}
.ws3c{word-spacing:3.696000pt;}
.ws1d{word-spacing:3.752000pt;}
.ws24{word-spacing:3.808000pt;}
.ws84{word-spacing:3.850667pt;}
.ws92{word-spacing:3.976000pt;}
.ws28{word-spacing:4.032000pt;}
.ws4b{word-spacing:4.200000pt;}
.ws76{word-spacing:4.312000pt;}
.ws53{word-spacing:4.704000pt;}
.ws4c{word-spacing:4.984000pt;}
.ws16{word-spacing:5.152000pt;}
.ws12{word-spacing:6.216000pt;}
.ws87{word-spacing:7.194667pt;}
.ws86{word-spacing:18.898667pt;}
.ws62{word-spacing:21.552000pt;}
.ws60{word-spacing:64.320000pt;}
.ws5c{word-spacing:108.240000pt;}
.ws6e{word-spacing:137.952000pt;}
.ws6f{word-spacing:138.000000pt;}
.ws5a{word-spacing:148.608000pt;}
.ws6d{word-spacing:230.016000pt;}
.ws59{word-spacing:886.608000pt;}
._5{margin-left:-8.461440pt;}
._a{margin-left:-6.216000pt;}
._8{margin-left:-5.264000pt;}
._2{margin-left:-4.165333pt;}
._7{margin-left:-2.861333pt;}
._0{margin-left:-1.877333pt;}
._6{margin-left:-0.893333pt;}
._4{width:1.248000pt;}
._3{width:2.496000pt;}
._9{width:3.400000pt;}
._15{width:25.968000pt;}
._14{width:30.912000pt;}
._19{width:43.728000pt;}
._d{width:55.584000pt;}
._16{width:61.344000pt;}
._18{width:67.920000pt;}
._b{width:77.712000pt;}
._11{width:79.440000pt;}
._1a{width:86.880000pt;}
._f{width:91.824000pt;}
._e{width:93.408000pt;}
._17{width:104.928000pt;}
._c{width:115.536000pt;}
._12{width:117.264000pt;}
._10{width:129.600000pt;}
._1c{width:166.637333pt;}
._13{width:189.120000pt;}
._1d{width:194.592000pt;}
._1b{width:307.632000pt;}
._1{width:1036.522667pt;}
.fsb{font-size:32.640000pt;}
.fsc{font-size:32.784000pt;}
.fs9{font-size:34.453333pt;}
.fs8{font-size:38.080000pt;}
.fs6{font-size:39.893333pt;}
.fs5{font-size:47.146667pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:85.262800pt;}
.y30{bottom:86.585067pt;}
.y1b1{bottom:116.330533pt;}
.y181{bottom:116.738667pt;}
.y62{bottom:116.928533pt;}
.y14e{bottom:116.992667pt;}
.y95{bottom:117.062000pt;}
.y145{bottom:117.094000pt;}
.y28{bottom:117.214267pt;}
.y2f{bottom:117.228267pt;}
.y217{bottom:118.603867pt;}
.y1e4{bottom:118.651867pt;}
.yf6{bottom:120.454400pt;}
.yf5{bottom:133.259467pt;}
.y1b0{bottom:133.658533pt;}
.y180{bottom:134.070667pt;}
.y61{bottom:134.260533pt;}
.y94{bottom:134.394000pt;}
.y144{bottom:134.426000pt;}
.y27{bottom:134.546267pt;}
.y2e{bottom:134.560267pt;}
.y216{bottom:135.931867pt;}
.y1e3{bottom:135.979867pt;}
.y14d{bottom:145.420667pt;}
.yf4{bottom:150.587467pt;}
.y1af{bottom:150.986533pt;}
.y17f{bottom:151.402667pt;}
.y60{bottom:151.592533pt;}
.y93{bottom:151.728667pt;}
.y143{bottom:151.758000pt;}
.y26{bottom:151.878267pt;}
.y2d{bottom:151.892267pt;}
.y215{bottom:153.259867pt;}
.y1e2{bottom:153.307867pt;}
.y14c{bottom:161.932667pt;}
.yf3{bottom:167.915467pt;}
.y1ae{bottom:168.314533pt;}
.y17e{bottom:168.734667pt;}
.y5f{bottom:168.924533pt;}
.y92{bottom:169.060667pt;}
.y142{bottom:169.090000pt;}
.y25{bottom:169.210267pt;}
.y2c{bottom:169.224267pt;}
.y214{bottom:170.587867pt;}
.y1e1{bottom:170.635867pt;}
.y14b{bottom:179.884667pt;}
.yf2{bottom:185.243467pt;}
.y1ad{bottom:185.642533pt;}
.y17d{bottom:186.066667pt;}
.y5e{bottom:186.256533pt;}
.y91{bottom:186.396667pt;}
.y141{bottom:186.422000pt;}
.y24{bottom:186.542267pt;}
.y2b{bottom:186.556267pt;}
.y213{bottom:187.915867pt;}
.y1e0{bottom:187.963867pt;}
.y1ac{bottom:202.970533pt;}
.y17c{bottom:203.398667pt;}
.y5d{bottom:203.588533pt;}
.y90{bottom:203.728667pt;}
.y140{bottom:203.754000pt;}
.y23{bottom:203.874267pt;}
.y2a{bottom:203.888267pt;}
.y212{bottom:205.243867pt;}
.y1df{bottom:205.291867pt;}
.y14a{bottom:207.509467pt;}
.yef{bottom:214.547467pt;}
.yed{bottom:214.552133pt;}
.yf0{bottom:214.559467pt;}
.y1ab{bottom:220.298533pt;}
.y17b{bottom:220.730667pt;}
.y5c{bottom:220.920533pt;}
.y8f{bottom:221.060667pt;}
.y13f{bottom:221.086000pt;}
.y22{bottom:221.206267pt;}
.y29{bottom:221.220267pt;}
.y211{bottom:222.571867pt;}
.y1de{bottom:222.619867pt;}
.y149{bottom:224.837467pt;}
.yee{bottom:227.879467pt;}
.yec{bottom:227.884133pt;}
.yf1{bottom:227.891467pt;}
.y1aa{bottom:237.626533pt;}
.y17a{bottom:238.062667pt;}
.y5b{bottom:238.252533pt;}
.y13e{bottom:238.418000pt;}
.y8e{bottom:238.476533pt;}
.y210{bottom:239.899867pt;}
.y1dd{bottom:239.947867pt;}
.y148{bottom:242.165467pt;}
.ye9{bottom:246.340133pt;}
.yea{bottom:246.352133pt;}
.ye7{bottom:246.424000pt;}
.y1a9{bottom:254.954533pt;}
.y179{bottom:255.394667pt;}
.y5a{bottom:255.584533pt;}
.y13d{bottom:255.750000pt;}
.y8d{bottom:255.808533pt;}
.y20f{bottom:257.227867pt;}
.y1dc{bottom:257.275867pt;}
.y147{bottom:259.493467pt;}
.ye8{bottom:259.672133pt;}
.yeb{bottom:259.684133pt;}
.ye6{bottom:259.756000pt;}
.y1a8{bottom:272.282533pt;}
.y178{bottom:272.726667pt;}
.y59{bottom:272.916533pt;}
.y13c{bottom:273.082000pt;}
.y8c{bottom:273.140533pt;}
.y20e{bottom:274.555867pt;}
.y1db{bottom:274.603867pt;}
.y146{bottom:276.821467pt;}
.ye3{bottom:278.536000pt;}
.ye4{bottom:278.548000pt;}
.y1a7{bottom:289.610533pt;}
.y177{bottom:290.058667pt;}
.y58{bottom:290.248533pt;}
.y13b{bottom:290.414000pt;}
.y8b{bottom:290.472533pt;}
.ye2{bottom:291.868000pt;}
.ye5{bottom:291.880000pt;}
.y20d{bottom:291.883867pt;}
.y1da{bottom:291.931867pt;}
.y1a6{bottom:306.959867pt;}
.y176{bottom:307.390667pt;}
.y112{bottom:307.412400pt;}
.y57{bottom:307.580533pt;}
.y13a{bottom:307.746000pt;}
.y8a{bottom:307.804533pt;}
.y20c{bottom:309.211867pt;}
.y1d9{bottom:309.259867pt;}
.ydf{bottom:310.648000pt;}
.ye0{bottom:310.660000pt;}
.y21{bottom:317.808933pt;}
.yde{bottom:323.980000pt;}
.ye1{bottom:323.992000pt;}
.y1a5{bottom:324.287867pt;}
.y175{bottom:324.722667pt;}
.y111{bottom:324.744400pt;}
.y56{bottom:324.912533pt;}
.y139{bottom:325.078000pt;}
.y89{bottom:325.136533pt;}
.y20b{bottom:326.539867pt;}
.y1d8{bottom:326.587867pt;}
.y1a4{bottom:341.615867pt;}
.y174{bottom:342.054667pt;}
.y55{bottom:342.244533pt;}
.y138{bottom:342.410000pt;}
.y88{bottom:342.468533pt;}
.ydb{bottom:342.760000pt;}
.ydc{bottom:342.772000pt;}
.y20a{bottom:343.867867pt;}
.y1d7{bottom:343.915867pt;}
.y20{bottom:352.148267pt;}
.yda{bottom:356.092000pt;}
.ydd{bottom:356.104000pt;}
.y1a3{bottom:358.943867pt;}
.y110{bottom:359.085600pt;}
.y173{bottom:359.386667pt;}
.y54{bottom:359.576533pt;}
.y137{bottom:359.742000pt;}
.y87{bottom:359.800533pt;}
.y1d6{bottom:361.243867pt;}
.y209{bottom:361.507867pt;}
.y1f{bottom:369.476267pt;}
.yd7{bottom:374.872000pt;}
.yd8{bottom:374.884000pt;}
.y1a2{bottom:376.330533pt;}
.y172{bottom:376.718667pt;}
.y53{bottom:376.908533pt;}
.y136{bottom:377.074000pt;}
.y86{bottom:377.132533pt;}
.y1d5{bottom:378.571867pt;}
.y208{bottom:378.835867pt;}
.y1e{bottom:386.804267pt;}
.yd6{bottom:388.204000pt;}
.yd9{bottom:388.216000pt;}
.y1a1{bottom:393.658533pt;}
.y171{bottom:394.050667pt;}
.y52{bottom:394.240533pt;}
.y135{bottom:394.406000pt;}
.y85{bottom:394.464533pt;}
.y1d4{bottom:395.899867pt;}
.y207{bottom:396.163867pt;}
.y1d{bottom:404.132267pt;}
.yd3{bottom:406.984000pt;}
.yd4{bottom:406.996000pt;}
.y1a0{bottom:410.986533pt;}
.y170{bottom:411.382667pt;}
.y51{bottom:411.572533pt;}
.y10f{bottom:411.599200pt;}
.y134{bottom:411.738000pt;}
.y84{bottom:411.796533pt;}
.y1d3{bottom:413.227867pt;}
.y206{bottom:413.491867pt;}
.yd2{bottom:420.316000pt;}
.yd5{bottom:420.328000pt;}
.y1c{bottom:421.460267pt;}
.y19f{bottom:428.314533pt;}
.y16f{bottom:428.714667pt;}
.y50{bottom:428.904533pt;}
.y10e{bottom:428.931200pt;}
.y133{bottom:429.070000pt;}
.y83{bottom:429.128533pt;}
.y1d2{bottom:430.555867pt;}
.y205{bottom:430.819867pt;}
.y1b{bottom:438.788267pt;}
.ycf{bottom:439.096000pt;}
.yd0{bottom:439.108000pt;}
.ycd{bottom:439.177867pt;}
.y19e{bottom:445.642533pt;}
.y16e{bottom:446.046667pt;}
.y4f{bottom:446.236533pt;}
.y10d{bottom:446.263200pt;}
.y132{bottom:446.402000pt;}
.y82{bottom:446.460533pt;}
.y1d1{bottom:447.883867pt;}
.y204{bottom:448.147867pt;}
.yce{bottom:452.428000pt;}
.yd1{bottom:452.440000pt;}
.ycc{bottom:452.509867pt;}
.y1a{bottom:456.116267pt;}
.y19d{bottom:462.970533pt;}
.y16d{bottom:463.378667pt;}
.y4e{bottom:463.572533pt;}
.y10c{bottom:463.595200pt;}
.y131{bottom:463.734000pt;}
.y81{bottom:463.792533pt;}
.y1d0{bottom:465.211867pt;}
.y203{bottom:465.475867pt;}
.yc9{bottom:471.289867pt;}
.yca{bottom:471.301867pt;}
.y19{bottom:473.444267pt;}
.y19c{bottom:480.298533pt;}
.y16c{bottom:480.710667pt;}
.y4d{bottom:480.904533pt;}
.y10b{bottom:480.927200pt;}
.y130{bottom:481.066000pt;}
.y80{bottom:481.124533pt;}
.y1cf{bottom:482.539867pt;}
.y202{bottom:482.803867pt;}
.yc8{bottom:484.621867pt;}
.ycb{bottom:484.633867pt;}
.y18{bottom:490.772267pt;}
.y19b{bottom:497.626533pt;}
.y16b{bottom:498.042667pt;}
.y4c{bottom:498.236533pt;}
.y10a{bottom:498.259200pt;}
.y12f{bottom:498.398000pt;}
.y7f{bottom:498.456533pt;}
.y1ce{bottom:499.867867pt;}
.y201{bottom:500.131867pt;}
.yc5{bottom:503.401867pt;}
.yc6{bottom:503.413867pt;}
.y17{bottom:508.100267pt;}
.y19a{bottom:514.954533pt;}
.y16a{bottom:515.374667pt;}
.y4b{bottom:515.568533pt;}
.y109{bottom:515.591200pt;}
.y12e{bottom:515.730000pt;}
.y7e{bottom:515.788533pt;}
.yc4{bottom:516.733867pt;}
.yc7{bottom:516.745867pt;}
.y1cd{bottom:517.339867pt;}
.y200{bottom:517.459867pt;}
.y16{bottom:525.428267pt;}
.y199{bottom:532.282533pt;}
.y169{bottom:532.706667pt;}
.y108{bottom:532.923200pt;}
.y12d{bottom:533.062000pt;}
.y7d{bottom:533.120533pt;}
.y1cc{bottom:534.667867pt;}
.y1ff{bottom:534.787867pt;}
.yc0{bottom:535.513867pt;}
.yc2{bottom:535.525867pt;}
.ybf{bottom:542.173867pt;}
.y15{bottom:542.756267pt;}
.yc1{bottom:548.845867pt;}
.yc3{bottom:548.857867pt;}
.y198{bottom:549.610533pt;}
.y4a{bottom:549.909733pt;}
.y168{bottom:550.038667pt;}
.y107{bottom:550.255200pt;}
.y12c{bottom:550.394000pt;}
.y7c{bottom:550.452533pt;}
.y1cb{bottom:551.995867pt;}
.y1fe{bottom:552.115867pt;}
.y14{bottom:560.084267pt;}
.y197{bottom:567.002533pt;}
.y167{bottom:567.370667pt;}
.y106{bottom:567.587200pt;}
.ybc{bottom:567.613867pt;}
.ybd{bottom:567.625867pt;}
.y12b{bottom:567.726000pt;}
.y7b{bottom:567.784533pt;}
.y1ca{bottom:569.323867pt;}
.y1fd{bottom:569.443867pt;}
.y13{bottom:577.412267pt;}
.ybb{bottom:580.945867pt;}
.ybe{bottom:580.957867pt;}
.y196{bottom:584.330533pt;}
.y166{bottom:584.702667pt;}
.y105{bottom:584.919200pt;}
.y12a{bottom:585.067333pt;}
.y7a{bottom:585.116533pt;}
.y1c9{bottom:586.651867pt;}
.y1fc{bottom:586.771867pt;}
.y12{bottom:594.740267pt;}
.yb8{bottom:599.725867pt;}
.yb9{bottom:599.737867pt;}
.yb6{bottom:599.791333pt;}
.y195{bottom:601.658533pt;}
.y165{bottom:602.034667pt;}
.y104{bottom:602.251200pt;}
.y129{bottom:602.399333pt;}
.y49{bottom:602.422000pt;}
.y79{bottom:602.448533pt;}
.y1c8{bottom:603.979867pt;}
.y1fb{bottom:604.099867pt;}
.y11{bottom:612.068267pt;}
.yb7{bottom:613.057867pt;}
.yba{bottom:613.069867pt;}
.yb5{bottom:613.123333pt;}
.y194{bottom:618.986533pt;}
.y164{bottom:619.366667pt;}
.y103{bottom:619.583200pt;}
.y128{bottom:619.731333pt;}
.y48{bottom:619.754000pt;}
.y78{bottom:619.780533pt;}
.y1c7{bottom:621.307867pt;}
.y1fa{bottom:621.427867pt;}
.y10{bottom:629.396267pt;}
.yb2{bottom:631.903333pt;}
.yb3{bottom:631.915333pt;}
.y193{bottom:636.314533pt;}
.y163{bottom:636.698667pt;}
.y102{bottom:636.915200pt;}
.y127{bottom:637.063333pt;}
.y47{bottom:637.086000pt;}
.y77{bottom:637.112533pt;}
.y1c6{bottom:638.635867pt;}
.y1f9{bottom:638.755867pt;}
.yb1{bottom:645.235333pt;}
.yb4{bottom:645.247333pt;}
.yf{bottom:646.724267pt;}
.y192{bottom:653.642533pt;}
.y162{bottom:654.030667pt;}
.y101{bottom:654.247200pt;}
.y126{bottom:654.395333pt;}
.y46{bottom:654.418000pt;}
.y76{bottom:654.444533pt;}
.y1c5{bottom:655.963867pt;}
.y1f8{bottom:656.083867pt;}
.yae{bottom:664.015333pt;}
.yaf{bottom:664.027333pt;}
.ye{bottom:664.052267pt;}
.y191{bottom:670.970533pt;}
.y161{bottom:671.362667pt;}
.y100{bottom:671.579200pt;}
.y125{bottom:671.727333pt;}
.y45{bottom:671.750000pt;}
.y75{bottom:671.776533pt;}
.y1c4{bottom:673.291867pt;}
.y1f7{bottom:673.411867pt;}
.yad{bottom:677.347333pt;}
.yb0{bottom:677.359333pt;}
.yd{bottom:681.380267pt;}
.y190{bottom:688.298533pt;}
.y160{bottom:688.694667pt;}
.yff{bottom:688.911200pt;}
.y124{bottom:689.075333pt;}
.y44{bottom:689.082000pt;}
.y74{bottom:689.108533pt;}
.y1c3{bottom:690.619867pt;}
.y1f6{bottom:690.739867pt;}
.yaa{bottom:695.959333pt;}
.yab{bottom:695.971333pt;}
.y18f{bottom:705.626533pt;}
.y15f{bottom:706.026667pt;}
.yfe{bottom:706.243200pt;}
.y123{bottom:706.407333pt;}
.y43{bottom:706.414000pt;}
.y73{bottom:706.440533pt;}
.y1c2{bottom:707.947867pt;}
.y1f5{bottom:708.067867pt;}
.ya9{bottom:709.291333pt;}
.yac{bottom:709.303333pt;}
.yc{bottom:717.606933pt;}
.y18e{bottom:722.954533pt;}
.y15e{bottom:723.358667pt;}
.yfd{bottom:723.575200pt;}
.y122{bottom:723.739333pt;}
.y42{bottom:723.746000pt;}
.y72{bottom:723.772533pt;}
.y1c1{bottom:725.275867pt;}
.y1f4{bottom:725.395867pt;}
.ya6{bottom:729.259333pt;}
.ya7{bottom:729.271333pt;}
.ya2{bottom:738.458267pt;}
.y18d{bottom:740.282533pt;}
.yb{bottom:740.604267pt;}
.y15d{bottom:740.690667pt;}
.yfc{bottom:740.907200pt;}
.y121{bottom:741.071333pt;}
.y41{bottom:741.078000pt;}
.y71{bottom:741.104533pt;}
.ya5{bottom:742.591333pt;}
.ya8{bottom:742.603333pt;}
.y1c0{bottom:742.603867pt;}
.y1f3{bottom:742.723867pt;}
.ya4{bottom:745.298267pt;}
.ya1{bottom:751.790267pt;}
.y18c{bottom:757.610533pt;}
.y15c{bottom:758.022667pt;}
.yfb{bottom:758.239200pt;}
.y120{bottom:758.403333pt;}
.y40{bottom:758.410000pt;}
.y70{bottom:758.436533pt;}
.y1bf{bottom:759.931867pt;}
.y1f2{bottom:760.051867pt;}
.ya3{bottom:762.050267pt;}
.ya{bottom:766.182800pt;}
.y18b{bottom:774.938533pt;}
.y15b{bottom:775.354667pt;}
.yfa{bottom:775.571200pt;}
.y11f{bottom:775.735333pt;}
.y3f{bottom:775.742000pt;}
.y6f{bottom:775.768533pt;}
.y1be{bottom:777.259867pt;}
.y1f1{bottom:777.379867pt;}
.y9{bottom:786.182800pt;}
.ya0{bottom:789.740133pt;}
.y15a{bottom:792.686667pt;}
.yf9{bottom:792.903200pt;}
.y11e{bottom:793.067333pt;}
.y3e{bottom:793.074000pt;}
.y6e{bottom:793.100533pt;}
.y1bd{bottom:794.587867pt;}
.y1f0{bottom:794.707867pt;}
.y8{bottom:806.182800pt;}
.y9f{bottom:807.068133pt;}
.y18a{bottom:809.279733pt;}
.y159{bottom:810.018667pt;}
.yf8{bottom:810.235200pt;}
.y11d{bottom:810.399333pt;}
.y3d{bottom:810.406000pt;}
.y6d{bottom:810.432533pt;}
.y1bc{bottom:811.915867pt;}
.y1ef{bottom:812.035867pt;}
.y158{bottom:827.350667pt;}
.y11c{bottom:827.731333pt;}
.y3c{bottom:827.738000pt;}
.y6c{bottom:827.764533pt;}
.y7{bottom:828.168667pt;}
.y1bb{bottom:829.243867pt;}
.y1ee{bottom:829.363867pt;}
.yf7{bottom:844.576400pt;}
.y157{bottom:844.682667pt;}
.y9e{bottom:845.061867pt;}
.y11b{bottom:845.063333pt;}
.y3b{bottom:845.070000pt;}
.y6b{bottom:845.096533pt;}
.y1ba{bottom:846.571867pt;}
.y1ed{bottom:846.691867pt;}
.y189{bottom:861.832667pt;}
.y156{bottom:862.024000pt;}
.y9d{bottom:862.393867pt;}
.y11a{bottom:862.395333pt;}
.y3a{bottom:862.402000pt;}
.y6a{bottom:862.428533pt;}
.y1b9{bottom:863.899867pt;}
.y1ec{bottom:864.019867pt;}
.y6{bottom:873.512667pt;}
.y188{bottom:879.164667pt;}
.y155{bottom:879.356000pt;}
.y119{bottom:879.727333pt;}
.y39{bottom:879.734000pt;}
.y9c{bottom:879.748000pt;}
.y69{bottom:879.760533pt;}
.y1b8{bottom:881.227867pt;}
.y1eb{bottom:881.347867pt;}
.y21d{bottom:882.583867pt;}
.y187{bottom:896.496667pt;}
.y154{bottom:896.688000pt;}
.y118{bottom:897.064400pt;}
.y38{bottom:897.066000pt;}
.y9b{bottom:897.080000pt;}
.y68{bottom:897.092533pt;}
.y1b7{bottom:898.555867pt;}
.y1ea{bottom:898.675867pt;}
.y21c{bottom:899.911867pt;}
.y5{bottom:902.840667pt;}
.y186{bottom:913.828667pt;}
.y153{bottom:914.020000pt;}
.y117{bottom:914.396400pt;}
.y37{bottom:914.398000pt;}
.y9a{bottom:914.412000pt;}
.y67{bottom:914.424533pt;}
.y1b6{bottom:915.883867pt;}
.y1e9{bottom:916.003867pt;}
.y185{bottom:931.160667pt;}
.y152{bottom:931.352000pt;}
.y116{bottom:931.728400pt;}
.y36{bottom:931.730000pt;}
.y99{bottom:931.744000pt;}
.y66{bottom:931.756533pt;}
.y4{bottom:932.168667pt;}
.y1b5{bottom:933.211867pt;}
.y21b{bottom:933.247867pt;}
.y1e8{bottom:933.331867pt;}
.y184{bottom:948.492667pt;}
.y151{bottom:948.684000pt;}
.y115{bottom:949.060400pt;}
.y35{bottom:949.062000pt;}
.y98{bottom:949.076000pt;}
.y65{bottom:949.088533pt;}
.y1b4{bottom:950.539867pt;}
.y21a{bottom:950.575867pt;}
.y1e7{bottom:950.659867pt;}
.y183{bottom:965.824667pt;}
.y150{bottom:966.016000pt;}
.y114{bottom:966.392400pt;}
.y34{bottom:966.394000pt;}
.y97{bottom:966.408000pt;}
.y64{bottom:966.420533pt;}
.y1b3{bottom:967.867867pt;}
.y219{bottom:967.903867pt;}
.y1e6{bottom:967.987867pt;}
.y182{bottom:983.156667pt;}
.y14f{bottom:983.348000pt;}
.y113{bottom:983.724400pt;}
.y33{bottom:983.726000pt;}
.y96{bottom:983.740000pt;}
.y63{bottom:983.752533pt;}
.y1b2{bottom:985.195867pt;}
.y218{bottom:985.231867pt;}
.y1e5{bottom:985.315867pt;}
.y32{bottom:1013.885600pt;}
.y3{bottom:1014.358133pt;}
.y31{bottom:1046.336933pt;}
.y2{bottom:1046.809467pt;}
.h1a{height:23.631360pt;}
.h7{height:28.882773pt;}
.h11{height:34.752000pt;}
.h1e{height:34.768533pt;}
.h9{height:36.682667pt;}
.h4{height:36.837240pt;}
.h2{height:37.708333pt;}
.ha{height:40.544000pt;}
.h24{height:40.623360pt;}
.h23{height:41.295360pt;}
.h18{height:41.535893pt;}
.h17{height:41.543893pt;}
.h16{height:41.609493pt;}
.h20{height:41.615360pt;}
.h21{height:41.636693pt;}
.h22{height:41.786027pt;}
.h12{height:41.838827pt;}
.h19{height:41.852693pt;}
.hb{height:42.240000pt;}
.h8{height:42.474667pt;}
.h3{height:42.567708pt;}
.h10{height:44.176213pt;}
.hd{height:48.514453pt;}
.hf{height:48.761387pt;}
.h1c{height:48.785920pt;}
.h1f{height:48.812587pt;}
.h1d{height:48.817920pt;}
.h1b{height:48.829653pt;}
.hc{height:48.833920pt;}
.he{height:48.839253pt;}
.h6{height:60.480853pt;}
.h14{height:60.720000pt;}
.h15{height:61.440000pt;}
.h5{height:69.120000pt;}
.h13{height:88.128000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:84.094533pt;}
.x1{left:85.039333pt;}
.x3{left:92.594800pt;}
.x4{left:96.378000pt;}
.x31{left:158.272533pt;}
.x45{left:161.411333pt;}
.x14{left:164.530933pt;}
.x3d{left:167.308533pt;}
.x23{left:170.494933pt;}
.xb{left:172.690933pt;}
.x3b{left:179.008533pt;}
.xa{left:181.042933pt;}
.x13{left:182.182933pt;}
.x22{left:183.634933pt;}
.x2c{left:185.224533pt;}
.x1d{left:186.706933pt;}
.x33{left:233.860533pt;}
.x15{left:240.118933pt;}
.x3e{left:242.896533pt;}
.x25{left:246.082933pt;}
.xd{left:248.290933pt;}
.xc{left:253.642933pt;}
.x32{left:254.596533pt;}
.x8{left:257.844000pt;}
.x24{left:259.210933pt;}
.x2d{left:260.800533pt;}
.x1e{left:262.294933pt;}
.x35{left:309.448533pt;}
.x17{left:315.706933pt;}
.x3f{left:317.056533pt;}
.x44{left:318.744000pt;}
.x27{left:321.670933pt;}
.xe{left:324.610933pt;}
.x34{left:330.184533pt;}
.x16{left:333.358933pt;}
.x26{left:334.798933pt;}
.x2e{left:336.388533pt;}
.x1f{left:337.882933pt;}
.x5{left:406.296000pt;}
.x36{left:412.468533pt;}
.x7{left:417.633200pt;}
.x18{left:418.726933pt;}
.x40{left:421.504533pt;}
.x28{left:424.690933pt;}
.xf{left:426.910933pt;}
.x3c{left:489.004533pt;}
.x38{left:493.528533pt;}
.x1a{left:495.262933pt;}
.x42{left:498.040533pt;}
.x29{left:501.226933pt;}
.x11{left:503.458933pt;}
.x10{left:508.810933pt;}
.x37{left:509.740533pt;}
.x19{left:512.914933pt;}
.x41{left:514.252533pt;}
.x2f{left:515.920533pt;}
.x20{left:517.450933pt;}
.x2{left:525.656533pt;}
.x47{left:563.251333pt;}
.x3a{left:565.540533pt;}
.x1c{left:571.798933pt;}
.x43{left:574.576533pt;}
.x2b{left:577.750933pt;}
.x12{left:580.726933pt;}
.x39{left:586.276533pt;}
.x1b{left:589.450933pt;}
.x2a{left:590.890933pt;}
.x30{left:592.444533pt;}
.x21{left:593.986933pt;}
.x9{left:685.524000pt;}
.x6{left:688.661467pt;}
}




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