
    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_0ad3b230f78a93346c171778.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_ba0f4bffa5bd0c9cf098e512.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_0dd78307f9202fda56fe3873.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_616c62be9aaa1512e9e3d4a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_ed3101ee24b1fb6c3b562531.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.696000;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_e77b7fa57ef827366a0f586e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_667f7738b68ec8b0c41065e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_635ebde2383c737edddf2efc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3fb07354ee0f67526b10775a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_1a63494be82cf3e2e5e4d9ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_eb144e3c82d3f7a439d2d3a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694000;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_904ae89a77718f4de551fef9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_be46a09906ea185474288ad2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.580000;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:fff;src:url('chunks/assets/font_4d14ebad47a62a49741f37a7.woff2')format("woff");}.fff{font-family:fff;line-height:0.704000;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:ff10;src:url('chunks/assets/font_c8b93cce26a37e9113df064c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.703450;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:ff11;src:url('chunks/assets/font_70c53a32ebef463d1ec66581.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;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:ff12;src:url('chunks/assets/font_cfcf0a1525c4e4291866c1cf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.108000px;}
.v3{vertical-align:16.872000px;}
.v2{vertical-align:21.690000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000538px;}
.lsf{letter-spacing:0.002338px;}
.lse{letter-spacing:0.004200px;}
.ls4{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.987065px;}
.ls3{letter-spacing:2.988532px;}
.lsb{letter-spacing:2.990525px;}
.ls10{letter-spacing:9.988200px;}
.ls11{letter-spacing:9.990538px;}
.ls12{letter-spacing:13.282200px;}
.ls13{letter-spacing:13.284538px;}
.lsd{letter-spacing:15.888538px;}
.lsc{letter-spacing:15.892200px;}
.ls8{letter-spacing:19.920538px;}
.ls7{letter-spacing:19.926538px;}
.ls2{letter-spacing:21.122525px;}
.lsa{letter-spacing:22.070222px;}
.ls5{letter-spacing:22.994338px;}
.ls6{letter-spacing:23.000338px;}
.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;}
}
.wsf6{word-spacing:-38.937826px;}
.ws83{word-spacing:-16.605662px;}
.ws2b{word-spacing:-15.278643px;}
.ws74{word-spacing:-3.335478px;}
.ws12d{word-spacing:-3.275703px;}
.ws12e{word-spacing:-3.156152px;}
.ws116{word-spacing:-3.036600px;}
.wscc{word-spacing:-2.737722px;}
.wsca{word-spacing:-2.677947px;}
.ws12f{word-spacing:-2.558396px;}
.wsa0{word-spacing:-2.498620px;}
.wsce{word-spacing:-2.438844px;}
.ws10e{word-spacing:-2.139966px;}
.ws73{word-spacing:-1.841088px;}
.ws30{word-spacing:-1.781313px;}
.ws130{word-spacing:-1.721537px;}
.ws98{word-spacing:-1.661762px;}
.wsb0{word-spacing:-1.601986px;}
.ws108{word-spacing:-1.482435px;}
.wsb1{word-spacing:-1.422659px;}
.wsa2{word-spacing:-1.243332px;}
.ws85{word-spacing:-1.183557px;}
.ws122{word-spacing:-1.123781px;}
.ws28{word-spacing:-1.064006px;}
.ws84{word-spacing:-0.944454px;}
.wsf{word-spacing:-0.825116px;}
.wsac{word-spacing:-0.765128px;}
.ws129{word-spacing:-0.705352px;}
.ws101{word-spacing:-0.645576px;}
.ws9d{word-spacing:-0.585801px;}
.wsbb{word-spacing:-0.526025px;}
.ws4a{word-spacing:-0.346698px;}
.ws43{word-spacing:-0.286923px;}
.wsc0{word-spacing:-0.227147px;}
.ws13{word-spacing:-0.226858px;}
.ws9f{word-spacing:-0.107596px;}
.wsdc{word-spacing:-0.059776px;}
.ws86{word-spacing:-0.047821px;}
.ws1a{word-spacing:0.000000px;}
.ws2c{word-spacing:0.011955px;}
.ws128{word-spacing:0.131506px;}
.ws38{word-spacing:0.191282px;}
.ws5{word-spacing:0.250769px;}
.ws9a{word-spacing:0.251058px;}
.ws15{word-spacing:0.251068px;}
.wse8{word-spacing:0.310833px;}
.ws105{word-spacing:0.430384px;}
.ws9{word-spacing:0.430402px;}
.wsed{word-spacing:0.549936px;}
.ws2e{word-spacing:0.609711px;}
.wsff{word-spacing:0.669487px;}
.wsec{word-spacing:0.729262px;}
.ws81{word-spacing:0.789038px;}
.wsa{word-spacing:0.908386px;}
.ws66{word-spacing:0.908589px;}
.wsb8{word-spacing:0.968365px;}
.ws40{word-spacing:1.028140px;}
.wsfd{word-spacing:1.087916px;}
.wsf8{word-spacing:1.207467px;}
.ws9b{word-spacing:1.267243px;}
.ws125{word-spacing:1.386794px;}
.ws36{word-spacing:1.446570px;}
.ws59{word-spacing:1.506345px;}
.ws10d{word-spacing:1.538003px;}
.ws58{word-spacing:1.566121px;}
.ws9e{word-spacing:1.625896px;}
.ws37{word-spacing:1.685672px;}
.ws11b{word-spacing:1.745448px;}
.ws118{word-spacing:1.805223px;}
.ws33{word-spacing:1.924774px;}
.ws109{word-spacing:2.044326px;}
.ws17{word-spacing:2.044826px;}
.ws68{word-spacing:2.104101px;}
.wsd0{word-spacing:2.223652px;}
.ws3c{word-spacing:2.343204px;}
.ws99{word-spacing:2.402979px;}
.ws57{word-spacing:2.462755px;}
.ws5d{word-spacing:2.522530px;}
.ws13b{word-spacing:2.565020px;}
.ws67{word-spacing:2.582306px;}
.ws13a{word-spacing:2.611488px;}
.ws2f{word-spacing:2.642082px;}
.wsfc{word-spacing:2.663607px;}
.ws12a{word-spacing:2.701857px;}
.ws27{word-spacing:2.761633px;}
.ws16{word-spacing:2.761863px;}
.ws4b{word-spacing:2.821408px;}
.wsc5{word-spacing:2.881184px;}
.ws131{word-spacing:2.940960px;}
.ws139{word-spacing:2.955349px;}
.ws1b{word-spacing:3.000735px;}
.ws76{word-spacing:3.060511px;}
.ws50{word-spacing:3.120286px;}
.ws64{word-spacing:3.180062px;}
.ws8c{word-spacing:3.237455px;}
.ws72{word-spacing:3.239838px;}
.ws20{word-spacing:3.299613px;}
.ws2{word-spacing:3.299746px;}
.ws1{word-spacing:3.300044px;}
.wsda{word-spacing:3.314938px;}
.wsde{word-spacing:3.317277px;}
.ws110{word-spacing:3.320069px;}
.wsdb{word-spacing:3.320938px;}
.wsdd{word-spacing:3.323277px;}
.wsd9{word-spacing:3.359389px;}
.ws8a{word-spacing:3.419164px;}
.ws5a{word-spacing:3.478940px;}
.ws6e{word-spacing:3.598491px;}
.wsaf{word-spacing:3.658267px;}
.ws31{word-spacing:3.718042px;}
.ws12{word-spacing:3.718192px;}
.ws1c{word-spacing:3.777818px;}
.ws6b{word-spacing:3.801728px;}
.ws123{word-spacing:3.897369px;}
.ws77{word-spacing:3.957145px;}
.ws100{word-spacing:4.016920px;}
.wsa5{word-spacing:4.076696px;}
.wsf0{word-spacing:4.136472px;}
.ws44{word-spacing:4.196247px;}
.ws82{word-spacing:4.256023px;}
.wsa6{word-spacing:4.315798px;}
.wscf{word-spacing:4.375574px;}
.wsc{word-spacing:4.375750px;}
.wsc1{word-spacing:4.435350px;}
.wsbe{word-spacing:4.495125px;}
.ws62{word-spacing:4.554901px;}
.wsaa{word-spacing:4.614676px;}
.wsbf{word-spacing:4.674452px;}
.ws26{word-spacing:4.734228px;}
.ws42{word-spacing:4.794003px;}
.ws3a{word-spacing:4.853779px;}
.ws6{word-spacing:4.853974px;}
.ws3f{word-spacing:4.913554px;}
.ws5e{word-spacing:4.973330px;}
.wse{word-spacing:4.973530px;}
.ws1f{word-spacing:5.033106px;}
.ws4f{word-spacing:5.092881px;}
.wse4{word-spacing:5.102458px;}
.ws7f{word-spacing:5.152657px;}
.ws78{word-spacing:5.212432px;}
.wsba{word-spacing:5.272208px;}
.ws3e{word-spacing:5.331984px;}
.ws5b{word-spacing:5.391759px;}
.ws115{word-spacing:5.451535px;}
.wsc7{word-spacing:5.485023px;}
.wsee{word-spacing:5.511310px;}
.wsbd{word-spacing:5.571086px;}
.ws8{word-spacing:5.571130px;}
.ws56{word-spacing:5.630862px;}
.wsc2{word-spacing:5.690637px;}
.ws69{word-spacing:5.750413px;}
.ws75{word-spacing:5.869964px;}
.ws7a{word-spacing:5.929740px;}
.ws35{word-spacing:6.049291px;}
.wsa1{word-spacing:6.061246px;}
.ws34{word-spacing:6.109066px;}
.ws22{word-spacing:6.121021px;}
.ws39{word-spacing:6.168842px;}
.ws10{word-spacing:6.169388px;}
.ws10c{word-spacing:6.228618px;}
.ws87{word-spacing:6.288393px;}
.ws1d{word-spacing:6.348169px;}
.ws4d{word-spacing:6.407944px;}
.ws133{word-spacing:6.467720px;}
.ws11e{word-spacing:6.527496px;}
.wsd2{word-spacing:6.584897px;}
.ws2d{word-spacing:6.587271px;}
.ws3d{word-spacing:6.647047px;}
.wsfe{word-spacing:6.706822px;}
.ws29{word-spacing:6.766598px;}
.ws89{word-spacing:6.826374px;}
.ws4c{word-spacing:6.945925px;}
.ws112{word-spacing:7.005700px;}
.ws14{word-spacing:7.005982px;}
.wsd7{word-spacing:7.063103px;}
.ws79{word-spacing:7.065476px;}
.wsf4{word-spacing:7.125252px;}
.ws46{word-spacing:7.185027px;}
.wsc3{word-spacing:7.244803px;}
.wsa7{word-spacing:7.304578px;}
.ws49{word-spacing:7.364354px;}
.wsb3{word-spacing:7.424130px;}
.wsdf{word-spacing:7.478007px;}
.wsad{word-spacing:7.483905px;}
.ws5c{word-spacing:7.603456px;}
.ws1e{word-spacing:7.663232px;}
.ws11{word-spacing:7.663420px;}
.wsb4{word-spacing:7.723008px;}
.ws32{word-spacing:7.782783px;}
.ws6a{word-spacing:7.842559px;}
.wsb{word-spacing:7.902233px;}
.ws2a{word-spacing:7.962110px;}
.ws25{word-spacing:8.021886px;}
.ws6f{word-spacing:8.081661px;}
.wsf3{word-spacing:8.141437px;}
.wsf7{word-spacing:8.201212px;}
.wsb7{word-spacing:8.260988px;}
.ws52{word-spacing:8.320764px;}
.ws11f{word-spacing:8.440315px;}
.ws65{word-spacing:8.500090px;}
.wsab{word-spacing:8.559866px;}
.ws70{word-spacing:8.619642px;}
.wsef{word-spacing:8.679417px;}
.ws80{word-spacing:8.739193px;}
.ws47{word-spacing:8.798968px;}
.wsd{word-spacing:8.799262px;}
.ws106{word-spacing:8.978295px;}
.ws126{word-spacing:9.038071px;}
.ws135{word-spacing:9.097846px;}
.wsbc{word-spacing:9.157622px;}
.ws51{word-spacing:9.217398px;}
.wse2{word-spacing:9.277173px;}
.ws7{word-spacing:9.277546px;}
.ws11d{word-spacing:9.336949px;}
.wsc4{word-spacing:9.396724px;}
.ws53{word-spacing:9.456500px;}
.wsb2{word-spacing:9.516276px;}
.ws113{word-spacing:9.576051px;}
.wsf5{word-spacing:9.635827px;}
.wseb{word-spacing:9.695602px;}
.ws5f{word-spacing:9.755378px;}
.ws45{word-spacing:9.815154px;}
.wsb9{word-spacing:9.874929px;}
.wse0{word-spacing:9.946660px;}
.ws124{word-spacing:9.994480px;}
.ws48{word-spacing:10.054256px;}
.ws71{word-spacing:10.114032px;}
.ws63{word-spacing:10.173807px;}
.ws24{word-spacing:10.233583px;}
.ws55{word-spacing:10.293358px;}
.wsa3{word-spacing:10.412910px;}
.ws4e{word-spacing:10.472685px;}
.wsae{word-spacing:10.532461px;}
.ws3b{word-spacing:10.592236px;}
.ws7b{word-spacing:10.652012px;}
.ws7d{word-spacing:10.771563px;}
.ws7e{word-spacing:10.891114px;}
.wsea{word-spacing:10.950890px;}
.wse9{word-spacing:11.010666px;}
.wsfa{word-spacing:11.070441px;}
.ws9c{word-spacing:11.130217px;}
.ws54{word-spacing:11.189992px;}
.ws12c{word-spacing:11.309544px;}
.ws88{word-spacing:11.488870px;}
.wsa8{word-spacing:11.668197px;}
.ws6d{word-spacing:11.787748px;}
.ws134{word-spacing:11.907300px;}
.ws10f{word-spacing:11.967075px;}
.ws104{word-spacing:12.026851px;}
.wsb5{word-spacing:12.146402px;}
.wsf2{word-spacing:12.146432px;}
.ws119{word-spacing:12.206178px;}
.ws103{word-spacing:12.325729px;}
.ws102{word-spacing:12.385504px;}
.ws137{word-spacing:12.445280px;}
.wsf1{word-spacing:12.505056px;}
.ws10a{word-spacing:12.564831px;}
.wse1{word-spacing:12.923485px;}
.ws7c{word-spacing:12.983260px;}
.ws41{word-spacing:13.043036px;}
.wsf9{word-spacing:13.162587px;}
.ws11a{word-spacing:13.222363px;}
.ws136{word-spacing:13.401690px;}
.ws11c{word-spacing:13.461465px;}
.ws117{word-spacing:13.581016px;}
.wsa4{word-spacing:13.760343px;}
.ws60{word-spacing:13.820153px;}
.ws121{word-spacing:14.118997px;}
.wsa9{word-spacing:14.477650px;}
.ws6c{word-spacing:14.836304px;}
.ws23{word-spacing:15.278643px;}
.wse5{word-spacing:15.302592px;}
.ws10b{word-spacing:15.314509px;}
.ws132{word-spacing:15.553611px;}
.ws127{word-spacing:15.972040px;}
.ws111{word-spacing:16.211143px;}
.wsfb{word-spacing:16.402466px;}
.ws120{word-spacing:16.689348px;}
.wscd{word-spacing:16.848340px;}
.wscb{word-spacing:16.854340px;}
.ws19{word-spacing:16.880364px;}
.ws61{word-spacing:16.880672px;}
.ws8b{word-spacing:16.928492px;}
.wsd3{word-spacing:17.406698px;}
.wsd5{word-spacing:17.454519px;}
.ws18{word-spacing:17.741363px;}
.wse6{word-spacing:17.789263px;}
.ws3{word-spacing:18.314964px;}
.ws4{word-spacing:18.315108px;}
.wse3{word-spacing:18.506572px;}
.wsc6{word-spacing:18.889137px;}
.wsd1{word-spacing:19.797728px;}
.wsd6{word-spacing:20.180293px;}
.wsd4{word-spacing:20.435750px;}
.wse7{word-spacing:20.783750px;}
.wsb6{word-spacing:22.762606px;}
.ws12b{word-spacing:23.145112px;}
.ws114{word-spacing:24.579727px;}
.ws0{word-spacing:26.511408px;}
.ws107{word-spacing:26.827357px;}
.ws21{word-spacing:36.146329px;}
.ws138{word-spacing:40.919508px;}
.ws140{word-spacing:72.034319px;}
.ws13d{word-spacing:76.448756px;}
.ws13e{word-spacing:83.651258px;}
.wsd8{word-spacing:86.401756px;}
.ws13f{word-spacing:88.065695px;}
.ws13c{word-spacing:95.268198px;}
.wsc9{word-spacing:140.871477px;}
.ws96{word-spacing:245.503645px;}
.ws97{word-spacing:250.362849px;}
.ws94{word-spacing:252.186080px;}
.ws8e{word-spacing:257.154840px;}
.ws8d{word-spacing:257.161033px;}
.ws91{word-spacing:257.954576px;}
.ws95{word-spacing:257.961171px;}
.ws8f{word-spacing:258.828080px;}
.ws93{word-spacing:261.974582px;}
.ws90{word-spacing:262.153227px;}
.ws92{word-spacing:264.643227px;}
.wsc8{word-spacing:802.264972px;}
._28{margin-left:-2170.458731px;}
._25{margin-left:-2169.020306px;}
._1d{margin-left:-2154.685456px;}
._16{margin-left:-2153.199301px;}
._13{margin-left:-2138.812578px;}
._52{margin-left:-2083.956213px;}
._60{margin-left:-1996.457436px;}
._54{margin-left:-1962.229392px;}
._5a{margin-left:-1939.600167px;}
._5f{margin-left:-1868.843988px;}
._3c{margin-left:-1839.836223px;}
._3d{margin-left:-1833.005238px;}
._5b{margin-left:-1723.898696px;}
._22{margin-left:-1637.161327px;}
._59{margin-left:-1634.856562px;}
._5d{margin-left:-1468.608465px;}
._26{margin-left:-1285.537109px;}
._29{margin-left:-1234.600467px;}
._46{margin-left:-1099.562107px;}
._5c{margin-left:-1074.747834px;}
._61{margin-left:-1040.980754px;}
._5e{margin-left:-818.017609px;}
._51{margin-left:-686.837191px;}
._4f{margin-left:-629.247228px;}
._58{margin-left:-532.463591px;}
._3f{margin-left:-530.584540px;}
._3a{margin-left:-432.156099px;}
._3b{margin-left:-395.991861px;}
._56{margin-left:-372.414422px;}
._57{margin-left:-30.999783px;}
._4{margin-left:-29.830477px;}
._38{margin-left:-28.498116px;}
._55{margin-left:-26.226164px;}
._3{margin-left:-23.253941px;}
._2{margin-left:-6.575879px;}
._a{margin-left:-4.961574px;}
._6{margin-left:-3.661636px;}
._1{margin-left:-2.324052px;}
._8{margin-left:-1.022918px;}
._7{width:1.111983px;}
._0{width:2.237976px;}
._5{width:3.346910px;}
._15{width:4.749014px;}
._44{width:15.153713px;}
._39{width:16.572021px;}
._f{width:17.598232px;}
._d{width:18.643087px;}
._47{width:19.905275px;}
._19{width:20.960537px;}
._1c{width:22.587517px;}
._3e{width:23.900518px;}
._10{width:25.159128px;}
._c{width:26.259159px;}
._b{width:27.378324px;}
._17{width:28.565077px;}
._1a{width:29.847128px;}
._9{width:31.383450px;}
._1b{width:33.254338px;}
._23{width:34.370970px;}
._e{width:36.156128px;}
._14{width:37.369110px;}
._20{width:38.780399px;}
._18{width:39.873735px;}
._12{width:41.295880px;}
._24{width:42.883058px;}
._21{width:44.970355px;}
._1f{width:46.951634px;}
._27{width:48.929916px;}
._2a{width:51.758473px;}
._53{width:52.984935px;}
._1e{width:55.916486px;}
._50{width:58.981599px;}
._45{width:60.014702px;}
._2b{width:71.730720px;}
._2c{width:74.146317px;}
._63{width:76.955179px;}
._80{width:89.187366px;}
._4e{width:92.102938px;}
._7a{width:96.389868px;}
._7e{width:100.974439px;}
._7f{width:108.006808px;}
._73{width:112.591378px;}
._6e{width:113.972061px;}
._48{width:127.627128px;}
._62{width:141.636927px;}
._79{width:153.854747px;}
._4c{width:155.198400px;}
._6f{width:159.012668px;}
._7b{width:165.146413px;}
._77{width:170.629608px;}
._4d{width:174.800074px;}
._7d{width:176.763352px;}
._65{width:186.149839px;}
._6a{width:196.233343px;}
._6c{width:198.107791px;}
._64{width:201.437732px;}
._6b{width:207.525008px;}
._68{width:209.724730px;}
._4b{width:212.713659px;}
._6d{width:219.141948px;}
._76{width:224.160465px;}
._72{width:235.777405px;}
._74{width:238.147261px;}
._70{width:249.764200px;}
._67{width:257.663719px;}
._78{width:261.381140px;}
._4a{width:284.714938px;}
._66{width:294.605587px;}
._75{width:298.044201px;}
._69{width:306.222526px;}
._7c{width:309.661140px;}
._71{width:321.278080px;}
._49{width:330.394974px;}
._11{width:418.213325px;}
._41{width:477.540072px;}
._2d{width:482.508643px;}
._2f{width:484.182360px;}
._36{width:499.544689px;}
._33{width:502.473694px;}
._37{width:503.908308px;}
._34{width:505.761352px;}
._35{width:508.690356px;}
._2e{width:510.782502px;}
._31{width:512.396443px;}
._32{width:515.684101px;}
._30{width:519.031535px;}
._42{width:538.336264px;}
._43{width:785.922392px;}
._40{width:852.811289px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs8{font-size:35.865600px;}
.fs3{font-size:35.868000px;}
.fs7{font-size:41.842800px;}
.fsa{font-size:46.467758px;}
.fs2{font-size:47.820000px;}
.fs9{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:59.778000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:134.047500px;}
.y56{bottom:178.879500px;}
.y82{bottom:181.402500px;}
.y13b{bottom:181.522500px;}
.y129{bottom:185.029500px;}
.y58{bottom:188.682000px;}
.y3d{bottom:189.075000px;}
.y196{bottom:190.834500px;}
.y108{bottom:191.907000px;}
.y66{bottom:192.328500px;}
.y1b{bottom:202.074000px;}
.y13d{bottom:202.132500px;}
.ye6{bottom:202.789500px;}
.y1cf{bottom:203.632742px;}
.y55{bottom:205.779000px;}
.y81{bottom:208.302000px;}
.y13a{bottom:208.422000px;}
.yb2{bottom:210.079500px;}
.y128{bottom:210.544500px;}
.y57{bottom:214.197000px;}
.y1aa{bottom:214.744500px;}
.y3c{bottom:215.973000px;}
.y195{bottom:217.734000px;}
.y107{bottom:218.805000px;}
.y65{bottom:219.228000px;}
.y1a{bottom:220.489500px;}
.y6f{bottom:223.993500px;}
.y1ce{bottom:224.543606px;}
.y9a{bottom:225.205500px;}
.yf6{bottom:226.093500px;}
.y13c{bottom:227.646000px;}
.ye5{bottom:229.689000px;}
.y54{bottom:232.677000px;}
.y80{bottom:235.201500px;}
.y139{bottom:235.321500px;}
.y185{bottom:241.644000px;}
.y1a4{bottom:242.764500px;}
.y3b{bottom:242.872500px;}
.ycc{bottom:244.441500px;}
.y194{bottom:244.632000px;}
.y1cd{bottom:245.454471px;}
.y106{bottom:245.704500px;}
.y64{bottom:246.127500px;}
.yc0{bottom:250.609500px;}
.y99{bottom:252.105000px;}
.yf5{bottom:252.993000px;}
.y127{bottom:255.093000px;}
.yb1{bottom:255.459000px;}
.y19b{bottom:256.587000px;}
.ye4{bottom:256.588500px;}
.y10c{bottom:257.377500px;}
.y53{bottom:259.576500px;}
.y7f{bottom:262.101000px;}
.y138{bottom:262.221000px;}
.y19{bottom:265.039500px;}
.y1cc{bottom:266.365335px;}
.y6e{bottom:268.543500px;}
.y15e{bottom:269.664000px;}
.y3a{bottom:269.772000px;}
.ycb{bottom:271.341000px;}
.y105{bottom:272.604000px;}
.y63{bottom:273.025500px;}
.y10b{bottom:278.671500px;}
.y98{bottom:279.003000px;}
.yf4{bottom:279.892500px;}
.y126{bottom:281.992500px;}
.yb0{bottom:282.358500px;}
.ye3{bottom:283.486500px;}
.y52{bottom:286.476000px;}
.y1cb{bottom:287.275033px;}
.y7e{bottom:288.999000px;}
.y137{bottom:289.119000px;}
.y18{bottom:291.939000px;}
.y6d{bottom:295.441500px;}
.y15d{bottom:296.563500px;}
.y39{bottom:296.671500px;}
.y174{bottom:298.003500px;}
.yca{bottom:298.239000px;}
.y104{bottom:299.503500px;}
.y62{bottom:299.925000px;}
.y10a{bottom:299.967000px;}
.y97{bottom:305.902500px;}
.yf3{bottom:306.790500px;}
.y1ca{bottom:308.185898px;}
.y125{bottom:308.892000px;}
.yaf{bottom:309.256500px;}
.ye2{bottom:310.386000px;}
.y51{bottom:313.375500px;}
.y136{bottom:316.018500px;}
.y17{bottom:318.838500px;}
.y109{bottom:321.262500px;}
.y6c{bottom:322.341000px;}
.y38{bottom:323.569500px;}
.y173{bottom:324.903000px;}
.yc9{bottom:325.138500px;}
.y103{bottom:326.401500px;}
.y61{bottom:326.824500px;}
.y1c9{bottom:329.096762px;}
.y96{bottom:332.802000px;}
.y15c{bottom:333.549000px;}
.yf2{bottom:333.690000px;}
.y1a9{bottom:334.296000px;}
.y124{bottom:335.791500px;}
.yae{bottom:336.156000px;}
.ye1{bottom:337.285500px;}
.y50{bottom:340.273500px;}
.y135{bottom:342.918000px;}
.y7d{bottom:344.076000px;}
.y16{bottom:345.736500px;}
.y6b{bottom:349.240500px;}
.y1c8{bottom:350.007626px;}
.y37{bottom:350.469000px;}
.y172{bottom:351.802500px;}
.y102{bottom:353.301000px;}
.y60{bottom:353.724000px;}
.y95{bottom:359.701500px;}
.y15b{bottom:360.448500px;}
.yf1{bottom:360.589500px;}
.y184{bottom:361.195500px;}
.y123{bottom:362.689500px;}
.yad{bottom:363.055500px;}
.yc8{bottom:363.801000px;}
.ye0{bottom:364.185000px;}
.y4f{bottom:367.173000px;}
.y134{bottom:369.817500px;}
.y1c7{bottom:370.917325px;}
.y7c{bottom:370.975500px;}
.y15{bottom:372.636000px;}
.y6a{bottom:376.140000px;}
.y36{bottom:377.368500px;}
.y14d{bottom:378.630000px;}
.y171{bottom:378.702000px;}
.y5f{bottom:380.622000px;}
.y101{bottom:381.694500px;}
.y94{bottom:386.599500px;}
.y15a{bottom:387.348000px;}
.yf0{bottom:387.489000px;}
.y183{bottom:388.095000px;}
.y122{bottom:389.589000px;}
.yc7{bottom:390.700500px;}
.ydf{bottom:391.083000px;}
.y1c6{bottom:391.828189px;}
.y4e{bottom:394.072500px;}
.yac{bottom:394.437000px;}
.y133{bottom:396.715500px;}
.y7b{bottom:397.875000px;}
.y14{bottom:399.535500px;}
.y69{bottom:403.038000px;}
.y35{bottom:404.268000px;}
.y14c{bottom:405.529500px;}
.y5e{bottom:407.521500px;}
.y1c5{bottom:412.739053px;}
.y1a3{bottom:414.246000px;}
.yef{bottom:414.387000px;}
.y1a8{bottom:414.994500px;}
.y121{bottom:416.488500px;}
.y170{bottom:417.129000px;}
.yc6{bottom:417.600000px;}
.yde{bottom:419.476500px;}
.y4d{bottom:420.972000px;}
.y132{bottom:423.615000px;}
.y159{bottom:424.333500px;}
.y7a{bottom:424.774500px;}
.y13{bottom:426.435000px;}
.y182{bottom:426.949500px;}
.y93{bottom:428.443500px;}
.y68{bottom:429.937500px;}
.y34{bottom:431.166000px;}
.y14b{bottom:432.429000px;}
.y1c4{bottom:433.649917px;}
.y5d{bottom:434.421000px;}
.y100{bottom:435.195000px;}
.yab{bottom:439.269000px;}
.yee{bottom:441.286500px;}
.y1a7{bottom:441.892500px;}
.y120{bottom:443.388000px;}
.y16f{bottom:444.027000px;}
.y4c{bottom:447.870000px;}
.y131{bottom:450.514500px;}
.y158{bottom:451.233000px;}
.y79{bottom:451.672500px;}
.y12{bottom:453.333000px;}
.y181{bottom:453.847500px;}
.y1c3{bottom:454.559616px;}
.y67{bottom:456.837000px;}
.y33{bottom:458.065500px;}
.yc5{bottom:458.964000px;}
.y5c{bottom:461.320500px;}
.yff{bottom:462.691500px;}
.ydd{bottom:464.308500px;}
.yb3{bottom:465.025500px;}
.yaa{bottom:466.168500px;}
.y92{bottom:467.298000px;}
.yed{bottom:468.186000px;}
.y19a{bottom:468.792000px;}
.y11f{bottom:470.286000px;}
.y14a{bottom:470.784000px;}
.y16e{bottom:470.926500px;}
.y4b{bottom:474.769500px;}
.y1c2{bottom:475.470480px;}
.y130{bottom:477.414000px;}
.y157{bottom:478.132500px;}
.y78{bottom:478.572000px;}
.y11{bottom:480.232500px;}
.y180{bottom:480.747000px;}
.ybf{bottom:483.736500px;}
.y32{bottom:484.965000px;}
.yc4{bottom:485.863500px;}
.y5b{bottom:488.218500px;}
.yfe{bottom:490.188000px;}
.ydc{bottom:491.208000px;}
.ya9{bottom:493.068000px;}
.y91{bottom:494.196000px;}
.yec{bottom:495.085500px;}
.y193{bottom:495.691500px;}
.y1c1{bottom:496.381344px;}
.y11e{bottom:497.185500px;}
.y149{bottom:497.683500px;}
.y16d{bottom:497.826000px;}
.y4a{bottom:501.669000px;}
.y12f{bottom:504.312000px;}
.y1a2{bottom:505.030500px;}
.y77{bottom:505.471500px;}
.y10{bottom:507.132000px;}
.y17f{bottom:507.646500px;}
.ybe{bottom:510.634500px;}
.y31{bottom:511.864500px;}
.yc3{bottom:512.763000px;}
.y5a{bottom:515.118000px;}
.y1c0{bottom:517.292209px;}
.yfd{bottom:517.684500px;}
.ydb{bottom:518.107500px;}
.ya8{bottom:519.967500px;}
.y199{bottom:522.589500px;}
.y192{bottom:522.591000px;}
.y11d{bottom:524.085000px;}
.y148{bottom:524.583000px;}
.y49{bottom:528.568500px;}
.y12e{bottom:531.211500px;}
.y76{bottom:532.371000px;}
.y90{bottom:533.050500px;}
.yf{bottom:534.031500px;}
.y1a6{bottom:534.546000px;}
.y16c{bottom:536.253000px;}
.ybd{bottom:537.534000px;}
.y1bf{bottom:538.201907px;}
.y30{bottom:538.762500px;}
.yfc{bottom:540.931500px;}
.y59{bottom:542.017500px;}
.yda{bottom:545.005500px;}
.yeb{bottom:545.679000px;}
.y17e{bottom:546.501000px;}
.y191{bottom:549.489000px;}
.y11c{bottom:550.984500px;}
.y48{bottom:555.466500px;}
.y12d{bottom:558.111000px;}
.y1be{bottom:559.112771px;}
.y75{bottom:559.269000px;}
.yc2{bottom:559.536000px;}
.ye{bottom:560.929500px;}
.y198{bottom:561.444000px;}
.yfb{bottom:562.225500px;}
.y147{bottom:562.939500px;}
.y16b{bottom:563.152500px;}
.ybc{bottom:564.433500px;}
.y2f{bottom:565.662000px;}
.y156{bottom:568.917000px;}
.y8f{bottom:571.905000px;}
.yea{bottom:573.175500px;}
.y17d{bottom:573.399000px;}
.y11b{bottom:577.882500px;}
.ya7{bottom:577.950000px;}
.y1bd{bottom:580.023636px;}
.yc1{bottom:580.831500px;}
.y47{bottom:582.366000px;}
.y74{bottom:586.168500px;}
.yd{bottom:587.829000px;}
.y190{bottom:588.343500px;}
.y146{bottom:589.837500px;}
.y16a{bottom:590.052000px;}
.ybb{bottom:591.333000px;}
.y2e{bottom:592.561500px;}
.y12c{bottom:598.459500px;}
.yd9{bottom:598.804500px;}
.y17c{bottom:600.298500px;}
.ye9{bottom:600.672000px;}
.y1bc{bottom:600.934500px;}
.y11a{bottom:604.782000px;}
.ya6{bottom:604.848000px;}
.yfa{bottom:605.730000px;}
.y155{bottom:605.902500px;}
.y46{bottom:609.265500px;}
.y73{bottom:613.068000px;}
.y8e{bottom:613.749000px;}
.yc{bottom:614.728500px;}
.y18f{bottom:615.243000px;}
.y145{bottom:616.737000px;}
.y169{bottom:616.950000px;}
.yba{bottom:618.231000px;}
.y2d{bottom:619.461000px;}
.y1bb{bottom:621.844198px;}
.ye8{bottom:623.919000px;}
.yd8{bottom:625.704000px;}
.yf9{bottom:627.025500px;}
.y17b{bottom:627.198000px;}
.y119{bottom:631.681500px;}
.ya5{bottom:631.747500px;}
.y154{bottom:632.802000px;}
.y45{bottom:636.165000px;}
.y72{bottom:639.967500px;}
.y8d{bottom:640.647000px;}
.yb{bottom:641.628000px;}
.y18e{bottom:642.142500px;}
.y1ba{bottom:642.755062px;}
.y12b{bottom:643.291500px;}
.yb9{bottom:645.130500px;}
.ye7{bottom:645.214500px;}
.y2c{bottom:646.359000px;}
.yf8{bottom:648.319500px;}
.yd7{bottom:652.602000px;}
.y197{bottom:654.097500px;}
.y144{bottom:655.093500px;}
.y168{bottom:655.378500px;}
.y118{bottom:658.581000px;}
.ya4{bottom:658.647000px;}
.y1a1{bottom:659.701500px;}
.y44{bottom:663.063000px;}
.y1b9{bottom:663.665927px;}
.y12a{bottom:664.587000px;}
.y17a{bottom:666.052500px;}
.y8c{bottom:667.546500px;}
.ya{bottom:668.526000px;}
.yf7{bottom:669.615000px;}
.y153{bottom:669.789000px;}
.yb8{bottom:672.030000px;}
.y2b{bottom:673.258500px;}
.y71{bottom:676.429500px;}
.yd6{bottom:679.501500px;}
.y18d{bottom:680.995500px;}
.y1a5{bottom:680.997000px;}
.y143{bottom:681.993000px;}
.y167{bottom:682.276500px;}
.y1b8{bottom:684.576791px;}
.y117{bottom:685.479000px;}
.ya3{bottom:685.546500px;}
.y43{bottom:689.962500px;}
.y179{bottom:692.952000px;}
.y8b{bottom:694.446000px;}
.y9{bottom:695.425500px;}
.y152{bottom:696.687000px;}
.yb7{bottom:698.929500px;}
.y70{bottom:699.676500px;}
.y1b7{bottom:705.486489px;}
.yd5{bottom:706.401000px;}
.y18c{bottom:707.895000px;}
.y166{bottom:709.176000px;}
.y116{bottom:712.378500px;}
.y2a{bottom:713.607000px;}
.y42{bottom:716.862000px;}
.y178{bottom:719.850000px;}
.y142{bottom:720.348000px;}
.y8a{bottom:721.345500px;}
.ya2{bottom:722.008500px;}
.y8{bottom:722.325000px;}
.y151{bottom:723.586500px;}
.yb6{bottom:725.827500px;}
.y1b6{bottom:726.397354px;}
.yd4{bottom:733.300500px;}
.y18b{bottom:734.794500px;}
.y115{bottom:739.278000px;}
.y41{bottom:743.761500px;}
.y177{bottom:746.749500px;}
.y141{bottom:747.247500px;}
.y1b5{bottom:747.308218px;}
.ya1{bottom:747.414000px;}
.y165{bottom:747.603000px;}
.y89{bottom:748.243500px;}
.y7{bottom:749.224500px;}
.y1a0{bottom:750.486000px;}
.yb5{bottom:752.727000px;}
.yd3{bottom:760.198500px;}
.y150{bottom:760.573500px;}
.y114{bottom:766.177500px;}
.y1b4{bottom:768.219082px;}
.y29{bottom:769.332000px;}
.y40{bottom:770.659500px;}
.y18a{bottom:773.649000px;}
.y164{bottom:774.502500px;}
.y88{bottom:775.143000px;}
.y19f{bottom:777.385500px;}
.yb4{bottom:784.110000px;}
.y6{bottom:785.089500px;}
.y140{bottom:785.604000px;}
.yd2{bottom:787.098000px;}
.y14f{bottom:787.471500px;}
.ya0{bottom:788.593500px;}
.y1b3{bottom:789.128781px;}
.y113{bottom:793.075500px;}
.y28{bottom:796.231500px;}
.y3f{bottom:797.559000px;}
.y189{bottom:800.548500px;}
.y163{bottom:801.402000px;}
.y87{bottom:802.042500px;}
.y1b2{bottom:810.039645px;}
.y13f{bottom:812.503500px;}
.y14e{bottom:814.371000px;}
.y9f{bottom:815.491500px;}
.yd1{bottom:818.481000px;}
.y112{bottom:819.975000px;}
.y27{bottom:823.129500px;}
.y3e{bottom:824.458500px;}
.y188{bottom:827.446500px;}
.y86{bottom:828.942000px;}
.y1b1{bottom:830.950509px;}
.y176{bottom:839.401500px;}
.y162{bottom:839.829000px;}
.y19e{bottom:841.270500px;}
.y111{bottom:846.874500px;}
.y26{bottom:851.358000px;}
.y1b0{bottom:851.861373px;}
.y13e{bottom:852.105000px;}
.y9e{bottom:854.346000px;}
.y85{bottom:855.840000px;}
.yd0{bottom:863.313000px;}
.y175{bottom:866.301000px;}
.y161{bottom:866.728500px;}
.y19d{bottom:868.170000px;}
.y1af{bottom:872.771072px;}
.y110{bottom:873.774000px;}
.y25{bottom:878.256000px;}
.y9d{bottom:881.245500px;}
.y84{bottom:882.739500px;}
.y5{bottom:885.729000px;}
.ycf{bottom:890.211000px;}
.y187{bottom:893.200500px;}
.y160{bottom:893.628000px;}
.y1ae{bottom:893.681936px;}
.y19c{bottom:895.068000px;}
.y4{bottom:899.925000px;}
.y10f{bottom:900.672000px;}
.y24{bottom:905.155500px;}
.y9c{bottom:908.145000px;}
.y83{bottom:909.639000px;}
.yce{bottom:917.110500px;}
.y186{bottom:920.100000px;}
.y15f{bottom:920.526000px;}
.y1ad{bottom:922.027567px;}
.y3{bottom:923.088000px;}
.y10e{bottom:927.571500px;}
.y23{bottom:932.055000px;}
.y2{bottom:941.020500px;}
.y1ac{bottom:942.938431px;}
.ycd{bottom:944.010000px;}
.y9b{bottom:946.998000px;}
.y10d{bottom:954.471000px;}
.y22{bottom:958.954500px;}
.y1ab{bottom:963.022500px;}
.y1{bottom:985.852500px;}
.y21{bottom:1045.507500px;}
.y20{bottom:1067.107500px;}
.y1f{bottom:1088.707500px;}
.y1e{bottom:1110.307500px;}
.y1d{bottom:1131.907500px;}
.h8{height:24.209280px;}
.h4{height:24.210900px;}
.h11{height:34.850819px;}
.h3{height:35.865000px;}
.h9{height:35.865450px;}
.he{height:41.743000px;}
.hf{height:41.749000px;}
.ha{height:42.799330px;}
.h6{height:44.831700px;}
.h2{height:44.833500px;}
.h7{height:49.892047px;}
.hc{height:49.898047px;}
.hd{height:50.728903px;}
.h5{height:51.552000px;}
.hb{height:56.786820px;}
.h10{height:59.939700px;}
.h1{height:61.458264px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:41.236500px;}
.x1{left:200.652000px;}
.x2{left:205.186500px;}
.x18{left:208.125000px;}
.x6{left:217.290000px;}
.x8{left:223.068000px;}
.x4{left:229.923000px;}
.x19{left:231.370500px;}
.xb{left:234.214500px;}
.xf{left:238.012500px;}
.x15{left:249.291000px;}
.x12{left:261.300000px;}
.xe{left:262.743000px;}
.xc{left:265.234500px;}
.xd{left:266.895000px;}
.xa{left:268.680000px;}
.x23{left:270.878531px;}
.x22{left:272.169353px;}
.x24{left:273.701550px;}
.x1b{left:276.074979px;}
.x1e{left:291.577681px;}
.x1d{left:292.868504px;}
.x1f{left:294.401866px;}
.x1a{left:306.217500px;}
.x21{left:321.452668px;}
.x20{left:324.793500px;}
.x13{left:326.584500px;}
.x3{left:364.039500px;}
.x10{left:371.407500px;}
.x5{left:380.926500px;}
.x16{left:394.969500px;}
.x14{left:450.964500px;}
.x9{left:454.699500px;}
.x1c{left:473.795929px;}
.x17{left:522.315000px;}
.x11{left:523.740000px;}
@media print{
.v1{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.429333pt;}
.v3{vertical-align:14.997333pt;}
.v2{vertical-align:19.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000479pt;}
.lsf{letter-spacing:0.002079pt;}
.lse{letter-spacing:0.003733pt;}
.ls4{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.655169pt;}
.ls3{letter-spacing:2.656473pt;}
.lsb{letter-spacing:2.658245pt;}
.ls10{letter-spacing:8.878400pt;}
.ls11{letter-spacing:8.880479pt;}
.ls12{letter-spacing:11.806400pt;}
.ls13{letter-spacing:11.808479pt;}
.lsd{letter-spacing:14.123145pt;}
.lsc{letter-spacing:14.126400pt;}
.ls8{letter-spacing:17.707145pt;}
.ls7{letter-spacing:17.712479pt;}
.ls2{letter-spacing:18.775578pt;}
.lsa{letter-spacing:19.617975pt;}
.ls5{letter-spacing:20.439412pt;}
.ls6{letter-spacing:20.444745pt;}
.wsf6{word-spacing:-34.611401pt;}
.ws83{word-spacing:-14.760588pt;}
.ws2b{word-spacing:-13.581016pt;}
.ws74{word-spacing:-2.964870pt;}
.ws12d{word-spacing:-2.911736pt;}
.ws12e{word-spacing:-2.805468pt;}
.ws116{word-spacing:-2.699200pt;}
.wscc{word-spacing:-2.433531pt;}
.wsca{word-spacing:-2.380397pt;}
.ws12f{word-spacing:-2.274129pt;}
.wsa0{word-spacing:-2.220996pt;}
.wsce{word-spacing:-2.167862pt;}
.ws10e{word-spacing:-1.902192pt;}
.ws73{word-spacing:-1.636523pt;}
.ws30{word-spacing:-1.583389pt;}
.ws130{word-spacing:-1.530255pt;}
.ws98{word-spacing:-1.477121pt;}
.wsb0{word-spacing:-1.423988pt;}
.ws108{word-spacing:-1.317720pt;}
.wsb1{word-spacing:-1.264586pt;}
.wsa2{word-spacing:-1.105184pt;}
.ws85{word-spacing:-1.052051pt;}
.ws122{word-spacing:-0.998917pt;}
.ws28{word-spacing:-0.945783pt;}
.ws84{word-spacing:-0.839515pt;}
.wsf{word-spacing:-0.733436pt;}
.wsac{word-spacing:-0.680113pt;}
.ws129{word-spacing:-0.626980pt;}
.ws101{word-spacing:-0.573846pt;}
.ws9d{word-spacing:-0.520712pt;}
.wsbb{word-spacing:-0.467578pt;}
.ws4a{word-spacing:-0.308176pt;}
.ws43{word-spacing:-0.255043pt;}
.wsc0{word-spacing:-0.201909pt;}
.ws13{word-spacing:-0.201651pt;}
.ws9f{word-spacing:-0.095641pt;}
.wsdc{word-spacing:-0.053134pt;}
.ws86{word-spacing:-0.042507pt;}
.ws1a{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.010627pt;}
.ws128{word-spacing:0.116895pt;}
.ws38{word-spacing:0.170028pt;}
.ws5{word-spacing:0.222906pt;}
.ws9a{word-spacing:0.223162pt;}
.ws15{word-spacing:0.223171pt;}
.wse8{word-spacing:0.276296pt;}
.ws105{word-spacing:0.382564pt;}
.ws9{word-spacing:0.382579pt;}
.wsed{word-spacing:0.488832pt;}
.ws2e{word-spacing:0.541965pt;}
.wsff{word-spacing:0.595099pt;}
.wsec{word-spacing:0.648233pt;}
.ws81{word-spacing:0.701367pt;}
.wsa{word-spacing:0.807455pt;}
.ws66{word-spacing:0.807635pt;}
.wsb8{word-spacing:0.860769pt;}
.ws40{word-spacing:0.913903pt;}
.wsfd{word-spacing:0.967036pt;}
.wsf8{word-spacing:1.073304pt;}
.ws9b{word-spacing:1.126438pt;}
.ws125{word-spacing:1.232706pt;}
.ws36{word-spacing:1.285840pt;}
.ws59{word-spacing:1.338973pt;}
.ws10d{word-spacing:1.367114pt;}
.ws58{word-spacing:1.392107pt;}
.ws9e{word-spacing:1.445241pt;}
.ws37{word-spacing:1.498375pt;}
.ws11b{word-spacing:1.551509pt;}
.ws118{word-spacing:1.604643pt;}
.ws33{word-spacing:1.710911pt;}
.ws109{word-spacing:1.817178pt;}
.ws17{word-spacing:1.817623pt;}
.ws68{word-spacing:1.870312pt;}
.wsd0{word-spacing:1.976580pt;}
.ws3c{word-spacing:2.082848pt;}
.ws99{word-spacing:2.135981pt;}
.ws57{word-spacing:2.189115pt;}
.ws5d{word-spacing:2.242249pt;}
.ws13b{word-spacing:2.280018pt;}
.ws67{word-spacing:2.295383pt;}
.ws13a{word-spacing:2.321323pt;}
.ws2f{word-spacing:2.348517pt;}
.wsfc{word-spacing:2.367651pt;}
.ws12a{word-spacing:2.401651pt;}
.ws27{word-spacing:2.454785pt;}
.ws16{word-spacing:2.454989pt;}
.ws4b{word-spacing:2.507919pt;}
.wsc5{word-spacing:2.561052pt;}
.ws131{word-spacing:2.614186pt;}
.ws139{word-spacing:2.626977pt;}
.ws1b{word-spacing:2.667320pt;}
.ws76{word-spacing:2.720454pt;}
.ws50{word-spacing:2.773588pt;}
.ws64{word-spacing:2.826722pt;}
.ws8c{word-spacing:2.877737pt;}
.ws72{word-spacing:2.879856pt;}
.ws20{word-spacing:2.932989pt;}
.ws2{word-spacing:2.933107pt;}
.ws1{word-spacing:2.933373pt;}
.wsda{word-spacing:2.946612pt;}
.wsde{word-spacing:2.948690pt;}
.ws110{word-spacing:2.951173pt;}
.wsdb{word-spacing:2.951945pt;}
.wsdd{word-spacing:2.954024pt;}
.wsd9{word-spacing:2.986123pt;}
.ws8a{word-spacing:3.039257pt;}
.ws5a{word-spacing:3.092391pt;}
.ws6e{word-spacing:3.198659pt;}
.wsaf{word-spacing:3.251793pt;}
.ws31{word-spacing:3.304927pt;}
.ws12{word-spacing:3.305059pt;}
.ws1c{word-spacing:3.358060pt;}
.ws6b{word-spacing:3.379314pt;}
.ws123{word-spacing:3.464328pt;}
.ws77{word-spacing:3.517462pt;}
.ws100{word-spacing:3.570596pt;}
.wsa5{word-spacing:3.623730pt;}
.wsf0{word-spacing:3.676864pt;}
.ws44{word-spacing:3.729997pt;}
.ws82{word-spacing:3.783131pt;}
.wsa6{word-spacing:3.836265pt;}
.wscf{word-spacing:3.889399pt;}
.wsc{word-spacing:3.889555pt;}
.wsc1{word-spacing:3.942533pt;}
.wsbe{word-spacing:3.995667pt;}
.ws62{word-spacing:4.048801pt;}
.wsaa{word-spacing:4.101935pt;}
.wsbf{word-spacing:4.155068pt;}
.ws26{word-spacing:4.208202pt;}
.ws42{word-spacing:4.261336pt;}
.ws3a{word-spacing:4.314470pt;}
.ws6{word-spacing:4.314643pt;}
.ws3f{word-spacing:4.367604pt;}
.ws5e{word-spacing:4.420738pt;}
.wse{word-spacing:4.420915pt;}
.ws1f{word-spacing:4.473872pt;}
.ws4f{word-spacing:4.527005pt;}
.wse4{word-spacing:4.535518pt;}
.ws7f{word-spacing:4.580139pt;}
.ws78{word-spacing:4.633273pt;}
.wsba{word-spacing:4.686407pt;}
.ws3e{word-spacing:4.739541pt;}
.ws5b{word-spacing:4.792675pt;}
.ws115{word-spacing:4.845809pt;}
.wsc7{word-spacing:4.875576pt;}
.wsee{word-spacing:4.898943pt;}
.wsbd{word-spacing:4.952076pt;}
.ws8{word-spacing:4.952116pt;}
.ws56{word-spacing:5.005210pt;}
.wsc2{word-spacing:5.058344pt;}
.ws69{word-spacing:5.111478pt;}
.ws75{word-spacing:5.217746pt;}
.ws7a{word-spacing:5.270880pt;}
.ws35{word-spacing:5.377147pt;}
.wsa1{word-spacing:5.387774pt;}
.ws34{word-spacing:5.430281pt;}
.ws22{word-spacing:5.440908pt;}
.ws39{word-spacing:5.483415pt;}
.ws10{word-spacing:5.483901pt;}
.ws10c{word-spacing:5.536549pt;}
.ws87{word-spacing:5.589683pt;}
.ws1d{word-spacing:5.642817pt;}
.ws4d{word-spacing:5.695951pt;}
.ws133{word-spacing:5.749084pt;}
.ws11e{word-spacing:5.802218pt;}
.wsd2{word-spacing:5.853241pt;}
.ws2d{word-spacing:5.855352pt;}
.ws3d{word-spacing:5.908486pt;}
.wsfe{word-spacing:5.961620pt;}
.ws29{word-spacing:6.014754pt;}
.ws89{word-spacing:6.067888pt;}
.ws4c{word-spacing:6.174155pt;}
.ws112{word-spacing:6.227289pt;}
.ws14{word-spacing:6.227539pt;}
.wsd7{word-spacing:6.278313pt;}
.ws79{word-spacing:6.280423pt;}
.wsf4{word-spacing:6.333557pt;}
.ws46{word-spacing:6.386691pt;}
.wsc3{word-spacing:6.439825pt;}
.wsa7{word-spacing:6.492959pt;}
.ws49{word-spacing:6.546092pt;}
.wsb3{word-spacing:6.599226pt;}
.wsdf{word-spacing:6.647118pt;}
.wsad{word-spacing:6.652360pt;}
.ws5c{word-spacing:6.758628pt;}
.ws1e{word-spacing:6.811762pt;}
.ws11{word-spacing:6.811929pt;}
.wsb4{word-spacing:6.864896pt;}
.ws32{word-spacing:6.918029pt;}
.ws6a{word-spacing:6.971163pt;}
.wsb{word-spacing:7.024207pt;}
.ws2a{word-spacing:7.077431pt;}
.ws25{word-spacing:7.130565pt;}
.ws6f{word-spacing:7.183699pt;}
.wsf3{word-spacing:7.236833pt;}
.wsf7{word-spacing:7.289967pt;}
.wsb7{word-spacing:7.343100pt;}
.ws52{word-spacing:7.396234pt;}
.ws11f{word-spacing:7.502502pt;}
.ws65{word-spacing:7.555636pt;}
.wsab{word-spacing:7.608770pt;}
.ws70{word-spacing:7.661904pt;}
.wsef{word-spacing:7.715037pt;}
.ws80{word-spacing:7.768171pt;}
.ws47{word-spacing:7.821305pt;}
.wsd{word-spacing:7.821566pt;}
.ws106{word-spacing:7.980707pt;}
.ws126{word-spacing:8.033841pt;}
.ws135{word-spacing:8.086975pt;}
.wsbc{word-spacing:8.140108pt;}
.ws51{word-spacing:8.193242pt;}
.wse2{word-spacing:8.246376pt;}
.ws7{word-spacing:8.246707pt;}
.ws11d{word-spacing:8.299510pt;}
.wsc4{word-spacing:8.352644pt;}
.ws53{word-spacing:8.405778pt;}
.wsb2{word-spacing:8.458912pt;}
.ws113{word-spacing:8.512045pt;}
.wsf5{word-spacing:8.565179pt;}
.wseb{word-spacing:8.618313pt;}
.ws5f{word-spacing:8.671447pt;}
.ws45{word-spacing:8.724581pt;}
.wsb9{word-spacing:8.777715pt;}
.wse0{word-spacing:8.841475pt;}
.ws124{word-spacing:8.883983pt;}
.ws48{word-spacing:8.937116pt;}
.ws71{word-spacing:8.990250pt;}
.ws63{word-spacing:9.043384pt;}
.ws24{word-spacing:9.096518pt;}
.ws55{word-spacing:9.149652pt;}
.wsa3{word-spacing:9.255920pt;}
.ws4e{word-spacing:9.309053pt;}
.wsae{word-spacing:9.362187pt;}
.ws3b{word-spacing:9.415321pt;}
.ws7b{word-spacing:9.468455pt;}
.ws7d{word-spacing:9.574723pt;}
.ws7e{word-spacing:9.680991pt;}
.wsea{word-spacing:9.734124pt;}
.wse9{word-spacing:9.787258pt;}
.wsfa{word-spacing:9.840392pt;}
.ws9c{word-spacing:9.893526pt;}
.ws54{word-spacing:9.946660pt;}
.ws12c{word-spacing:10.052928pt;}
.ws88{word-spacing:10.212329pt;}
.wsa8{word-spacing:10.371731pt;}
.ws6d{word-spacing:10.477999pt;}
.ws134{word-spacing:10.584266pt;}
.ws10f{word-spacing:10.637400pt;}
.ws104{word-spacing:10.690534pt;}
.wsb5{word-spacing:10.796802pt;}
.wsf2{word-spacing:10.796829pt;}
.ws119{word-spacing:10.849936pt;}
.ws103{word-spacing:10.956203pt;}
.ws102{word-spacing:11.009337pt;}
.ws137{word-spacing:11.062471pt;}
.wsf1{word-spacing:11.115605pt;}
.ws10a{word-spacing:11.168739pt;}
.wse1{word-spacing:11.487542pt;}
.ws7c{word-spacing:11.540676pt;}
.ws41{word-spacing:11.593810pt;}
.wsf9{word-spacing:11.700077pt;}
.ws11a{word-spacing:11.753211pt;}
.ws136{word-spacing:11.912613pt;}
.ws11c{word-spacing:11.965747pt;}
.ws117{word-spacing:12.072015pt;}
.wsa4{word-spacing:12.231416pt;}
.ws60{word-spacing:12.284581pt;}
.ws121{word-spacing:12.550219pt;}
.wsa9{word-spacing:12.869023pt;}
.ws6c{word-spacing:13.187826pt;}
.ws23{word-spacing:13.581016pt;}
.wse5{word-spacing:13.602304pt;}
.ws10b{word-spacing:13.612897pt;}
.ws132{word-spacing:13.825432pt;}
.ws127{word-spacing:14.197369pt;}
.ws111{word-spacing:14.409905pt;}
.wsfb{word-spacing:14.579970pt;}
.ws120{word-spacing:14.834976pt;}
.wscd{word-spacing:14.976302pt;}
.wscb{word-spacing:14.981636pt;}
.ws19{word-spacing:15.004768pt;}
.ws61{word-spacing:15.005042pt;}
.ws8b{word-spacing:15.047549pt;}
.wsd3{word-spacing:15.472621pt;}
.wsd5{word-spacing:15.515128pt;}
.ws18{word-spacing:15.770101pt;}
.wse6{word-spacing:15.812678pt;}
.ws3{word-spacing:16.279968pt;}
.ws4{word-spacing:16.280096pt;}
.wse3{word-spacing:16.450286pt;}
.wsc6{word-spacing:16.790344pt;}
.wsd1{word-spacing:17.597981pt;}
.wsd6{word-spacing:17.938038pt;}
.wsd4{word-spacing:18.165111pt;}
.wse7{word-spacing:18.474445pt;}
.wsb6{word-spacing:20.233427pt;}
.ws12b{word-spacing:20.573433pt;}
.ws114{word-spacing:21.848646pt;}
.ws0{word-spacing:23.565696pt;}
.ws107{word-spacing:23.846539pt;}
.ws21{word-spacing:32.130070pt;}
.ws138{word-spacing:36.372896pt;}
.ws140{word-spacing:64.030506pt;}
.ws13d{word-spacing:67.954450pt;}
.ws13e{word-spacing:74.356674pt;}
.wsd8{word-spacing:76.801561pt;}
.ws13f{word-spacing:78.280618pt;}
.ws13c{word-spacing:84.682842pt;}
.wsc9{word-spacing:125.219090pt;}
.ws96{word-spacing:218.225462pt;}
.ws97{word-spacing:222.544754pt;}
.ws94{word-spacing:224.165405pt;}
.ws8e{word-spacing:228.582080pt;}
.ws8d{word-spacing:228.587585pt;}
.ws91{word-spacing:229.292956pt;}
.ws95{word-spacing:229.298818pt;}
.ws8f{word-spacing:230.069405pt;}
.ws93{word-spacing:232.866295pt;}
.ws90{word-spacing:233.025091pt;}
.ws92{word-spacing:235.238424pt;}
.wsc8{word-spacing:713.124420pt;}
._28{margin-left:-1929.296649pt;}
._25{margin-left:-1928.018050pt;}
._1d{margin-left:-1915.275961pt;}
._16{margin-left:-1913.954934pt;}
._13{margin-left:-1901.166736pt;}
._52{margin-left:-1852.405523pt;}
._60{margin-left:-1774.628832pt;}
._54{margin-left:-1744.203904pt;}
._5a{margin-left:-1724.089037pt;}
._5f{margin-left:-1661.194656pt;}
._3c{margin-left:-1635.409976pt;}
._3d{margin-left:-1629.337989pt;}
._5b{margin-left:-1532.354396pt;}
._22{margin-left:-1455.254512pt;}
._59{margin-left:-1453.205833pt;}
._5d{margin-left:-1305.429746pt;}
._26{margin-left:-1142.699652pt;}
._29{margin-left:-1097.422637pt;}
._46{margin-left:-977.388540pt;}
._5c{margin-left:-955.331408pt;}
._61{margin-left:-925.316226pt;}
._5e{margin-left:-727.126764pt;}
._51{margin-left:-610.521948pt;}
._4f{margin-left:-559.330869pt;}
._58{margin-left:-473.300969pt;}
._3f{margin-left:-471.630702pt;}
._3a{margin-left:-384.138754pt;}
._3b{margin-left:-351.992765pt;}
._56{margin-left:-331.035041pt;}
._57{margin-left:-27.555363pt;}
._4{margin-left:-26.515980pt;}
._38{margin-left:-25.331659pt;}
._55{margin-left:-23.312146pt;}
._3{margin-left:-20.670170pt;}
._2{margin-left:-5.845226pt;}
._a{margin-left:-4.410288pt;}
._6{margin-left:-3.254787pt;}
._1{margin-left:-2.065824pt;}
._8{margin-left:-0.909261pt;}
._7{width:0.988429pt;}
._0{width:1.989312pt;}
._5{width:2.975032pt;}
._15{width:4.221346pt;}
._44{width:13.469967pt;}
._39{width:14.730686pt;}
._f{width:15.642873pt;}
._d{width:16.571633pt;}
._47{width:17.693578pt;}
._19{width:18.631589pt;}
._1c{width:20.077793pt;}
._3e{width:21.244905pt;}
._10{width:22.363670pt;}
._c{width:23.341475pt;}
._b{width:24.336288pt;}
._17{width:25.391180pt;}
._1a{width:26.530781pt;}
._9{width:27.896400pt;}
._1b{width:29.559411pt;}
._23{width:30.551973pt;}
._e{width:32.138781pt;}
._14{width:33.216987pt;}
._20{width:34.471466pt;}
._18{width:35.443320pt;}
._12{width:36.707449pt;}
._24{width:38.118273pt;}
._21{width:39.973649pt;}
._1f{width:41.734786pt;}
._27{width:43.493259pt;}
._2a{width:46.007532pt;}
._53{width:47.097720pt;}
._1e{width:49.703543pt;}
._50{width:52.428088pt;}
._45{width:53.346402pt;}
._2b{width:63.760640pt;}
._2c{width:65.907838pt;}
._63{width:68.404603pt;}
._80{width:79.277658pt;}
._4e{width:81.869279pt;}
._7a{width:85.679883pt;}
._7e{width:89.755056pt;}
._7f{width:96.006051pt;}
._73{width:100.081225pt;}
._6e{width:101.308499pt;}
._48{width:113.446336pt;}
._62{width:125.899490pt;}
._79{width:136.759775pt;}
._4c{width:137.954133pt;}
._6f{width:141.344594pt;}
._7b{width:146.796811pt;}
._77{width:151.670763pt;}
._4d{width:155.377843pt;}
._7d{width:157.122980pt;}
._65{width:165.466524pt;}
._6a{width:174.429638pt;}
._6c{width:176.095814pt;}
._64{width:179.055761pt;}
._6b{width:184.466674pt;}
._68{width:186.421983pt;}
._4b{width:189.078808pt;}
._6d{width:194.792842pt;}
._76{width:199.253747pt;}
._72{width:209.579916pt;}
._74{width:211.686454pt;}
._70{width:222.012622pt;}
._67{width:229.034417pt;}
._78{width:232.338791pt;}
._4a{width:253.079945pt;}
._66{width:261.871633pt;}
._75{width:264.928179pt;}
._69{width:272.197801pt;}
._7c{width:275.254347pt;}
._71{width:285.580516pt;}
._49{width:293.684422pt;}
._11{width:371.745178pt;}
._41{width:424.480064pt;}
._2d{width:428.896572pt;}
._2f{width:430.384320pt;}
._36{width:444.039724pt;}
._33{width:446.643283pt;}
._37{width:447.918496pt;}
._34{width:449.565646pt;}
._35{width:452.169205pt;}
._2e{width:454.028891pt;}
._31{width:455.463505pt;}
._32{width:458.385868pt;}
._30{width:461.361364pt;}
._42{width:478.521123pt;}
._43{width:698.597682pt;}
._40{width:758.054479pt;}
.fs6{font-size:26.566933pt;}
.fs8{font-size:31.880533pt;}
.fs3{font-size:31.882667pt;}
.fs7{font-size:37.193600pt;}
.fsa{font-size:41.304674pt;}
.fs2{font-size:42.506667pt;}
.fs9{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:53.136000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:119.153333pt;}
.y56{bottom:159.004000pt;}
.y82{bottom:161.246667pt;}
.y13b{bottom:161.353333pt;}
.y129{bottom:164.470667pt;}
.y58{bottom:167.717333pt;}
.y3d{bottom:168.066667pt;}
.y196{bottom:169.630667pt;}
.y108{bottom:170.584000pt;}
.y66{bottom:170.958667pt;}
.y1b{bottom:179.621333pt;}
.y13d{bottom:179.673333pt;}
.ye6{bottom:180.257333pt;}
.y1cf{bottom:181.006882pt;}
.y55{bottom:182.914667pt;}
.y81{bottom:185.157333pt;}
.y13a{bottom:185.264000pt;}
.yb2{bottom:186.737333pt;}
.y128{bottom:187.150667pt;}
.y57{bottom:190.397333pt;}
.y1aa{bottom:190.884000pt;}
.y3c{bottom:191.976000pt;}
.y195{bottom:193.541333pt;}
.y107{bottom:194.493333pt;}
.y65{bottom:194.869333pt;}
.y1a{bottom:195.990667pt;}
.y6f{bottom:199.105333pt;}
.y1ce{bottom:199.594317pt;}
.y9a{bottom:200.182667pt;}
.yf6{bottom:200.972000pt;}
.y13c{bottom:202.352000pt;}
.ye5{bottom:204.168000pt;}
.y54{bottom:206.824000pt;}
.y80{bottom:209.068000pt;}
.y139{bottom:209.174667pt;}
.y185{bottom:214.794667pt;}
.y1a4{bottom:215.790667pt;}
.y3b{bottom:215.886667pt;}
.ycc{bottom:217.281333pt;}
.y194{bottom:217.450667pt;}
.y1cd{bottom:218.181752pt;}
.y106{bottom:218.404000pt;}
.y64{bottom:218.780000pt;}
.yc0{bottom:222.764000pt;}
.y99{bottom:224.093333pt;}
.yf5{bottom:224.882667pt;}
.y127{bottom:226.749333pt;}
.yb1{bottom:227.074667pt;}
.y19b{bottom:228.077333pt;}
.ye4{bottom:228.078667pt;}
.y10c{bottom:228.780000pt;}
.y53{bottom:230.734667pt;}
.y7f{bottom:232.978667pt;}
.y138{bottom:233.085333pt;}
.y19{bottom:235.590667pt;}
.y1cc{bottom:236.769187pt;}
.y6e{bottom:238.705333pt;}
.y15e{bottom:239.701333pt;}
.y3a{bottom:239.797333pt;}
.ycb{bottom:241.192000pt;}
.y105{bottom:242.314667pt;}
.y63{bottom:242.689333pt;}
.y10b{bottom:247.708000pt;}
.y98{bottom:248.002667pt;}
.yf4{bottom:248.793333pt;}
.y126{bottom:250.660000pt;}
.yb0{bottom:250.985333pt;}
.ye3{bottom:251.988000pt;}
.y52{bottom:254.645333pt;}
.y1cb{bottom:255.355585pt;}
.y7e{bottom:256.888000pt;}
.y137{bottom:256.994667pt;}
.y18{bottom:259.501333pt;}
.y6d{bottom:262.614667pt;}
.y15d{bottom:263.612000pt;}
.y39{bottom:263.708000pt;}
.y174{bottom:264.892000pt;}
.yca{bottom:265.101333pt;}
.y104{bottom:266.225333pt;}
.y62{bottom:266.600000pt;}
.y10a{bottom:266.637333pt;}
.y97{bottom:271.913333pt;}
.yf3{bottom:272.702667pt;}
.y1ca{bottom:273.943020pt;}
.y125{bottom:274.570667pt;}
.yaf{bottom:274.894667pt;}
.ye2{bottom:275.898667pt;}
.y51{bottom:278.556000pt;}
.y136{bottom:280.905333pt;}
.y17{bottom:283.412000pt;}
.y109{bottom:285.566667pt;}
.y6c{bottom:286.525333pt;}
.y38{bottom:287.617333pt;}
.y173{bottom:288.802667pt;}
.yc9{bottom:289.012000pt;}
.y103{bottom:290.134667pt;}
.y61{bottom:290.510667pt;}
.y1c9{bottom:292.530455pt;}
.y96{bottom:295.824000pt;}
.y15c{bottom:296.488000pt;}
.yf2{bottom:296.613333pt;}
.y1a9{bottom:297.152000pt;}
.y124{bottom:298.481333pt;}
.yae{bottom:298.805333pt;}
.ye1{bottom:299.809333pt;}
.y50{bottom:302.465333pt;}
.y135{bottom:304.816000pt;}
.y7d{bottom:305.845333pt;}
.y16{bottom:307.321333pt;}
.y6b{bottom:310.436000pt;}
.y1c8{bottom:311.117890pt;}
.y37{bottom:311.528000pt;}
.y172{bottom:312.713333pt;}
.y102{bottom:314.045333pt;}
.y60{bottom:314.421333pt;}
.y95{bottom:319.734667pt;}
.y15b{bottom:320.398667pt;}
.yf1{bottom:320.524000pt;}
.y184{bottom:321.062667pt;}
.y123{bottom:322.390667pt;}
.yad{bottom:322.716000pt;}
.yc8{bottom:323.378667pt;}
.ye0{bottom:323.720000pt;}
.y4f{bottom:326.376000pt;}
.y134{bottom:328.726667pt;}
.y1c7{bottom:329.704288pt;}
.y7c{bottom:329.756000pt;}
.y15{bottom:331.232000pt;}
.y6a{bottom:334.346667pt;}
.y36{bottom:335.438667pt;}
.y14d{bottom:336.560000pt;}
.y171{bottom:336.624000pt;}
.y5f{bottom:338.330667pt;}
.y101{bottom:339.284000pt;}
.y94{bottom:343.644000pt;}
.y15a{bottom:344.309333pt;}
.yf0{bottom:344.434667pt;}
.y183{bottom:344.973333pt;}
.y122{bottom:346.301333pt;}
.yc7{bottom:347.289333pt;}
.ydf{bottom:347.629333pt;}
.y1c6{bottom:348.291723pt;}
.y4e{bottom:350.286667pt;}
.yac{bottom:350.610667pt;}
.y133{bottom:352.636000pt;}
.y7b{bottom:353.666667pt;}
.y14{bottom:355.142667pt;}
.y69{bottom:358.256000pt;}
.y35{bottom:359.349333pt;}
.y14c{bottom:360.470667pt;}
.y5e{bottom:362.241333pt;}
.y1c5{bottom:366.879158pt;}
.y1a3{bottom:368.218667pt;}
.yef{bottom:368.344000pt;}
.y1a8{bottom:368.884000pt;}
.y121{bottom:370.212000pt;}
.y170{bottom:370.781333pt;}
.yc6{bottom:371.200000pt;}
.yde{bottom:372.868000pt;}
.y4d{bottom:374.197333pt;}
.y132{bottom:376.546667pt;}
.y159{bottom:377.185333pt;}
.y7a{bottom:377.577333pt;}
.y13{bottom:379.053333pt;}
.y182{bottom:379.510667pt;}
.y93{bottom:380.838667pt;}
.y68{bottom:382.166667pt;}
.y34{bottom:383.258667pt;}
.y14b{bottom:384.381333pt;}
.y1c4{bottom:385.466593pt;}
.y5d{bottom:386.152000pt;}
.y100{bottom:386.840000pt;}
.yab{bottom:390.461333pt;}
.yee{bottom:392.254667pt;}
.y1a7{bottom:392.793333pt;}
.y120{bottom:394.122667pt;}
.y16f{bottom:394.690667pt;}
.y4c{bottom:398.106667pt;}
.y131{bottom:400.457333pt;}
.y158{bottom:401.096000pt;}
.y79{bottom:401.486667pt;}
.y12{bottom:402.962667pt;}
.y181{bottom:403.420000pt;}
.y1c3{bottom:404.052992pt;}
.y67{bottom:406.077333pt;}
.y33{bottom:407.169333pt;}
.yc5{bottom:407.968000pt;}
.y5c{bottom:410.062667pt;}
.yff{bottom:411.281333pt;}
.ydd{bottom:412.718667pt;}
.yb3{bottom:413.356000pt;}
.yaa{bottom:414.372000pt;}
.y92{bottom:415.376000pt;}
.yed{bottom:416.165333pt;}
.y19a{bottom:416.704000pt;}
.y11f{bottom:418.032000pt;}
.y14a{bottom:418.474667pt;}
.y16e{bottom:418.601333pt;}
.y4b{bottom:422.017333pt;}
.y1c2{bottom:422.640427pt;}
.y130{bottom:424.368000pt;}
.y157{bottom:425.006667pt;}
.y78{bottom:425.397333pt;}
.y11{bottom:426.873333pt;}
.y180{bottom:427.330667pt;}
.ybf{bottom:429.988000pt;}
.y32{bottom:431.080000pt;}
.yc4{bottom:431.878667pt;}
.y5b{bottom:433.972000pt;}
.yfe{bottom:435.722667pt;}
.ydc{bottom:436.629333pt;}
.ya9{bottom:438.282667pt;}
.y91{bottom:439.285333pt;}
.yec{bottom:440.076000pt;}
.y193{bottom:440.614667pt;}
.y1c1{bottom:441.227862pt;}
.y11e{bottom:441.942667pt;}
.y149{bottom:442.385333pt;}
.y16d{bottom:442.512000pt;}
.y4a{bottom:445.928000pt;}
.y12f{bottom:448.277333pt;}
.y1a2{bottom:448.916000pt;}
.y77{bottom:449.308000pt;}
.y10{bottom:450.784000pt;}
.y17f{bottom:451.241333pt;}
.ybe{bottom:453.897333pt;}
.y31{bottom:454.990667pt;}
.yc3{bottom:455.789333pt;}
.y5a{bottom:457.882667pt;}
.y1c0{bottom:459.815297pt;}
.yfd{bottom:460.164000pt;}
.ydb{bottom:460.540000pt;}
.ya8{bottom:462.193333pt;}
.y199{bottom:464.524000pt;}
.y192{bottom:464.525333pt;}
.y11d{bottom:465.853333pt;}
.y148{bottom:466.296000pt;}
.y49{bottom:469.838667pt;}
.y12e{bottom:472.188000pt;}
.y76{bottom:473.218667pt;}
.y90{bottom:473.822667pt;}
.yf{bottom:474.694667pt;}
.y1a6{bottom:475.152000pt;}
.y16c{bottom:476.669333pt;}
.ybd{bottom:477.808000pt;}
.y1bf{bottom:478.401695pt;}
.y30{bottom:478.900000pt;}
.yfc{bottom:480.828000pt;}
.y59{bottom:481.793333pt;}
.yda{bottom:484.449333pt;}
.yeb{bottom:485.048000pt;}
.y17e{bottom:485.778667pt;}
.y191{bottom:488.434667pt;}
.y11c{bottom:489.764000pt;}
.y48{bottom:493.748000pt;}
.y12d{bottom:496.098667pt;}
.y1be{bottom:496.989130pt;}
.y75{bottom:497.128000pt;}
.yc2{bottom:497.365333pt;}
.ye{bottom:498.604000pt;}
.y198{bottom:499.061333pt;}
.yfb{bottom:499.756000pt;}
.y147{bottom:500.390667pt;}
.y16b{bottom:500.580000pt;}
.ybc{bottom:501.718667pt;}
.y2f{bottom:502.810667pt;}
.y156{bottom:505.704000pt;}
.y8f{bottom:508.360000pt;}
.yea{bottom:509.489333pt;}
.y17d{bottom:509.688000pt;}
.y11b{bottom:513.673333pt;}
.ya7{bottom:513.733333pt;}
.y1bd{bottom:515.576565pt;}
.yc1{bottom:516.294667pt;}
.y47{bottom:517.658667pt;}
.y74{bottom:521.038667pt;}
.yd{bottom:522.514667pt;}
.y190{bottom:522.972000pt;}
.y146{bottom:524.300000pt;}
.y16a{bottom:524.490667pt;}
.ybb{bottom:525.629333pt;}
.y2e{bottom:526.721333pt;}
.y12c{bottom:531.964000pt;}
.yd9{bottom:532.270667pt;}
.y17c{bottom:533.598667pt;}
.ye9{bottom:533.930667pt;}
.y1bc{bottom:534.164000pt;}
.y11a{bottom:537.584000pt;}
.ya6{bottom:537.642667pt;}
.yfa{bottom:538.426667pt;}
.y155{bottom:538.580000pt;}
.y46{bottom:541.569333pt;}
.y73{bottom:544.949333pt;}
.y8e{bottom:545.554667pt;}
.yc{bottom:546.425333pt;}
.y18f{bottom:546.882667pt;}
.y145{bottom:548.210667pt;}
.y169{bottom:548.400000pt;}
.yba{bottom:549.538667pt;}
.y2d{bottom:550.632000pt;}
.y1bb{bottom:552.750398pt;}
.ye8{bottom:554.594667pt;}
.yd8{bottom:556.181333pt;}
.yf9{bottom:557.356000pt;}
.y17b{bottom:557.509333pt;}
.y119{bottom:561.494667pt;}
.ya5{bottom:561.553333pt;}
.y154{bottom:562.490667pt;}
.y45{bottom:565.480000pt;}
.y72{bottom:568.860000pt;}
.y8d{bottom:569.464000pt;}
.yb{bottom:570.336000pt;}
.y18e{bottom:570.793333pt;}
.y1ba{bottom:571.337833pt;}
.y12b{bottom:571.814667pt;}
.yb9{bottom:573.449333pt;}
.ye7{bottom:573.524000pt;}
.y2c{bottom:574.541333pt;}
.yf8{bottom:576.284000pt;}
.yd7{bottom:580.090667pt;}
.y197{bottom:581.420000pt;}
.y144{bottom:582.305333pt;}
.y168{bottom:582.558667pt;}
.y118{bottom:585.405333pt;}
.ya4{bottom:585.464000pt;}
.y1a1{bottom:586.401333pt;}
.y44{bottom:589.389333pt;}
.y1b9{bottom:589.925268pt;}
.y12a{bottom:590.744000pt;}
.y17a{bottom:592.046667pt;}
.y8c{bottom:593.374667pt;}
.ya{bottom:594.245333pt;}
.yf7{bottom:595.213333pt;}
.y153{bottom:595.368000pt;}
.yb8{bottom:597.360000pt;}
.y2b{bottom:598.452000pt;}
.y71{bottom:601.270667pt;}
.yd6{bottom:604.001333pt;}
.y18d{bottom:605.329333pt;}
.y1a5{bottom:605.330667pt;}
.y143{bottom:606.216000pt;}
.y167{bottom:606.468000pt;}
.y1b8{bottom:608.512703pt;}
.y117{bottom:609.314667pt;}
.ya3{bottom:609.374667pt;}
.y43{bottom:613.300000pt;}
.y179{bottom:615.957333pt;}
.y8b{bottom:617.285333pt;}
.y9{bottom:618.156000pt;}
.y152{bottom:619.277333pt;}
.yb7{bottom:621.270667pt;}
.y70{bottom:621.934667pt;}
.y1b7{bottom:627.099102pt;}
.yd5{bottom:627.912000pt;}
.y18c{bottom:629.240000pt;}
.y166{bottom:630.378667pt;}
.y116{bottom:633.225333pt;}
.y2a{bottom:634.317333pt;}
.y42{bottom:637.210667pt;}
.y178{bottom:639.866667pt;}
.y142{bottom:640.309333pt;}
.y8a{bottom:641.196000pt;}
.ya2{bottom:641.785333pt;}
.y8{bottom:642.066667pt;}
.y151{bottom:643.188000pt;}
.yb6{bottom:645.180000pt;}
.y1b6{bottom:645.686537pt;}
.yd4{bottom:651.822667pt;}
.y18b{bottom:653.150667pt;}
.y115{bottom:657.136000pt;}
.y41{bottom:661.121333pt;}
.y177{bottom:663.777333pt;}
.y141{bottom:664.220000pt;}
.y1b5{bottom:664.273972pt;}
.ya1{bottom:664.368000pt;}
.y165{bottom:664.536000pt;}
.y89{bottom:665.105333pt;}
.y7{bottom:665.977333pt;}
.y1a0{bottom:667.098667pt;}
.yb5{bottom:669.090667pt;}
.yd3{bottom:675.732000pt;}
.y150{bottom:676.065333pt;}
.y114{bottom:681.046667pt;}
.y1b4{bottom:682.861406pt;}
.y29{bottom:683.850667pt;}
.y40{bottom:685.030667pt;}
.y18a{bottom:687.688000pt;}
.y164{bottom:688.446667pt;}
.y88{bottom:689.016000pt;}
.y19f{bottom:691.009333pt;}
.yb4{bottom:696.986667pt;}
.y6{bottom:697.857333pt;}
.y140{bottom:698.314667pt;}
.yd2{bottom:699.642667pt;}
.y14f{bottom:699.974667pt;}
.ya0{bottom:700.972000pt;}
.y1b3{bottom:701.447805pt;}
.y113{bottom:704.956000pt;}
.y28{bottom:707.761333pt;}
.y3f{bottom:708.941333pt;}
.y189{bottom:711.598667pt;}
.y163{bottom:712.357333pt;}
.y87{bottom:712.926667pt;}
.y1b2{bottom:720.035240pt;}
.y13f{bottom:722.225333pt;}
.y14e{bottom:723.885333pt;}
.y9f{bottom:724.881333pt;}
.yd1{bottom:727.538667pt;}
.y112{bottom:728.866667pt;}
.y27{bottom:731.670667pt;}
.y3e{bottom:732.852000pt;}
.y188{bottom:735.508000pt;}
.y86{bottom:736.837333pt;}
.y1b1{bottom:738.622675pt;}
.y176{bottom:746.134667pt;}
.y162{bottom:746.514667pt;}
.y19e{bottom:747.796000pt;}
.y111{bottom:752.777333pt;}
.y26{bottom:756.762667pt;}
.y1b0{bottom:757.210110pt;}
.y13e{bottom:757.426667pt;}
.y9e{bottom:759.418667pt;}
.y85{bottom:760.746667pt;}
.yd0{bottom:767.389333pt;}
.y175{bottom:770.045333pt;}
.y161{bottom:770.425333pt;}
.y19d{bottom:771.706667pt;}
.y1af{bottom:775.796508pt;}
.y110{bottom:776.688000pt;}
.y25{bottom:780.672000pt;}
.y9d{bottom:783.329333pt;}
.y84{bottom:784.657333pt;}
.y5{bottom:787.314667pt;}
.ycf{bottom:791.298667pt;}
.y187{bottom:793.956000pt;}
.y160{bottom:794.336000pt;}
.y1ae{bottom:794.383943pt;}
.y19c{bottom:795.616000pt;}
.y4{bottom:799.933333pt;}
.y10f{bottom:800.597333pt;}
.y24{bottom:804.582667pt;}
.y9c{bottom:807.240000pt;}
.y83{bottom:808.568000pt;}
.yce{bottom:815.209333pt;}
.y186{bottom:817.866667pt;}
.y15f{bottom:818.245333pt;}
.y1ad{bottom:819.580060pt;}
.y3{bottom:820.522667pt;}
.y10e{bottom:824.508000pt;}
.y23{bottom:828.493333pt;}
.y2{bottom:836.462667pt;}
.y1ac{bottom:838.167495pt;}
.ycd{bottom:839.120000pt;}
.y9b{bottom:841.776000pt;}
.y10d{bottom:848.418667pt;}
.y22{bottom:852.404000pt;}
.y1ab{bottom:856.020000pt;}
.y1{bottom:876.313333pt;}
.y21{bottom:929.340000pt;}
.y20{bottom:948.540000pt;}
.y1f{bottom:967.740000pt;}
.y1e{bottom:986.940000pt;}
.y1d{bottom:1006.140000pt;}
.h8{height:21.519360pt;}
.h4{height:21.520800pt;}
.h11{height:30.978505pt;}
.h3{height:31.880000pt;}
.h9{height:31.880400pt;}
.he{height:37.104889pt;}
.hf{height:37.110223pt;}
.ha{height:38.043849pt;}
.h6{height:39.850400pt;}
.h2{height:39.852000pt;}
.h7{height:44.348486pt;}
.hc{height:44.353820pt;}
.hd{height:45.092358pt;}
.h5{height:45.824000pt;}
.hb{height:50.477173pt;}
.h10{height:53.279733pt;}
.h1{height:54.629568pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:36.654667pt;}
.x1{left:178.357333pt;}
.x2{left:182.388000pt;}
.x18{left:185.000000pt;}
.x6{left:193.146667pt;}
.x8{left:198.282667pt;}
.x4{left:204.376000pt;}
.x19{left:205.662667pt;}
.xb{left:208.190667pt;}
.xf{left:211.566667pt;}
.x15{left:221.592000pt;}
.x12{left:232.266667pt;}
.xe{left:233.549333pt;}
.xc{left:235.764000pt;}
.xd{left:237.240000pt;}
.xa{left:238.826667pt;}
.x23{left:240.780916pt;}
.x22{left:241.928314pt;}
.x24{left:243.290266pt;}
.x1b{left:245.399982pt;}
.x1e{left:259.180161pt;}
.x1d{left:260.327559pt;}
.x1f{left:261.690547pt;}
.x1a{left:272.193333pt;}
.x21{left:285.735705pt;}
.x20{left:288.705333pt;}
.x13{left:290.297333pt;}
.x3{left:323.590667pt;}
.x10{left:330.140000pt;}
.x5{left:338.601333pt;}
.x16{left:351.084000pt;}
.x14{left:400.857333pt;}
.x9{left:404.177333pt;}
.x1c{left:421.151937pt;}
.x17{left:464.280000pt;}
.x11{left:465.546667pt;}
}




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