
    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_5e58fa38bb1c50c8122e5b06.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947000;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_7bf679c9d5db36e549221d44.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052000;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_ccd7e989737a836a9969034e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_88412578cae89e8abff1a374.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953000;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_5c570c72dc13c1fe4c75bd38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_20a6ba2600f56ac9806b8095.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_c4521a74fe88cb284fa09b4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.111000;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_87463f8e2cfac32bcd8f0fb8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.674316;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_b637ff8626e67f5ef1a06683.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.844238;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_905025de859f2c8712ecf06a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;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_6aa7eba26c3e0ba1d4850ad7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.047000;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:ffc;src:url('chunks/assets/font_3a0d80943bb7cda4982b2c91.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242502,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.771600px;}
.ls9{letter-spacing:-1.026000px;}
.lse{letter-spacing:-1.015200px;}
.lsa{letter-spacing:-0.840000px;}
.ls1{letter-spacing:-0.567600px;}
.ls6{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.282000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.222000px;}
.ls5{letter-spacing:-0.168000px;}
.ls13{letter-spacing:-0.164406px;}
.ls2{letter-spacing:-0.103200px;}
.lsb{letter-spacing:-0.097944px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.001641px;}
.ls1e{letter-spacing:0.027973px;}
.ls4{letter-spacing:0.222000px;}
.ls1c{letter-spacing:1.050000px;}
.lsd{letter-spacing:1.764000px;}
.ls14{letter-spacing:1.804800px;}
.ls8{letter-spacing:2.223000px;}
.ls17{letter-spacing:2.256000px;}
.ls7{letter-spacing:2.565000px;}
.ls1d{letter-spacing:5.301600px;}
.ls18{letter-spacing:5.754000px;}
.ls1b{letter-spacing:5.880000px;}
.ls1a{letter-spacing:5.922000px;}
.ls16{letter-spacing:7.770000px;}
.ls10{letter-spacing:13.356000px;}
.lsf{letter-spacing:13.650000px;}
.lsc{letter-spacing:40.387959px;}
.ls19{letter-spacing:40.912577px;}
.ls11{letter-spacing:40.913196px;}
.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;}
}
.ws59{word-spacing:-16.694400px;}
.ws7c{word-spacing:-15.984000px;}
.ws39{word-spacing:-15.846000px;}
.ws7b{word-spacing:-15.679200px;}
.ws58{word-spacing:-15.120000px;}
.ws0{word-spacing:-12.000000px;}
.ws5b{word-spacing:-10.500000px;}
.ws5a{word-spacing:-10.332000px;}
.ws1{word-spacing:-10.320000px;}
.ws151{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.752400px;}
.ws5c{word-spacing:-9.660000px;}
.ws3{word-spacing:-8.880000px;}
.ws18{word-spacing:-8.658000px;}
.ws1a{word-spacing:-8.400000px;}
.ws3a{word-spacing:-8.232000px;}
.ws121{word-spacing:-6.660000px;}
.ws19{word-spacing:-6.576240px;}
.wsb1{word-spacing:-6.411834px;}
.wse0{word-spacing:-6.296400px;}
.ws159{word-spacing:-4.320000px;}
.ws146{word-spacing:-4.050000px;}
.ws157{word-spacing:-3.330000px;}
.ws20{word-spacing:-3.214800px;}
.ws8a{word-spacing:-3.158400px;}
.ws1d{word-spacing:-3.045600px;}
.wsa1{word-spacing:-2.970000px;}
.wsb3{word-spacing:-2.876400px;}
.ws95{word-spacing:-2.856000px;}
.wsab{word-spacing:-2.820000px;}
.wsd9{word-spacing:-2.763600px;}
.wscc{word-spacing:-2.707200px;}
.wsb7{word-spacing:-2.594400px;}
.wsb2{word-spacing:-2.484000px;}
.wse6{word-spacing:-2.430000px;}
.ws9b{word-spacing:-2.368800px;}
.wsd4{word-spacing:-2.312400px;}
.ws112{word-spacing:-2.268000px;}
.ws3b{word-spacing:-2.256000px;}
.ws13c{word-spacing:-2.205000px;}
.ws3c{word-spacing:-2.199600px;}
.ws40{word-spacing:-2.106000px;}
.wsf3{word-spacing:-2.086800px;}
.ws74{word-spacing:-2.058000px;}
.wsda{word-spacing:-2.052000px;}
.ws111{word-spacing:-2.030400px;}
.ws103{word-spacing:-2.016000px;}
.wsd1{word-spacing:-1.861200px;}
.wsc2{word-spacing:-1.836000px;}
.ws78{word-spacing:-1.806000px;}
.wsfc{word-spacing:-1.804800px;}
.wsa8{word-spacing:-1.782000px;}
.wsea{word-spacing:-1.748400px;}
.wsa3{word-spacing:-1.728000px;}
.ws46{word-spacing:-1.710000px;}
.ws73{word-spacing:-1.638000px;}
.ws132{word-spacing:-1.620000px;}
.ws104{word-spacing:-1.596000px;}
.wsa4{word-spacing:-1.512000px;}
.ws8f{word-spacing:-1.470000px;}
.ws79{word-spacing:-1.386000px;}
.wscd{word-spacing:-1.353600px;}
.wsdf{word-spacing:-1.302000px;}
.wsfd{word-spacing:-1.297200px;}
.wsa7{word-spacing:-1.242000px;}
.wseb{word-spacing:-1.184400px;}
.ws131{word-spacing:-1.170000px;}
.ws14{word-spacing:-1.135200px;}
.wsbb{word-spacing:-1.080000px;}
.ws7d{word-spacing:-1.071600px;}
.wsde{word-spacing:-1.050000px;}
.wsc5{word-spacing:-1.026000px;}
.ws3d{word-spacing:-1.015200px;}
.ws102{word-spacing:-0.966000px;}
.wsac{word-spacing:-0.958800px;}
.ws47{word-spacing:-0.912000px;}
.ws6b{word-spacing:-0.902400px;}
.wsd3{word-spacing:-0.846000px;}
.ws9f{word-spacing:-0.810000px;}
.wsdd{word-spacing:-0.798000px;}
.ws99{word-spacing:-0.733200px;}
.ws55{word-spacing:-0.714000px;}
.ws15c{word-spacing:-0.705600px;}
.ws21{word-spacing:-0.676800px;}
.wsba{word-spacing:-0.648000px;}
.ws15e{word-spacing:-0.604800px;}
.ws94{word-spacing:-0.588000px;}
.ws17{word-spacing:-0.567600px;}
.wsed{word-spacing:-0.564000px;}
.ws8b{word-spacing:-0.546000px;}
.ws10e{word-spacing:-0.540000px;}
.wsef{word-spacing:-0.507600px;}
.ws144{word-spacing:-0.495000px;}
.ws12{word-spacing:-0.464400px;}
.ws62{word-spacing:-0.456000px;}
.ws2e{word-spacing:-0.451200px;}
.ws1b{word-spacing:-0.444000px;}
.ws6d{word-spacing:-0.420000px;}
.ws61{word-spacing:-0.399000px;}
.wsce{word-spacing:-0.394800px;}
.wse4{word-spacing:-0.378000px;}
.ws3f{word-spacing:-0.324000px;}
.wsfe{word-spacing:-0.282000px;}
.ws2f{word-spacing:-0.225600px;}
.wsb5{word-spacing:-0.169200px;}
.ws52{word-spacing:-0.126000px;}
.wsc3{word-spacing:-0.112800px;}
.ws33{word-spacing:-0.084000px;}
.ws43{word-spacing:-0.056400px;}
.wsf{word-spacing:-0.051600px;}
.ws5{word-spacing:0.000000px;}
.ws42{word-spacing:0.056400px;}
.ws5d{word-spacing:0.057000px;}
.ws7a{word-spacing:0.097944px;}
.ws11{word-spacing:0.103200px;}
.wsb6{word-spacing:0.164406px;}
.ws32{word-spacing:0.168000px;}
.ws109{word-spacing:0.225600px;}
.ws16{word-spacing:0.258000px;}
.wsb4{word-spacing:0.282000px;}
.ws6e{word-spacing:0.336000px;}
.ws9a{word-spacing:0.338400px;}
.wsd{word-spacing:0.361200px;}
.ws110{word-spacing:0.394800px;}
.ws6f{word-spacing:0.462000px;}
.wsaa{word-spacing:0.507600px;}
.ws41{word-spacing:0.540000px;}
.ws72{word-spacing:0.546000px;}
.wsd6{word-spacing:0.564000px;}
.ws29{word-spacing:0.620400px;}
.ws158{word-spacing:0.630000px;}
.ws10c{word-spacing:0.702000px;}
.ws89{word-spacing:0.756000px;}
.ws150{word-spacing:0.765000px;}
.ws9e{word-spacing:0.789600px;}
.ws10d{word-spacing:0.810000px;}
.ws77{word-spacing:0.840000px;}
.wsca{word-spacing:0.846000px;}
.wsb{word-spacing:0.928800px;}
.ws23{word-spacing:0.958800px;}
.wsbe{word-spacing:0.972000px;}
.wsd7{word-spacing:1.071600px;}
.ws85{word-spacing:1.080000px;}
.ws10{word-spacing:1.083600px;}
.wse5{word-spacing:1.134000px;}
.ws48{word-spacing:1.140000px;}
.ws10b{word-spacing:1.184400px;}
.ws105{word-spacing:1.218000px;}
.ws80{word-spacing:1.240800px;}
.ws98{word-spacing:1.297200px;}
.ws2b{word-spacing:1.350000px;}
.ws67{word-spacing:1.410000px;}
.ws10f{word-spacing:1.458000px;}
.wse1{word-spacing:1.466400px;}
.wsec{word-spacing:1.579200px;}
.ws96{word-spacing:1.635600px;}
.ws1e{word-spacing:1.692000px;}
.wsc4{word-spacing:1.748400px;}
.ws8e{word-spacing:1.764000px;}
.ws53{word-spacing:1.848000px;}
.ws8d{word-spacing:1.932000px;}
.ws13{word-spacing:1.960800px;}
.ws142{word-spacing:1.980000px;}
.wsa{word-spacing:2.012400px;}
.ws34{word-spacing:2.142000px;}
.ws9c{word-spacing:2.143200px;}
.wsbd{word-spacing:2.160000px;}
.ws45{word-spacing:2.166000px;}
.ws69{word-spacing:2.199600px;}
.ws49{word-spacing:2.223000px;}
.ws97{word-spacing:2.256000px;}
.ws50{word-spacing:2.280000px;}
.wse8{word-spacing:2.312400px;}
.ws153{word-spacing:2.430000px;}
.ws31{word-spacing:2.478000px;}
.ws2d{word-spacing:2.538000px;}
.ws44{word-spacing:2.565000px;}
.ws7e{word-spacing:2.594400px;}
.ws88{word-spacing:2.646000px;}
.wsa9{word-spacing:2.650800px;}
.wsa5{word-spacing:2.700000px;}
.ws106{word-spacing:2.707200px;}
.ws2a{word-spacing:2.763600px;}
.ws8c{word-spacing:2.814000px;}
.wsd5{word-spacing:2.820000px;}
.ws87{word-spacing:2.916000px;}
.wsf5{word-spacing:2.932800px;}
.ws65{word-spacing:2.989200px;}
.ws136{word-spacing:3.015000px;}
.wsa6{word-spacing:3.024000px;}
.ws4a{word-spacing:3.078000px;}
.wsf4{word-spacing:3.102000px;}
.wsc8{word-spacing:3.158400px;}
.wsbc{word-spacing:3.186000px;}
.wsc{word-spacing:3.199200px;}
.ws24{word-spacing:3.271200px;}
.ws70{word-spacing:3.318000px;}
.wsfb{word-spacing:3.327600px;}
.ws107{word-spacing:3.384000px;}
.wsf7{word-spacing:3.496800px;}
.ws3e{word-spacing:3.510000px;}
.wsbf{word-spacing:3.654000px;}
.ws28{word-spacing:3.666000px;}
.wsa0{word-spacing:3.672000px;}
.ws108{word-spacing:3.722400px;}
.ws71{word-spacing:3.738000px;}
.wsf8{word-spacing:3.778800px;}
.ws9{word-spacing:3.870000px;}
.wsd2{word-spacing:3.891600px;}
.wsfa{word-spacing:3.948000px;}
.wsf9{word-spacing:4.004400px;}
.ws139{word-spacing:4.005000px;}
.ws30{word-spacing:4.060800px;}
.wsf6{word-spacing:4.117200px;}
.ws2c{word-spacing:4.173600px;}
.ws15d{word-spacing:4.183200px;}
.wsb9{word-spacing:4.212000px;}
.wsb8{word-spacing:4.266000px;}
.ws64{word-spacing:4.275000px;}
.wsd0{word-spacing:4.286400px;}
.ws25{word-spacing:4.342800px;}
.wscf{word-spacing:4.399200px;}
.wse9{word-spacing:4.455600px;}
.ws12b{word-spacing:4.545000px;}
.ws143{word-spacing:4.590000px;}
.ws15{word-spacing:4.592400px;}
.ws37{word-spacing:4.620000px;}
.wsc7{word-spacing:4.624800px;}
.wsc6{word-spacing:4.737600px;}
.wse{word-spacing:4.747200px;}
.ws83{word-spacing:4.752000px;}
.ws26{word-spacing:4.850400px;}
.ws57{word-spacing:4.914000px;}
.wscb{word-spacing:4.963200px;}
.ws54{word-spacing:4.998000px;}
.ws35{word-spacing:5.040000px;}
.ws60{word-spacing:5.187000px;}
.ws154{word-spacing:5.265000px;}
.wsf1{word-spacing:5.301600px;}
.wse3{word-spacing:5.414400px;}
.wsd8{word-spacing:5.470800px;}
.ws114{word-spacing:5.535000px;}
.wsf0{word-spacing:5.583600px;}
.wsa2{word-spacing:5.724000px;}
.wsf2{word-spacing:5.865600px;}
.ws8{word-spacing:5.882400px;}
.ws82{word-spacing:5.922000px;}
.wse2{word-spacing:5.978400px;}
.ws130{word-spacing:6.030000px;}
.ws101{word-spacing:6.048000px;}
.ws100{word-spacing:6.090000px;}
.ws5e{word-spacing:6.091200px;}
.ws13f{word-spacing:6.120000px;}
.ws5f{word-spacing:6.156000px;}
.ws149{word-spacing:6.165000px;}
.ws12c{word-spacing:6.210000px;}
.ws1f{word-spacing:6.260400px;}
.wsee{word-spacing:6.316800px;}
.wsc1{word-spacing:6.426000px;}
.ws27{word-spacing:6.429600px;}
.ws14b{word-spacing:6.525000px;}
.ws68{word-spacing:6.655200px;}
.wsc0{word-spacing:6.711600px;}
.ws1c{word-spacing:6.993600px;}
.ws86{word-spacing:7.128000px;}
.wsc9{word-spacing:7.275600px;}
.ws155{word-spacing:7.335000px;}
.ws76{word-spacing:7.350000px;}
.ws22{word-spacing:7.444800px;}
.ws6c{word-spacing:7.614000px;}
.wsdc{word-spacing:7.770000px;}
.ws9d{word-spacing:7.783200px;}
.ws138{word-spacing:7.785000px;}
.wsdb{word-spacing:7.938000px;}
.ws141{word-spacing:7.965000px;}
.ws7f{word-spacing:8.065200px;}
.ws51{word-spacing:8.358000px;}
.ws7{word-spacing:8.410800px;}
.wse7{word-spacing:8.460000px;}
.ws81{word-spacing:8.516400px;}
.ws113{word-spacing:8.550000px;}
.ws6a{word-spacing:8.572800px;}
.ws4e{word-spacing:8.607000px;}
.ws118{word-spacing:8.640000px;}
.ws84{word-spacing:8.748000px;}
.ws13a{word-spacing:9.135000px;}
.ws128{word-spacing:9.180000px;}
.ws14a{word-spacing:9.225000px;}
.ws6{word-spacing:9.546000px;}
.ws66{word-spacing:9.644400px;}
.ws38{word-spacing:9.828000px;}
.ws122{word-spacing:10.125000px;}
.ws4d{word-spacing:10.203000px;}
.ws14d{word-spacing:10.260000px;}
.ws11a{word-spacing:10.350000px;}
.ws15b{word-spacing:10.432800px;}
.ws10a{word-spacing:10.434000px;}
.ws63{word-spacing:10.602000px;}
.ws115{word-spacing:10.890000px;}
.ws119{word-spacing:11.025000px;}
.ws11b{word-spacing:11.070000px;}
.ws156{word-spacing:12.240000px;}
.ws12e{word-spacing:12.285000px;}
.ws125{word-spacing:12.645000px;}
.ws15a{word-spacing:12.902400px;}
.wsb0{word-spacing:13.356000px;}
.ws137{word-spacing:13.455000px;}
.wsaf{word-spacing:13.524000px;}
.wsae{word-spacing:13.650000px;}
.ws4c{word-spacing:13.680000px;}
.wsad{word-spacing:13.818000px;}
.ws75{word-spacing:13.944000px;}
.ws93{word-spacing:14.154000px;}
.ws90{word-spacing:14.448000px;}
.ws13e{word-spacing:14.760000px;}
.ws91{word-spacing:15.246000px;}
.ws92{word-spacing:16.170000px;}
.ws11c{word-spacing:17.100000px;}
.ws11d{word-spacing:17.550000px;}
.ws145{word-spacing:17.865000px;}
.ws135{word-spacing:18.045000px;}
.ws147{word-spacing:19.125000px;}
.ws116{word-spacing:19.170000px;}
.ws133{word-spacing:19.575000px;}
.ws117{word-spacing:19.620000px;}
.ws12d{word-spacing:19.890000px;}
.ws4f{word-spacing:21.546000px;}
.ws4b{word-spacing:21.603000px;}
.ws11e{word-spacing:22.950000px;}
.ws13d{word-spacing:23.985000px;}
.ws124{word-spacing:28.125000px;}
.ws134{word-spacing:28.755000px;}
.ws120{word-spacing:30.060000px;}
.ws123{word-spacing:33.750000px;}
.ws129{word-spacing:37.395000px;}
.ws14f{word-spacing:38.700000px;}
.ws56{word-spacing:40.908000px;}
.ws12f{word-spacing:46.125000px;}
.ws11f{word-spacing:47.700000px;}
.ws148{word-spacing:47.790000px;}
.ws14e{word-spacing:48.825000px;}
.ws152{word-spacing:49.995000px;}
.ws14c{word-spacing:54.855000px;}
.ws127{word-spacing:56.970000px;}
.ws36{word-spacing:63.420000px;}
.ws12a{word-spacing:85.365000px;}
.ws13b{word-spacing:91.035000px;}
.ws140{word-spacing:92.295000px;}
.ws126{word-spacing:118.215000px;}
.wsff{word-spacing:152.054400px;}
.ws4{word-spacing:2042.820000px;}
._7{margin-left:-23.732520px;}
._a{margin-left:-20.786520px;}
._1c{margin-left:-19.317600px;}
._13{margin-left:-15.990539px;}
._17{margin-left:-9.280800px;}
._19{margin-left:-8.205000px;}
._9{margin-left:-7.194000px;}
._4{margin-left:-5.620200px;}
._8{margin-left:-4.437720px;}
._5{margin-left:-2.699880px;}
._1{margin-left:-1.040400px;}
._0{width:1.591200px;}
._3{width:2.794800px;}
._6{width:3.873240px;}
._18{width:4.890480px;}
._2{width:5.895600px;}
._1a{width:7.347600px;}
._14{width:11.628000px;}
._16{width:13.017600px;}
._10{width:18.240000px;}
._f{width:24.399278px;}
._15{width:26.627134px;}
._1b{width:35.153753px;}
._12{width:41.080825px;}
._e{width:53.595773px;}
._11{width:55.313753px;}
._b{width:60.941134px;}
._c{width:63.399216px;}
._d{width:71.400000px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:24.486000px;}
.fsa{font-size:31.482000px;}
.fs8{font-size:32.881200px;}
.fsc{font-size:33.231000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:44.400000px;}
.fs0{font-size:45.000000px;}
.fs10{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:55.200000px;}
.fs5{font-size:56.400000px;}
.fsb{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fsd{font-size:75.600000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:65.260950px;}
.yb7{bottom:104.170050px;}
.yca{bottom:104.171400px;}
.y8a{bottom:104.171850px;}
.y46{bottom:104.173350px;}
.yf4{bottom:111.661050px;}
.y45{bottom:118.269900px;}
.y11b{bottom:118.271400px;}
.y88{bottom:118.273350px;}
.y89{bottom:121.769850px;}
.yfe{bottom:122.522100px;}
.yc9{bottom:122.523600px;}
.yb6{bottom:122.524050px;}
.y6c{bottom:122.525550px;}
.yf3{bottom:130.015050px;}
.ya4{bottom:132.373350px;}
.yb4{bottom:136.622100px;}
.y119{bottom:136.623600px;}
.y44{bottom:136.623900px;}
.y87{bottom:136.625400px;}
.yb5{bottom:136.625550px;}
.y153{bottom:139.504050px;}
.y11a{bottom:140.121900px;}
.yc8{bottom:140.874150px;}
.y6b{bottom:140.874300px;}
.ydc{bottom:140.875650px;}
.yfd{bottom:140.876100px;}
.y12a{bottom:140.877600px;}
.yf2{bottom:144.116550px;}
.ya3{bottom:146.470350px;}
.y43{bottom:150.725400px;}
.y152{bottom:153.757800px;}
.y86{bottom:154.970100px;}
.yfc{bottom:154.974150px;}
.y118{bottom:154.975650px;}
.yb3{bottom:154.976100px;}
.yf1{bottom:158.218050px;}
.yc7{bottom:159.228150px;}
.y6a{bottom:159.228300px;}
.ydb{bottom:159.229650px;}
.y179{bottom:159.610950px;}
.ya2{bottom:160.571850px;}
.y151{bottom:168.011550px;}
.y85{bottom:169.071600px;}
.y42{bottom:169.077600px;}
.yf0{bottom:172.316250px;}
.y68{bottom:173.321850px;}
.yc6{bottom:173.327850px;}
.yfb{bottom:173.328150px;}
.y117{bottom:173.329650px;}
.y69{bottom:173.329800px;}
.y178{bottom:173.864700px;}
.ya1{bottom:174.673350px;}
.y84{bottom:183.173100px;}
.y129{bottom:185.180400px;}
.y150{bottom:186.517800px;}
.y116{bottom:187.427850px;}
.y41{bottom:187.429650px;}
.y177{bottom:188.118450px;}
.ya0{bottom:188.773350px;}
.yef{bottom:190.670250px;}
.y67{bottom:191.675850px;}
.yc5{bottom:191.681850px;}
.y83{bottom:197.274600px;}
.y14f{bottom:200.771550px;}
.y176{bottom:202.372200px;}
.yee{bottom:204.769800px;}
.y128{bottom:205.428000px;}
.y66{bottom:205.777350px;}
.y40{bottom:205.780350px;}
.yfa{bottom:205.781850px;}
.y9f{bottom:207.125400px;}
.y115{bottom:209.278350px;}
.y82{bottom:211.376100px;}
.y14e{bottom:215.025300px;}
.y114{bottom:219.876900px;}
.y65{bottom:219.878850px;}
.y3e{bottom:219.879900px;}
.y3f{bottom:219.881850px;}
.y175{bottom:220.878450px;}
.yed{bottom:223.121850px;}
.y9e{bottom:225.474600px;}
.y80{bottom:225.475650px;}
.y81{bottom:225.477600px;}
.y1b{bottom:225.673350px;}
.y127{bottom:225.675600px;}
.y14d{bottom:229.279050px;}
.y64{bottom:233.980350px;}
.y174{bottom:235.132200px;}
.y113{bottom:238.230900px;}
.y3d{bottom:238.233900px;}
.y9d{bottom:239.576100px;}
.yec{bottom:241.475850px;}
.y7f{bottom:243.829650px;}
.y126{bottom:245.923200px;}
.y14c{bottom:247.785300px;}
.y63{bottom:248.081850px;}
.y173{bottom:249.385950px;}
.y112{bottom:252.332400px;}
.y3c{bottom:252.333900px;}
.y9c{bottom:253.677600px;}
.y7e{bottom:257.926350px;}
.yeb{bottom:259.825050px;}
.y14b{bottom:262.039050px;}
.y62{bottom:262.181850px;}
.y111{bottom:266.433900px;}
.y172{bottom:267.892200px;}
.y3b{bottom:270.684150px;}
.y9b{bottom:272.026650px;}
.yea{bottom:273.926550px;}
.y7d{bottom:276.280350px;}
.y14a{bottom:276.292800px;}
.y171{bottom:282.145950px;}
.y9a{bottom:286.128150px;}
.y1a{bottom:286.408350px;}
.yc3{bottom:286.423200px;}
.yb2{bottom:286.432800px;}
.ye8{bottom:288.026100px;}
.ye9{bottom:288.028050px;}
.y39{bottom:289.036650px;}
.y3a{bottom:289.038150px;}
.y7c{bottom:290.381850px;}
.y149{bottom:290.546550px;}
.yc4{bottom:290.918700px;}
.y170{bottom:296.399700px;}
.y99{bottom:300.229650px;}
.y38{bottom:303.138150px;}
.y148{bottom:304.800300px;}
.ye7{bottom:306.380100px;}
.y19{bottom:306.661350px;}
.y61{bottom:306.673200px;}
.y60{bottom:306.673950px;}
.yb1{bottom:306.680400px;}
.y7b{bottom:308.733900px;}
.y16f{bottom:310.653450px;}
.y37{bottom:317.238150px;}
.y147{bottom:319.054050px;}
.y16e{bottom:324.903450px;}
.y18{bottom:326.914350px;}
.y5f{bottom:326.923200px;}
.y5e{bottom:326.926200px;}
.yb0{bottom:326.928000px;}
.yf9{bottom:326.930400px;}
.yda{bottom:326.944800px;}
.y7a{bottom:327.086100px;}
.y146{bottom:333.307800px;}
.y16d{bottom:339.153450px;}
.y17{bottom:347.167350px;}
.yc2{bottom:347.173200px;}
.y5d{bottom:347.175450px;}
.yaf{bottom:347.175600px;}
.yf8{bottom:347.178000px;}
.yd9{bottom:347.192400px;}
.y145{bottom:347.561550px;}
.y16c{bottom:357.644250px;}
.y144{bottom:361.815300px;}
.y16{bottom:367.420350px;}
.yae{bottom:367.423200px;}
.y5c{bottom:367.424700px;}
.y98{bottom:367.425600px;}
.y79{bottom:367.430400px;}
.yd8{bottom:367.440000px;}
.y110{bottom:367.447200px;}
.y16b{bottom:371.898000px;}
.ye6{bottom:371.918700px;}
.y143{bottom:376.069050px;}
.y16a{bottom:386.151750px;}
.y14{bottom:387.670350px;}
.y97{bottom:387.673200px;}
.y15{bottom:387.673350px;}
.y5b{bottom:387.673950px;}
.y36{bottom:387.678000px;}
.yd7{bottom:387.687600px;}
.y10f{bottom:387.694800px;}
.y142{bottom:390.322800px;}
.y169{bottom:400.405500px;}
.y5a{bottom:407.923200px;}
.y13{bottom:407.923350px;}
.y35{bottom:407.925600px;}
.yd6{bottom:407.935200px;}
.y10e{bottom:407.942400px;}
.y141{bottom:408.829050px;}
.yad{bottom:412.418700px;}
.y168{bottom:418.876950px;}
.y140{bottom:427.335300px;}
.y59{bottom:428.173200px;}
.y12{bottom:428.173350px;}
.y78{bottom:428.175600px;}
.y34{bottom:428.178000px;}
.y125{bottom:428.180400px;}
.yd5{bottom:428.182800px;}
.ye5{bottom:428.185200px;}
.y10d{bottom:428.190000px;}
.y96{bottom:432.668700px;}
.y167{bottom:433.130700px;}
.y13f{bottom:441.589050px;}
.y166{bottom:447.384450px;}
.y95{bottom:448.423200px;}
.y11{bottom:448.423350px;}
.y58{bottom:448.423950px;}
.y33{bottom:448.425600px;}
.y77{bottom:448.428000px;}
.y189{bottom:448.428600px;}
.yd4{bottom:448.430400px;}
.ye4{bottom:448.432800px;}
.y10c{bottom:448.437600px;}
.y13e{bottom:455.842800px;}
.y165{bottom:461.638200px;}
.y10{bottom:468.667350px;}
.y32{bottom:468.673200px;}
.y76{bottom:468.675600px;}
.y188{bottom:468.676800px;}
.yd3{bottom:468.678000px;}
.ye3{bottom:468.680400px;}
.y10b{bottom:468.685200px;}
.y13d{bottom:470.096550px;}
.y57{bottom:473.418450px;}
.y164{bottom:475.891950px;}
.y13c{bottom:484.350300px;}
.yf{bottom:488.920350px;}
.y94{bottom:488.923200px;}
.y187{bottom:488.925000px;}
.yd2{bottom:488.925600px;}
.y56{bottom:488.926200px;}
.y75{bottom:488.928000px;}
.y10a{bottom:488.932800px;}
.y163{bottom:490.145700px;}
.y13b{bottom:498.604050px;}
.y162{bottom:508.651950px;}
.y30{bottom:509.173200px;}
.ye{bottom:509.173350px;}
.y55{bottom:509.175450px;}
.y74{bottom:509.175600px;}
.y109{bottom:509.180400px;}
.yf7{bottom:509.182800px;}
.y13a{bottom:512.857800px;}
.y31{bottom:513.668700px;}
.y161{bottom:522.905700px;}
.y139{bottom:527.111550px;}
.yd{bottom:529.405350px;}
.y2f{bottom:529.423200px;}
.y54{bottom:529.424700px;}
.ye2{bottom:529.428000px;}
.yd1{bottom:529.430400px;}
.y160{bottom:537.159450px;}
.y138{bottom:541.365300px;}
.yc{bottom:549.658350px;}
.y93{bottom:549.673200px;}
.y53{bottom:549.673950px;}
.ye1{bottom:549.675600px;}
.yd0{bottom:549.678000px;}
.yc1{bottom:549.680400px;}
.y15f{bottom:551.409450px;}
.y137{bottom:555.619050px;}
.y136{bottom:569.872800px;}
.y15e{bottom:569.907600px;}
.yb{bottom:569.911350px;}
.y51{bottom:569.923200px;}
.y2e{bottom:569.925600px;}
.yc0{bottom:569.928000px;}
.y108{bottom:569.935200px;}
.y52{bottom:574.668450px;}
.y135{bottom:584.126550px;}
.y15d{bottom:584.161350px;}
.ya{bottom:590.164350px;}
.yac{bottom:590.173200px;}
.ybf{bottom:590.175600px;}
.y2d{bottom:590.178000px;}
.y107{bottom:590.182800px;}
.y134{bottom:598.380300px;}
.y15c{bottom:602.486550px;}
.y9{bottom:610.417350px;}
.y92{bottom:610.423200px;}
.y2c{bottom:610.425600px;}
.y50{bottom:610.428000px;}
.y106{bottom:610.430400px;}
.y124{bottom:610.452000px;}
.y133{bottom:612.634050px;}
.y15b{bottom:616.740300px;}
.y132{bottom:626.887800px;}
.y8{bottom:630.670350px;}
.y91{bottom:630.673200px;}
.y4f{bottom:630.675600px;}
.ybe{bottom:630.678000px;}
.yf6{bottom:630.680400px;}
.y2b{bottom:630.682800px;}
.y123{bottom:630.699600px;}
.y15a{bottom:630.994050px;}
.ycf{bottom:635.168700px;}
.y159{bottom:645.247800px;}
.y131{bottom:645.394050px;}
.y4e{bottom:650.923200px;}
.y7{bottom:650.923350px;}
.ybd{bottom:650.925600px;}
.yf5{bottom:650.928000px;}
.y2a{bottom:650.930400px;}
.y122{bottom:650.947200px;}
.ye0{bottom:655.668450px;}
.y158{bottom:659.501550px;}
.y130{bottom:659.647800px;}
.y8f{bottom:671.173200px;}
.ybc{bottom:671.175600px;}
.y29{bottom:671.178000px;}
.y105{bottom:671.182800px;}
.y121{bottom:671.194800px;}
.y12f{bottom:673.901550px;}
.y90{bottom:675.918450px;}
.y157{bottom:678.007800px;}
.y4d{bottom:691.423200px;}
.y6{bottom:691.423350px;}
.y28{bottom:691.425600px;}
.yce{bottom:691.428000px;}
.y104{bottom:691.430400px;}
.y120{bottom:691.442400px;}
.y156{bottom:692.261550px;}
.y12e{bottom:692.407800px;}
.y155{bottom:706.515300px;}
.y12d{bottom:706.661550px;}
.y4c{bottom:711.673200px;}
.ycd{bottom:711.675600px;}
.y103{bottom:711.678000px;}
.y27{bottom:711.682800px;}
.y11f{bottom:711.690000px;}
.y154{bottom:720.769050px;}
.y12c{bottom:720.915300px;}
.y4b{bottom:731.923200px;}
.y102{bottom:731.925600px;}
.ydf{bottom:731.928000px;}
.y26{bottom:731.930400px;}
.y11e{bottom:731.937600px;}
.yab{bottom:731.942400px;}
.y4a{bottom:752.173200px;}
.y73{bottom:752.173950px;}
.yde{bottom:752.175600px;}
.y25{bottom:752.178000px;}
.y101{bottom:752.182800px;}
.y11d{bottom:752.185200px;}
.yaa{bottom:752.190000px;}
.ybb{bottom:756.668700px;}
.y5{bottom:764.170350px;}
.y49{bottom:772.423200px;}
.y72{bottom:772.423950px;}
.y24{bottom:772.425600px;}
.y100{bottom:772.430400px;}
.y11c{bottom:772.432800px;}
.y8e{bottom:772.435200px;}
.ya9{bottom:772.437600px;}
.ycc{bottom:776.918700px;}
.y186{bottom:789.304200px;}
.y181{bottom:789.315450px;}
.y70{bottom:792.673200px;}
.ydd{bottom:792.675600px;}
.yff{bottom:792.678000px;}
.y23{bottom:792.680400px;}
.y8d{bottom:792.682800px;}
.ya8{bottom:792.685200px;}
.y71{bottom:797.418450px;}
.y4{bottom:798.671850px;}
.y185{bottom:803.557950px;}
.y180{bottom:803.561700px;}
.ycb{bottom:812.923200px;}
.y6f{bottom:812.924700px;}
.yba{bottom:812.925600px;}
.y22{bottom:812.928000px;}
.y8c{bottom:812.930400px;}
.ya7{bottom:812.932800px;}
.y184{bottom:817.811700px;}
.y17f{bottom:817.815450px;}
.y182{bottom:832.049850px;}
.y183{bottom:832.065450px;}
.yb9{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y6e{bottom:833.173950px;}
.y21{bottom:833.175600px;}
.y8b{bottom:833.178000px;}
.ya6{bottom:833.180400px;}
.y17e{bottom:836.302350px;}
.y12b{bottom:837.668700px;}
.y17d{bottom:850.556100px;}
.y48{bottom:853.423200px;}
.y20{bottom:853.425600px;}
.ya5{bottom:853.428000px;}
.y17c{bottom:864.809850px;}
.yb8{bottom:869.920200px;}
.y47{bottom:873.673200px;}
.y6d{bottom:873.673950px;}
.y1f{bottom:873.675600px;}
.y17b{bottom:879.063600px;}
.y17a{bottom:893.317350px;}
.y1e{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.y1d{bottom:952.953150px;}
.h20{height:18.976650px;}
.hf{height:22.792968px;}
.h19{height:24.059244px;}
.h13{height:27.993164px;}
.h1d{height:28.444336px;}
.h12{height:30.408000px;}
.h2b{height:30.476074px;}
.h10{height:32.550000px;}
.h23{height:32.557200px;}
.h11{height:32.557800px;}
.h1e{height:32.563200px;}
.h14{height:32.563800px;}
.h29{height:32.569800px;}
.h25{height:32.575800px;}
.h1c{height:32.581800px;}
.h2a{height:34.875000px;}
.h15{height:35.830800px;}
.h8{height:36.274800px;}
.h9{height:36.315000px;}
.h2d{height:36.489600px;}
.h2{height:36.765000px;}
.h1b{height:38.603027px;}
.he{height:39.258000px;}
.h22{height:40.608000px;}
.h2e{height:40.672800px;}
.h17{height:40.774968px;}
.h7{height:41.002800px;}
.h18{height:41.439000px;}
.h6{height:41.641200px;}
.h28{height:42.491189px;}
.h24{height:42.500789px;}
.h21{height:42.510389px;}
.hc{height:42.548789px;}
.hb{height:42.558389px;}
.hd{height:42.567989px;}
.ha{height:42.577589px;}
.h16{height:42.587189px;}
.h27{height:43.662000px;}
.h26{height:43.710000px;}
.h3{height:43.880400px;}
.h1a{height:44.175000px;}
.h2c{height:45.098400px;}
.h5{height:49.020000px;}
.h2f{height:50.000400px;}
.h1f{height:54.734400px;}
.h4{height:83.334000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x8{left:81.994500px;}
.x38{left:87.453750px;}
.x52{left:89.291325px;}
.x4{left:93.551784px;}
.x3f{left:95.554482px;}
.x10{left:97.796850px;}
.x6{left:99.921300px;}
.x2{left:104.395050px;}
.x9{left:105.594150px;}
.x22{left:112.514100px;}
.xa{left:116.205000px;}
.x23{left:117.259500px;}
.x7{left:120.050700px;}
.x3{left:123.585300px;}
.x11{left:125.222250px;}
.x4e{left:126.422250px;}
.x42{left:128.978250px;}
.x12{left:131.547150px;}
.x45{left:154.016700px;}
.x36{left:170.085750px;}
.x32{left:175.223550px;}
.x37{left:177.287550px;}
.x46{left:185.093400px;}
.x24{left:193.262550px;}
.x4f{left:197.429100px;}
.x15{left:199.096050px;}
.x50{left:200.883750px;}
.x3b{left:202.115250px;}
.x25{left:204.332700px;}
.x16{left:205.420950px;}
.x3c{left:206.733750px;}
.x3d{left:233.006400px;}
.x3e{left:237.624900px;}
.x44{left:239.441400px;}
.x17{left:244.858200px;}
.x18{left:249.603600px;}
.x2d{left:257.313000px;}
.x47{left:261.957750px;}
.x48{left:267.315150px;}
.x1a{left:274.554900px;}
.x1b{left:279.300300px;}
.x4b{left:280.559550px;}
.xe{left:282.332250px;}
.x49{left:287.014350px;}
.x1c{left:288.093150px;}
.xf{left:291.035400px;}
.x26{left:294.527400px;}
.x27{left:299.272800px;}
.x4c{left:300.897750px;}
.x4d{left:306.580200px;}
.xb{left:324.454800px;}
.x28{left:329.275350px;}
.x29{left:335.600100px;}
.x13{left:352.903950px;}
.x14{left:357.649350px;}
.x53{left:359.293575px;}
.x55{left:365.969700px;}
.x59{left:367.648650px;}
.x56{left:370.963050px;}
.x54{left:372.049500px;}
.x39{left:378.512250px;}
.x33{left:379.918650px;}
.x34{left:383.035800px;}
.x1d{left:385.791000px;}
.x3a{left:386.842200px;}
.x1e{left:390.536400px;}
.x43{left:394.626450px;}
.x1f{left:399.329250px;}
.x2e{left:405.532350px;}
.x2f{left:408.649500px;}
.x57{left:441.585900px;}
.x5a{left:443.025000px;}
.x58{left:446.579250px;}
.x5b{left:448.018200px;}
.x35{left:469.366350px;}
.x30{left:475.789650px;}
.x31{left:478.906800px;}
.x41{left:482.233200px;}
.x2a{left:504.053250px;}
.x19{left:510.512400px;}
.x4a{left:521.194500px;}
.x2b{left:524.383350px;}
.x5{left:525.654300px;}
.x2c{left:530.007150px;}
.x40{left:576.032700px;}
.xc{left:590.799150px;}
.xd{left:596.133750px;}
.x51{left:599.701500px;}
.x20{left:608.410050px;}
.x21{left:613.155450px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.685867pt;}
.ls9{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.902400pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls1{letter-spacing:-0.504533pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.250667pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.197333pt;}
.ls5{letter-spacing:-0.149333pt;}
.ls13{letter-spacing:-0.146139pt;}
.ls2{letter-spacing:-0.091733pt;}
.lsb{letter-spacing:-0.087061pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.001459pt;}
.ls1e{letter-spacing:0.024865pt;}
.ls4{letter-spacing:0.197333pt;}
.ls1c{letter-spacing:0.933333pt;}
.lsd{letter-spacing:1.568000pt;}
.ls14{letter-spacing:1.604267pt;}
.ls8{letter-spacing:1.976000pt;}
.ls17{letter-spacing:2.005333pt;}
.ls7{letter-spacing:2.280000pt;}
.ls1d{letter-spacing:4.712533pt;}
.ls18{letter-spacing:5.114667pt;}
.ls1b{letter-spacing:5.226667pt;}
.ls1a{letter-spacing:5.264000pt;}
.ls16{letter-spacing:6.906667pt;}
.ls10{letter-spacing:11.872000pt;}
.lsf{letter-spacing:12.133333pt;}
.lsc{letter-spacing:35.900408pt;}
.ls19{letter-spacing:36.366735pt;}
.ls11{letter-spacing:36.367285pt;}
.ws59{word-spacing:-14.839467pt;}
.ws7c{word-spacing:-14.208000pt;}
.ws39{word-spacing:-14.085333pt;}
.ws7b{word-spacing:-13.937067pt;}
.ws58{word-spacing:-13.440000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws5b{word-spacing:-9.333333pt;}
.ws5a{word-spacing:-9.184000pt;}
.ws1{word-spacing:-9.173333pt;}
.ws151{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.668800pt;}
.ws5c{word-spacing:-8.586667pt;}
.ws3{word-spacing:-7.893333pt;}
.ws18{word-spacing:-7.696000pt;}
.ws1a{word-spacing:-7.466667pt;}
.ws3a{word-spacing:-7.317333pt;}
.ws121{word-spacing:-5.920000pt;}
.ws19{word-spacing:-5.845547pt;}
.wsb1{word-spacing:-5.699408pt;}
.wse0{word-spacing:-5.596800pt;}
.ws159{word-spacing:-3.840000pt;}
.ws146{word-spacing:-3.600000pt;}
.ws157{word-spacing:-2.960000pt;}
.ws20{word-spacing:-2.857600pt;}
.ws8a{word-spacing:-2.807467pt;}
.ws1d{word-spacing:-2.707200pt;}
.wsa1{word-spacing:-2.640000pt;}
.wsb3{word-spacing:-2.556800pt;}
.ws95{word-spacing:-2.538667pt;}
.wsab{word-spacing:-2.506667pt;}
.wsd9{word-spacing:-2.456533pt;}
.wscc{word-spacing:-2.406400pt;}
.wsb7{word-spacing:-2.306133pt;}
.wsb2{word-spacing:-2.208000pt;}
.wse6{word-spacing:-2.160000pt;}
.ws9b{word-spacing:-2.105600pt;}
.wsd4{word-spacing:-2.055467pt;}
.ws112{word-spacing:-2.016000pt;}
.ws3b{word-spacing:-2.005333pt;}
.ws13c{word-spacing:-1.960000pt;}
.ws3c{word-spacing:-1.955200pt;}
.ws40{word-spacing:-1.872000pt;}
.wsf3{word-spacing:-1.854933pt;}
.ws74{word-spacing:-1.829333pt;}
.wsda{word-spacing:-1.824000pt;}
.ws111{word-spacing:-1.804800pt;}
.ws103{word-spacing:-1.792000pt;}
.wsd1{word-spacing:-1.654400pt;}
.wsc2{word-spacing:-1.632000pt;}
.ws78{word-spacing:-1.605333pt;}
.wsfc{word-spacing:-1.604267pt;}
.wsa8{word-spacing:-1.584000pt;}
.wsea{word-spacing:-1.554133pt;}
.wsa3{word-spacing:-1.536000pt;}
.ws46{word-spacing:-1.520000pt;}
.ws73{word-spacing:-1.456000pt;}
.ws132{word-spacing:-1.440000pt;}
.ws104{word-spacing:-1.418667pt;}
.wsa4{word-spacing:-1.344000pt;}
.ws8f{word-spacing:-1.306667pt;}
.ws79{word-spacing:-1.232000pt;}
.wscd{word-spacing:-1.203200pt;}
.wsdf{word-spacing:-1.157333pt;}
.wsfd{word-spacing:-1.153067pt;}
.wsa7{word-spacing:-1.104000pt;}
.wseb{word-spacing:-1.052800pt;}
.ws131{word-spacing:-1.040000pt;}
.ws14{word-spacing:-1.009067pt;}
.wsbb{word-spacing:-0.960000pt;}
.ws7d{word-spacing:-0.952533pt;}
.wsde{word-spacing:-0.933333pt;}
.wsc5{word-spacing:-0.912000pt;}
.ws3d{word-spacing:-0.902400pt;}
.ws102{word-spacing:-0.858667pt;}
.wsac{word-spacing:-0.852267pt;}
.ws47{word-spacing:-0.810667pt;}
.ws6b{word-spacing:-0.802133pt;}
.wsd3{word-spacing:-0.752000pt;}
.ws9f{word-spacing:-0.720000pt;}
.wsdd{word-spacing:-0.709333pt;}
.ws99{word-spacing:-0.651733pt;}
.ws55{word-spacing:-0.634667pt;}
.ws15c{word-spacing:-0.627200pt;}
.ws21{word-spacing:-0.601600pt;}
.wsba{word-spacing:-0.576000pt;}
.ws15e{word-spacing:-0.537600pt;}
.ws94{word-spacing:-0.522667pt;}
.ws17{word-spacing:-0.504533pt;}
.wsed{word-spacing:-0.501333pt;}
.ws8b{word-spacing:-0.485333pt;}
.ws10e{word-spacing:-0.480000pt;}
.wsef{word-spacing:-0.451200pt;}
.ws144{word-spacing:-0.440000pt;}
.ws12{word-spacing:-0.412800pt;}
.ws62{word-spacing:-0.405333pt;}
.ws2e{word-spacing:-0.401067pt;}
.ws1b{word-spacing:-0.394667pt;}
.ws6d{word-spacing:-0.373333pt;}
.ws61{word-spacing:-0.354667pt;}
.wsce{word-spacing:-0.350933pt;}
.wse4{word-spacing:-0.336000pt;}
.ws3f{word-spacing:-0.288000pt;}
.wsfe{word-spacing:-0.250667pt;}
.ws2f{word-spacing:-0.200533pt;}
.wsb5{word-spacing:-0.150400pt;}
.ws52{word-spacing:-0.112000pt;}
.wsc3{word-spacing:-0.100267pt;}
.ws33{word-spacing:-0.074667pt;}
.ws43{word-spacing:-0.050133pt;}
.wsf{word-spacing:-0.045867pt;}
.ws5{word-spacing:0.000000pt;}
.ws42{word-spacing:0.050133pt;}
.ws5d{word-spacing:0.050667pt;}
.ws7a{word-spacing:0.087061pt;}
.ws11{word-spacing:0.091733pt;}
.wsb6{word-spacing:0.146139pt;}
.ws32{word-spacing:0.149333pt;}
.ws109{word-spacing:0.200533pt;}
.ws16{word-spacing:0.229333pt;}
.wsb4{word-spacing:0.250667pt;}
.ws6e{word-spacing:0.298667pt;}
.ws9a{word-spacing:0.300800pt;}
.wsd{word-spacing:0.321067pt;}
.ws110{word-spacing:0.350933pt;}
.ws6f{word-spacing:0.410667pt;}
.wsaa{word-spacing:0.451200pt;}
.ws41{word-spacing:0.480000pt;}
.ws72{word-spacing:0.485333pt;}
.wsd6{word-spacing:0.501333pt;}
.ws29{word-spacing:0.551467pt;}
.ws158{word-spacing:0.560000pt;}
.ws10c{word-spacing:0.624000pt;}
.ws89{word-spacing:0.672000pt;}
.ws150{word-spacing:0.680000pt;}
.ws9e{word-spacing:0.701867pt;}
.ws10d{word-spacing:0.720000pt;}
.ws77{word-spacing:0.746667pt;}
.wsca{word-spacing:0.752000pt;}
.wsb{word-spacing:0.825600pt;}
.ws23{word-spacing:0.852267pt;}
.wsbe{word-spacing:0.864000pt;}
.wsd7{word-spacing:0.952533pt;}
.ws85{word-spacing:0.960000pt;}
.ws10{word-spacing:0.963200pt;}
.wse5{word-spacing:1.008000pt;}
.ws48{word-spacing:1.013333pt;}
.ws10b{word-spacing:1.052800pt;}
.ws105{word-spacing:1.082667pt;}
.ws80{word-spacing:1.102933pt;}
.ws98{word-spacing:1.153067pt;}
.ws2b{word-spacing:1.200000pt;}
.ws67{word-spacing:1.253333pt;}
.ws10f{word-spacing:1.296000pt;}
.wse1{word-spacing:1.303467pt;}
.wsec{word-spacing:1.403733pt;}
.ws96{word-spacing:1.453867pt;}
.ws1e{word-spacing:1.504000pt;}
.wsc4{word-spacing:1.554133pt;}
.ws8e{word-spacing:1.568000pt;}
.ws53{word-spacing:1.642667pt;}
.ws8d{word-spacing:1.717333pt;}
.ws13{word-spacing:1.742933pt;}
.ws142{word-spacing:1.760000pt;}
.wsa{word-spacing:1.788800pt;}
.ws34{word-spacing:1.904000pt;}
.ws9c{word-spacing:1.905067pt;}
.wsbd{word-spacing:1.920000pt;}
.ws45{word-spacing:1.925333pt;}
.ws69{word-spacing:1.955200pt;}
.ws49{word-spacing:1.976000pt;}
.ws97{word-spacing:2.005333pt;}
.ws50{word-spacing:2.026667pt;}
.wse8{word-spacing:2.055467pt;}
.ws153{word-spacing:2.160000pt;}
.ws31{word-spacing:2.202667pt;}
.ws2d{word-spacing:2.256000pt;}
.ws44{word-spacing:2.280000pt;}
.ws7e{word-spacing:2.306133pt;}
.ws88{word-spacing:2.352000pt;}
.wsa9{word-spacing:2.356267pt;}
.wsa5{word-spacing:2.400000pt;}
.ws106{word-spacing:2.406400pt;}
.ws2a{word-spacing:2.456533pt;}
.ws8c{word-spacing:2.501333pt;}
.wsd5{word-spacing:2.506667pt;}
.ws87{word-spacing:2.592000pt;}
.wsf5{word-spacing:2.606933pt;}
.ws65{word-spacing:2.657067pt;}
.ws136{word-spacing:2.680000pt;}
.wsa6{word-spacing:2.688000pt;}
.ws4a{word-spacing:2.736000pt;}
.wsf4{word-spacing:2.757333pt;}
.wsc8{word-spacing:2.807467pt;}
.wsbc{word-spacing:2.832000pt;}
.wsc{word-spacing:2.843733pt;}
.ws24{word-spacing:2.907733pt;}
.ws70{word-spacing:2.949333pt;}
.wsfb{word-spacing:2.957867pt;}
.ws107{word-spacing:3.008000pt;}
.wsf7{word-spacing:3.108267pt;}
.ws3e{word-spacing:3.120000pt;}
.wsbf{word-spacing:3.248000pt;}
.ws28{word-spacing:3.258667pt;}
.wsa0{word-spacing:3.264000pt;}
.ws108{word-spacing:3.308800pt;}
.ws71{word-spacing:3.322667pt;}
.wsf8{word-spacing:3.358933pt;}
.ws9{word-spacing:3.440000pt;}
.wsd2{word-spacing:3.459200pt;}
.wsfa{word-spacing:3.509333pt;}
.wsf9{word-spacing:3.559467pt;}
.ws139{word-spacing:3.560000pt;}
.ws30{word-spacing:3.609600pt;}
.wsf6{word-spacing:3.659733pt;}
.ws2c{word-spacing:3.709867pt;}
.ws15d{word-spacing:3.718400pt;}
.wsb9{word-spacing:3.744000pt;}
.wsb8{word-spacing:3.792000pt;}
.ws64{word-spacing:3.800000pt;}
.wsd0{word-spacing:3.810133pt;}
.ws25{word-spacing:3.860267pt;}
.wscf{word-spacing:3.910400pt;}
.wse9{word-spacing:3.960533pt;}
.ws12b{word-spacing:4.040000pt;}
.ws143{word-spacing:4.080000pt;}
.ws15{word-spacing:4.082133pt;}
.ws37{word-spacing:4.106667pt;}
.wsc7{word-spacing:4.110933pt;}
.wsc6{word-spacing:4.211200pt;}
.wse{word-spacing:4.219733pt;}
.ws83{word-spacing:4.224000pt;}
.ws26{word-spacing:4.311467pt;}
.ws57{word-spacing:4.368000pt;}
.wscb{word-spacing:4.411733pt;}
.ws54{word-spacing:4.442667pt;}
.ws35{word-spacing:4.480000pt;}
.ws60{word-spacing:4.610667pt;}
.ws154{word-spacing:4.680000pt;}
.wsf1{word-spacing:4.712533pt;}
.wse3{word-spacing:4.812800pt;}
.wsd8{word-spacing:4.862933pt;}
.ws114{word-spacing:4.920000pt;}
.wsf0{word-spacing:4.963200pt;}
.wsa2{word-spacing:5.088000pt;}
.wsf2{word-spacing:5.213867pt;}
.ws8{word-spacing:5.228800pt;}
.ws82{word-spacing:5.264000pt;}
.wse2{word-spacing:5.314133pt;}
.ws130{word-spacing:5.360000pt;}
.ws101{word-spacing:5.376000pt;}
.ws100{word-spacing:5.413333pt;}
.ws5e{word-spacing:5.414400pt;}
.ws13f{word-spacing:5.440000pt;}
.ws5f{word-spacing:5.472000pt;}
.ws149{word-spacing:5.480000pt;}
.ws12c{word-spacing:5.520000pt;}
.ws1f{word-spacing:5.564800pt;}
.wsee{word-spacing:5.614933pt;}
.wsc1{word-spacing:5.712000pt;}
.ws27{word-spacing:5.715200pt;}
.ws14b{word-spacing:5.800000pt;}
.ws68{word-spacing:5.915733pt;}
.wsc0{word-spacing:5.965867pt;}
.ws1c{word-spacing:6.216533pt;}
.ws86{word-spacing:6.336000pt;}
.wsc9{word-spacing:6.467200pt;}
.ws155{word-spacing:6.520000pt;}
.ws76{word-spacing:6.533333pt;}
.ws22{word-spacing:6.617600pt;}
.ws6c{word-spacing:6.768000pt;}
.wsdc{word-spacing:6.906667pt;}
.ws9d{word-spacing:6.918400pt;}
.ws138{word-spacing:6.920000pt;}
.wsdb{word-spacing:7.056000pt;}
.ws141{word-spacing:7.080000pt;}
.ws7f{word-spacing:7.169067pt;}
.ws51{word-spacing:7.429333pt;}
.ws7{word-spacing:7.476267pt;}
.wse7{word-spacing:7.520000pt;}
.ws81{word-spacing:7.570133pt;}
.ws113{word-spacing:7.600000pt;}
.ws6a{word-spacing:7.620267pt;}
.ws4e{word-spacing:7.650667pt;}
.ws118{word-spacing:7.680000pt;}
.ws84{word-spacing:7.776000pt;}
.ws13a{word-spacing:8.120000pt;}
.ws128{word-spacing:8.160000pt;}
.ws14a{word-spacing:8.200000pt;}
.ws6{word-spacing:8.485333pt;}
.ws66{word-spacing:8.572800pt;}
.ws38{word-spacing:8.736000pt;}
.ws122{word-spacing:9.000000pt;}
.ws4d{word-spacing:9.069333pt;}
.ws14d{word-spacing:9.120000pt;}
.ws11a{word-spacing:9.200000pt;}
.ws15b{word-spacing:9.273600pt;}
.ws10a{word-spacing:9.274667pt;}
.ws63{word-spacing:9.424000pt;}
.ws115{word-spacing:9.680000pt;}
.ws119{word-spacing:9.800000pt;}
.ws11b{word-spacing:9.840000pt;}
.ws156{word-spacing:10.880000pt;}
.ws12e{word-spacing:10.920000pt;}
.ws125{word-spacing:11.240000pt;}
.ws15a{word-spacing:11.468800pt;}
.wsb0{word-spacing:11.872000pt;}
.ws137{word-spacing:11.960000pt;}
.wsaf{word-spacing:12.021333pt;}
.wsae{word-spacing:12.133333pt;}
.ws4c{word-spacing:12.160000pt;}
.wsad{word-spacing:12.282667pt;}
.ws75{word-spacing:12.394667pt;}
.ws93{word-spacing:12.581333pt;}
.ws90{word-spacing:12.842667pt;}
.ws13e{word-spacing:13.120000pt;}
.ws91{word-spacing:13.552000pt;}
.ws92{word-spacing:14.373333pt;}
.ws11c{word-spacing:15.200000pt;}
.ws11d{word-spacing:15.600000pt;}
.ws145{word-spacing:15.880000pt;}
.ws135{word-spacing:16.040000pt;}
.ws147{word-spacing:17.000000pt;}
.ws116{word-spacing:17.040000pt;}
.ws133{word-spacing:17.400000pt;}
.ws117{word-spacing:17.440000pt;}
.ws12d{word-spacing:17.680000pt;}
.ws4f{word-spacing:19.152000pt;}
.ws4b{word-spacing:19.202667pt;}
.ws11e{word-spacing:20.400000pt;}
.ws13d{word-spacing:21.320000pt;}
.ws124{word-spacing:25.000000pt;}
.ws134{word-spacing:25.560000pt;}
.ws120{word-spacing:26.720000pt;}
.ws123{word-spacing:30.000000pt;}
.ws129{word-spacing:33.240000pt;}
.ws14f{word-spacing:34.400000pt;}
.ws56{word-spacing:36.362667pt;}
.ws12f{word-spacing:41.000000pt;}
.ws11f{word-spacing:42.400000pt;}
.ws148{word-spacing:42.480000pt;}
.ws14e{word-spacing:43.400000pt;}
.ws152{word-spacing:44.440000pt;}
.ws14c{word-spacing:48.760000pt;}
.ws127{word-spacing:50.640000pt;}
.ws36{word-spacing:56.373333pt;}
.ws12a{word-spacing:75.880000pt;}
.ws13b{word-spacing:80.920000pt;}
.ws140{word-spacing:82.040000pt;}
.ws126{word-spacing:105.080000pt;}
.wsff{word-spacing:135.159467pt;}
.ws4{word-spacing:1815.840000pt;}
._7{margin-left:-21.095573pt;}
._a{margin-left:-18.476907pt;}
._1c{margin-left:-17.171200pt;}
._13{margin-left:-14.213812pt;}
._17{margin-left:-8.249600pt;}
._19{margin-left:-7.293333pt;}
._9{margin-left:-6.394667pt;}
._4{margin-left:-4.995733pt;}
._8{margin-left:-3.944640pt;}
._5{margin-left:-2.399893pt;}
._1{margin-left:-0.924800pt;}
._0{width:1.414400pt;}
._3{width:2.484267pt;}
._6{width:3.442880pt;}
._18{width:4.347093pt;}
._2{width:5.240533pt;}
._1a{width:6.531200pt;}
._14{width:10.336000pt;}
._16{width:11.571200pt;}
._10{width:16.213333pt;}
._f{width:21.688247pt;}
._15{width:23.668564pt;}
._1b{width:31.247780pt;}
._12{width:36.516289pt;}
._e{width:47.640687pt;}
._11{width:49.167780pt;}
._b{width:54.169897pt;}
._c{width:56.354859pt;}
._d{width:63.466667pt;}
.fse{font-size:21.765333pt;}
.fsa{font-size:27.984000pt;}
.fs8{font-size:29.227733pt;}
.fsc{font-size:29.538667pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:39.466667pt;}
.fs0{font-size:40.000000pt;}
.fs10{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:49.066667pt;}
.fs5{font-size:50.133333pt;}
.fsb{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fsd{font-size:67.200000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:58.009733pt;}
.yb7{bottom:92.595600pt;}
.yca{bottom:92.596800pt;}
.y8a{bottom:92.597200pt;}
.y46{bottom:92.598533pt;}
.yf4{bottom:99.254267pt;}
.y45{bottom:105.128800pt;}
.y11b{bottom:105.130133pt;}
.y88{bottom:105.131867pt;}
.y89{bottom:108.239867pt;}
.yfe{bottom:108.908533pt;}
.yc9{bottom:108.909867pt;}
.yb6{bottom:108.910267pt;}
.y6c{bottom:108.911600pt;}
.yf3{bottom:115.568933pt;}
.ya4{bottom:117.665200pt;}
.yb4{bottom:121.441867pt;}
.y119{bottom:121.443200pt;}
.y44{bottom:121.443467pt;}
.y87{bottom:121.444800pt;}
.yb5{bottom:121.444933pt;}
.y153{bottom:124.003600pt;}
.y11a{bottom:124.552800pt;}
.yc8{bottom:125.221467pt;}
.y6b{bottom:125.221600pt;}
.ydc{bottom:125.222800pt;}
.yfd{bottom:125.223200pt;}
.y12a{bottom:125.224533pt;}
.yf2{bottom:128.103600pt;}
.ya3{bottom:130.195867pt;}
.y43{bottom:133.978133pt;}
.y152{bottom:136.673600pt;}
.y86{bottom:137.751200pt;}
.yfc{bottom:137.754800pt;}
.y118{bottom:137.756133pt;}
.yb3{bottom:137.756533pt;}
.yf1{bottom:140.638267pt;}
.yc7{bottom:141.536133pt;}
.y6a{bottom:141.536267pt;}
.ydb{bottom:141.537467pt;}
.y179{bottom:141.876400pt;}
.ya2{bottom:142.730533pt;}
.y151{bottom:149.343600pt;}
.y85{bottom:150.285867pt;}
.y42{bottom:150.291200pt;}
.yf0{bottom:153.170000pt;}
.y68{bottom:154.063867pt;}
.yc6{bottom:154.069200pt;}
.yfb{bottom:154.069467pt;}
.y117{bottom:154.070800pt;}
.y69{bottom:154.070933pt;}
.y178{bottom:154.546400pt;}
.ya1{bottom:155.265200pt;}
.y84{bottom:162.820533pt;}
.y129{bottom:164.604800pt;}
.y150{bottom:165.793600pt;}
.y116{bottom:166.602533pt;}
.y41{bottom:166.604133pt;}
.y177{bottom:167.216400pt;}
.ya0{bottom:167.798533pt;}
.yef{bottom:169.484667pt;}
.y67{bottom:170.378533pt;}
.yc5{bottom:170.383867pt;}
.y83{bottom:175.355200pt;}
.y14f{bottom:178.463600pt;}
.y176{bottom:179.886400pt;}
.yee{bottom:182.017600pt;}
.y128{bottom:182.602667pt;}
.y66{bottom:182.913200pt;}
.y40{bottom:182.915867pt;}
.yfa{bottom:182.917200pt;}
.y9f{bottom:184.111467pt;}
.y115{bottom:186.025200pt;}
.y82{bottom:187.889867pt;}
.y14e{bottom:191.133600pt;}
.y114{bottom:195.446133pt;}
.y65{bottom:195.447867pt;}
.y3e{bottom:195.448800pt;}
.y3f{bottom:195.450533pt;}
.y175{bottom:196.336400pt;}
.yed{bottom:198.330533pt;}
.y9e{bottom:200.421867pt;}
.y80{bottom:200.422800pt;}
.y81{bottom:200.424533pt;}
.y1b{bottom:200.598533pt;}
.y127{bottom:200.600533pt;}
.y14d{bottom:203.803600pt;}
.y64{bottom:207.982533pt;}
.y174{bottom:209.006400pt;}
.y113{bottom:211.760800pt;}
.y3d{bottom:211.763467pt;}
.y9d{bottom:212.956533pt;}
.yec{bottom:214.645200pt;}
.y7f{bottom:216.737467pt;}
.y126{bottom:218.598400pt;}
.y14c{bottom:220.253600pt;}
.y63{bottom:220.517200pt;}
.y173{bottom:221.676400pt;}
.y112{bottom:224.295467pt;}
.y3c{bottom:224.296800pt;}
.y9c{bottom:225.491200pt;}
.y7e{bottom:229.267867pt;}
.yeb{bottom:230.955600pt;}
.y14b{bottom:232.923600pt;}
.y62{bottom:233.050533pt;}
.y111{bottom:236.830133pt;}
.y172{bottom:238.126400pt;}
.y3b{bottom:240.608133pt;}
.y9b{bottom:241.801467pt;}
.yea{bottom:243.490267pt;}
.y7d{bottom:245.582533pt;}
.y14a{bottom:245.593600pt;}
.y171{bottom:250.796400pt;}
.y9a{bottom:254.336133pt;}
.y1a{bottom:254.585200pt;}
.yc3{bottom:254.598400pt;}
.yb2{bottom:254.606933pt;}
.ye8{bottom:256.023200pt;}
.ye9{bottom:256.024933pt;}
.y39{bottom:256.921467pt;}
.y3a{bottom:256.922800pt;}
.y7c{bottom:258.117200pt;}
.y149{bottom:258.263600pt;}
.yc4{bottom:258.594400pt;}
.y170{bottom:263.466400pt;}
.y99{bottom:266.870800pt;}
.y38{bottom:269.456133pt;}
.y148{bottom:270.933600pt;}
.ye7{bottom:272.337867pt;}
.y19{bottom:272.587867pt;}
.y61{bottom:272.598400pt;}
.y60{bottom:272.599067pt;}
.yb1{bottom:272.604800pt;}
.y7b{bottom:274.430133pt;}
.y16f{bottom:276.136400pt;}
.y37{bottom:281.989467pt;}
.y147{bottom:283.603600pt;}
.y16e{bottom:288.803067pt;}
.y18{bottom:290.590533pt;}
.y5f{bottom:290.598400pt;}
.y5e{bottom:290.601067pt;}
.yb0{bottom:290.602667pt;}
.yf9{bottom:290.604800pt;}
.yda{bottom:290.617600pt;}
.y7a{bottom:290.743200pt;}
.y146{bottom:296.273600pt;}
.y16d{bottom:301.469733pt;}
.y17{bottom:308.593200pt;}
.yc2{bottom:308.598400pt;}
.y5d{bottom:308.600400pt;}
.yaf{bottom:308.600533pt;}
.yf8{bottom:308.602667pt;}
.yd9{bottom:308.615467pt;}
.y145{bottom:308.943600pt;}
.y16c{bottom:317.906000pt;}
.y144{bottom:321.613600pt;}
.y16{bottom:326.595867pt;}
.yae{bottom:326.598400pt;}
.y5c{bottom:326.599733pt;}
.y98{bottom:326.600533pt;}
.y79{bottom:326.604800pt;}
.yd8{bottom:326.613333pt;}
.y110{bottom:326.619733pt;}
.y16b{bottom:330.576000pt;}
.ye6{bottom:330.594400pt;}
.y143{bottom:334.283600pt;}
.y16a{bottom:343.246000pt;}
.y14{bottom:344.595867pt;}
.y97{bottom:344.598400pt;}
.y15{bottom:344.598533pt;}
.y5b{bottom:344.599067pt;}
.y36{bottom:344.602667pt;}
.yd7{bottom:344.611200pt;}
.y10f{bottom:344.617600pt;}
.y142{bottom:346.953600pt;}
.y169{bottom:355.916000pt;}
.y5a{bottom:362.598400pt;}
.y13{bottom:362.598533pt;}
.y35{bottom:362.600533pt;}
.yd6{bottom:362.609067pt;}
.y10e{bottom:362.615467pt;}
.y141{bottom:363.403600pt;}
.yad{bottom:366.594400pt;}
.y168{bottom:372.335067pt;}
.y140{bottom:379.853600pt;}
.y59{bottom:380.598400pt;}
.y12{bottom:380.598533pt;}
.y78{bottom:380.600533pt;}
.y34{bottom:380.602667pt;}
.y125{bottom:380.604800pt;}
.yd5{bottom:380.606933pt;}
.ye5{bottom:380.609067pt;}
.y10d{bottom:380.613333pt;}
.y96{bottom:384.594400pt;}
.y167{bottom:385.005067pt;}
.y13f{bottom:392.523600pt;}
.y166{bottom:397.675067pt;}
.y95{bottom:398.598400pt;}
.y11{bottom:398.598533pt;}
.y58{bottom:398.599067pt;}
.y33{bottom:398.600533pt;}
.y77{bottom:398.602667pt;}
.y189{bottom:398.603200pt;}
.yd4{bottom:398.604800pt;}
.ye4{bottom:398.606933pt;}
.y10c{bottom:398.611200pt;}
.y13e{bottom:405.193600pt;}
.y165{bottom:410.345067pt;}
.y10{bottom:416.593200pt;}
.y32{bottom:416.598400pt;}
.y76{bottom:416.600533pt;}
.y188{bottom:416.601600pt;}
.yd3{bottom:416.602667pt;}
.ye3{bottom:416.604800pt;}
.y10b{bottom:416.609067pt;}
.y13d{bottom:417.863600pt;}
.y57{bottom:420.816400pt;}
.y164{bottom:423.015067pt;}
.y13c{bottom:430.533600pt;}
.yf{bottom:434.595867pt;}
.y94{bottom:434.598400pt;}
.y187{bottom:434.600000pt;}
.yd2{bottom:434.600533pt;}
.y56{bottom:434.601067pt;}
.y75{bottom:434.602667pt;}
.y10a{bottom:434.606933pt;}
.y163{bottom:435.685067pt;}
.y13b{bottom:443.203600pt;}
.y162{bottom:452.135067pt;}
.y30{bottom:452.598400pt;}
.ye{bottom:452.598533pt;}
.y55{bottom:452.600400pt;}
.y74{bottom:452.600533pt;}
.y109{bottom:452.604800pt;}
.yf7{bottom:452.606933pt;}
.y13a{bottom:455.873600pt;}
.y31{bottom:456.594400pt;}
.y161{bottom:464.805067pt;}
.y139{bottom:468.543600pt;}
.yd{bottom:470.582533pt;}
.y2f{bottom:470.598400pt;}
.y54{bottom:470.599733pt;}
.ye2{bottom:470.602667pt;}
.yd1{bottom:470.604800pt;}
.y160{bottom:477.475067pt;}
.y138{bottom:481.213600pt;}
.yc{bottom:488.585200pt;}
.y93{bottom:488.598400pt;}
.y53{bottom:488.599067pt;}
.ye1{bottom:488.600533pt;}
.yd0{bottom:488.602667pt;}
.yc1{bottom:488.604800pt;}
.y15f{bottom:490.141733pt;}
.y137{bottom:493.883600pt;}
.y136{bottom:506.553600pt;}
.y15e{bottom:506.584533pt;}
.yb{bottom:506.587867pt;}
.y51{bottom:506.598400pt;}
.y2e{bottom:506.600533pt;}
.yc0{bottom:506.602667pt;}
.y108{bottom:506.609067pt;}
.y52{bottom:510.816400pt;}
.y135{bottom:519.223600pt;}
.y15d{bottom:519.254533pt;}
.ya{bottom:524.590533pt;}
.yac{bottom:524.598400pt;}
.ybf{bottom:524.600533pt;}
.y2d{bottom:524.602667pt;}
.y107{bottom:524.606933pt;}
.y134{bottom:531.893600pt;}
.y15c{bottom:535.543600pt;}
.y9{bottom:542.593200pt;}
.y92{bottom:542.598400pt;}
.y2c{bottom:542.600533pt;}
.y50{bottom:542.602667pt;}
.y106{bottom:542.604800pt;}
.y124{bottom:542.624000pt;}
.y133{bottom:544.563600pt;}
.y15b{bottom:548.213600pt;}
.y132{bottom:557.233600pt;}
.y8{bottom:560.595867pt;}
.y91{bottom:560.598400pt;}
.y4f{bottom:560.600533pt;}
.ybe{bottom:560.602667pt;}
.yf6{bottom:560.604800pt;}
.y2b{bottom:560.606933pt;}
.y123{bottom:560.621867pt;}
.y15a{bottom:560.883600pt;}
.ycf{bottom:564.594400pt;}
.y159{bottom:573.553600pt;}
.y131{bottom:573.683600pt;}
.y4e{bottom:578.598400pt;}
.y7{bottom:578.598533pt;}
.ybd{bottom:578.600533pt;}
.yf5{bottom:578.602667pt;}
.y2a{bottom:578.604800pt;}
.y122{bottom:578.619733pt;}
.ye0{bottom:582.816400pt;}
.y158{bottom:586.223600pt;}
.y130{bottom:586.353600pt;}
.y8f{bottom:596.598400pt;}
.ybc{bottom:596.600533pt;}
.y29{bottom:596.602667pt;}
.y105{bottom:596.606933pt;}
.y121{bottom:596.617600pt;}
.y12f{bottom:599.023600pt;}
.y90{bottom:600.816400pt;}
.y157{bottom:602.673600pt;}
.y4d{bottom:614.598400pt;}
.y6{bottom:614.598533pt;}
.y28{bottom:614.600533pt;}
.yce{bottom:614.602667pt;}
.y104{bottom:614.604800pt;}
.y120{bottom:614.615467pt;}
.y156{bottom:615.343600pt;}
.y12e{bottom:615.473600pt;}
.y155{bottom:628.013600pt;}
.y12d{bottom:628.143600pt;}
.y4c{bottom:632.598400pt;}
.ycd{bottom:632.600533pt;}
.y103{bottom:632.602667pt;}
.y27{bottom:632.606933pt;}
.y11f{bottom:632.613333pt;}
.y154{bottom:640.683600pt;}
.y12c{bottom:640.813600pt;}
.y4b{bottom:650.598400pt;}
.y102{bottom:650.600533pt;}
.ydf{bottom:650.602667pt;}
.y26{bottom:650.604800pt;}
.y11e{bottom:650.611200pt;}
.yab{bottom:650.615467pt;}
.y4a{bottom:668.598400pt;}
.y73{bottom:668.599067pt;}
.yde{bottom:668.600533pt;}
.y25{bottom:668.602667pt;}
.y101{bottom:668.606933pt;}
.y11d{bottom:668.609067pt;}
.yaa{bottom:668.613333pt;}
.ybb{bottom:672.594400pt;}
.y5{bottom:679.262533pt;}
.y49{bottom:686.598400pt;}
.y72{bottom:686.599067pt;}
.y24{bottom:686.600533pt;}
.y100{bottom:686.604800pt;}
.y11c{bottom:686.606933pt;}
.y8e{bottom:686.609067pt;}
.ya9{bottom:686.611200pt;}
.ycc{bottom:690.594400pt;}
.y186{bottom:701.603733pt;}
.y181{bottom:701.613733pt;}
.y70{bottom:704.598400pt;}
.ydd{bottom:704.600533pt;}
.yff{bottom:704.602667pt;}
.y23{bottom:704.604800pt;}
.y8d{bottom:704.606933pt;}
.ya8{bottom:704.609067pt;}
.y71{bottom:708.816400pt;}
.y4{bottom:709.930533pt;}
.y185{bottom:714.273733pt;}
.y180{bottom:714.277067pt;}
.ycb{bottom:722.598400pt;}
.y6f{bottom:722.599733pt;}
.yba{bottom:722.600533pt;}
.y22{bottom:722.602667pt;}
.y8c{bottom:722.604800pt;}
.ya7{bottom:722.606933pt;}
.y184{bottom:726.943733pt;}
.y17f{bottom:726.947067pt;}
.y182{bottom:739.599867pt;}
.y183{bottom:739.613733pt;}
.yb9{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y6e{bottom:740.599067pt;}
.y21{bottom:740.600533pt;}
.y8b{bottom:740.602667pt;}
.ya6{bottom:740.604800pt;}
.y17e{bottom:743.379867pt;}
.y12b{bottom:744.594400pt;}
.y17d{bottom:756.049867pt;}
.y48{bottom:758.598400pt;}
.y20{bottom:758.600533pt;}
.ya5{bottom:758.602667pt;}
.y17c{bottom:768.719867pt;}
.yb8{bottom:773.262400pt;}
.y47{bottom:776.598400pt;}
.y6d{bottom:776.599067pt;}
.y1f{bottom:776.600533pt;}
.y17b{bottom:781.389867pt;}
.y17a{bottom:794.059867pt;}
.y1e{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.y1d{bottom:847.069467pt;}
.h20{height:16.868133pt;}
.hf{height:20.260416pt;}
.h19{height:21.385995pt;}
.h13{height:24.882812pt;}
.h1d{height:25.283854pt;}
.h12{height:27.029333pt;}
.h2b{height:27.089844pt;}
.h10{height:28.933333pt;}
.h23{height:28.939733pt;}
.h11{height:28.940267pt;}
.h1e{height:28.945067pt;}
.h14{height:28.945600pt;}
.h29{height:28.950933pt;}
.h25{height:28.956267pt;}
.h1c{height:28.961600pt;}
.h2a{height:31.000000pt;}
.h15{height:31.849600pt;}
.h8{height:32.244267pt;}
.h9{height:32.280000pt;}
.h2d{height:32.435200pt;}
.h2{height:32.680000pt;}
.h1b{height:34.313802pt;}
.he{height:34.896000pt;}
.h22{height:36.096000pt;}
.h2e{height:36.153600pt;}
.h17{height:36.244416pt;}
.h7{height:36.446933pt;}
.h18{height:36.834667pt;}
.h6{height:37.014400pt;}
.h28{height:37.769946pt;}
.h24{height:37.778479pt;}
.h21{height:37.787012pt;}
.hc{height:37.821146pt;}
.hb{height:37.829679pt;}
.hd{height:37.838212pt;}
.ha{height:37.846746pt;}
.h16{height:37.855279pt;}
.h27{height:38.810667pt;}
.h26{height:38.853333pt;}
.h3{height:39.004800pt;}
.h1a{height:39.266667pt;}
.h2c{height:40.087467pt;}
.h5{height:43.573333pt;}
.h2f{height:44.444800pt;}
.h1f{height:48.652800pt;}
.h4{height:74.074667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x8{left:72.884000pt;}
.x38{left:77.736667pt;}
.x52{left:79.370067pt;}
.x4{left:83.157141pt;}
.x3f{left:84.937317pt;}
.x10{left:86.930533pt;}
.x6{left:88.818933pt;}
.x2{left:92.795600pt;}
.x9{left:93.861467pt;}
.x22{left:100.012533pt;}
.xa{left:103.293333pt;}
.x23{left:104.230667pt;}
.x7{left:106.711733pt;}
.x3{left:109.853600pt;}
.x11{left:111.308667pt;}
.x4e{left:112.375333pt;}
.x42{left:114.647333pt;}
.x12{left:116.930800pt;}
.x45{left:136.903733pt;}
.x36{left:151.187333pt;}
.x32{left:155.754267pt;}
.x37{left:157.588933pt;}
.x46{left:164.527467pt;}
.x24{left:171.788933pt;}
.x4f{left:175.492533pt;}
.x15{left:176.974267pt;}
.x50{left:178.563333pt;}
.x3b{left:179.658000pt;}
.x25{left:181.629067pt;}
.x16{left:182.596400pt;}
.x3c{left:183.763333pt;}
.x3d{left:207.116800pt;}
.x3e{left:211.222133pt;}
.x44{left:212.836800pt;}
.x17{left:217.651733pt;}
.x18{left:221.869867pt;}
.x2d{left:228.722667pt;}
.x47{left:232.851333pt;}
.x48{left:237.613467pt;}
.x1a{left:244.048800pt;}
.x1b{left:248.266933pt;}
.x4b{left:249.386267pt;}
.xe{left:250.962000pt;}
.x49{left:255.123867pt;}
.x1c{left:256.082800pt;}
.xf{left:258.698133pt;}
.x26{left:261.802133pt;}
.x27{left:266.020267pt;}
.x4c{left:267.464667pt;}
.x4d{left:272.515733pt;}
.xb{left:288.404267pt;}
.x28{left:292.689200pt;}
.x29{left:298.311200pt;}
.x13{left:313.692400pt;}
.x14{left:317.910533pt;}
.x53{left:319.372067pt;}
.x55{left:325.306400pt;}
.x59{left:326.798800pt;}
.x56{left:329.744933pt;}
.x54{left:330.710667pt;}
.x39{left:336.455333pt;}
.x33{left:337.705467pt;}
.x34{left:340.476267pt;}
.x1d{left:342.925333pt;}
.x3a{left:343.859733pt;}
.x1e{left:347.143467pt;}
.x43{left:350.779067pt;}
.x1f{left:354.959333pt;}
.x2e{left:360.473200pt;}
.x2f{left:363.244000pt;}
.x57{left:392.520800pt;}
.x5a{left:393.800000pt;}
.x58{left:396.959333pt;}
.x5b{left:398.238400pt;}
.x35{left:417.214533pt;}
.x30{left:422.924133pt;}
.x31{left:425.694933pt;}
.x41{left:428.651733pt;}
.x2a{left:448.047333pt;}
.x19{left:453.788800pt;}
.x4a{left:463.284000pt;}
.x2b{left:466.118533pt;}
.x5{left:467.248267pt;}
.x2c{left:471.117467pt;}
.x40{left:512.029067pt;}
.xc{left:525.154800pt;}
.xd{left:529.896667pt;}
.x51{left:533.068000pt;}
.x20{left:540.808933pt;}
.x21{left:545.027067pt;}
}




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