
    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_97a98e6e910ea5bf6cd31293.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_bd9afeb9b0a51cbd9fb47c1f.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_24836caed67abe2f49c2bf70.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_41e2a162c0a5f3aeefdcfeb3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b7accabe107127535dd0462b.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f5627a377f8d947ccff82a44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.728000;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_6d6d666acbc1af0893739c62.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_83be3e15918518b9de99411f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a0c1eddf7344bb54367b343f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_daa37728ff0c5ac33cd923c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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_3ce64a1062967e64ea289784.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8e90db39890c630c79767c7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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:ffd;src:url('chunks/assets/font_24a2616ebd7ef031719cd2d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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:ffe;src:url('chunks/assets/font_527659d58e3a49822fb3a5eb.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5522375bf3b43922ce563ad4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_67f28399f03958bf761ad8a4.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v7{vertical-align:-39.648000px;}
.v2{vertical-align:-26.028000px;}
.v4{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.236000px;}
.v1{vertical-align:26.028000px;}
.v5{vertical-align:28.398000px;}
.v6{vertical-align:56.790000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:2.984915px;}
.ls8{letter-spacing:2.988710px;}
.lsa{letter-spacing:19.298759px;}
.ls9{letter-spacing:20.694582px;}
.ls7{letter-spacing:23.406582px;}
.lsb{letter-spacing:23.860936px;}
.ls6{letter-spacing:26.402915px;}
.ls3{letter-spacing:27.978582px;}
.lsc{letter-spacing:28.109518px;}
.ls4{letter-spacing:35.111518px;}
.ls5{letter-spacing:35.117518px;}
.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;}
}
.ws16b{word-spacing:-24.283875px;}
.ws3c{word-spacing:-19.510886px;}
.ws18f{word-spacing:-18.183288px;}
.ws34{word-spacing:-17.932800px;}
.ws178{word-spacing:-16.723650px;}
.wsde{word-spacing:-16.605662px;}
.wsae{word-spacing:-16.273350px;}
.ws140{word-spacing:-15.272666px;}
.wsb7{word-spacing:-14.111859px;}
.ws11f{word-spacing:-3.669581px;}
.ws4e{word-spacing:-3.658291px;}
.wsc9{word-spacing:-3.443098px;}
.ws117{word-spacing:-3.156173px;}
.ws163{word-spacing:-3.012710px;}
.ws4c{word-spacing:-2.940979px;}
.ws15a{word-spacing:-2.725786px;}
.ws135{word-spacing:-2.660077px;}
.ws133{word-spacing:-2.657958px;}
.ws137{word-spacing:-2.654054px;}
.wsf8{word-spacing:-2.510592px;}
.wsd3{word-spacing:-2.367130px;}
.ws99{word-spacing:-2.295398px;}
.ws40{word-spacing:-2.223667px;}
.ws124{word-spacing:-2.151936px;}
.ws183{word-spacing:-2.146911px;}
.ws168{word-spacing:-2.080205px;}
.ws2d{word-spacing:-2.008474px;}
.ws4a{word-spacing:-1.865011px;}
.wsd8{word-spacing:-1.793280px;}
.ws14f{word-spacing:-1.721549px;}
.ws115{word-spacing:-1.649818px;}
.ws153{word-spacing:-1.362893px;}
.ws17a{word-spacing:-1.099637px;}
.wsc6{word-spacing:-1.004237px;}
.ws150{word-spacing:-0.932506px;}
.ws19b{word-spacing:-0.903273px;}
.wsa9{word-spacing:-0.860774px;}
.wsd4{word-spacing:-0.789043px;}
.ws94{word-spacing:-0.717312px;}
.wse7{word-spacing:-0.645581px;}
.ws4b{word-spacing:-0.627644px;}
.ws122{word-spacing:-0.573850px;}
.ws9b{word-spacing:-0.502118px;}
.ws16a{word-spacing:-0.430387px;}
.ws14a{word-spacing:-0.358656px;}
.ws112{word-spacing:-0.215194px;}
.wsb2{word-spacing:-0.205629px;}
.ws110{word-spacing:-0.143462px;}
.ws17c{word-spacing:-0.117818px;}
.ws173{word-spacing:-0.065455px;}
.ws3{word-spacing:-0.059776px;}
.ws24{word-spacing:0.000000px;}
.wsf9{word-spacing:0.071731px;}
.ws107{word-spacing:0.215194px;}
.ws42{word-spacing:0.286925px;}
.wscc{word-spacing:0.358656px;}
.ws125{word-spacing:0.502118px;}
.ws16d{word-spacing:0.602182px;}
.ws72{word-spacing:0.717312px;}
.ws120{word-spacing:0.728160px;}
.wsb9{word-spacing:0.760348px;}
.ws74{word-spacing:0.789043px;}
.wsba{word-spacing:0.855989px;}
.ws4d{word-spacing:0.860774px;}
.ws197{word-spacing:0.864001px;}
.wsf2{word-spacing:1.004237px;}
.ws17d{word-spacing:1.060365px;}
.ws14e{word-spacing:1.147699px;}
.ws3b{word-spacing:1.219430px;}
.ws1e{word-spacing:1.291162px;}
.ws9f{word-spacing:1.338478px;}
.ws9e{word-spacing:1.339845px;}
.wsa0{word-spacing:1.362893px;}
.ws136{word-spacing:1.412640px;}
.ws181{word-spacing:1.453092px;}
.wsc7{word-spacing:1.506355px;}
.ws16c{word-spacing:1.518547px;}
.ws165{word-spacing:1.533923px;}
.wsb6{word-spacing:1.573298px;}
.ws4f{word-spacing:1.578086px;}
.ws149{word-spacing:1.649818px;}
.ws2b{word-spacing:1.721549px;}
.ws134{word-spacing:1.733280px;}
.ws2e{word-spacing:1.793280px;}
.ws190{word-spacing:1.845820px;}
.ws9{word-spacing:1.865011px;}
.ws151{word-spacing:1.936742px;}
.ws188{word-spacing:2.107638px;}
.wsd6{word-spacing:2.151936px;}
.ws9c{word-spacing:2.223667px;}
.ws172{word-spacing:2.238547px;}
.wsda{word-spacing:2.295398px;}
.ws17b{word-spacing:2.323638px;}
.wsb{word-spacing:2.367130px;}
.ws185{word-spacing:2.369457px;}
.wsa8{word-spacing:2.438861px;}
.ws3a{word-spacing:2.510592px;}
.ws18b{word-spacing:2.538844px;}
.ws1b{word-spacing:2.582323px;}
.ws8c{word-spacing:2.610609px;}
.ws84{word-spacing:2.654054px;}
.ws47{word-spacing:2.671586px;}
.ws45{word-spacing:2.688217px;}
.ws49{word-spacing:2.725786px;}
.wsa1{word-spacing:2.797517px;}
.wsb3{word-spacing:2.816633px;}
.wsbf{word-spacing:2.864454px;}
.ws6d{word-spacing:2.869248px;}
.ws180{word-spacing:2.893093px;}
.ws95{word-spacing:2.940979px;}
.ws109{word-spacing:3.012682px;}
.ws44{word-spacing:3.012710px;}
.ws27{word-spacing:3.084442px;}
.ws176{word-spacing:3.089457px;}
.wsaf{word-spacing:3.237455px;}
.ws192{word-spacing:3.285821px;}
.ws77{word-spacing:3.299613px;}
.ws5e{word-spacing:3.344882px;}
.ws154{word-spacing:3.359389px;}
.wsee{word-spacing:3.443098px;}
.ws19d{word-spacing:3.482185px;}
.ws138{word-spacing:3.514829px;}
.ws26{word-spacing:3.586560px;}
.ws145{word-spacing:3.613094px;}
.ws96{word-spacing:3.658291px;}
.ws7b{word-spacing:3.730022px;}
.ws7d{word-spacing:3.801754px;}
.ws2{word-spacing:3.873485px;}
.wsf6{word-spacing:3.874278px;}
.ws16e{word-spacing:3.894549px;}
.wsec{word-spacing:3.928222px;}
.ws194{word-spacing:3.940367px;}
.ws6f{word-spacing:3.945216px;}
.ws5d{word-spacing:4.088678px;}
.ws198{word-spacing:4.090912px;}
.ws162{word-spacing:4.160410px;}
.wse9{word-spacing:4.232141px;}
.wsf0{word-spacing:4.303872px;}
.ws1c{word-spacing:4.375603px;}
.ws43{word-spacing:4.385520px;}
.ws39{word-spacing:4.447334px;}
.ws1{word-spacing:4.483200px;}
.ws79{word-spacing:4.519066px;}
.wsb8{word-spacing:4.538175px;}
.ws18{word-spacing:4.590797px;}
.ws177{word-spacing:4.594913px;}
.ws15{word-spacing:4.662528px;}
.ws116{word-spacing:4.805760px;}
.ws8{word-spacing:4.805990px;}
.ws73{word-spacing:4.821360px;}
.ws78{word-spacing:4.856775px;}
.ws126{word-spacing:4.871280px;}
.ws5f{word-spacing:4.877722px;}
.ws5a{word-spacing:4.932609px;}
.wsd0{word-spacing:4.949453px;}
.ws41{word-spacing:4.982160px;}
.ws2a{word-spacing:5.021184px;}
.ws191{word-spacing:5.072732px;}
.ws50{word-spacing:5.092915px;}
.ws167{word-spacing:5.138160px;}
.wsfc{word-spacing:5.164646px;}
.wsfa{word-spacing:5.173356px;}
.ws1a{word-spacing:5.236378px;}
.ws189{word-spacing:5.269095px;}
.ws83{word-spacing:5.308109px;}
.wscf{word-spacing:5.379840px;}
.ws7{word-spacing:5.451571px;}
.wsab{word-spacing:5.523302px;}
.ws186{word-spacing:5.530914px;}
.ws9d{word-spacing:5.595034px;}
.ws166{word-spacing:5.606640px;}
.ws128{word-spacing:5.666765px;}
.ws199{word-spacing:5.707641px;}
.ws18c{word-spacing:5.727278px;}
.wsdf{word-spacing:5.810227px;}
.wse8{word-spacing:5.881442px;}
.ws164{word-spacing:5.927280px;}
.wsc{word-spacing:5.953690px;}
.ws0{word-spacing:5.977575px;}
.ws48{word-spacing:6.025421px;}
.ws169{word-spacing:6.036732px;}
.ws46{word-spacing:6.097152px;}
.ws18e{word-spacing:6.165823px;}
.wscd{word-spacing:6.168883px;}
.ws59{word-spacing:6.240614px;}
.wsf1{word-spacing:6.312346px;}
.wsd9{word-spacing:6.368160px;}
.ws98{word-spacing:6.372000px;}
.ws159{word-spacing:6.384077px;}
.wsd5{word-spacing:6.420240px;}
.ws21{word-spacing:6.455808px;}
.ws19c{word-spacing:6.512733px;}
.ws155{word-spacing:6.605204px;}
.ws179{word-spacing:6.643642px;}
.wsad{word-spacing:6.664979px;}
.ws16f{word-spacing:6.709096px;}
.ws1d{word-spacing:6.814464px;}
.ws158{word-spacing:6.886195px;}
.ws10c{word-spacing:7.003745px;}
.ws8d{word-spacing:7.022160px;}
.ws10{word-spacing:7.029658px;}
.ws111{word-spacing:7.066080px;}
.ws55{word-spacing:7.098394px;}
.ws57{word-spacing:7.101389px;}
.ws16{word-spacing:7.173120px;}
.ws195{word-spacing:7.213097px;}
.ws71{word-spacing:7.244851px;}
.wsa{word-spacing:7.388314px;}
.wsa5{word-spacing:7.460045px;}
.ws132{word-spacing:7.511280px;}
.wsa3{word-spacing:7.531776px;}
.ws28{word-spacing:7.603507px;}
.ws11a{word-spacing:7.675238px;}
.ws97{word-spacing:7.701360px;}
.wsf{word-spacing:7.746970px;}
.ws15f{word-spacing:7.818701px;}
.ws10d{word-spacing:7.883520px;}
.ws14b{word-spacing:7.887360px;}
.wsd7{word-spacing:7.887600px;}
.wsef{word-spacing:7.888080px;}
.ws108{word-spacing:7.888320px;}
.ws100{word-spacing:7.888800px;}
.ws89{word-spacing:7.890432px;}
.ws14c{word-spacing:7.890720px;}
.ws106{word-spacing:7.890960px;}
.ws101{word-spacing:7.891920px;}
.wsdd{word-spacing:7.893600px;}
.ws2c{word-spacing:7.962163px;}
.ws70{word-spacing:8.018640px;}
.ws58{word-spacing:8.033894px;}
.ws196{word-spacing:8.064007px;}
.ws5b{word-spacing:8.105626px;}
.ws14d{word-spacing:8.111280px;}
.ws7c{word-spacing:8.129280px;}
.ws19a{word-spacing:8.129461px;}
.ws6e{word-spacing:8.177357px;}
.ws51{word-spacing:8.249088px;}
.ws113{word-spacing:8.270164px;}
.wsed{word-spacing:8.299200px;}
.wsea{word-spacing:8.317680px;}
.wsa7{word-spacing:8.320819px;}
.ws187{word-spacing:8.391280px;}
.wsfb{word-spacing:8.392550px;}
.ws65{word-spacing:8.464282px;}
.ws62{word-spacing:8.470554px;}
.ws3e{word-spacing:8.536013px;}
.ws121{word-spacing:8.607744px;}
.ws75{word-spacing:8.679475px;}
.ws61{word-spacing:8.751206px;}
.ws12f{word-spacing:8.768640px;}
.ws38{word-spacing:8.801280px;}
.wsf5{word-spacing:8.822938px;}
.ws11d{word-spacing:8.894669px;}
.ws17e{word-spacing:9.045826px;}
.wsd2{word-spacing:9.109862px;}
.ws157{word-spacing:9.140400px;}
.wscb{word-spacing:9.181594px;}
.ws7a{word-spacing:9.253325px;}
.ws23{word-spacing:9.325056px;}
.ws69{word-spacing:9.380909px;}
.ws91{word-spacing:9.468518px;}
.ws11c{word-spacing:9.538800px;}
.ws131{word-spacing:9.539280px;}
.ws114{word-spacing:9.540250px;}
.ws8b{word-spacing:9.611981px;}
.ws54{word-spacing:9.683712px;}
.ws52{word-spacing:9.755443px;}
.ws8e{word-spacing:9.827174px;}
.wse0{word-spacing:9.853680px;}
.ws1f{word-spacing:10.042368px;}
.ws56{word-spacing:10.114099px;}
.ws105{word-spacing:10.151760px;}
.ws193{word-spacing:10.158554px;}
.ws25{word-spacing:10.218655px;}
.wsce{word-spacing:10.228800px;}
.ws13b{word-spacing:10.257562px;}
.ws139{word-spacing:10.272682px;}
.wsc8{word-spacing:10.329293px;}
.ws152{word-spacing:10.376160px;}
.wsd1{word-spacing:10.401024px;}
.wsa4{word-spacing:10.472755px;}
.ws127{word-spacing:10.544486px;}
.ws170{word-spacing:10.551282px;}
.ws103{word-spacing:10.616218px;}
.ws12{word-spacing:10.687949px;}
.ws102{word-spacing:10.688738px;}
.ws13{word-spacing:10.759680px;}
.ws17f{word-spacing:10.767282px;}
.ws182{word-spacing:10.826533px;}
.ws14{word-spacing:10.831411px;}
.wsc0{word-spacing:10.850494px;}
.ws175{word-spacing:10.878555px;}
.ws32{word-spacing:10.903142px;}
.ws104{word-spacing:10.974874px;}
.ws37{word-spacing:11.046605px;}
.ws18d{word-spacing:11.074918px;}
.ws6c{word-spacing:11.094000px;}
.ws6b{word-spacing:11.096160px;}
.ws118{word-spacing:11.190067px;}
.wsac{word-spacing:11.225280px;}
.wsff{word-spacing:11.261798px;}
.ws11{word-spacing:11.333530px;}
.ws123{word-spacing:11.400480px;}
.ws10e{word-spacing:11.405261px;}
.ws12d{word-spacing:11.548723px;}
.ws19{word-spacing:11.620454px;}
.wsb5{word-spacing:11.663444px;}
.wseb{word-spacing:11.763917px;}
.ws67{word-spacing:11.834160px;}
.wsaa{word-spacing:11.835648px;}
.ws160{word-spacing:11.889360px;}
.ws29{word-spacing:12.050842px;}
.ws184{word-spacing:12.122192px;}
.wsdb{word-spacing:12.122573px;}
.ws33{word-spacing:12.194304px;}
.ws92{word-spacing:12.266035px;}
.wsa6{word-spacing:12.337766px;}
.ws3d{word-spacing:12.380160px;}
.wsf7{word-spacing:12.382320px;}
.ws88{word-spacing:12.469680px;}
.wse6{word-spacing:12.481229px;}
.ws53{word-spacing:12.552960px;}
.ws10a{word-spacing:12.587762px;}
.ws11e{word-spacing:12.624691px;}
.ws18a{word-spacing:12.645829px;}
.ws66{word-spacing:12.768154px;}
.ws130{word-spacing:12.779040px;}
.ws11b{word-spacing:12.880800px;}
.wsfd{word-spacing:12.911616px;}
.wse4{word-spacing:13.263842px;}
.wse2{word-spacing:13.271028px;}
.ws3f{word-spacing:13.342003px;}
.ws10b{word-spacing:13.476720px;}
.ws22{word-spacing:13.485466px;}
.ws60{word-spacing:13.557197px;}
.wsa2{word-spacing:13.628928px;}
.ws8f{word-spacing:13.833923px;}
.ws82{word-spacing:13.844122px;}
.wsfe{word-spacing:14.059315px;}
.ws20{word-spacing:14.274509px;}
.ws13e{word-spacing:14.346240px;}
.ws13c{word-spacing:14.351199px;}
.ws68{word-spacing:14.372160px;}
.wsca{word-spacing:14.417971px;}
.ws30{word-spacing:14.633165px;}
.ws15d{word-spacing:14.655923px;}
.wsdc{word-spacing:14.704896px;}
.ws36{word-spacing:14.776627px;}
.wse1{word-spacing:14.848358px;}
.ws76{word-spacing:15.207014px;}
.ws156{word-spacing:15.261840px;}
.wse{word-spacing:15.278746px;}
.ws5c{word-spacing:15.350477px;}
.wsd{word-spacing:15.422208px;}
.ws13a{word-spacing:15.454800px;}
.ws63{word-spacing:15.666000px;}
.ws64{word-spacing:15.668400px;}
.ws87{word-spacing:15.770400px;}
.wse3{word-spacing:15.780864px;}
.ws15b{word-spacing:15.789840px;}
.ws12e{word-spacing:15.935280px;}
.ws31{word-spacing:16.101360px;}
.ws85{word-spacing:16.211251px;}
.ws6a{word-spacing:16.580160px;}
.ws174{word-spacing:16.900378px;}
.ws9a{word-spacing:17.143200px;}
.ws35{word-spacing:17.215488px;}
.wsf4{word-spacing:17.278320px;}
.ws8a{word-spacing:17.634244px;}
.wsc1{word-spacing:18.023584px;}
.ws171{word-spacing:18.144015px;}
.wsc3{word-spacing:18.214867px;}
.ws90{word-spacing:18.225241px;}
.ws86{word-spacing:18.434918px;}
.ws13d{word-spacing:18.465360px;}
.ws15e{word-spacing:18.728640px;}
.ws15c{word-spacing:19.055280px;}
.ws10f{word-spacing:19.183922px;}
.ws93{word-spacing:19.296720px;}
.ws12b{word-spacing:19.497923px;}
.ws129{word-spacing:19.510886px;}
.wse5{word-spacing:19.694640px;}
.ws12c{word-spacing:19.869542px;}
.wsf3{word-spacing:20.704320px;}
.ws143{word-spacing:21.753616px;}
.ws141{word-spacing:21.760692px;}
.ws119{word-spacing:21.972480px;}
.ws6{word-spacing:23.169178px;}
.ws161{word-spacing:23.456102px;}
.ws12a{word-spacing:23.885280px;}
.ws144{word-spacing:25.003657px;}
.ws13f{word-spacing:25.353821px;}
.wsbc{word-spacing:27.970269px;}
.wsc5{word-spacing:30.552581px;}
.ws4{word-spacing:31.321184px;}
.wsbe{word-spacing:34.521691px;}
.ws17{word-spacing:35.065265px;}
.wsb4{word-spacing:35.334641px;}
.ws148{word-spacing:41.317171px;}
.ws147{word-spacing:41.388902px;}
.ws5{word-spacing:48.006442px;}
.ws2f{word-spacing:49.167600px;}
.ws80{word-spacing:51.287808px;}
.ws81{word-spacing:51.861658px;}
.ws7f{word-spacing:51.889263px;}
.ws7e{word-spacing:53.941862px;}
.wsc4{word-spacing:54.510702px;}
.ws142{word-spacing:55.936806px;}
.wsb0{word-spacing:94.997365px;}
.wsc2{word-spacing:102.522584px;}
.wsb1{word-spacing:247.555691px;}
.wsbd{word-spacing:268.960191px;}
.ws146{word-spacing:318.697524px;}
.wsbb{word-spacing:349.627176px;}
._3{margin-left:-53.750354px;}
._1c{margin-left:-43.672121px;}
._52{margin-left:-41.735378px;}
._41{margin-left:-40.643153px;}
._1b{margin-left:-38.854200px;}
._12{margin-left:-36.128590px;}
._7{margin-left:-35.076557px;}
._f{margin-left:-34.072320px;}
._5{margin-left:-32.752683px;}
._6{margin-left:-31.203072px;}
._48{margin-left:-29.787806px;}
._c{margin-left:-28.692480px;}
._1f{margin-left:-27.257856px;}
._32{margin-left:-25.751385px;}
._35{margin-left:-23.958121px;}
._3e{margin-left:-22.571323px;}
._3c{margin-left:-19.385822px;}
._47{margin-left:-9.755443px;}
._1e{margin-left:-7.818701px;}
._b{margin-left:-6.221256px;}
._4{margin-left:-5.169223px;}
._9{margin-left:-4.064780px;}
._1{margin-left:-2.964877px;}
._8{margin-left:-1.936742px;}
._1d{width:1.936742px;}
._2{width:2.964877px;}
._46{width:4.299625px;}
._10{width:6.073254px;}
._23{width:7.509566px;}
._42{width:14.202778px;}
._43{width:17.072026px;}
._e{width:18.315391px;}
._30{width:19.773876px;}
._14{width:20.825983px;}
._11{width:21.997580px;}
._17{width:23.986733px;}
._18{width:25.775436px;}
._24{width:27.081291px;}
._20{width:28.692406px;}
._15{width:30.366233px;}
._44{width:31.418266px;}
._d{width:32.441861px;}
._19{width:33.928858px;}
._13{width:35.220019px;}
._22{width:37.126766px;}
._1a{width:39.189170px;}
._25{width:40.990558px;}
._2e{width:42.249677px;}
._16{width:43.516940px;}
._27{width:44.994821px;}
._a{width:46.003634px;}
._0{width:47.820600px;}
._2d{width:49.111937px;}
._2c{width:51.144346px;}
._45{width:52.650701px;}
._51{width:54.157056px;}
._21{width:55.854707px;}
._2f{width:57.006946px;}
._2b{width:58.671507px;}
._26{width:60.995418px;}
._53{width:63.208024px;}
._28{width:65.060198px;}
._2a{width:69.364070px;}
._29{width:74.442675px;}
._3f{width:78.205478px;}
._31{width:84.228175px;}
._3b{width:154.281427px;}
._33{width:180.833006px;}
._39{width:195.734127px;}
._3d{width:200.455588px;}
._37{width:209.936845px;}
._50{width:215.276517px;}
._3a{width:216.427677px;}
._34{width:296.716888px;}
._49{width:299.667598px;}
._4f{width:308.856114px;}
._4a{width:337.043021px;}
._36{width:349.247595px;}
._40{width:355.748213px;}
._38{width:385.435241px;}
._4c{width:439.866878px;}
._4b{width:444.850812px;}
._4e{width:465.946194px;}
._4d{width:470.943111px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:77.708400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y2a{bottom:106.299000px;}
.y48{bottom:111.679500px;}
.y71{bottom:111.721500px;}
.y177{bottom:115.566000px;}
.y150{bottom:126.622500px;}
.y29{bottom:127.818000px;}
.y70{bottom:129.655500px;}
.y176{bottom:135.889500px;}
.ydd{bottom:140.401500px;}
.y14f{bottom:146.947500px;}
.y28{bottom:149.338500px;}
.y175{bottom:156.213000px;}
.yc4{bottom:158.304000px;}
.ydc{bottom:161.920500px;}
.y6f{bottom:167.380500px;}
.y27{bottom:170.857500px;}
.y174{bottom:176.536500px;}
.yc3{bottom:179.823000px;}
.y14e{bottom:182.682000px;}
.ydb{bottom:183.439500px;}
.y6e{bottom:188.901000px;}
.y26{bottom:192.376500px;}
.yc2{bottom:201.343500px;}
.y14d{bottom:203.005500px;}
.yda{bottom:204.958500px;}
.y6d{bottom:210.420000px;}
.y173{bottom:211.314000px;}
.y25{bottom:213.895500px;}
.yc1{bottom:222.862500px;}
.y14c{bottom:223.329000px;}
.yd9{bottom:226.479000px;}
.y172{bottom:231.637500px;}
.y6c{bottom:231.939000px;}
.y24{bottom:235.414500px;}
.yf8{bottom:240.223500px;}
.y14b{bottom:243.654000px;}
.y97{bottom:244.381500px;}
.yd8{bottom:247.998000px;}
.y23{bottom:256.935000px;}
.y6b{bottom:262.425000px;}
.y14a{bottom:263.977500px;}
.y96{bottom:265.900500px;}
.y171{bottom:266.413500px;}
.yd7{bottom:269.517000px;}
.y22{bottom:278.454000px;}
.y6a{bottom:283.944000px;}
.y149{bottom:284.301000px;}
.y170{bottom:286.738500px;}
.y95{bottom:287.419500px;}
.yd6{bottom:291.036000px;}
.yc0{bottom:292.585500px;}
.yf7{bottom:296.386500px;}
.y21{bottom:299.973000px;}
.y69{bottom:305.463000px;}
.y16f{bottom:307.062000px;}
.ye1{bottom:308.938500px;}
.y94{bottom:308.940000px;}
.yf6{bottom:317.905500px;}
.y148{bottom:320.035500px;}
.y20{bottom:321.492000px;}
.yd5{bottom:321.522000px;}
.ybf{bottom:321.930000px;}
.y68{bottom:326.982000px;}
.y93{bottom:330.459000px;}
.yf5{bottom:339.424500px;}
.y147{bottom:340.360500px;}
.y16e{bottom:341.838000px;}
.y1f{bottom:343.011000px;}
.yd4{bottom:343.041000px;}
.y67{bottom:348.502500px;}
.y92{bottom:351.978000px;}
.y146{bottom:360.684000px;}
.yf4{bottom:360.943500px;}
.y16d{bottom:362.163000px;}
.y1e{bottom:364.531500px;}
.yd3{bottom:364.560000px;}
.ybd{bottom:372.486000px;}
.y91{bottom:373.497000px;}
.ybc{bottom:379.585500px;}
.yf3{bottom:382.464000px;}
.y1d{bottom:386.050500px;}
.yd2{bottom:386.079000px;}
.ybe{bottom:386.683500px;}
.y145{bottom:388.854000px;}
.y101{bottom:391.429500px;}
.y66{bottom:394.440000px;}
.y90{bottom:395.016000px;}
.y16c{bottom:396.939000px;}
.ybb{bottom:401.478000px;}
.yf2{bottom:403.983000px;}
.y1c{bottom:407.569500px;}
.yd1{bottom:407.599500px;}
.yba{bottom:408.576000px;}
.y100{bottom:412.948500px;}
.y8f{bottom:416.536500px;}
.y16b{bottom:417.262500px;}
.y65{bottom:418.702500px;}
.yf1{bottom:425.502000px;}
.y1b{bottom:429.088500px;}
.yd0{bottom:429.118500px;}
.yb9{bottom:430.468500px;}
.y144{bottom:431.071500px;}
.yff{bottom:434.469000px;}
.ye0{bottom:437.083500px;}
.y16a{bottom:437.587500px;}
.y8e{bottom:438.055500px;}
.y64{bottom:442.963500px;}
.yb6{bottom:444.666000px;}
.yf0{bottom:447.021000px;}
.y47{bottom:449.242500px;}
.ycf{bottom:450.637500px;}
.yb5{bottom:451.764000px;}
.y143{bottom:452.592000px;}
.yfe{bottom:455.988000px;}
.yb8{bottom:458.862000px;}
.y8d{bottom:459.574500px;}
.y117{bottom:466.050000px;}
.y63{bottom:467.226000px;}
.yef{bottom:468.540000px;}
.y1a{bottom:470.056500px;}
.y46{bottom:470.761500px;}
.yce{bottom:472.156500px;}
.y169{bottom:472.363500px;}
.yb7{bottom:473.059500px;}
.y142{bottom:474.111000px;}
.yfd{bottom:477.507000px;}
.y8c{bottom:481.093500px;}
.y116{bottom:487.569000px;}
.y128{bottom:490.060500px;}
.y62{bottom:491.487000px;}
.y19{bottom:491.575500px;}
.y45{bottom:492.280500px;}
.y168{bottom:492.687000px;}
.ycd{bottom:493.675500px;}
.yb4{bottom:497.766000px;}
.yee{bottom:499.026000px;}
.y8b{bottom:502.612500px;}
.y141{bottom:503.476500px;}
.ydf{bottom:505.377000px;}
.y115{bottom:509.088000px;}
.y127{bottom:511.579500px;}
.y18{bottom:513.094500px;}
.yed{bottom:520.545000px;}
.yb3{bottom:522.474000px;}
.y44{bottom:522.766500px;}
.y8a{bottom:524.131500px;}
.y167{bottom:527.464500px;}
.y114{bottom:530.607000px;}
.y126{bottom:533.098500px;}
.y17{bottom:534.613500px;}
.ycc{bottom:536.239500px;}
.yb1{bottom:536.671500px;}
.y61{bottom:540.168000px;}
.yec{bottom:542.065500px;}
.y43{bottom:544.285500px;}
.y140{bottom:545.695500px;}
.y166{bottom:547.788000px;}
.yb2{bottom:550.867500px;}
.y113{bottom:552.127500px;}
.y89{bottom:554.617500px;}
.y16{bottom:556.134000px;}
.y60{bottom:561.687000px;}
.yeb{bottom:563.584500px;}
.yb0{bottom:565.662000px;}
.y42{bottom:565.804500px;}
.y13f{bottom:567.214500px;}
.yfc{bottom:568.042500px;}
.y165{bottom:568.111500px;}
.yaf{bottom:572.760000px;}
.y112{bottom:573.646500px;}
.y88{bottom:576.136500px;}
.y15{bottom:577.653000px;}
.y5f{bottom:583.206000px;}
.yea{bottom:585.103500px;}
.y41{bottom:587.323500px;}
.y164{bottom:588.435000px;}
.y13e{bottom:588.733500px;}
.y12b{bottom:593.103000px;}
.yac{bottom:594.654000px;}
.y87{bottom:597.657000px;}
.y14{bottom:599.172000px;}
.yae{bottom:601.752000px;}
.y111{bottom:604.132500px;}
.y5e{bottom:604.726500px;}
.ye9{bottom:606.622500px;}
.yfb{bottom:606.747000px;}
.y40{bottom:608.842500px;}
.yab{bottom:608.850000px;}
.ycb{bottom:609.076500px;}
.y13d{bottom:610.252500px;}
.ya8{bottom:615.948000px;}
.y86{bottom:619.176000px;}
.y13{bottom:620.691000px;}
.yaa{bottom:623.047500px;}
.y163{bottom:623.212500px;}
.y110{bottom:625.651500px;}
.y5d{bottom:626.245500px;}
.y125{bottom:626.646000px;}
.ye8{bottom:628.141500px;}
.yad{bottom:630.145500px;}
.y3f{bottom:630.363000px;}
.y13c{bottom:631.771500px;}
.y12a{bottom:631.807500px;}
.ya9{bottom:637.243500px;}
.y85{bottom:640.695000px;}
.y12{bottom:642.210000px;}
.y162{bottom:643.536000px;}
.y10f{bottom:647.170500px;}
.y5c{bottom:647.764500px;}
.y13b{bottom:653.290500px;}
.ya7{bottom:655.624500px;}
.ye7{bottom:658.627500px;}
.y3e{bottom:660.847500px;}
.y84{bottom:662.214000px;}
.ya6{bottom:662.722500px;}
.y11{bottom:663.730500px;}
.y161{bottom:663.859500px;}
.y10e{bottom:668.689500px;}
.y5b{bottom:678.250500px;}
.y3d{bottom:682.368000px;}
.y124{bottom:683.253000px;}
.y83{bottom:683.733000px;}
.y13a{bottom:683.776500px;}
.y10{bottom:685.249500px;}
.ye6{bottom:689.113500px;}
.y160{bottom:698.637000px;}
.y10d{bottom:699.175500px;}
.y5a{bottom:699.769500px;}
.ya5{bottom:700.681500px;}
.y3c{bottom:703.887000px;}
.y123{bottom:704.175000px;}
.y82{bottom:705.253500px;}
.y139{bottom:705.295500px;}
.yf{bottom:706.768500px;}
.ye5{bottom:710.632500px;}
.y15f{bottom:718.960500px;}
.y10c{bottom:720.694500px;}
.y59{bottom:721.288500px;}
.y122{bottom:725.095500px;}
.y3b{bottom:725.406000px;}
.y81{bottom:726.772500px;}
.y138{bottom:726.816000px;}
.ye{bottom:728.287500px;}
.ye4{bottom:732.151500px;}
.ya4{bottom:733.842000px;}
.y15e{bottom:739.284000px;}
.y10b{bottom:742.213500px;}
.y58{bottom:742.807500px;}
.y121{bottom:746.017500px;}
.y3a{bottom:746.925000px;}
.y80{bottom:748.291500px;}
.yd{bottom:749.806500px;}
.ye3{bottom:753.672000px;}
.ya3{bottom:755.361000px;}
.y137{bottom:757.300500px;}
.y15d{bottom:759.609000px;}
.y10a{bottom:763.734000px;}
.y57{bottom:764.328000px;}
.y120{bottom:766.939500px;}
.y39{bottom:768.444000px;}
.y7f{bottom:769.810500px;}
.yc{bottom:771.327000px;}
.ya2{bottom:776.880000px;}
.y136{bottom:778.821000px;}
.y109{bottom:785.253000px;}
.y56{bottom:785.847000px;}
.y11f{bottom:787.860000px;}
.y38{bottom:789.964500px;}
.yb{bottom:792.846000px;}
.y15c{bottom:794.385000px;}
.ya1{bottom:798.399000px;}
.y7e{bottom:800.296500px;}
.y135{bottom:800.340000px;}
.yfa{bottom:803.502000px;}
.y108{bottom:806.772000px;}
.y55{bottom:807.366000px;}
.y37{bottom:811.483500px;}
.y11e{bottom:812.368500px;}
.ya{bottom:814.365000px;}
.y15b{bottom:814.708500px;}
.ye2{bottom:815.632500px;}
.ya0{bottom:819.919500px;}
.y7d{bottom:821.815500px;}
.y134{bottom:821.859000px;}
.y107{bottom:828.291000px;}
.y54{bottom:828.885000px;}
.y36{bottom:833.002500px;}
.y15a{bottom:835.033500px;}
.y9{bottom:835.884000px;}
.y7c{bottom:843.334500px;}
.y133{bottom:843.378000px;}
.y11d{bottom:847.516500px;}
.y106{bottom:849.810000px;}
.y53{bottom:850.404000px;}
.y35{bottom:854.521500px;}
.y8{bottom:857.403000px;}
.y7b{bottom:864.855000px;}
.y132{bottom:864.897000px;}
.y159{bottom:869.809500px;}
.y105{bottom:871.329000px;}
.y52{bottom:871.923000px;}
.y9f{bottom:871.924500px;}
.y34{bottom:876.040500px;}
.y129{bottom:879.555000px;}
.y11c{bottom:884.476500px;}
.y7a{bottom:886.374000px;}
.y131{bottom:886.417500px;}
.y158{bottom:890.133000px;}
.y104{bottom:892.849500px;}
.y51{bottom:893.443500px;}
.y7{bottom:902.139000px;}
.yde{bottom:902.409000px;}
.y11b{bottom:905.995500px;}
.y33{bottom:906.526500px;}
.y79{bottom:907.893000px;}
.yca{bottom:914.703000px;}
.y9e{bottom:914.962500px;}
.y130{bottom:916.902000px;}
.y50{bottom:923.928000px;}
.y157{bottom:924.910500px;}
.y103{bottom:926.730000px;}
.y11a{bottom:927.516000px;}
.y32{bottom:928.045500px;}
.y78{bottom:929.412000px;}
.y6{bottom:936.211500px;}
.yc9{bottom:936.223500px;}
.y9d{bottom:936.481500px;}
.y12f{bottom:938.422500px;}
.y156{bottom:945.234000px;}
.y4f{bottom:945.448500px;}
.y119{bottom:949.035000px;}
.y31{bottom:949.566000px;}
.y77{bottom:950.931000px;}
.yc8{bottom:957.742500px;}
.y9c{bottom:958.000500px;}
.y12e{bottom:959.941500px;}
.y102{bottom:963.273000px;}
.y5{bottom:964.237500px;}
.y155{bottom:965.557500px;}
.yf9{bottom:966.778500px;}
.y4e{bottom:966.967500px;}
.y118{bottom:970.554000px;}
.y30{bottom:971.085000px;}
.y76{bottom:972.451500px;}
.yc7{bottom:979.261500px;}
.y9b{bottom:979.519500px;}
.y12d{bottom:981.460500px;}
.y4d{bottom:988.486500px;}
.y2f{bottom:992.604000px;}
.y4{bottom:997.405500px;}
.y154{bottom:1000.335000px;}
.yc6{bottom:1000.780500px;}
.y9a{bottom:1001.040000px;}
.y75{bottom:1002.936000px;}
.y4c{bottom:1010.005500px;}
.y12c{bottom:1010.826000px;}
.y2e{bottom:1014.123000px;}
.y3{bottom:1018.924500px;}
.y153{bottom:1020.658500px;}
.y99{bottom:1022.559000px;}
.y74{bottom:1024.456500px;}
.y4b{bottom:1031.524500px;}
.yc5{bottom:1033.189500px;}
.y2d{bottom:1035.642000px;}
.y152{bottom:1040.982000px;}
.y98{bottom:1044.078000px;}
.y73{bottom:1045.975500px;}
.y4a{bottom:1053.045000px;}
.y2{bottom:1057.104000px;}
.y2c{bottom:1057.161000px;}
.y151{bottom:1061.305500px;}
.y72{bottom:1067.494500px;}
.y49{bottom:1074.564000px;}
.y1{bottom:1086.993000px;}
.y2b{bottom:1096.083000px;}
.ha{height:27.783619px;}
.hf{height:33.856985px;}
.he{height:34.354985px;}
.hb{height:34.360985px;}
.h4{height:35.865450px;}
.h6{height:44.831700px;}
.h15{height:45.425492px;}
.h14{height:49.090950px;}
.h5{height:53.798400px;}
.h8{height:58.281300px;}
.h3{height:61.893450px;}
.h9{height:61.899450px;}
.hc{height:62.254985px;}
.h12{height:64.257450px;}
.h10{height:64.263450px;}
.h2{height:71.730900px;}
.h7{height:73.034400px;}
.hd{height:90.646985px;}
.h13{height:92.649450px;}
.h11{height:92.655450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.558500px;}
.x1{left:131.776500px;}
.xf{left:137.122500px;}
.x15{left:141.357000px;}
.x27{left:145.429500px;}
.xd{left:147.754500px;}
.x2{left:153.609000px;}
.xc{left:159.123000px;}
.x20{left:160.294500px;}
.x8{left:161.575500px;}
.x6{left:168.705000px;}
.x10{left:172.009500px;}
.xb{left:181.558500px;}
.x1b{left:183.142500px;}
.x24{left:185.022000px;}
.x7{left:196.146000px;}
.x5{left:209.770500px;}
.x1f{left:216.679500px;}
.x21{left:217.773000px;}
.x23{left:224.295000px;}
.x22{left:225.544500px;}
.x1e{left:232.948500px;}
.x1a{left:241.491000px;}
.x19{left:243.027000px;}
.x9{left:248.025000px;}
.x4{left:255.904500px;}
.x3{left:260.382000px;}
.xe{left:277.381500px;}
.x1c{left:291.795000px;}
.x18{left:299.166000px;}
.x25{left:300.969000px;}
.x16{left:304.473000px;}
.x1d{left:317.118000px;}
.x26{left:348.048000px;}
.x11{left:387.043500px;}
.x12{left:429.303000px;}
.x17{left:566.887500px;}
.x13{left:674.710500px;}
.x14{left:704.358000px;}
@media print{
.v7{vertical-align:-35.242667pt;}
.v2{vertical-align:-23.136000pt;}
.v4{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.098667pt;}
.v1{vertical-align:23.136000pt;}
.v5{vertical-align:25.242667pt;}
.v6{vertical-align:50.480000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:2.653258pt;}
.ls8{letter-spacing:2.656631pt;}
.lsa{letter-spacing:17.154452pt;}
.ls9{letter-spacing:18.395184pt;}
.ls7{letter-spacing:20.805850pt;}
.lsb{letter-spacing:21.209721pt;}
.ls6{letter-spacing:23.469258pt;}
.ls3{letter-spacing:24.869850pt;}
.lsc{letter-spacing:24.986238pt;}
.ls4{letter-spacing:31.210238pt;}
.ls5{letter-spacing:31.215572pt;}
.ws16b{word-spacing:-21.585667pt;}
.ws3c{word-spacing:-17.343010pt;}
.ws18f{word-spacing:-16.162923pt;}
.ws34{word-spacing:-15.940267pt;}
.ws178{word-spacing:-14.865467pt;}
.wsde{word-spacing:-14.760588pt;}
.wsae{word-spacing:-14.465200pt;}
.ws140{word-spacing:-13.575703pt;}
.wsb7{word-spacing:-12.543875pt;}
.ws11f{word-spacing:-3.261850pt;}
.ws4e{word-spacing:-3.251814pt;}
.wsc9{word-spacing:-3.060531pt;}
.ws117{word-spacing:-2.805487pt;}
.ws163{word-spacing:-2.677965pt;}
.ws4c{word-spacing:-2.614204pt;}
.ws15a{word-spacing:-2.422921pt;}
.ws135{word-spacing:-2.364513pt;}
.ws133{word-spacing:-2.362629pt;}
.ws137{word-spacing:-2.359159pt;}
.wsf8{word-spacing:-2.231637pt;}
.wsd3{word-spacing:-2.104115pt;}
.ws99{word-spacing:-2.040354pt;}
.ws40{word-spacing:-1.976593pt;}
.ws124{word-spacing:-1.912832pt;}
.ws183{word-spacing:-1.908365pt;}
.ws168{word-spacing:-1.849071pt;}
.ws2d{word-spacing:-1.785310pt;}
.ws4a{word-spacing:-1.657788pt;}
.wsd8{word-spacing:-1.594027pt;}
.ws14f{word-spacing:-1.530266pt;}
.ws115{word-spacing:-1.466505pt;}
.ws153{word-spacing:-1.211460pt;}
.ws17a{word-spacing:-0.977455pt;}
.wsc6{word-spacing:-0.892655pt;}
.ws150{word-spacing:-0.828894pt;}
.ws19b{word-spacing:-0.802910pt;}
.wsa9{word-spacing:-0.765133pt;}
.wsd4{word-spacing:-0.701372pt;}
.ws94{word-spacing:-0.637611pt;}
.wse7{word-spacing:-0.573850pt;}
.ws4b{word-spacing:-0.557906pt;}
.ws122{word-spacing:-0.510089pt;}
.ws9b{word-spacing:-0.446327pt;}
.ws16a{word-spacing:-0.382566pt;}
.ws14a{word-spacing:-0.318805pt;}
.ws112{word-spacing:-0.191283pt;}
.wsb2{word-spacing:-0.182781pt;}
.ws110{word-spacing:-0.127522pt;}
.ws17c{word-spacing:-0.104727pt;}
.ws173{word-spacing:-0.058182pt;}
.ws3{word-spacing:-0.053134pt;}
.ws24{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.063761pt;}
.ws107{word-spacing:0.191283pt;}
.ws42{word-spacing:0.255044pt;}
.wscc{word-spacing:0.318805pt;}
.ws125{word-spacing:0.446327pt;}
.ws16d{word-spacing:0.535273pt;}
.ws72{word-spacing:0.637611pt;}
.ws120{word-spacing:0.647253pt;}
.wsb9{word-spacing:0.675864pt;}
.ws74{word-spacing:0.701372pt;}
.wsba{word-spacing:0.760879pt;}
.ws4d{word-spacing:0.765133pt;}
.ws197{word-spacing:0.768001pt;}
.wsf2{word-spacing:0.892655pt;}
.ws17d{word-spacing:0.942546pt;}
.ws14e{word-spacing:1.020177pt;}
.ws3b{word-spacing:1.083938pt;}
.ws1e{word-spacing:1.147699pt;}
.ws9f{word-spacing:1.189758pt;}
.ws9e{word-spacing:1.190973pt;}
.wsa0{word-spacing:1.211460pt;}
.ws136{word-spacing:1.255680pt;}
.ws181{word-spacing:1.291637pt;}
.wsc7{word-spacing:1.338982pt;}
.ws16c{word-spacing:1.349819pt;}
.ws165{word-spacing:1.363487pt;}
.wsb6{word-spacing:1.398487pt;}
.ws4f{word-spacing:1.402743pt;}
.ws149{word-spacing:1.466505pt;}
.ws2b{word-spacing:1.530266pt;}
.ws134{word-spacing:1.540693pt;}
.ws2e{word-spacing:1.594027pt;}
.ws190{word-spacing:1.640729pt;}
.ws9{word-spacing:1.657788pt;}
.ws151{word-spacing:1.721549pt;}
.ws188{word-spacing:1.873456pt;}
.wsd6{word-spacing:1.912832pt;}
.ws9c{word-spacing:1.976593pt;}
.ws172{word-spacing:1.989820pt;}
.wsda{word-spacing:2.040354pt;}
.ws17b{word-spacing:2.065456pt;}
.wsb{word-spacing:2.104115pt;}
.ws185{word-spacing:2.106184pt;}
.wsa8{word-spacing:2.167876pt;}
.ws3a{word-spacing:2.231637pt;}
.ws18b{word-spacing:2.256750pt;}
.ws1b{word-spacing:2.295398pt;}
.ws8c{word-spacing:2.320541pt;}
.ws84{word-spacing:2.359159pt;}
.ws47{word-spacing:2.374743pt;}
.ws45{word-spacing:2.389526pt;}
.ws49{word-spacing:2.422921pt;}
.wsa1{word-spacing:2.486682pt;}
.wsb3{word-spacing:2.503674pt;}
.wsbf{word-spacing:2.546181pt;}
.ws6d{word-spacing:2.550443pt;}
.ws180{word-spacing:2.571639pt;}
.ws95{word-spacing:2.614204pt;}
.ws109{word-spacing:2.677939pt;}
.ws44{word-spacing:2.677965pt;}
.ws27{word-spacing:2.741726pt;}
.ws176{word-spacing:2.746184pt;}
.wsaf{word-spacing:2.877737pt;}
.ws192{word-spacing:2.920730pt;}
.ws77{word-spacing:2.932989pt;}
.ws5e{word-spacing:2.973228pt;}
.ws154{word-spacing:2.986123pt;}
.wsee{word-spacing:3.060531pt;}
.ws19d{word-spacing:3.095275pt;}
.ws138{word-spacing:3.124292pt;}
.ws26{word-spacing:3.188053pt;}
.ws145{word-spacing:3.211639pt;}
.ws96{word-spacing:3.251814pt;}
.ws7b{word-spacing:3.315575pt;}
.ws7d{word-spacing:3.379337pt;}
.ws2{word-spacing:3.443098pt;}
.wsf6{word-spacing:3.443802pt;}
.ws16e{word-spacing:3.461821pt;}
.wsec{word-spacing:3.491753pt;}
.ws194{word-spacing:3.502548pt;}
.ws6f{word-spacing:3.506859pt;}
.ws5d{word-spacing:3.634381pt;}
.ws198{word-spacing:3.636367pt;}
.ws162{word-spacing:3.698142pt;}
.wse9{word-spacing:3.761903pt;}
.wsf0{word-spacing:3.825664pt;}
.ws1c{word-spacing:3.889425pt;}
.ws43{word-spacing:3.898240pt;}
.ws39{word-spacing:3.953186pt;}
.ws1{word-spacing:3.985067pt;}
.ws79{word-spacing:4.016947pt;}
.wsb8{word-spacing:4.033933pt;}
.ws18{word-spacing:4.080708pt;}
.ws177{word-spacing:4.084367pt;}
.ws15{word-spacing:4.144469pt;}
.ws116{word-spacing:4.271787pt;}
.ws8{word-spacing:4.271991pt;}
.ws73{word-spacing:4.285653pt;}
.ws78{word-spacing:4.317133pt;}
.ws126{word-spacing:4.330027pt;}
.ws5f{word-spacing:4.335753pt;}
.ws5a{word-spacing:4.384541pt;}
.wsd0{word-spacing:4.399514pt;}
.ws41{word-spacing:4.428587pt;}
.ws2a{word-spacing:4.463275pt;}
.ws191{word-spacing:4.509095pt;}
.ws50{word-spacing:4.527036pt;}
.ws167{word-spacing:4.567253pt;}
.wsfc{word-spacing:4.590797pt;}
.wsfa{word-spacing:4.598538pt;}
.ws1a{word-spacing:4.654558pt;}
.ws189{word-spacing:4.683640pt;}
.ws83{word-spacing:4.718319pt;}
.wscf{word-spacing:4.782080pt;}
.ws7{word-spacing:4.845841pt;}
.wsab{word-spacing:4.909602pt;}
.ws186{word-spacing:4.916368pt;}
.ws9d{word-spacing:4.973363pt;}
.ws166{word-spacing:4.983680pt;}
.ws128{word-spacing:5.037124pt;}
.ws199{word-spacing:5.073459pt;}
.ws18c{word-spacing:5.090913pt;}
.wsdf{word-spacing:5.164646pt;}
.wse8{word-spacing:5.227948pt;}
.ws164{word-spacing:5.268693pt;}
.wsc{word-spacing:5.292169pt;}
.ws0{word-spacing:5.313400pt;}
.ws48{word-spacing:5.355930pt;}
.ws169{word-spacing:5.365984pt;}
.ws46{word-spacing:5.419691pt;}
.ws18e{word-spacing:5.480732pt;}
.wscd{word-spacing:5.483452pt;}
.ws59{word-spacing:5.547213pt;}
.wsf1{word-spacing:5.610974pt;}
.wsd9{word-spacing:5.660587pt;}
.ws98{word-spacing:5.664000pt;}
.ws159{word-spacing:5.674735pt;}
.wsd5{word-spacing:5.706880pt;}
.ws21{word-spacing:5.738496pt;}
.ws19c{word-spacing:5.789096pt;}
.ws155{word-spacing:5.871292pt;}
.ws179{word-spacing:5.905459pt;}
.wsad{word-spacing:5.924426pt;}
.ws16f{word-spacing:5.963641pt;}
.ws1d{word-spacing:6.057301pt;}
.ws158{word-spacing:6.121062pt;}
.ws10c{word-spacing:6.225551pt;}
.ws8d{word-spacing:6.241920pt;}
.ws10{word-spacing:6.248585pt;}
.ws111{word-spacing:6.280960pt;}
.ws55{word-spacing:6.309683pt;}
.ws57{word-spacing:6.312346pt;}
.ws16{word-spacing:6.376107pt;}
.ws195{word-spacing:6.411642pt;}
.ws71{word-spacing:6.439868pt;}
.wsa{word-spacing:6.567390pt;}
.wsa5{word-spacing:6.631151pt;}
.ws132{word-spacing:6.676693pt;}
.wsa3{word-spacing:6.694912pt;}
.ws28{word-spacing:6.758673pt;}
.ws11a{word-spacing:6.822434pt;}
.ws97{word-spacing:6.845653pt;}
.wsf{word-spacing:6.886195pt;}
.ws15f{word-spacing:6.949956pt;}
.ws10d{word-spacing:7.007573pt;}
.ws14b{word-spacing:7.010987pt;}
.wsd7{word-spacing:7.011200pt;}
.wsef{word-spacing:7.011627pt;}
.ws108{word-spacing:7.011840pt;}
.ws100{word-spacing:7.012267pt;}
.ws89{word-spacing:7.013717pt;}
.ws14c{word-spacing:7.013973pt;}
.ws106{word-spacing:7.014187pt;}
.ws101{word-spacing:7.015040pt;}
.wsdd{word-spacing:7.016533pt;}
.ws2c{word-spacing:7.077478pt;}
.ws70{word-spacing:7.127680pt;}
.ws58{word-spacing:7.141239pt;}
.ws196{word-spacing:7.168006pt;}
.ws5b{word-spacing:7.205001pt;}
.ws14d{word-spacing:7.210027pt;}
.ws7c{word-spacing:7.226027pt;}
.ws19a{word-spacing:7.226188pt;}
.ws6e{word-spacing:7.268762pt;}
.ws51{word-spacing:7.332523pt;}
.ws113{word-spacing:7.351257pt;}
.wsed{word-spacing:7.377067pt;}
.wsea{word-spacing:7.393493pt;}
.wsa7{word-spacing:7.396284pt;}
.ws187{word-spacing:7.458915pt;}
.wsfb{word-spacing:7.460045pt;}
.ws65{word-spacing:7.523806pt;}
.ws62{word-spacing:7.529382pt;}
.ws3e{word-spacing:7.587567pt;}
.ws121{word-spacing:7.651328pt;}
.ws75{word-spacing:7.715089pt;}
.ws61{word-spacing:7.778850pt;}
.ws12f{word-spacing:7.794347pt;}
.ws38{word-spacing:7.823360pt;}
.wsf5{word-spacing:7.842611pt;}
.ws11d{word-spacing:7.906372pt;}
.ws17e{word-spacing:8.040734pt;}
.wsd2{word-spacing:8.097655pt;}
.ws157{word-spacing:8.124800pt;}
.wscb{word-spacing:8.161417pt;}
.ws7a{word-spacing:8.225178pt;}
.ws23{word-spacing:8.288939pt;}
.ws69{word-spacing:8.338586pt;}
.ws91{word-spacing:8.416461pt;}
.ws11c{word-spacing:8.478933pt;}
.ws131{word-spacing:8.479360pt;}
.ws114{word-spacing:8.480222pt;}
.ws8b{word-spacing:8.543983pt;}
.ws54{word-spacing:8.607744pt;}
.ws52{word-spacing:8.671505pt;}
.ws8e{word-spacing:8.735266pt;}
.wse0{word-spacing:8.758827pt;}
.ws1f{word-spacing:8.926549pt;}
.ws56{word-spacing:8.990310pt;}
.ws105{word-spacing:9.023787pt;}
.ws193{word-spacing:9.029826pt;}
.ws25{word-spacing:9.083249pt;}
.wsce{word-spacing:9.092267pt;}
.ws13b{word-spacing:9.117833pt;}
.ws139{word-spacing:9.131273pt;}
.wsc8{word-spacing:9.181594pt;}
.ws152{word-spacing:9.223253pt;}
.wsd1{word-spacing:9.245355pt;}
.wsa4{word-spacing:9.309116pt;}
.ws127{word-spacing:9.372877pt;}
.ws170{word-spacing:9.378917pt;}
.ws103{word-spacing:9.436638pt;}
.ws12{word-spacing:9.500399pt;}
.ws102{word-spacing:9.501100pt;}
.ws13{word-spacing:9.564160pt;}
.ws17f{word-spacing:9.570917pt;}
.ws182{word-spacing:9.623585pt;}
.ws14{word-spacing:9.627921pt;}
.wsc0{word-spacing:9.644884pt;}
.ws175{word-spacing:9.669826pt;}
.ws32{word-spacing:9.691682pt;}
.ws104{word-spacing:9.755443pt;}
.ws37{word-spacing:9.819204pt;}
.ws18d{word-spacing:9.844372pt;}
.ws6c{word-spacing:9.861333pt;}
.ws6b{word-spacing:9.863253pt;}
.ws118{word-spacing:9.946726pt;}
.wsac{word-spacing:9.978027pt;}
.wsff{word-spacing:10.010487pt;}
.ws11{word-spacing:10.074249pt;}
.ws123{word-spacing:10.133760pt;}
.ws10e{word-spacing:10.138010pt;}
.ws12d{word-spacing:10.265532pt;}
.ws19{word-spacing:10.329293pt;}
.wsb5{word-spacing:10.367506pt;}
.wseb{word-spacing:10.456815pt;}
.ws67{word-spacing:10.519253pt;}
.wsaa{word-spacing:10.520576pt;}
.ws160{word-spacing:10.568320pt;}
.ws29{word-spacing:10.711859pt;}
.ws184{word-spacing:10.775282pt;}
.wsdb{word-spacing:10.775620pt;}
.ws33{word-spacing:10.839381pt;}
.ws92{word-spacing:10.903142pt;}
.wsa6{word-spacing:10.966903pt;}
.ws3d{word-spacing:11.004587pt;}
.wsf7{word-spacing:11.006507pt;}
.ws88{word-spacing:11.084160pt;}
.wse6{word-spacing:11.094426pt;}
.ws53{word-spacing:11.158187pt;}
.ws10a{word-spacing:11.189122pt;}
.ws11e{word-spacing:11.221948pt;}
.ws18a{word-spacing:11.240737pt;}
.ws66{word-spacing:11.349470pt;}
.ws130{word-spacing:11.359147pt;}
.ws11b{word-spacing:11.449600pt;}
.wsfd{word-spacing:11.476992pt;}
.wse4{word-spacing:11.790082pt;}
.wse2{word-spacing:11.796470pt;}
.ws3f{word-spacing:11.859558pt;}
.ws10b{word-spacing:11.979307pt;}
.ws22{word-spacing:11.987081pt;}
.ws60{word-spacing:12.050842pt;}
.wsa2{word-spacing:12.114603pt;}
.ws8f{word-spacing:12.296820pt;}
.ws82{word-spacing:12.305886pt;}
.wsfe{word-spacing:12.497169pt;}
.ws20{word-spacing:12.688452pt;}
.ws13e{word-spacing:12.752213pt;}
.ws13c{word-spacing:12.756622pt;}
.ws68{word-spacing:12.775253pt;}
.wsca{word-spacing:12.815974pt;}
.ws30{word-spacing:13.007258pt;}
.ws15d{word-spacing:13.027487pt;}
.wsdc{word-spacing:13.071019pt;}
.ws36{word-spacing:13.134780pt;}
.wse1{word-spacing:13.198541pt;}
.ws76{word-spacing:13.517346pt;}
.ws156{word-spacing:13.566080pt;}
.wse{word-spacing:13.581107pt;}
.ws5c{word-spacing:13.644868pt;}
.wsd{word-spacing:13.708629pt;}
.ws13a{word-spacing:13.737600pt;}
.ws63{word-spacing:13.925333pt;}
.ws64{word-spacing:13.927467pt;}
.ws87{word-spacing:14.018133pt;}
.wse3{word-spacing:14.027435pt;}
.ws15b{word-spacing:14.035413pt;}
.ws12e{word-spacing:14.164693pt;}
.ws31{word-spacing:14.312320pt;}
.ws85{word-spacing:14.410001pt;}
.ws6a{word-spacing:14.737920pt;}
.ws174{word-spacing:15.022558pt;}
.ws9a{word-spacing:15.238400pt;}
.ws35{word-spacing:15.302656pt;}
.wsf4{word-spacing:15.358507pt;}
.ws8a{word-spacing:15.674883pt;}
.wsc1{word-spacing:16.020964pt;}
.ws171{word-spacing:16.128013pt;}
.wsc3{word-spacing:16.190992pt;}
.ws90{word-spacing:16.200214pt;}
.ws86{word-spacing:16.386594pt;}
.ws13d{word-spacing:16.413653pt;}
.ws15e{word-spacing:16.647680pt;}
.ws15c{word-spacing:16.938027pt;}
.ws10f{word-spacing:17.052375pt;}
.ws93{word-spacing:17.152640pt;}
.ws12b{word-spacing:17.331487pt;}
.ws129{word-spacing:17.343010pt;}
.wse5{word-spacing:17.506347pt;}
.ws12c{word-spacing:17.661815pt;}
.wsf3{word-spacing:18.403840pt;}
.ws143{word-spacing:19.336547pt;}
.ws141{word-spacing:19.342837pt;}
.ws119{word-spacing:19.531093pt;}
.ws6{word-spacing:20.594825pt;}
.ws161{word-spacing:20.849869pt;}
.ws12a{word-spacing:21.231360pt;}
.ws144{word-spacing:22.225473pt;}
.ws13f{word-spacing:22.536730pt;}
.wsbc{word-spacing:24.862461pt;}
.wsc5{word-spacing:27.157850pt;}
.ws4{word-spacing:27.841053pt;}
.wsbe{word-spacing:30.685948pt;}
.ws17{word-spacing:31.169125pt;}
.wsb4{word-spacing:31.408570pt;}
.ws148{word-spacing:36.726374pt;}
.ws147{word-spacing:36.790135pt;}
.ws5{word-spacing:42.672393pt;}
.ws2f{word-spacing:43.704533pt;}
.ws80{word-spacing:45.589163pt;}
.ws81{word-spacing:46.099251pt;}
.ws7f{word-spacing:46.123790pt;}
.ws7e{word-spacing:47.948322pt;}
.wsc4{word-spacing:48.453957pt;}
.ws142{word-spacing:49.721605pt;}
.wsb0{word-spacing:84.442102pt;}
.wsc2{word-spacing:91.131186pt;}
.wsb1{word-spacing:220.049503pt;}
.wsbd{word-spacing:239.075726pt;}
.ws146{word-spacing:283.286688pt;}
.wsbb{word-spacing:310.779712pt;}
._3{margin-left:-47.778093pt;}
._1c{margin-left:-38.819663pt;}
._52{margin-left:-37.098114pt;}
._41{margin-left:-36.127247pt;}
._1b{margin-left:-34.537067pt;}
._12{margin-left:-32.114302pt;}
._7{margin-left:-31.179162pt;}
._f{margin-left:-30.286507pt;}
._5{margin-left:-29.113496pt;}
._6{margin-left:-27.736064pt;}
._48{margin-left:-26.478050pt;}
._c{margin-left:-25.504427pt;}
._1f{margin-left:-24.229205pt;}
._32{margin-left:-22.890120pt;}
._35{margin-left:-21.296107pt;}
._3e{margin-left:-20.063398pt;}
._3c{margin-left:-17.231842pt;}
._47{margin-left:-8.671505pt;}
._1e{margin-left:-6.949956pt;}
._b{margin-left:-5.530006pt;}
._4{margin-left:-4.594865pt;}
._9{margin-left:-3.613138pt;}
._1{margin-left:-2.635446pt;}
._8{margin-left:-1.721549pt;}
._1d{width:1.721549pt;}
._2{width:2.635446pt;}
._46{width:3.821889pt;}
._10{width:5.398448pt;}
._23{width:6.675169pt;}
._42{width:12.624691pt;}
._43{width:15.175134pt;}
._e{width:16.280348pt;}
._30{width:17.576779pt;}
._14{width:18.511985pt;}
._11{width:19.553405pt;}
._17{width:21.321540pt;}
._18{width:22.911499pt;}
._24{width:24.072259pt;}
._20{width:25.504361pt;}
._15{width:26.992207pt;}
._44{width:27.927347pt;}
._d{width:28.837209pt;}
._19{width:30.158985pt;}
._13{width:31.306684pt;}
._22{width:33.001569pt;}
._1a{width:34.834818pt;}
._25{width:36.436052pt;}
._2e{width:37.555268pt;}
._16{width:38.681725pt;}
._27{width:39.995396pt;}
._a{width:40.892119pt;}
._0{width:42.507200pt;}
._2d{width:43.655055pt;}
._2c{width:45.461641pt;}
._45{width:46.800623pt;}
._51{width:48.139605pt;}
._21{width:49.648628pt;}
._2f{width:50.672841pt;}
._2b{width:52.152451pt;}
._26{width:54.218149pt;}
._53{width:56.184910pt;}
._28{width:57.831287pt;}
._2a{width:61.656951pt;}
._29{width:66.171267pt;}
._3f{width:69.515981pt;}
._31{width:74.869489pt;}
._3b{width:137.139046pt;}
._33{width:160.740450pt;}
._39{width:173.985891pt;}
._3d{width:178.182745pt;}
._37{width:186.610529pt;}
._50{width:191.356904pt;}
._3a{width:192.380157pt;}
._34{width:263.748345pt;}
._49{width:266.371198pt;}
._4f{width:274.538768pt;}
._4a{width:299.593796pt;}
._36{width:310.442307pt;}
._40{width:316.220633pt;}
._38{width:342.609103pt;}
._4c{width:390.992780pt;}
._4b{width:395.422944pt;}
._4e{width:414.174395pt;}
._4d{width:418.616099pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:69.074133pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:94.488000pt;}
.y48{bottom:99.270667pt;}
.y71{bottom:99.308000pt;}
.y177{bottom:102.725333pt;}
.y150{bottom:112.553333pt;}
.y29{bottom:113.616000pt;}
.y70{bottom:115.249333pt;}
.y176{bottom:120.790667pt;}
.ydd{bottom:124.801333pt;}
.y14f{bottom:130.620000pt;}
.y28{bottom:132.745333pt;}
.y175{bottom:138.856000pt;}
.yc4{bottom:140.714667pt;}
.ydc{bottom:143.929333pt;}
.y6f{bottom:148.782667pt;}
.y27{bottom:151.873333pt;}
.y174{bottom:156.921333pt;}
.yc3{bottom:159.842667pt;}
.y14e{bottom:162.384000pt;}
.ydb{bottom:163.057333pt;}
.y6e{bottom:167.912000pt;}
.y26{bottom:171.001333pt;}
.yc2{bottom:178.972000pt;}
.y14d{bottom:180.449333pt;}
.yda{bottom:182.185333pt;}
.y6d{bottom:187.040000pt;}
.y173{bottom:187.834667pt;}
.y25{bottom:190.129333pt;}
.yc1{bottom:198.100000pt;}
.y14c{bottom:198.514667pt;}
.yd9{bottom:201.314667pt;}
.y172{bottom:205.900000pt;}
.y6c{bottom:206.168000pt;}
.y24{bottom:209.257333pt;}
.yf8{bottom:213.532000pt;}
.y14b{bottom:216.581333pt;}
.y97{bottom:217.228000pt;}
.yd8{bottom:220.442667pt;}
.y23{bottom:228.386667pt;}
.y6b{bottom:233.266667pt;}
.y14a{bottom:234.646667pt;}
.y96{bottom:236.356000pt;}
.y171{bottom:236.812000pt;}
.yd7{bottom:239.570667pt;}
.y22{bottom:247.514667pt;}
.y6a{bottom:252.394667pt;}
.y149{bottom:252.712000pt;}
.y170{bottom:254.878667pt;}
.y95{bottom:255.484000pt;}
.yd6{bottom:258.698667pt;}
.yc0{bottom:260.076000pt;}
.yf7{bottom:263.454667pt;}
.y21{bottom:266.642667pt;}
.y69{bottom:271.522667pt;}
.y16f{bottom:272.944000pt;}
.ye1{bottom:274.612000pt;}
.y94{bottom:274.613333pt;}
.yf6{bottom:282.582667pt;}
.y148{bottom:284.476000pt;}
.y20{bottom:285.770667pt;}
.yd5{bottom:285.797333pt;}
.ybf{bottom:286.160000pt;}
.y68{bottom:290.650667pt;}
.y93{bottom:293.741333pt;}
.yf5{bottom:301.710667pt;}
.y147{bottom:302.542667pt;}
.y16e{bottom:303.856000pt;}
.y1f{bottom:304.898667pt;}
.yd4{bottom:304.925333pt;}
.y67{bottom:309.780000pt;}
.y92{bottom:312.869333pt;}
.y146{bottom:320.608000pt;}
.yf4{bottom:320.838667pt;}
.y16d{bottom:321.922667pt;}
.y1e{bottom:324.028000pt;}
.yd3{bottom:324.053333pt;}
.ybd{bottom:331.098667pt;}
.y91{bottom:331.997333pt;}
.ybc{bottom:337.409333pt;}
.yf3{bottom:339.968000pt;}
.y1d{bottom:343.156000pt;}
.yd2{bottom:343.181333pt;}
.ybe{bottom:343.718667pt;}
.y145{bottom:345.648000pt;}
.y101{bottom:347.937333pt;}
.y66{bottom:350.613333pt;}
.y90{bottom:351.125333pt;}
.y16c{bottom:352.834667pt;}
.ybb{bottom:356.869333pt;}
.yf2{bottom:359.096000pt;}
.y1c{bottom:362.284000pt;}
.yd1{bottom:362.310667pt;}
.yba{bottom:363.178667pt;}
.y100{bottom:367.065333pt;}
.y8f{bottom:370.254667pt;}
.y16b{bottom:370.900000pt;}
.y65{bottom:372.180000pt;}
.yf1{bottom:378.224000pt;}
.y1b{bottom:381.412000pt;}
.yd0{bottom:381.438667pt;}
.yb9{bottom:382.638667pt;}
.y144{bottom:383.174667pt;}
.yff{bottom:386.194667pt;}
.ye0{bottom:388.518667pt;}
.y16a{bottom:388.966667pt;}
.y8e{bottom:389.382667pt;}
.y64{bottom:393.745333pt;}
.yb6{bottom:395.258667pt;}
.yf0{bottom:397.352000pt;}
.y47{bottom:399.326667pt;}
.ycf{bottom:400.566667pt;}
.yb5{bottom:401.568000pt;}
.y143{bottom:402.304000pt;}
.yfe{bottom:405.322667pt;}
.yb8{bottom:407.877333pt;}
.y8d{bottom:408.510667pt;}
.y117{bottom:414.266667pt;}
.y63{bottom:415.312000pt;}
.yef{bottom:416.480000pt;}
.y1a{bottom:417.828000pt;}
.y46{bottom:418.454667pt;}
.yce{bottom:419.694667pt;}
.y169{bottom:419.878667pt;}
.yb7{bottom:420.497333pt;}
.y142{bottom:421.432000pt;}
.yfd{bottom:424.450667pt;}
.y8c{bottom:427.638667pt;}
.y116{bottom:433.394667pt;}
.y128{bottom:435.609333pt;}
.y62{bottom:436.877333pt;}
.y19{bottom:436.956000pt;}
.y45{bottom:437.582667pt;}
.y168{bottom:437.944000pt;}
.ycd{bottom:438.822667pt;}
.yb4{bottom:442.458667pt;}
.yee{bottom:443.578667pt;}
.y8b{bottom:446.766667pt;}
.y141{bottom:447.534667pt;}
.ydf{bottom:449.224000pt;}
.y115{bottom:452.522667pt;}
.y127{bottom:454.737333pt;}
.y18{bottom:456.084000pt;}
.yed{bottom:462.706667pt;}
.yb3{bottom:464.421333pt;}
.y44{bottom:464.681333pt;}
.y8a{bottom:465.894667pt;}
.y167{bottom:468.857333pt;}
.y114{bottom:471.650667pt;}
.y126{bottom:473.865333pt;}
.y17{bottom:475.212000pt;}
.ycc{bottom:476.657333pt;}
.yb1{bottom:477.041333pt;}
.y61{bottom:480.149333pt;}
.yec{bottom:481.836000pt;}
.y43{bottom:483.809333pt;}
.y140{bottom:485.062667pt;}
.y166{bottom:486.922667pt;}
.yb2{bottom:489.660000pt;}
.y113{bottom:490.780000pt;}
.y89{bottom:492.993333pt;}
.y16{bottom:494.341333pt;}
.y60{bottom:499.277333pt;}
.yeb{bottom:500.964000pt;}
.yb0{bottom:502.810667pt;}
.y42{bottom:502.937333pt;}
.y13f{bottom:504.190667pt;}
.yfc{bottom:504.926667pt;}
.y165{bottom:504.988000pt;}
.yaf{bottom:509.120000pt;}
.y112{bottom:509.908000pt;}
.y88{bottom:512.121333pt;}
.y15{bottom:513.469333pt;}
.y5f{bottom:518.405333pt;}
.yea{bottom:520.092000pt;}
.y41{bottom:522.065333pt;}
.y164{bottom:523.053333pt;}
.y13e{bottom:523.318667pt;}
.y12b{bottom:527.202667pt;}
.yac{bottom:528.581333pt;}
.y87{bottom:531.250667pt;}
.y14{bottom:532.597333pt;}
.yae{bottom:534.890667pt;}
.y111{bottom:537.006667pt;}
.y5e{bottom:537.534667pt;}
.ye9{bottom:539.220000pt;}
.yfb{bottom:539.330667pt;}
.y40{bottom:541.193333pt;}
.yab{bottom:541.200000pt;}
.ycb{bottom:541.401333pt;}
.y13d{bottom:542.446667pt;}
.ya8{bottom:547.509333pt;}
.y86{bottom:550.378667pt;}
.y13{bottom:551.725333pt;}
.yaa{bottom:553.820000pt;}
.y163{bottom:553.966667pt;}
.y110{bottom:556.134667pt;}
.y5d{bottom:556.662667pt;}
.y125{bottom:557.018667pt;}
.ye8{bottom:558.348000pt;}
.yad{bottom:560.129333pt;}
.y3f{bottom:560.322667pt;}
.y13c{bottom:561.574667pt;}
.y12a{bottom:561.606667pt;}
.ya9{bottom:566.438667pt;}
.y85{bottom:569.506667pt;}
.y12{bottom:570.853333pt;}
.y162{bottom:572.032000pt;}
.y10f{bottom:575.262667pt;}
.y5c{bottom:575.790667pt;}
.y13b{bottom:580.702667pt;}
.ya7{bottom:582.777333pt;}
.ye7{bottom:585.446667pt;}
.y3e{bottom:587.420000pt;}
.y84{bottom:588.634667pt;}
.ya6{bottom:589.086667pt;}
.y11{bottom:589.982667pt;}
.y161{bottom:590.097333pt;}
.y10e{bottom:594.390667pt;}
.y5b{bottom:602.889333pt;}
.y3d{bottom:606.549333pt;}
.y124{bottom:607.336000pt;}
.y83{bottom:607.762667pt;}
.y13a{bottom:607.801333pt;}
.y10{bottom:609.110667pt;}
.ye6{bottom:612.545333pt;}
.y160{bottom:621.010667pt;}
.y10d{bottom:621.489333pt;}
.y5a{bottom:622.017333pt;}
.ya5{bottom:622.828000pt;}
.y3c{bottom:625.677333pt;}
.y123{bottom:625.933333pt;}
.y82{bottom:626.892000pt;}
.y139{bottom:626.929333pt;}
.yf{bottom:628.238667pt;}
.ye5{bottom:631.673333pt;}
.y15f{bottom:639.076000pt;}
.y10c{bottom:640.617333pt;}
.y59{bottom:641.145333pt;}
.y122{bottom:644.529333pt;}
.y3b{bottom:644.805333pt;}
.y81{bottom:646.020000pt;}
.y138{bottom:646.058667pt;}
.ye{bottom:647.366667pt;}
.ye4{bottom:650.801333pt;}
.ya4{bottom:652.304000pt;}
.y15e{bottom:657.141333pt;}
.y10b{bottom:659.745333pt;}
.y58{bottom:660.273333pt;}
.y121{bottom:663.126667pt;}
.y3a{bottom:663.933333pt;}
.y80{bottom:665.148000pt;}
.yd{bottom:666.494667pt;}
.ye3{bottom:669.930667pt;}
.ya3{bottom:671.432000pt;}
.y137{bottom:673.156000pt;}
.y15d{bottom:675.208000pt;}
.y10a{bottom:678.874667pt;}
.y57{bottom:679.402667pt;}
.y120{bottom:681.724000pt;}
.y39{bottom:683.061333pt;}
.y7f{bottom:684.276000pt;}
.yc{bottom:685.624000pt;}
.ya2{bottom:690.560000pt;}
.y136{bottom:692.285333pt;}
.y109{bottom:698.002667pt;}
.y56{bottom:698.530667pt;}
.y11f{bottom:700.320000pt;}
.y38{bottom:702.190667pt;}
.yb{bottom:704.752000pt;}
.y15c{bottom:706.120000pt;}
.ya1{bottom:709.688000pt;}
.y7e{bottom:711.374667pt;}
.y135{bottom:711.413333pt;}
.yfa{bottom:714.224000pt;}
.y108{bottom:717.130667pt;}
.y55{bottom:717.658667pt;}
.y37{bottom:721.318667pt;}
.y11e{bottom:722.105333pt;}
.ya{bottom:723.880000pt;}
.y15b{bottom:724.185333pt;}
.ye2{bottom:725.006667pt;}
.ya0{bottom:728.817333pt;}
.y7d{bottom:730.502667pt;}
.y134{bottom:730.541333pt;}
.y107{bottom:736.258667pt;}
.y54{bottom:736.786667pt;}
.y36{bottom:740.446667pt;}
.y15a{bottom:742.252000pt;}
.y9{bottom:743.008000pt;}
.y7c{bottom:749.630667pt;}
.y133{bottom:749.669333pt;}
.y11d{bottom:753.348000pt;}
.y106{bottom:755.386667pt;}
.y53{bottom:755.914667pt;}
.y35{bottom:759.574667pt;}
.y8{bottom:762.136000pt;}
.y7b{bottom:768.760000pt;}
.y132{bottom:768.797333pt;}
.y159{bottom:773.164000pt;}
.y105{bottom:774.514667pt;}
.y52{bottom:775.042667pt;}
.y9f{bottom:775.044000pt;}
.y34{bottom:778.702667pt;}
.y129{bottom:781.826667pt;}
.y11c{bottom:786.201333pt;}
.y7a{bottom:787.888000pt;}
.y131{bottom:787.926667pt;}
.y158{bottom:791.229333pt;}
.y104{bottom:793.644000pt;}
.y51{bottom:794.172000pt;}
.y7{bottom:801.901333pt;}
.yde{bottom:802.141333pt;}
.y11b{bottom:805.329333pt;}
.y33{bottom:805.801333pt;}
.y79{bottom:807.016000pt;}
.yca{bottom:813.069333pt;}
.y9e{bottom:813.300000pt;}
.y130{bottom:815.024000pt;}
.y50{bottom:821.269333pt;}
.y157{bottom:822.142667pt;}
.y103{bottom:823.760000pt;}
.y11a{bottom:824.458667pt;}
.y32{bottom:824.929333pt;}
.y78{bottom:826.144000pt;}
.y6{bottom:832.188000pt;}
.yc9{bottom:832.198667pt;}
.y9d{bottom:832.428000pt;}
.y12f{bottom:834.153333pt;}
.y156{bottom:840.208000pt;}
.y4f{bottom:840.398667pt;}
.y119{bottom:843.586667pt;}
.y31{bottom:844.058667pt;}
.y77{bottom:845.272000pt;}
.yc8{bottom:851.326667pt;}
.y9c{bottom:851.556000pt;}
.y12e{bottom:853.281333pt;}
.y102{bottom:856.242667pt;}
.y5{bottom:857.100000pt;}
.y155{bottom:858.273333pt;}
.yf9{bottom:859.358667pt;}
.y4e{bottom:859.526667pt;}
.y118{bottom:862.714667pt;}
.y30{bottom:863.186667pt;}
.y76{bottom:864.401333pt;}
.yc7{bottom:870.454667pt;}
.y9b{bottom:870.684000pt;}
.y12d{bottom:872.409333pt;}
.y4d{bottom:878.654667pt;}
.y2f{bottom:882.314667pt;}
.y4{bottom:886.582667pt;}
.y154{bottom:889.186667pt;}
.yc6{bottom:889.582667pt;}
.y9a{bottom:889.813333pt;}
.y75{bottom:891.498667pt;}
.y4c{bottom:897.782667pt;}
.y12c{bottom:898.512000pt;}
.y2e{bottom:901.442667pt;}
.y3{bottom:905.710667pt;}
.y153{bottom:907.252000pt;}
.y99{bottom:908.941333pt;}
.y74{bottom:910.628000pt;}
.y4b{bottom:916.910667pt;}
.yc5{bottom:918.390667pt;}
.y2d{bottom:920.570667pt;}
.y152{bottom:925.317333pt;}
.y98{bottom:928.069333pt;}
.y73{bottom:929.756000pt;}
.y4a{bottom:936.040000pt;}
.y2{bottom:939.648000pt;}
.y2c{bottom:939.698667pt;}
.y151{bottom:943.382667pt;}
.y72{bottom:948.884000pt;}
.y49{bottom:955.168000pt;}
.y1{bottom:966.216000pt;}
.y2b{bottom:974.296000pt;}
.ha{height:24.696550pt;}
.hf{height:30.095098pt;}
.he{height:30.537764pt;}
.hb{height:30.543098pt;}
.h4{height:31.880400pt;}
.h6{height:39.850400pt;}
.h15{height:40.378215pt;}
.h14{height:43.636400pt;}
.h5{height:47.820800pt;}
.h8{height:51.805600pt;}
.h3{height:55.016400pt;}
.h9{height:55.021733pt;}
.hc{height:55.337764pt;}
.h12{height:57.117733pt;}
.h10{height:57.123067pt;}
.h2{height:63.760800pt;}
.h7{height:64.919467pt;}
.hd{height:80.575098pt;}
.h13{height:82.355067pt;}
.h11{height:82.360400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.385333pt;}
.x1{left:117.134667pt;}
.xf{left:121.886667pt;}
.x15{left:125.650667pt;}
.x27{left:129.270667pt;}
.xd{left:131.337333pt;}
.x2{left:136.541333pt;}
.xc{left:141.442667pt;}
.x20{left:142.484000pt;}
.x8{left:143.622667pt;}
.x6{left:149.960000pt;}
.x10{left:152.897333pt;}
.xb{left:161.385333pt;}
.x1b{left:162.793333pt;}
.x24{left:164.464000pt;}
.x7{left:174.352000pt;}
.x5{left:186.462667pt;}
.x1f{left:192.604000pt;}
.x21{left:193.576000pt;}
.x23{left:199.373333pt;}
.x22{left:200.484000pt;}
.x1e{left:207.065333pt;}
.x1a{left:214.658667pt;}
.x19{left:216.024000pt;}
.x9{left:220.466667pt;}
.x4{left:227.470667pt;}
.x3{left:231.450667pt;}
.xe{left:246.561333pt;}
.x1c{left:259.373333pt;}
.x18{left:265.925333pt;}
.x25{left:267.528000pt;}
.x16{left:270.642667pt;}
.x1d{left:281.882667pt;}
.x26{left:309.376000pt;}
.x11{left:344.038667pt;}
.x12{left:381.602667pt;}
.x17{left:503.900000pt;}
.x13{left:599.742667pt;}
.x14{left:626.096000pt;}
}




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