
    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_599b9c1a13c02761d913f1ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_1b7c6df0ba865769dfa8a23f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_da0f5af5a6455009b1d18e02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_a77104bc03b5945ab154a3cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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_438c9be44292eaa24afb856a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;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_7f1e8afbe2ff4e982479a954.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962000;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_79829549f156e53e8c87d5e3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_650bdcb58368daecec9fc282.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_9eddf26c11b343ecbc56300e.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.ls2{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.004200px;}
.ls15{letter-spacing:2.407979px;}
.ls11{letter-spacing:2.413855px;}
.ls29{letter-spacing:2.426737px;}
.ls14{letter-spacing:2.429505px;}
.ls13{letter-spacing:2.432415px;}
.ls12{letter-spacing:2.433315px;}
.ls10{letter-spacing:2.437300px;}
.ls26{letter-spacing:2.437603px;}
.ls25{letter-spacing:2.456347px;}
.ls27{letter-spacing:2.457255px;}
.ls28{letter-spacing:2.458341px;}
.ls1c{letter-spacing:2.987100px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls69{letter-spacing:3.470303px;}
.ls1b{letter-spacing:4.006350px;}
.ls1a{letter-spacing:4.037617px;}
.ls9{letter-spacing:4.173440px;}
.ls6{letter-spacing:4.192129px;}
.ls5{letter-spacing:4.224363px;}
.ls7{letter-spacing:4.225926px;}
.ls8{letter-spacing:4.227792px;}
.ls57{letter-spacing:4.670529px;}
.ls54{letter-spacing:4.691444px;}
.ls53{letter-spacing:4.727517px;}
.ls55{letter-spacing:4.729266px;}
.ls56{letter-spacing:4.731355px;}
.ls63{letter-spacing:4.785733px;}
.ls5d{letter-spacing:4.794912px;}
.ls60{letter-spacing:4.807163px;}
.ls32{letter-spacing:4.811176px;}
.ls5a{letter-spacing:4.816384px;}
.ls2f{letter-spacing:4.832720px;}
.ls5f{letter-spacing:4.844126px;}
.ls61{letter-spacing:4.845918px;}
.ls62{letter-spacing:4.848058px;}
.ls59{letter-spacing:4.853418px;}
.ls5b{letter-spacing:4.855213px;}
.ls5c{letter-spacing:4.857358px;}
.ls50{letter-spacing:4.862600px;}
.ls2e{letter-spacing:4.869880px;}
.ls30{letter-spacing:4.871682px;}
.ls31{letter-spacing:4.873833px;}
.ls4c{letter-spacing:4.874466px;}
.lsf{letter-spacing:4.878824px;}
.ls4f{letter-spacing:4.906069px;}
.ls4b{letter-spacing:4.911947px;}
.ls4d{letter-spacing:4.913764px;}
.lse{letter-spacing:4.916901px;}
.ls4e{letter-spacing:4.921811px;}
.ls52{letter-spacing:4.959196px;}
.ls49{letter-spacing:4.967407px;}
.ls45{letter-spacing:4.989651px;}
.ls44{letter-spacing:5.028018px;}
.ls46{letter-spacing:5.029878px;}
.ls48{letter-spacing:5.032099px;}
.ls47{letter-spacing:5.038115px;}
.ls21{letter-spacing:5.044298px;}
.ls3a{letter-spacing:5.058407px;}
.ls1e{letter-spacing:5.066886px;}
.ls40{letter-spacing:5.067852px;}
.ls37{letter-spacing:5.081058px;}
.ls3d{letter-spacing:5.090546px;}
.ls22{letter-spacing:5.099737px;}
.ls1d{letter-spacing:5.105847px;}
.ls1f{letter-spacing:5.107735px;}
.ls20{letter-spacing:5.109991px;}
.ls36{letter-spacing:5.120128px;}
.ls38{letter-spacing:5.122022px;}
.ls39{letter-spacing:5.124284px;}
.ls3c{letter-spacing:5.129688px;}
.ls3e{letter-spacing:5.131586px;}
.ls3f{letter-spacing:5.133852px;}
.ls67{letter-spacing:5.144303px;}
.ls65{letter-spacing:5.150303px;}
.ls4{letter-spacing:7.347196px;}
.ls3{letter-spacing:7.353196px;}
.ls2c{letter-spacing:9.912538px;}
.ls43{letter-spacing:9.918538px;}
.ls2d{letter-spacing:11.310538px;}
.ls42{letter-spacing:11.356200px;}
.ls2b{letter-spacing:11.362200px;}
.ls18{letter-spacing:13.026538px;}
.ls34{letter-spacing:13.230538px;}
.lsc{letter-spacing:13.236538px;}
.ls16{letter-spacing:14.563200px;}
.ls19{letter-spacing:14.676538px;}
.ls2a{letter-spacing:14.701547px;}
.ls17{letter-spacing:14.722200px;}
.lsd{letter-spacing:14.892538px;}
.ls24{letter-spacing:14.898538px;}
.lsb{letter-spacing:14.944200px;}
.ls66{letter-spacing:18.303193px;}
.ls68{letter-spacing:20.882303px;}
.lsa{letter-spacing:25.291833px;}
.ls58{letter-spacing:28.304286px;}
.ls64{letter-spacing:28.992712px;}
.ls5e{letter-spacing:29.058070px;}
.ls33{letter-spacing:29.146851px;}
.ls51{letter-spacing:29.408489px;}
.ls4a{letter-spacing:30.093325px;}
.ls23{letter-spacing:30.569395px;}
.ls3b{letter-spacing:30.644615px;}
.ls41{letter-spacing:30.701836px;}
.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;}
}
.wsaf{word-spacing:-30.789515px;}
.wsa0{word-spacing:-30.732130px;}
.ws6e{word-spacing:-30.646412px;}
.wsbc{word-spacing:-30.179266px;}
.wsc8{word-spacing:-29.482581px;}
.ws90{word-spacing:-29.230089px;}
.wse6{word-spacing:-29.131280px;}
.wsf1{word-spacing:-29.075509px;}
.wsda{word-spacing:-28.375597px;}
.ws48{word-spacing:-25.355554px;}
.wsf7{word-spacing:-21.519300px;}
.ws4d{word-spacing:-14.943900px;}
.ws7d{word-spacing:-14.743532px;}
.ws5a{word-spacing:-14.599891px;}
.wsac{word-spacing:-5.131586px;}
.ws9e{word-spacing:-5.126632px;}
.ws9c{word-spacing:-5.122022px;}
.ws9a{word-spacing:-5.116350px;}
.ws6c{word-spacing:-5.111749px;}
.ws6a{word-spacing:-5.107735px;}
.ws68{word-spacing:-5.101495px;}
.wsb9{word-spacing:-5.029878px;}
.wsc2{word-spacing:-4.919441px;}
.wsc4{word-spacing:-4.913764px;}
.wsc6{word-spacing:-4.909577px;}
.ws8c{word-spacing:-4.871682px;}
.wse1{word-spacing:-4.856397px;}
.wse3{word-spacing:-4.855213px;}
.wsee{word-spacing:-4.845918px;}
.wsd7{word-spacing:-4.729266px;}
.wsd5{word-spacing:-4.729175px;}
.ws47{word-spacing:-4.225926px;}
.ws80{word-spacing:-3.588146px;}
.ws33{word-spacing:-3.586536px;}
.ws97{word-spacing:-3.466985px;}
.ws71{word-spacing:-3.407209px;}
.ws66{word-spacing:-3.168107px;}
.ws2f{word-spacing:-3.048556px;}
.wsd2{word-spacing:-2.929004px;}
.ws16{word-spacing:-2.869229px;}
.ws7f{word-spacing:-2.630126px;}
.ws73{word-spacing:-2.570351px;}
.ws7a{word-spacing:-2.457255px;}
.ws5b{word-spacing:-2.433315px;}
.ws34{word-spacing:-2.391024px;}
.ws108{word-spacing:-2.385040px;}
.ws96{word-spacing:-2.271473px;}
.ws10a{word-spacing:-2.175826px;}
.ws75{word-spacing:-2.151922px;}
.ws10f{word-spacing:-2.008454px;}
.ws10d{word-spacing:-1.924769px;}
.ws86{word-spacing:-1.793268px;}
.ws1c{word-spacing:-1.673717px;}
.ws84{word-spacing:-1.554166px;}
.ws3e{word-spacing:-1.374839px;}
.ws116{word-spacing:-1.338970px;}
.ws58{word-spacing:-1.195512px;}
.wsff{word-spacing:-1.171598px;}
.ws51{word-spacing:-1.148996px;}
.ws52{word-spacing:-1.135736px;}
.wsb3{word-spacing:-1.075961px;}
.ws35{word-spacing:-1.016185px;}
.wsa4{word-spacing:-0.956410px;}
.wse{word-spacing:-0.896634px;}
.wsfe{word-spacing:-0.878699px;}
.wsf6{word-spacing:-0.836858px;}
.ws4{word-spacing:-0.717307px;}
.ws105{word-spacing:-0.502114px;}
.ws46{word-spacing:-0.478205px;}
.ws10c{word-spacing:-0.418428px;}
.ws65{word-spacing:-0.358654px;}
.ws26{word-spacing:-0.298878px;}
.ws117{word-spacing:-0.292900px;}
.ws5f{word-spacing:-0.239102px;}
.ws22{word-spacing:-0.179327px;}
.ws119{word-spacing:-0.167371px;}
.ws10{word-spacing:-0.119551px;}
.ws11a{word-spacing:-0.083686px;}
.ws31{word-spacing:-0.059776px;}
.ws61{word-spacing:-0.044234px;}
.wsba{word-spacing:-0.014480px;}
.wsc5{word-spacing:-0.014146px;}
.wsad{word-spacing:-0.004471px;}
.ws9d{word-spacing:-0.004463px;}
.ws6b{word-spacing:-0.004450px;}
.ws8d{word-spacing:-0.004244px;}
.wse4{word-spacing:-0.004230px;}
.wsef{word-spacing:-0.004222px;}
.wsd8{word-spacing:-0.004120px;}
.ws7b{word-spacing:-0.002141px;}
.ws5c{word-spacing:-0.002120px;}
.ws4c{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws59{word-spacing:0.006435px;}
.ws77{word-spacing:0.011432px;}
.wsd4{word-spacing:0.012507px;}
.wseb{word-spacing:0.012816px;}
.wse0{word-spacing:0.012841px;}
.wsc1{word-spacing:0.012995px;}
.wsb6{word-spacing:0.013302px;}
.ws67{word-spacing:0.013508px;}
.ws99{word-spacing:0.013546px;}
.ws89{word-spacing:0.022664px;}
.wsa9{word-spacing:0.023873px;}
.ws11{word-spacing:0.059776px;}
.ws1a{word-spacing:0.119551px;}
.ws3{word-spacing:0.179327px;}
.ws30{word-spacing:0.239102px;}
.ws2b{word-spacing:0.358654px;}
.ws18{word-spacing:0.382565px;}
.ws6{word-spacing:0.418429px;}
.ws101{word-spacing:0.460271px;}
.wsfd{word-spacing:0.502114px;}
.ws76{word-spacing:0.537980px;}
.ws1b{word-spacing:0.597756px;}
.ws15{word-spacing:0.657532px;}
.ws11d{word-spacing:0.711328px;}
.ws37{word-spacing:0.717307px;}
.ws111{word-spacing:0.753170px;}
.ws10b{word-spacing:0.795013px;}
.ws93{word-spacing:0.836858px;}
.ws114{word-spacing:0.878699px;}
.ws63{word-spacing:0.956410px;}
.ws11b{word-spacing:0.962384px;}
.ws40{word-spacing:1.016185px;}
.ws2a{word-spacing:1.075961px;}
.ws87{word-spacing:1.195512px;}
.wsfc{word-spacing:1.297127px;}
.ws23{word-spacing:1.315063px;}
.ws24{word-spacing:1.374839px;}
.ws28{word-spacing:1.434614px;}
.wsfb{word-spacing:1.506341px;}
.ws44{word-spacing:1.554166px;}
.ws60{word-spacing:1.613941px;}
.ws62{word-spacing:1.673717px;}
.ws112{word-spacing:1.799240px;}
.ws64{word-spacing:1.853044px;}
.wsa7{word-spacing:1.912819px;}
.ws10e{word-spacing:1.924769px;}
.wsfa{word-spacing:1.966612px;}
.wse9{word-spacing:1.972595px;}
.ws2e{word-spacing:2.032370px;}
.ws115{word-spacing:2.092140px;}
.ws95{word-spacing:2.092146px;}
.ws1d{word-spacing:2.151922px;}
.ws1e{word-spacing:2.211697px;}
.ws42{word-spacing:2.271473px;}
.ws113{word-spacing:2.426882px;}
.ws25{word-spacing:2.450800px;}
.ws78{word-spacing:2.454653px;}
.ws45{word-spacing:2.510575px;}
.ws100{word-spacing:2.552411px;}
.wsde{word-spacing:2.570351px;}
.ws2c{word-spacing:2.630126px;}
.wsb{word-spacing:2.689902px;}
.ws1f{word-spacing:2.749678px;}
.ws107{word-spacing:2.803468px;}
.ws74{word-spacing:2.809453px;}
.wsa8{word-spacing:2.869229px;}
.wsa{word-spacing:2.929004px;}
.ws19{word-spacing:2.988780px;}
.wsea{word-spacing:3.108331px;}
.ws2d{word-spacing:3.168107px;}
.wsb2{word-spacing:3.227882px;}
.ws3c{word-spacing:3.287658px;}
.ws102{word-spacing:3.347424px;}
.ws39{word-spacing:3.347434px;}
.wsa6{word-spacing:3.407209px;}
.ws27{word-spacing:3.466985px;}
.ws109{word-spacing:3.514795px;}
.ws20{word-spacing:3.586536px;}
.ws2{word-spacing:3.646312px;}
.ws98{word-spacing:3.706087px;}
.ws43{word-spacing:3.825638px;}
.ws57{word-spacing:3.885414px;}
.wsd{word-spacing:3.945190px;}
.ws3b{word-spacing:4.184292px;}
.ws55{word-spacing:4.244068px;}
.ws5{word-spacing:4.303843px;}
.ws104{word-spacing:4.351651px;}
.wsd1{word-spacing:4.363619px;}
.ws103{word-spacing:4.393494px;}
.wsf9{word-spacing:4.602708px;}
.ws94{word-spacing:4.782048px;}
.ws106{word-spacing:4.811922px;}
.ws5d{word-spacing:4.827710px;}
.wsf{word-spacing:4.841824px;}
.wsec{word-spacing:4.848486px;}
.ws8a{word-spacing:4.865964px;}
.ws7c{word-spacing:4.875207px;}
.ws8e{word-spacing:4.875744px;}
.ws79{word-spacing:4.884066px;}
.ws3d{word-spacing:4.901599px;}
.wsb7{word-spacing:5.033497px;}
.wscc{word-spacing:5.080926px;}
.wsaa{word-spacing:5.125359px;}
.wscd{word-spacing:5.140702px;}
.ws11c{word-spacing:5.188507px;}
.ws21{word-spacing:5.200477px;}
.ws83{word-spacing:5.260253px;}
.ws118{word-spacing:5.272193px;}
.ws88{word-spacing:5.320028px;}
.wsce{word-spacing:5.439580px;}
.ws110{word-spacing:5.481407px;}
.wsf8{word-spacing:5.559131px;}
.ws3a{word-spacing:5.678682px;}
.ws41{word-spacing:5.917784px;}
.ws54{word-spacing:5.977560px;}
.wsb4{word-spacing:6.156887px;}
.ws36{word-spacing:6.216662px;}
.ws70{word-spacing:6.395989px;}
.ws9{word-spacing:6.455765px;}
.ws72{word-spacing:6.515540px;}
.wsdd{word-spacing:6.754643px;}
.ws53{word-spacing:6.874194px;}
.wsd0{word-spacing:6.933970px;}
.ws29{word-spacing:6.993745px;}
.ws8{word-spacing:7.232848px;}
.wsdf{word-spacing:7.292623px;}
.ws56{word-spacing:7.352399px;}
.wse8{word-spacing:7.531726px;}
.ws38{word-spacing:7.890379px;}
.wsc0{word-spacing:7.950155px;}
.wsf5{word-spacing:8.129482px;}
.ws4b{word-spacing:8.189257px;}
.wsc{word-spacing:8.308808px;}
.ws4f{word-spacing:8.428360px;}
.wsdc{word-spacing:8.488135px;}
.wsa3{word-spacing:8.727238px;}
.wsb5{word-spacing:8.906564px;}
.wsd9{word-spacing:9.382888px;}
.wsd6{word-spacing:9.399938px;}
.wsf0{word-spacing:9.614326px;}
.wsed{word-spacing:9.631797px;}
.wse5{word-spacing:9.632767px;}
.wse2{word-spacing:9.650272px;}
.ws8f{word-spacing:9.665440px;}
.ws8b{word-spacing:9.683004px;}
.wsc7{word-spacing:9.748931px;}
.wsc3{word-spacing:9.766647px;}
.wsbb{word-spacing:9.979302px;}
.wsb8{word-spacing:9.987339px;}
.ws6d{word-spacing:10.133772px;}
.ws69{word-spacing:10.141933px;}
.ws9f{word-spacing:10.162117px;}
.ws9b{word-spacing:10.170300px;}
.wsae{word-spacing:10.181092px;}
.wsab{word-spacing:10.199593px;}
.ws50{word-spacing:10.221628px;}
.wsbf{word-spacing:10.281403px;}
.ws82{word-spacing:10.520506px;}
.ws17{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws4a{word-spacing:16.772534px;}
.wscb{word-spacing:16.778534px;}
.wsd3{word-spacing:17.281966px;}
.ws14{word-spacing:17.932800px;}
.ws85{word-spacing:18.613966px;}
.ws3f{word-spacing:18.817966px;}
.wsa5{word-spacing:19.249966px;}
.ws32{word-spacing:20.185966px;}
.ws7{word-spacing:20.629966px;}
.ws13{word-spacing:21.519300px;}
.wsf4{word-spacing:25.633966px;}
.ws12{word-spacing:37.003661px;}
.ws5e{word-spacing:46.232990px;}
.ws7e{word-spacing:46.687852px;}
.ws49{word-spacing:80.292588px;}
.wsdb{word-spacing:89.856057px;}
.wsf2{word-spacing:92.072446px;}
.wse7{word-spacing:92.249053px;}
.ws91{word-spacing:92.561949px;}
.wsc9{word-spacing:93.361507px;}
.wsb1{word-spacing:93.444984px;}
.wsbd{word-spacing:95.567675px;}
.ws6f{word-spacing:97.046972px;}
.wsa1{word-spacing:97.318413px;}
.wsb0{word-spacing:97.500131px;}
.ws81{word-spacing:166.036982px;}
.wsf3{word-spacing:652.541076px;}
.wsa2{word-spacing:663.361022px;}
.ws92{word-spacing:745.494244px;}
.wscf{word-spacing:925.793881px;}
.wsca{word-spacing:936.712190px;}
.wsbe{word-spacing:1002.320405px;}
.ws4e{word-spacing:1249.310252px;}
._18{margin-left:-9.381555px;}
._19{margin-left:-7.860222px;}
._5{margin-left:-6.575316px;}
._6{margin-left:-5.559131px;}
._7{margin-left:-4.244068px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._4b{width:1.008298px;}
._1e{width:2.377327px;}
._4c{width:3.943434px;}
._26{width:4.961557px;}
._65{width:10.382919px;}
._64{width:12.014833px;}
._37{width:13.569062px;}
._67{width:14.644980px;}
._9{width:15.679416px;}
._2b{width:17.155597px;}
._2{width:18.171782px;}
._13{width:19.307519px;}
._8{width:20.503031px;}
._d{width:21.519216px;}
._e{width:22.834279px;}
._1d{width:23.886335px;}
._c{width:25.022071px;}
._66{width:27.269465px;}
._b{width:28.393411px;}
._11{width:29.887800px;}
._3{width:31.621292px;}
._55{width:33.832990px;}
._f{width:35.865600px;}
._4{width:37.479301px;}
._5a{width:39.033467px;}
._12{width:40.228979px;}
._10{width:43.038600px;}
._23{width:60.342831px;}
._22{width:71.880132px;}
._30{width:73.480769px;}
._1f{width:78.693415px;}
._21{width:90.811325px;}
._31{width:92.517764px;}
._25{width:96.842559px;}
._2d{width:104.655369px;}
._24{width:108.185195px;}
._34{width:110.171233px;}
._2f{width:116.941645px;}
._36{width:134.743786px;}
._1c{width:136.581919px;}
._3a{width:143.909472px;}
._53{width:144.967296px;}
._51{width:146.085892px;}
._4f{width:148.481988px;}
._43{width:151.587045px;}
._58{width:153.310537px;}
._5c{width:156.129443px;}
._16{width:157.711547px;}
._35{width:158.998116px;}
._4d{width:162.666243px;}
._28{width:165.082007px;}
._46{width:166.268366px;}
._5e{width:180.255516px;}
._3c{width:181.811154px;}
._33{width:182.914997px;}
._32{width:185.617977px;}
._50{width:187.935200px;}
._42{width:191.510783px;}
._3d{width:195.866111px;}
._39{width:206.169562px;}
._2e{width:210.401768px;}
._61{width:216.327832px;}
._40{width:222.500624px;}
._48{width:229.331679px;}
._5d{width:233.924178px;}
._29{width:243.536822px;}
._5b{width:247.518776px;}
._49{width:251.345074px;}
._27{width:257.838481px;}
._3f{width:259.278247px;}
._17{width:261.331246px;}
._15{width:267.163023px;}
._41{width:271.358258px;}
._14{width:273.163838px;}
._45{width:282.750379px;}
._54{width:284.408633px;}
._63{width:289.016606px;}
._3e{width:290.828394px;}
._56{width:296.361684px;}
._59{width:300.699013px;}
._47{width:314.155684px;}
._2a{width:320.152852px;}
._57{width:321.971793px;}
._1a{width:348.790780px;}
._52{width:349.958239px;}
._62{width:361.582078px;}
._4e{width:363.980917px;}
._5f{width:369.626303px;}
._1b{width:371.289832px;}
._4a{width:382.508407px;}
._3b{width:387.840270px;}
._60{width:393.855894px;}
._44{width:408.166336px;}
._38{width:412.198678px;}
._20{width:606.719434px;}
._2c{width:644.229727px;}
._a{width:1171.269949px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fsb{font-size:38.933141px;}
.fs11{font-size:39.316184px;}
.fs22{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fsa{font-size:48.666305px;}
.fs10{font-size:49.145107px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:64.618542px;}
.fs7{font-size:67.614981px;}
.fs4{font-size:71.731200px;}
.fs1d{font-size:75.668448px;}
.fs21{font-size:77.534886px;}
.fs1f{font-size:77.683608px;}
.fs13{font-size:77.947100px;}
.fs1b{font-size:78.620414px;}
.fs9{font-size:78.690710px;}
.fs19{font-size:80.478244px;}
.fsc{font-size:80.772975px;}
.fsf{font-size:81.723971px;}
.fs15{font-size:81.952553px;}
.fs17{font-size:82.105579px;}
.fs6{font-size:84.518514px;}
.fs0{font-size:86.077200px;}
.fs1c{font-size:94.585323px;}
.fs20{font-size:96.918365px;}
.fs1e{font-size:97.104267px;}
.fs12{font-size:97.433630px;}
.fs1a{font-size:98.275271px;}
.fs8{font-size:98.363141px;}
.fs18{font-size:100.597553px;}
.fse{font-size:102.154707px;}
.fs14{font-size:102.440435px;}
.fs16{font-size:102.631716px;}
.y0{bottom:0.000000px;}
.y21{bottom:134.047500px;}
.y88{bottom:178.879500px;}
.y11f{bottom:179.920500px;}
.yd9{bottom:180.132000px;}
.y179{bottom:180.523500px;}
.yf8{bottom:180.657000px;}
.ye9{bottom:188.653500px;}
.yb2{bottom:188.833500px;}
.y20{bottom:193.149000px;}
.y178{bottom:193.972500px;}
.y87{bottom:196.812000px;}
.y11e{bottom:197.853000px;}
.y46{bottom:198.343500px;}
.y54{bottom:198.508500px;}
.ye8{bottom:206.586000px;}
.yb1{bottom:206.766000px;}
.yd8{bottom:208.152000px;}
.yf7{bottom:208.677000px;}
.y1f{bottom:211.686000px;}
.y86{bottom:214.744500px;}
.y11d{bottom:215.785500px;}
.y45{bottom:216.276000px;}
.y13d{bottom:217.909500px;}
.y177{bottom:219.378000px;}
.y1e{bottom:222.060000px;}
.ye7{bottom:224.520000px;}
.yb0{bottom:224.698500px;}
.y85{bottom:232.677000px;}
.y176{bottom:232.827000px;}
.y11c{bottom:233.718000px;}
.y44{bottom:234.208500px;}
.y13c{bottom:235.842000px;}
.y1d{bottom:240.597000px;}
.yaf{bottom:242.631000px;}
.y53{bottom:250.239717px;}
.y84{bottom:250.609500px;}
.y11b{bottom:251.652000px;}
.ye6{bottom:252.540000px;}
.y13b{bottom:253.774500px;}
.y175{bottom:258.232500px;}
.y76{bottom:259.900500px;}
.y154{bottom:259.905000px;}
.yae{bottom:260.563500px;}
.y43{bottom:262.228500px;}
.yf6{bottom:267.745500px;}
.yd7{bottom:268.251000px;}
.y9b{bottom:268.543500px;}
.y11a{bottom:269.584500px;}
.y174{bottom:271.681500px;}
.y13a{bottom:271.707000px;}
.y153{bottom:277.839000px;}
.yad{bottom:278.496000px;}
.y83{bottom:278.629500px;}
.y52{bottom:279.748363px;}
.y19e{bottom:283.486500px;}
.y1c{bottom:286.045500px;}
.y9a{bottom:286.476000px;}
.y119{bottom:287.517000px;}
.y139{bottom:289.639500px;}
.y42{bottom:290.248500px;}
.yac{bottom:296.430000px;}
.y19d{bottom:296.937000px;}
.y173{bottom:297.087000px;}
.y1b{bottom:303.978000px;}
.y99{bottom:304.408500px;}
.y118{bottom:305.449500px;}
.y138{bottom:307.572000px;}
.y75{bottom:309.872014px;}
.y51{bottom:310.241864px;}
.y172{bottom:310.536000px;}
.y152{bottom:311.238000px;}
.ye5{bottom:311.608500px;}
.yab{bottom:314.362500px;}
.yf5{bottom:319.476717px;}
.yd6{bottom:319.982217px;}
.yc4{bottom:322.341000px;}
.y117{bottom:323.382000px;}
.y171{bottom:323.985000px;}
.y137{bottom:325.506000px;}
.y41{bottom:326.637000px;}
.y1a{bottom:331.998000px;}
.y98{bottom:332.428500px;}
.y74{bottom:334.103664px;}
.y19c{bottom:335.791500px;}
.y82{bottom:336.820500px;}
.yc3{bottom:340.273500px;}
.y116{bottom:341.314500px;}
.yaa{bottom:342.382500px;}
.y136{bottom:343.438500px;}
.yf4{bottom:348.985363px;}
.y50{bottom:349.180500px;}
.y19b{bottom:349.240500px;}
.y170{bottom:349.390500px;}
.yd5{bottom:349.490863px;}
.yc2{bottom:358.206000px;}
.y73{bottom:359.144048px;}
.y115{bottom:359.248500px;}
.y135{bottom:361.371000px;}
.y151{bottom:361.674000px;}
.y16f{bottom:362.839500px;}
.ye4{bottom:363.340685px;}
.y4f{bottom:367.113000px;}
.y19{bottom:368.386500px;}
.y19a{bottom:374.644500px;}
.yc1{bottom:376.140000px;}
.y40{bottom:377.073000px;}
.y114{bottom:377.181000px;}
.y134{bottom:379.303500px;}
.yf3{bottom:379.478864px;}
.yd4{bottom:379.984364px;}
.y104{bottom:387.921000px;}
.y199{bottom:388.095000px;}
.y16e{bottom:388.245000px;}
.y97{bottom:388.392000px;}
.y81{bottom:388.551717px;}
.ye3{bottom:392.849331px;}
.y3f{bottom:395.005500px;}
.y150{bottom:395.073000px;}
.y113{bottom:395.113500px;}
.y72{bottom:395.743500px;}
.y133{bottom:397.236000px;}
.y4e{bottom:401.440500px;}
.ya9{bottom:401.451000px;}
.y16d{bottom:401.694000px;}
.yc0{bottom:404.160000px;}
.y3e{bottom:412.939500px;}
.y112{bottom:413.046000px;}
.y198{bottom:413.499000px;}
.y71{bottom:413.676000px;}
.y132{bottom:415.170000px;}
.y80{bottom:418.060363px;}
.yd3{bottom:418.783500px;}
.yf2{bottom:419.308500px;}
.ye2{bottom:423.342833px;}
.y18{bottom:425.526000px;}
.y197{bottom:426.949500px;}
.y16c{bottom:427.098000px;}
.y3d{bottom:430.872000px;}
.y70{bottom:431.608500px;}
.y131{bottom:433.102500px;}
.yd2{bottom:436.716000px;}
.yf1{bottom:437.241000px;}
.y103{bottom:439.653185px;}
.y96{bottom:440.124185px;}
.y16b{bottom:440.548500px;}
.y111{bottom:441.066000px;}
.y17{bottom:443.460000px;}
.y14f{bottom:445.509000px;}
.y7f{bottom:448.553864px;}
.y3c{bottom:448.804500px;}
.y130{bottom:451.035000px;}
.y4d{bottom:451.786511px;}
.y196{bottom:452.353500px;}
.ya8{bottom:453.183185px;}
.y16a{bottom:453.997500px;}
.yd1{bottom:454.648500px;}
.ybf{bottom:461.323500px;}
.ye1{bottom:463.170000px;}
.y14e{bottom:463.441500px;}
.y195{bottom:465.802500px;}
.y3b{bottom:466.737000px;}
.y6f{bottom:466.827000px;}
.y12f{bottom:468.967500px;}
.y102{bottom:469.161831px;}
.y95{bottom:469.632831px;}
.y16{bottom:471.867000px;}
.yf0{bottom:475.522500px;}
.y4c{bottom:477.141811px;}
.y194{bottom:479.253000px;}
.y169{bottom:479.403000px;}
.ye0{bottom:481.104000px;}
.y14d{bottom:481.375500px;}
.ya7{bottom:482.691831px;}
.y3a{bottom:484.669500px;}
.y12e{bottom:486.900000px;}
.y7e{bottom:487.777500px;}
.y15{bottom:489.801000px;}
.y168{bottom:492.852000px;}
.yd0{bottom:492.930000px;}
.y14c{bottom:499.308000px;}
.y101{bottom:499.652864px;}
.y94{bottom:500.123864px;}
.y110{bottom:500.134500px;}
.y4b{bottom:502.499232px;}
.y193{bottom:504.657000px;}
.y12d{bottom:504.832500px;}
.y7d{bottom:505.711500px;}
.y14{bottom:507.733500px;}
.y39{bottom:512.689500px;}
.ybe{bottom:513.054717px;}
.ya6{bottom:513.185333px;}
.y6e{bottom:513.588143px;}
.ydf{bottom:516.322500px;}
.y14b{bottom:517.240500px;}
.y192{bottom:518.107500px;}
.y167{bottom:518.257500px;}
.y13{bottom:525.666000px;}
.yef{bottom:527.244943px;}
.y4a{bottom:527.854531px;}
.y6d{bottom:528.187888px;}
.y166{bottom:531.706500px;}
.y12c{bottom:532.852500px;}
.y100{bottom:537.016500px;}
.y93{bottom:537.811500px;}
.y7c{bottom:540.324000px;}
.ybd{bottom:542.563363px;}
.y6c{bottom:542.788854px;}
.y191{bottom:543.511500px;}
.y12{bottom:543.598500px;}
.ycf{bottom:545.087853px;}
.y14a{bottom:550.639500px;}
.y10f{bottom:551.865717px;}
.ya5{bottom:553.014000px;}
.y49{bottom:554.053947px;}
.yff{bottom:554.949000px;}
.y38{bottom:555.466500px;}
.y92{bottom:555.745500px;}
.yee{bottom:556.729695px;}
.y190{bottom:556.962000px;}
.y165{bottom:557.110500px;}
.y6b{bottom:557.388599px;}
.y11{bottom:561.531000px;}
.yde{bottom:568.276636px;}
.y164{bottom:570.561000px;}
.ya4{bottom:570.946500px;}
.y6a{bottom:572.474391px;}
.ybc{bottom:573.056864px;}
.y37{bottom:573.399000px;}
.yce{bottom:575.877059px;}
.y48{bottom:579.411368px;}
.y10{bottom:579.463500px;}
.y10e{bottom:581.374363px;}
.y18f{bottom:582.366000px;}
.y163{bottom:584.010000px;}
.yed{bottom:586.211980px;}
.y69{bottom:587.075357px;}
.yfe{bottom:587.700000px;}
.y91{bottom:588.822000px;}
.y36{bottom:591.333000px;}
.y12b{bottom:591.922500px;}
.y7b{bottom:592.434945px;}
.y18e{bottom:595.815000px;}
.yf{bottom:597.397500px;}
.y149{bottom:598.060500px;}
.ydd{bottom:598.455599px;}
.y68{bottom:602.161150px;}
.y47{bottom:605.610784px;}
.ya3{bottom:606.165000px;}
.ycd{bottom:606.668840px;}
.y35{bottom:609.265500px;}
.y162{bottom:609.415500px;}
.ybb{bottom:611.574000px;}
.y10d{bottom:611.867864px;}
.ye{bottom:615.330000px;}
.yec{bottom:616.675775px;}
.y18d{bottom:621.220500px;}
.y161{bottom:622.864500px;}
.y7a{bottom:623.081050px;}
.y34{bottom:627.198000px;}
.yba{bottom:629.506500px;}
.ydc{bottom:629.641790px;}
.yd{bottom:633.262500px;}
.y18c{bottom:634.669500px;}
.y67{bottom:635.043000px;}
.y90{bottom:635.631215px;}
.y160{bottom:636.313500px;}
.ycc{bottom:637.458046px;}
.yfd{bottom:639.839794px;}
.y12a{bottom:643.652217px;}
.y33{bottom:645.130500px;}
.yeb{bottom:646.160526px;}
.y148{bottom:649.792685px;}
.y8f{bottom:650.374599px;}
.yc{bottom:651.195000px;}
.y10c{bottom:651.697500px;}
.y66{bottom:652.975500px;}
.y79{bottom:654.747410px;}
.ya2{bottom:657.803114px;}
.ydb{bottom:659.820753px;}
.y18b{bottom:660.075000px;}
.y15f{bottom:661.719000px;}
.y32{bottom:663.063000px;}
.yb9{bottom:663.411000px;}
.y8e{bottom:665.117983px;}
.ycb{bottom:668.247252px;}
.yb{bottom:669.127500px;}
.y10b{bottom:669.630000px;}
.yfc{bottom:670.571616px;}
.y65{bottom:670.909500px;}
.y129{bottom:673.163331px;}
.y18a{bottom:673.524000px;}
.y15e{bottom:675.168000px;}
.yea{bottom:676.624321px;}
.y147{bottom:679.301331px;}
.y8d{bottom:679.862601px;}
.y31{bottom:680.995500px;}
.y78{bottom:685.396078px;}
.y189{bottom:686.974500px;}
.ya1{bottom:687.032910px;}
.ya{bottom:687.060000px;}
.y15d{bottom:688.618500px;}
.y64{bottom:688.842000px;}
.yda{bottom:691.006943px;}
.y8c{bottom:694.605985px;}
.y30{bottom:698.929500px;}
.yca{bottom:699.036458px;}
.yfb{bottom:702.329117px;}
.y128{bottom:703.654364px;}
.y9{bottom:704.994000px;}
.y63{bottom:706.774500px;}
.y10a{bottom:707.911500px;}
.y146{bottom:709.794833px;}
.y8b{bottom:709.840198px;}
.y188{bottom:712.378500px;}
.y15c{bottom:714.022500px;}
.yb8{bottom:715.549598px;}
.ya0{bottom:716.262706px;}
.y2f{bottom:716.862000px;}
.y77{bottom:717.062437px;}
.y8{bottom:722.926500px;}
.y8a{bottom:724.584816px;}
.y62{bottom:724.707000px;}
.y187{bottom:725.827500px;}
.y15b{bottom:727.473000px;}
.yc9{bottom:729.825663px;}
.yfa{bottom:733.060939px;}
.y2e{bottom:734.794500px;}
.y186{bottom:739.278000px;}
.y89{bottom:739.819030px;}
.y7{bottom:740.859000px;}
.y61{bottom:742.639500px;}
.y127{bottom:743.484000px;}
.y9f{bottom:745.494946px;}
.yb7{bottom:746.281419px;}
.y145{bottom:750.970500px;}
.y2d{bottom:752.727000px;}
.y15a{bottom:757.882500px;}
.y109{bottom:759.265525px;}
.y60{bottom:760.573500px;}
.yc8{bottom:760.614869px;}
.y126{bottom:761.416500px;}
.y185{bottom:764.682000px;}
.yf9{bottom:764.818440px;}
.y6{bottom:767.758500px;}
.y2c{bottom:770.659500px;}
.y9e{bottom:775.697846px;}
.yb6{bottom:777.015812px;}
.y184{bottom:778.132500px;}
.y5f{bottom:778.506000px;}
.y108{bottom:787.640837px;}
.y2b{bottom:788.592000px;}
.y183{bottom:791.581500px;}
.yc7{bottom:792.431670px;}
.y5e{bottom:796.438500px;}
.y159{bottom:800.250000px;}
.y144{bottom:802.557642px;}
.y9d{bottom:804.927642px;}
.y2a{bottom:806.526000px;}
.yb5{bottom:808.770742px;}
.y125{bottom:808.837500px;}
.y5d{bottom:814.371000px;}
.y107{bottom:816.963179px;}
.y182{bottom:816.987000px;}
.yc6{bottom:823.220876px;}
.y29{bottom:824.458500px;}
.y181{bottom:830.436000px;}
.y143{bottom:831.632859px;}
.y5c{bottom:832.303500px;}
.y9c{bottom:835.132987px;}
.yb4{bottom:839.502564px;}
.y28{bottom:842.391000px;}
.y106{bottom:845.338492px;}
.y5b{bottom:850.236000px;}
.y158{bottom:850.684500px;}
.yc5{bottom:855.037676px;}
.y180{bottom:855.840000px;}
.y27{bottom:860.323500px;}
.y124{bottom:860.442353px;}
.y142{bottom:860.708077px;}
.y5{bottom:867.796500px;}
.y5a{bottom:868.170000px;}
.y17f{bottom:869.290500px;}
.yb3{bottom:871.260066px;}
.y105{bottom:874.660834px;}
.y26{bottom:878.256000px;}
.y157{bottom:884.085000px;}
.y59{bottom:886.102500px;}
.y123{bottom:889.575777px;}
.y141{bottom:889.785727px;}
.y4{bottom:890.959500px;}
.y17e{bottom:894.694500px;}
.y25{bottom:896.188500px;}
.y58{bottom:904.035000px;}
.y17d{bottom:908.145000px;}
.y3{bottom:914.122500px;}
.y122{bottom:919.676579px;}
.y140{bottom:919.828902px;}
.y57{bottom:921.967500px;}
.y24{bottom:932.055000px;}
.y17c{bottom:933.549000px;}
.y156{bottom:934.521000px;}
.y56{bottom:939.900000px;}
.y17b{bottom:946.998000px;}
.y121{bottom:948.807567px;}
.y13f{bottom:948.904119px;}
.y23{bottom:949.987500px;}
.y155{bottom:952.453500px;}
.y55{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y22{bottom:967.920000px;}
.y17a{bottom:972.403500px;}
.y120{bottom:978.910806px;}
.y13e{bottom:978.949727px;}
.y1{bottom:985.852500px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h20{height:28.787846px;}
.h23{height:28.991846px;}
.h21{height:28.997846px;}
.h22{height:30.963672px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h11{height:33.482418px;}
.h15{height:33.811834px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.h1c{height:41.425613px;}
.hc{height:41.484266px;}
.hf{height:41.961802px;}
.h1b{height:41.967802px;}
.hb{height:44.233944px;}
.h7{height:49.637990px;}
.hd{height:52.040387px;}
.h5{height:52.046387px;}
.h13{height:52.134854px;}
.h12{height:55.571807px;}
.he{height:58.148738px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h1d{height:65.074702px;}
.h1f{height:66.679835px;}
.h1e{height:66.807735px;}
.h16{height:67.034338px;}
.h1a{height:67.613386px;}
.h10{height:67.673841px;}
.h19{height:69.211116px;}
.h14{height:70.282439px;}
.h17{height:70.479019px;}
.h18{height:70.610621px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x12{left:203.694071px;}
.xd{left:205.935149px;}
.x18{left:207.037566px;}
.x37{left:208.122000px;}
.x7{left:214.045500px;}
.x1{left:216.313500px;}
.xb{left:219.141963px;}
.x8{left:222.172500px;}
.x28{left:224.997121px;}
.x20{left:231.673970px;}
.x35{left:233.020500px;}
.x24{left:234.688817px;}
.x15{left:238.507500px;}
.xa{left:244.887507px;}
.x31{left:246.051000px;}
.x33{left:249.129000px;}
.x2e{left:251.119500px;}
.x2b{left:253.083858px;}
.x16{left:254.117981px;}
.x13{left:255.411000px;}
.x1f{left:256.678500px;}
.x1a{left:258.096000px;}
.x27{left:260.755500px;}
.xe{left:262.197000px;}
.x14{left:264.434647px;}
.x2{left:266.614500px;}
.x2d{left:268.024500px;}
.x2a{left:271.252500px;}
.x23{left:272.340000px;}
.x1e{left:273.583500px;}
.x19{left:274.999500px;}
.x26{left:277.660500px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x10{left:321.874457px;}
.x1d{left:323.761416px;}
.x11{left:335.215119px;}
.xf{left:336.698907px;}
.x1c{left:343.714006px;}
.x1b{left:358.684307px;}
.x3{left:405.975000px;}
.x17{left:420.693850px;}
.x32{left:434.092213px;}
.x30{left:440.215111px;}
.xc{left:441.763827px;}
.x2f{left:444.712500px;}
.x22{left:451.221101px;}
.x9{left:454.699500px;}
.x25{left:465.905322px;}
.x29{left:470.833867px;}
.x2c{left:476.510505px;}
.x21{left:478.558775px;}
.x34{left:479.778952px;}
.x36{left:549.700500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.003733pt;}
.ls15{letter-spacing:2.140426pt;}
.ls11{letter-spacing:2.145649pt;}
.ls29{letter-spacing:2.157099pt;}
.ls14{letter-spacing:2.159560pt;}
.ls13{letter-spacing:2.162147pt;}
.ls12{letter-spacing:2.162947pt;}
.ls10{letter-spacing:2.166489pt;}
.ls26{letter-spacing:2.166759pt;}
.ls25{letter-spacing:2.183419pt;}
.ls27{letter-spacing:2.184227pt;}
.ls28{letter-spacing:2.185192pt;}
.ls1c{letter-spacing:2.655200pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls69{letter-spacing:3.084714pt;}
.ls1b{letter-spacing:3.561200pt;}
.ls1a{letter-spacing:3.588993pt;}
.ls9{letter-spacing:3.709725pt;}
.ls6{letter-spacing:3.726337pt;}
.ls5{letter-spacing:3.754989pt;}
.ls7{letter-spacing:3.756378pt;}
.ls8{letter-spacing:3.758037pt;}
.ls57{letter-spacing:4.151582pt;}
.ls54{letter-spacing:4.170172pt;}
.ls53{letter-spacing:4.202238pt;}
.ls55{letter-spacing:4.203792pt;}
.ls56{letter-spacing:4.205649pt;}
.ls63{letter-spacing:4.253985pt;}
.ls5d{letter-spacing:4.262144pt;}
.ls60{letter-spacing:4.273034pt;}
.ls32{letter-spacing:4.276601pt;}
.ls5a{letter-spacing:4.281230pt;}
.ls2f{letter-spacing:4.295751pt;}
.ls5f{letter-spacing:4.305890pt;}
.ls61{letter-spacing:4.307483pt;}
.ls62{letter-spacing:4.309385pt;}
.ls59{letter-spacing:4.314149pt;}
.ls5b{letter-spacing:4.315745pt;}
.ls5c{letter-spacing:4.317651pt;}
.ls50{letter-spacing:4.322311pt;}
.ls2e{letter-spacing:4.328782pt;}
.ls30{letter-spacing:4.330384pt;}
.ls31{letter-spacing:4.332296pt;}
.ls4c{letter-spacing:4.332858pt;}
.lsf{letter-spacing:4.336732pt;}
.ls4f{letter-spacing:4.360950pt;}
.ls4b{letter-spacing:4.366175pt;}
.ls4d{letter-spacing:4.367790pt;}
.lse{letter-spacing:4.370579pt;}
.ls4e{letter-spacing:4.374943pt;}
.ls52{letter-spacing:4.408174pt;}
.ls49{letter-spacing:4.415473pt;}
.ls45{letter-spacing:4.435245pt;}
.ls44{letter-spacing:4.469349pt;}
.ls46{letter-spacing:4.471002pt;}
.ls48{letter-spacing:4.472977pt;}
.ls47{letter-spacing:4.478325pt;}
.ls21{letter-spacing:4.483820pt;}
.ls3a{letter-spacing:4.496362pt;}
.ls1e{letter-spacing:4.503899pt;}
.ls40{letter-spacing:4.504758pt;}
.ls37{letter-spacing:4.516496pt;}
.ls3d{letter-spacing:4.524930pt;}
.ls22{letter-spacing:4.533100pt;}
.ls1d{letter-spacing:4.538530pt;}
.ls1f{letter-spacing:4.540209pt;}
.ls20{letter-spacing:4.542214pt;}
.ls36{letter-spacing:4.551225pt;}
.ls38{letter-spacing:4.552908pt;}
.ls39{letter-spacing:4.554919pt;}
.ls3c{letter-spacing:4.559723pt;}
.ls3e{letter-spacing:4.561410pt;}
.ls3f{letter-spacing:4.563424pt;}
.ls67{letter-spacing:4.572714pt;}
.ls65{letter-spacing:4.578047pt;}
.ls4{letter-spacing:6.530841pt;}
.ls3{letter-spacing:6.536174pt;}
.ls2c{letter-spacing:8.811145pt;}
.ls43{letter-spacing:8.816479pt;}
.ls2d{letter-spacing:10.053812pt;}
.ls42{letter-spacing:10.094400pt;}
.ls2b{letter-spacing:10.099733pt;}
.ls18{letter-spacing:11.579145pt;}
.ls34{letter-spacing:11.760479pt;}
.lsc{letter-spacing:11.765812pt;}
.ls16{letter-spacing:12.945067pt;}
.ls19{letter-spacing:13.045812pt;}
.ls2a{letter-spacing:13.068042pt;}
.ls17{letter-spacing:13.086400pt;}
.lsd{letter-spacing:13.237812pt;}
.ls24{letter-spacing:13.243145pt;}
.lsb{letter-spacing:13.283733pt;}
.ls66{letter-spacing:16.269505pt;}
.ls68{letter-spacing:18.562047pt;}
.lsa{letter-spacing:22.481630pt;}
.ls58{letter-spacing:25.159365pt;}
.ls64{letter-spacing:25.771299pt;}
.ls5e{letter-spacing:25.829396pt;}
.ls33{letter-spacing:25.908312pt;}
.ls51{letter-spacing:26.140879pt;}
.ls4a{letter-spacing:26.749622pt;}
.ls23{letter-spacing:27.172795pt;}
.ls3b{letter-spacing:27.239658pt;}
.ls41{letter-spacing:27.290521pt;}
.wsaf{word-spacing:-27.368458pt;}
.wsa0{word-spacing:-27.317449pt;}
.ws6e{word-spacing:-27.241255pt;}
.wsbc{word-spacing:-26.826014pt;}
.wsc8{word-spacing:-26.206739pt;}
.ws90{word-spacing:-25.982301pt;}
.wse6{word-spacing:-25.894471pt;}
.wsf1{word-spacing:-25.844897pt;}
.wsda{word-spacing:-25.222753pt;}
.ws48{word-spacing:-22.538270pt;}
.wsf7{word-spacing:-19.128267pt;}
.ws4d{word-spacing:-13.283467pt;}
.ws7d{word-spacing:-13.105362pt;}
.ws5a{word-spacing:-12.977681pt;}
.wsac{word-spacing:-4.561410pt;}
.ws9e{word-spacing:-4.557007pt;}
.ws9c{word-spacing:-4.552908pt;}
.ws9a{word-spacing:-4.547867pt;}
.ws6c{word-spacing:-4.543777pt;}
.ws6a{word-spacing:-4.540209pt;}
.ws68{word-spacing:-4.534662pt;}
.wsb9{word-spacing:-4.471002pt;}
.wsc2{word-spacing:-4.372837pt;}
.wsc4{word-spacing:-4.367790pt;}
.wsc6{word-spacing:-4.364069pt;}
.ws8c{word-spacing:-4.330384pt;}
.wse1{word-spacing:-4.316797pt;}
.wse3{word-spacing:-4.315745pt;}
.wsee{word-spacing:-4.307483pt;}
.wsd7{word-spacing:-4.203792pt;}
.wsd5{word-spacing:-4.203711pt;}
.ws47{word-spacing:-3.756378pt;}
.ws80{word-spacing:-3.189463pt;}
.ws33{word-spacing:-3.188032pt;}
.ws97{word-spacing:-3.081764pt;}
.ws71{word-spacing:-3.028630pt;}
.ws66{word-spacing:-2.816095pt;}
.ws2f{word-spacing:-2.709827pt;}
.wsd2{word-spacing:-2.603559pt;}
.ws16{word-spacing:-2.550426pt;}
.ws7f{word-spacing:-2.337890pt;}
.ws73{word-spacing:-2.284756pt;}
.ws7a{word-spacing:-2.184227pt;}
.ws5b{word-spacing:-2.162947pt;}
.ws34{word-spacing:-2.125355pt;}
.ws108{word-spacing:-2.120035pt;}
.ws96{word-spacing:-2.019087pt;}
.ws10a{word-spacing:-1.934067pt;}
.ws75{word-spacing:-1.912819pt;}
.ws10f{word-spacing:-1.785293pt;}
.ws10d{word-spacing:-1.710906pt;}
.ws86{word-spacing:-1.594016pt;}
.ws1c{word-spacing:-1.487748pt;}
.ws84{word-spacing:-1.381481pt;}
.ws3e{word-spacing:-1.222079pt;}
.ws116{word-spacing:-1.190195pt;}
.ws58{word-spacing:-1.062677pt;}
.wsff{word-spacing:-1.041421pt;}
.ws51{word-spacing:-1.021330pt;}
.ws52{word-spacing:-1.009543pt;}
.wsb3{word-spacing:-0.956410pt;}
.ws35{word-spacing:-0.903276pt;}
.wsa4{word-spacing:-0.850142pt;}
.wse{word-spacing:-0.797008pt;}
.wsfe{word-spacing:-0.781066pt;}
.wsf6{word-spacing:-0.743874pt;}
.ws4{word-spacing:-0.637606pt;}
.ws105{word-spacing:-0.446323pt;}
.ws46{word-spacing:-0.425071pt;}
.ws10c{word-spacing:-0.371936pt;}
.ws65{word-spacing:-0.318803pt;}
.ws26{word-spacing:-0.265669pt;}
.ws117{word-spacing:-0.260355pt;}
.ws5f{word-spacing:-0.212535pt;}
.ws22{word-spacing:-0.159402pt;}
.ws119{word-spacing:-0.148774pt;}
.ws10{word-spacing:-0.106268pt;}
.ws11a{word-spacing:-0.074387pt;}
.ws31{word-spacing:-0.053134pt;}
.ws61{word-spacing:-0.039319pt;}
.wsba{word-spacing:-0.012871pt;}
.wsc5{word-spacing:-0.012574pt;}
.wsad{word-spacing:-0.003974pt;}
.ws9d{word-spacing:-0.003967pt;}
.ws6b{word-spacing:-0.003956pt;}
.ws8d{word-spacing:-0.003773pt;}
.wse4{word-spacing:-0.003760pt;}
.wsef{word-spacing:-0.003753pt;}
.wsd8{word-spacing:-0.003663pt;}
.ws7b{word-spacing:-0.001903pt;}
.ws5c{word-spacing:-0.001884pt;}
.ws4c{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws59{word-spacing:0.005720pt;}
.ws77{word-spacing:0.010161pt;}
.wsd4{word-spacing:0.011118pt;}
.wseb{word-spacing:0.011392pt;}
.wse0{word-spacing:0.011414pt;}
.wsc1{word-spacing:0.011551pt;}
.wsb6{word-spacing:0.011824pt;}
.ws67{word-spacing:0.012007pt;}
.ws99{word-spacing:0.012041pt;}
.ws89{word-spacing:0.020146pt;}
.wsa9{word-spacing:0.021221pt;}
.ws11{word-spacing:0.053134pt;}
.ws1a{word-spacing:0.106268pt;}
.ws3{word-spacing:0.159402pt;}
.ws30{word-spacing:0.212535pt;}
.ws2b{word-spacing:0.318803pt;}
.ws18{word-spacing:0.340058pt;}
.ws6{word-spacing:0.371937pt;}
.ws101{word-spacing:0.409130pt;}
.wsfd{word-spacing:0.446323pt;}
.ws76{word-spacing:0.478205pt;}
.ws1b{word-spacing:0.531339pt;}
.ws15{word-spacing:0.584473pt;}
.ws11d{word-spacing:0.632291pt;}
.ws37{word-spacing:0.637606pt;}
.ws111{word-spacing:0.669485pt;}
.ws10b{word-spacing:0.706678pt;}
.ws93{word-spacing:0.743874pt;}
.ws114{word-spacing:0.781066pt;}
.ws63{word-spacing:0.850142pt;}
.ws11b{word-spacing:0.855453pt;}
.ws40{word-spacing:0.903276pt;}
.ws2a{word-spacing:0.956410pt;}
.ws87{word-spacing:1.062677pt;}
.wsfc{word-spacing:1.153002pt;}
.ws23{word-spacing:1.168945pt;}
.ws24{word-spacing:1.222079pt;}
.ws28{word-spacing:1.275213pt;}
.wsfb{word-spacing:1.338970pt;}
.ws44{word-spacing:1.381481pt;}
.ws60{word-spacing:1.434614pt;}
.ws62{word-spacing:1.487748pt;}
.ws112{word-spacing:1.599325pt;}
.ws64{word-spacing:1.647150pt;}
.wsa7{word-spacing:1.700284pt;}
.ws10e{word-spacing:1.710906pt;}
.wsfa{word-spacing:1.748099pt;}
.wse9{word-spacing:1.753418pt;}
.ws2e{word-spacing:1.806551pt;}
.ws115{word-spacing:1.859680pt;}
.ws95{word-spacing:1.859685pt;}
.ws1d{word-spacing:1.912819pt;}
.ws1e{word-spacing:1.965953pt;}
.ws42{word-spacing:2.019087pt;}
.ws113{word-spacing:2.157229pt;}
.ws25{word-spacing:2.178489pt;}
.ws78{word-spacing:2.181914pt;}
.ws45{word-spacing:2.231622pt;}
.ws100{word-spacing:2.268810pt;}
.wsde{word-spacing:2.284756pt;}
.ws2c{word-spacing:2.337890pt;}
.wsb{word-spacing:2.391024pt;}
.ws1f{word-spacing:2.444158pt;}
.ws107{word-spacing:2.491971pt;}
.ws74{word-spacing:2.497292pt;}
.wsa8{word-spacing:2.550426pt;}
.wsa{word-spacing:2.603559pt;}
.ws19{word-spacing:2.656693pt;}
.wsea{word-spacing:2.762961pt;}
.ws2d{word-spacing:2.816095pt;}
.wsb2{word-spacing:2.869229pt;}
.ws3c{word-spacing:2.922363pt;}
.ws102{word-spacing:2.975488pt;}
.ws39{word-spacing:2.975497pt;}
.wsa6{word-spacing:3.028630pt;}
.ws27{word-spacing:3.081764pt;}
.ws109{word-spacing:3.124262pt;}
.ws20{word-spacing:3.188032pt;}
.ws2{word-spacing:3.241166pt;}
.ws98{word-spacing:3.294300pt;}
.ws43{word-spacing:3.400567pt;}
.ws57{word-spacing:3.453701pt;}
.wsd{word-spacing:3.506835pt;}
.ws3b{word-spacing:3.719371pt;}
.ws55{word-spacing:3.772505pt;}
.ws5{word-spacing:3.825638pt;}
.ws104{word-spacing:3.868134pt;}
.wsd1{word-spacing:3.878772pt;}
.ws103{word-spacing:3.905328pt;}
.wsf9{word-spacing:4.091296pt;}
.ws94{word-spacing:4.250709pt;}
.ws106{word-spacing:4.277264pt;}
.ws5d{word-spacing:4.291297pt;}
.wsf{word-spacing:4.303843pt;}
.wsec{word-spacing:4.309766pt;}
.ws8a{word-spacing:4.325301pt;}
.ws7c{word-spacing:4.333517pt;}
.ws8e{word-spacing:4.333995pt;}
.ws79{word-spacing:4.341392pt;}
.ws3d{word-spacing:4.356977pt;}
.wsb7{word-spacing:4.474219pt;}
.wscc{word-spacing:4.516379pt;}
.wsaa{word-spacing:4.555875pt;}
.wscd{word-spacing:4.569513pt;}
.ws11c{word-spacing:4.612006pt;}
.ws21{word-spacing:4.622646pt;}
.ws83{word-spacing:4.675780pt;}
.ws118{word-spacing:4.686394pt;}
.ws88{word-spacing:4.728914pt;}
.wsce{word-spacing:4.835182pt;}
.ws110{word-spacing:4.872362pt;}
.wsf8{word-spacing:4.941450pt;}
.ws3a{word-spacing:5.047717pt;}
.ws41{word-spacing:5.260253pt;}
.ws54{word-spacing:5.313387pt;}
.wsb4{word-spacing:5.472788pt;}
.ws36{word-spacing:5.525922pt;}
.ws70{word-spacing:5.685324pt;}
.ws9{word-spacing:5.738458pt;}
.ws72{word-spacing:5.791591pt;}
.wsdd{word-spacing:6.004127pt;}
.ws53{word-spacing:6.110395pt;}
.wsd0{word-spacing:6.163529pt;}
.ws29{word-spacing:6.216662pt;}
.ws8{word-spacing:6.429198pt;}
.wsdf{word-spacing:6.482332pt;}
.ws56{word-spacing:6.535466pt;}
.wse8{word-spacing:6.694867pt;}
.ws38{word-spacing:7.013670pt;}
.wsc0{word-spacing:7.066804pt;}
.wsf5{word-spacing:7.226206pt;}
.ws4b{word-spacing:7.279340pt;}
.wsc{word-spacing:7.385607pt;}
.ws4f{word-spacing:7.491875pt;}
.wsdc{word-spacing:7.545009pt;}
.wsa3{word-spacing:7.757545pt;}
.wsb5{word-spacing:7.916946pt;}
.wsd9{word-spacing:8.340345pt;}
.wsd6{word-spacing:8.355500pt;}
.wsf0{word-spacing:8.546067pt;}
.wsed{word-spacing:8.561597pt;}
.wse5{word-spacing:8.562460pt;}
.wse2{word-spacing:8.578019pt;}
.ws8f{word-spacing:8.591503pt;}
.ws8b{word-spacing:8.607115pt;}
.wsc7{word-spacing:8.665717pt;}
.wsc3{word-spacing:8.681464pt;}
.wsbb{word-spacing:8.870491pt;}
.wsb8{word-spacing:8.877635pt;}
.ws6d{word-spacing:9.007798pt;}
.ws69{word-spacing:9.015052pt;}
.ws9f{word-spacing:9.032993pt;}
.ws9b{word-spacing:9.040267pt;}
.wsae{word-spacing:9.049859pt;}
.wsab{word-spacing:9.066305pt;}
.ws50{word-spacing:9.085891pt;}
.wsbf{word-spacing:9.139025pt;}
.ws82{word-spacing:9.351561pt;}
.ws17{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws4a{word-spacing:14.908919pt;}
.wscb{word-spacing:14.914253pt;}
.wsd3{word-spacing:15.361748pt;}
.ws14{word-spacing:15.940267pt;}
.ws85{word-spacing:16.545748pt;}
.ws3f{word-spacing:16.727081pt;}
.wsa5{word-spacing:17.111081pt;}
.ws32{word-spacing:17.943081pt;}
.ws7{word-spacing:18.337748pt;}
.ws13{word-spacing:19.128267pt;}
.wsf4{word-spacing:22.785748pt;}
.ws12{word-spacing:32.892143pt;}
.ws5e{word-spacing:41.095991pt;}
.ws7e{word-spacing:41.500313pt;}
.ws49{word-spacing:71.371190pt;}
.wsdb{word-spacing:79.872050pt;}
.wsf2{word-spacing:81.842175pt;}
.wse7{word-spacing:81.999159pt;}
.ws91{word-spacing:82.277288pt;}
.wsc9{word-spacing:82.988006pt;}
.wsb1{word-spacing:83.062208pt;}
.wsbd{word-spacing:84.949045pt;}
.ws6f{word-spacing:86.263975pt;}
.wsa1{word-spacing:86.505256pt;}
.wsb0{word-spacing:86.666783pt;}
.ws81{word-spacing:147.588428pt;}
.wsf3{word-spacing:580.036512pt;}
.wsa2{word-spacing:589.654242pt;}
.ws92{word-spacing:662.661550pt;}
.wscf{word-spacing:822.927895pt;}
.wsca{word-spacing:832.633058pt;}
.wsbe{word-spacing:890.951471pt;}
.ws4e{word-spacing:1110.498001pt;}
._18{margin-left:-8.339160pt;}
._19{margin-left:-6.986864pt;}
._5{margin-left:-5.844725pt;}
._6{margin-left:-4.941450pt;}
._7{margin-left:-3.772505pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._4b{width:0.896265pt;}
._1e{width:2.113180pt;}
._4c{width:3.505275pt;}
._26{width:4.410273pt;}
._65{width:9.229261pt;}
._64{width:10.679851pt;}
._37{width:12.061388pt;}
._67{width:13.017760pt;}
._9{width:13.937259pt;}
._2b{width:15.249420pt;}
._2{width:16.152695pt;}
._13{width:17.162239pt;}
._8{width:18.224916pt;}
._d{width:19.128192pt;}
._e{width:20.297137pt;}
._1d{width:21.232298pt;}
._c{width:22.241841pt;}
._66{width:24.239524pt;}
._b{width:25.238587pt;}
._11{width:26.566933pt;}
._3{width:28.107815pt;}
._55{width:30.073769pt;}
._f{width:31.880533pt;}
._4{width:33.314934pt;}
._5a{width:34.696415pt;}
._12{width:35.759092pt;}
._10{width:38.256533pt;}
._23{width:53.638072pt;}
._22{width:63.893451pt;}
._30{width:65.316239pt;}
._1f{width:69.949702pt;}
._21{width:80.721177pt;}
._31{width:82.238013pt;}
._25{width:86.082275pt;}
._2d{width:93.026994pt;}
._24{width:96.164618pt;}
._34{width:97.929985pt;}
._2f{width:103.948129pt;}
._36{width:119.772254pt;}
._1c{width:121.406150pt;}
._3a{width:127.919531pt;}
._53{width:128.859819pt;}
._51{width:129.854126pt;}
._4f{width:131.983989pt;}
._43{width:134.744040pt;}
._58{width:136.276033pt;}
._5c{width:138.781727pt;}
._16{width:140.188042pt;}
._35{width:141.331659pt;}
._4d{width:144.592216pt;}
._28{width:146.739562pt;}
._46{width:147.794104pt;}
._5e{width:160.227125pt;}
._3c{width:161.609915pt;}
._33{width:162.591108pt;}
._32{width:164.993758pt;}
._50{width:167.053511pt;}
._42{width:170.231807pt;}
._3d{width:174.103210pt;}
._39{width:183.261833pt;}
._2e{width:187.023794pt;}
._61{width:192.291407pt;}
._40{width:197.778332pt;}
._48{width:203.850382pt;}
._5d{width:207.932603pt;}
._29{width:216.477175pt;}
._5b{width:220.016690pt;}
._49{width:223.417843pt;}
._27{width:229.189761pt;}
._3f{width:230.469553pt;}
._17{width:232.294441pt;}
._15{width:237.478243pt;}
._41{width:241.207341pt;}
._14{width:242.812300pt;}
._45{width:251.333670pt;}
._54{width:252.807674pt;}
._63{width:256.903650pt;}
._3e{width:258.514128pt;}
._56{width:263.432608pt;}
._59{width:267.288011pt;}
._47{width:279.249497pt;}
._2a{width:284.580313pt;}
._57{width:286.197149pt;}
._1a{width:310.036249pt;}
._52{width:311.073990pt;}
._62{width:321.406292pt;}
._4e{width:323.538593pt;}
._5f{width:328.556713pt;}
._1b{width:330.035407pt;}
._4a{width:340.007473pt;}
._3b{width:344.746907pt;}
._60{width:350.094128pt;}
._44{width:362.814521pt;}
._38{width:366.398825pt;}
._20{width:539.306164pt;}
._2c{width:572.648647pt;}
._a{width:1041.128843pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:34.607237pt;}
.fs11{font-size:34.947720pt;}
.fs22{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fsa{font-size:43.258938pt;}
.fs10{font-size:43.684540pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:57.438704pt;}
.fs7{font-size:60.102205pt;}
.fs4{font-size:63.761067pt;}
.fs1d{font-size:67.260843pt;}
.fs21{font-size:68.919899pt;}
.fs1f{font-size:69.052096pt;}
.fs13{font-size:69.286311pt;}
.fs1b{font-size:69.884812pt;}
.fs9{font-size:69.947298pt;}
.fs19{font-size:71.536217pt;}
.fsc{font-size:71.798200pt;}
.fsf{font-size:72.643530pt;}
.fs15{font-size:72.846714pt;}
.fs17{font-size:72.982737pt;}
.fs6{font-size:75.127568pt;}
.fs0{font-size:76.513067pt;}
.fs1c{font-size:84.075843pt;}
.fs20{font-size:86.149657pt;}
.fs1e{font-size:86.314904pt;}
.fs12{font-size:86.607671pt;}
.fs1a{font-size:87.355796pt;}
.fs8{font-size:87.433903pt;}
.fs18{font-size:89.420047pt;}
.fse{font-size:90.804184pt;}
.fs14{font-size:91.058164pt;}
.fs16{font-size:91.228192pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:119.153333pt;}
.y88{bottom:159.004000pt;}
.y11f{bottom:159.929333pt;}
.yd9{bottom:160.117333pt;}
.y179{bottom:160.465333pt;}
.yf8{bottom:160.584000pt;}
.ye9{bottom:167.692000pt;}
.yb2{bottom:167.852000pt;}
.y20{bottom:171.688000pt;}
.y178{bottom:172.420000pt;}
.y87{bottom:174.944000pt;}
.y11e{bottom:175.869333pt;}
.y46{bottom:176.305333pt;}
.y54{bottom:176.452000pt;}
.ye8{bottom:183.632000pt;}
.yb1{bottom:183.792000pt;}
.yd8{bottom:185.024000pt;}
.yf7{bottom:185.490667pt;}
.y1f{bottom:188.165333pt;}
.y86{bottom:190.884000pt;}
.y11d{bottom:191.809333pt;}
.y45{bottom:192.245333pt;}
.y13d{bottom:193.697333pt;}
.y177{bottom:195.002667pt;}
.y1e{bottom:197.386667pt;}
.ye7{bottom:199.573333pt;}
.yb0{bottom:199.732000pt;}
.y85{bottom:206.824000pt;}
.y176{bottom:206.957333pt;}
.y11c{bottom:207.749333pt;}
.y44{bottom:208.185333pt;}
.y13c{bottom:209.637333pt;}
.y1d{bottom:213.864000pt;}
.yaf{bottom:215.672000pt;}
.y53{bottom:222.435304pt;}
.y84{bottom:222.764000pt;}
.y11b{bottom:223.690667pt;}
.ye6{bottom:224.480000pt;}
.y13b{bottom:225.577333pt;}
.y175{bottom:229.540000pt;}
.y76{bottom:231.022667pt;}
.y154{bottom:231.026667pt;}
.yae{bottom:231.612000pt;}
.y43{bottom:233.092000pt;}
.yf6{bottom:237.996000pt;}
.yd7{bottom:238.445333pt;}
.y9b{bottom:238.705333pt;}
.y11a{bottom:239.630667pt;}
.y174{bottom:241.494667pt;}
.y13a{bottom:241.517333pt;}
.y153{bottom:246.968000pt;}
.yad{bottom:247.552000pt;}
.y83{bottom:247.670667pt;}
.y52{bottom:248.665211pt;}
.y19e{bottom:251.988000pt;}
.y1c{bottom:254.262667pt;}
.y9a{bottom:254.645333pt;}
.y119{bottom:255.570667pt;}
.y139{bottom:257.457333pt;}
.y42{bottom:257.998667pt;}
.yac{bottom:263.493333pt;}
.y19d{bottom:263.944000pt;}
.y173{bottom:264.077333pt;}
.y1b{bottom:270.202667pt;}
.y99{bottom:270.585333pt;}
.y118{bottom:271.510667pt;}
.y138{bottom:273.397333pt;}
.y75{bottom:275.441791pt;}
.y51{bottom:275.770546pt;}
.y172{bottom:276.032000pt;}
.y152{bottom:276.656000pt;}
.ye5{bottom:276.985333pt;}
.yab{bottom:279.433333pt;}
.yf5{bottom:283.979304pt;}
.yd6{bottom:284.428637pt;}
.yc4{bottom:286.525333pt;}
.y117{bottom:287.450667pt;}
.y171{bottom:287.986667pt;}
.y137{bottom:289.338667pt;}
.y41{bottom:290.344000pt;}
.y1a{bottom:295.109333pt;}
.y98{bottom:295.492000pt;}
.y74{bottom:296.981034pt;}
.y19c{bottom:298.481333pt;}
.y82{bottom:299.396000pt;}
.yc3{bottom:302.465333pt;}
.y116{bottom:303.390667pt;}
.yaa{bottom:304.340000pt;}
.y136{bottom:305.278667pt;}
.yf4{bottom:310.209211pt;}
.y50{bottom:310.382667pt;}
.y19b{bottom:310.436000pt;}
.y170{bottom:310.569333pt;}
.yd5{bottom:310.658545pt;}
.yc2{bottom:318.405333pt;}
.y73{bottom:319.239154pt;}
.y115{bottom:319.332000pt;}
.y135{bottom:321.218667pt;}
.y151{bottom:321.488000pt;}
.y16f{bottom:322.524000pt;}
.ye4{bottom:322.969498pt;}
.y4f{bottom:326.322667pt;}
.y19{bottom:327.454667pt;}
.y19a{bottom:333.017333pt;}
.yc1{bottom:334.346667pt;}
.y40{bottom:335.176000pt;}
.y114{bottom:335.272000pt;}
.y134{bottom:337.158667pt;}
.yf3{bottom:337.314546pt;}
.yd4{bottom:337.763879pt;}
.y104{bottom:344.818667pt;}
.y199{bottom:344.973333pt;}
.y16e{bottom:345.106667pt;}
.y97{bottom:345.237333pt;}
.y81{bottom:345.379304pt;}
.ye3{bottom:349.199405pt;}
.y3f{bottom:351.116000pt;}
.y150{bottom:351.176000pt;}
.y113{bottom:351.212000pt;}
.y72{bottom:351.772000pt;}
.y133{bottom:353.098667pt;}
.y4e{bottom:356.836000pt;}
.ya9{bottom:356.845333pt;}
.y16d{bottom:357.061333pt;}
.yc0{bottom:359.253333pt;}
.y3e{bottom:367.057333pt;}
.y112{bottom:367.152000pt;}
.y198{bottom:367.554667pt;}
.y71{bottom:367.712000pt;}
.y132{bottom:369.040000pt;}
.y80{bottom:371.609211pt;}
.yd3{bottom:372.252000pt;}
.yf2{bottom:372.718667pt;}
.ye2{bottom:376.304740pt;}
.y18{bottom:378.245333pt;}
.y197{bottom:379.510667pt;}
.y16c{bottom:379.642667pt;}
.y3d{bottom:382.997333pt;}
.y70{bottom:383.652000pt;}
.y131{bottom:384.980000pt;}
.yd2{bottom:388.192000pt;}
.yf1{bottom:388.658667pt;}
.y103{bottom:390.802831pt;}
.y96{bottom:391.221498pt;}
.y16b{bottom:391.598667pt;}
.y111{bottom:392.058667pt;}
.y17{bottom:394.186667pt;}
.y14f{bottom:396.008000pt;}
.y7f{bottom:398.714546pt;}
.y3c{bottom:398.937333pt;}
.y130{bottom:400.920000pt;}
.y4d{bottom:401.588010pt;}
.y196{bottom:402.092000pt;}
.ya8{bottom:402.829498pt;}
.y16a{bottom:403.553333pt;}
.yd1{bottom:404.132000pt;}
.ybf{bottom:410.065333pt;}
.ye1{bottom:411.706667pt;}
.y14e{bottom:411.948000pt;}
.y195{bottom:414.046667pt;}
.y3b{bottom:414.877333pt;}
.y6f{bottom:414.957333pt;}
.y12f{bottom:416.860000pt;}
.y102{bottom:417.032739pt;}
.y95{bottom:417.451405pt;}
.y16{bottom:419.437333pt;}
.yf0{bottom:422.686667pt;}
.y4c{bottom:424.126054pt;}
.y194{bottom:426.002667pt;}
.y169{bottom:426.136000pt;}
.ye0{bottom:427.648000pt;}
.y14d{bottom:427.889333pt;}
.ya7{bottom:429.059405pt;}
.y3a{bottom:430.817333pt;}
.y12e{bottom:432.800000pt;}
.y7e{bottom:433.580000pt;}
.y15{bottom:435.378667pt;}
.y168{bottom:438.090667pt;}
.yd0{bottom:438.160000pt;}
.y14c{bottom:443.829333pt;}
.y101{bottom:444.135879pt;}
.y94{bottom:444.554546pt;}
.y110{bottom:444.564000pt;}
.y4b{bottom:446.665984pt;}
.y193{bottom:448.584000pt;}
.y12d{bottom:448.740000pt;}
.y7d{bottom:449.521333pt;}
.y14{bottom:451.318667pt;}
.y39{bottom:455.724000pt;}
.ybe{bottom:456.048637pt;}
.ya6{bottom:456.164740pt;}
.y6e{bottom:456.522794pt;}
.ydf{bottom:458.953333pt;}
.y14b{bottom:459.769333pt;}
.y192{bottom:460.540000pt;}
.y167{bottom:460.673333pt;}
.y13{bottom:467.258667pt;}
.yef{bottom:468.662172pt;}
.y4a{bottom:469.204028pt;}
.y6d{bottom:469.500345pt;}
.y166{bottom:472.628000pt;}
.y12c{bottom:473.646667pt;}
.y100{bottom:477.348000pt;}
.y93{bottom:478.054667pt;}
.y7c{bottom:480.288000pt;}
.ybd{bottom:482.278545pt;}
.y6c{bottom:482.478981pt;}
.y191{bottom:483.121333pt;}
.y12{bottom:483.198667pt;}
.ycf{bottom:484.522536pt;}
.y14a{bottom:489.457333pt;}
.y10f{bottom:490.547304pt;}
.ya5{bottom:491.568000pt;}
.y49{bottom:492.492398pt;}
.yff{bottom:493.288000pt;}
.y38{bottom:493.748000pt;}
.y92{bottom:493.996000pt;}
.yee{bottom:494.870840pt;}
.y190{bottom:495.077333pt;}
.y165{bottom:495.209333pt;}
.y6b{bottom:495.456532pt;}
.y11{bottom:499.138667pt;}
.yde{bottom:505.134788pt;}
.y164{bottom:507.165333pt;}
.ya4{bottom:507.508000pt;}
.y6a{bottom:508.866125pt;}
.ybc{bottom:509.383879pt;}
.y37{bottom:509.688000pt;}
.yce{bottom:511.890719pt;}
.y48{bottom:515.032327pt;}
.y10{bottom:515.078667pt;}
.y10e{bottom:516.777211pt;}
.y18f{bottom:517.658667pt;}
.y163{bottom:519.120000pt;}
.yed{bottom:521.077315pt;}
.y69{bottom:521.844762pt;}
.yfe{bottom:522.400000pt;}
.y91{bottom:523.397333pt;}
.y36{bottom:525.629333pt;}
.y12b{bottom:526.153333pt;}
.y7b{bottom:526.608840pt;}
.y18e{bottom:529.613333pt;}
.yf{bottom:531.020000pt;}
.y149{bottom:531.609333pt;}
.ydd{bottom:531.960533pt;}
.y68{bottom:535.254355pt;}
.y47{bottom:538.320697pt;}
.ya3{bottom:538.813333pt;}
.ycd{bottom:539.261191pt;}
.y35{bottom:541.569333pt;}
.y162{bottom:541.702667pt;}
.ybb{bottom:543.621333pt;}
.y10d{bottom:543.882546pt;}
.ye{bottom:546.960000pt;}
.yec{bottom:548.156244pt;}
.y18d{bottom:552.196000pt;}
.y161{bottom:553.657333pt;}
.y7a{bottom:553.849822pt;}
.y34{bottom:557.509333pt;}
.yba{bottom:559.561333pt;}
.ydc{bottom:559.681591pt;}
.yd{bottom:562.900000pt;}
.y18c{bottom:564.150667pt;}
.y67{bottom:564.482667pt;}
.y90{bottom:565.005524pt;}
.y160{bottom:565.612000pt;}
.ycc{bottom:566.629374pt;}
.yfd{bottom:568.746483pt;}
.y12a{bottom:572.135304pt;}
.y33{bottom:573.449333pt;}
.yeb{bottom:574.364912pt;}
.y148{bottom:577.593498pt;}
.y8f{bottom:578.110755pt;}
.yc{bottom:578.840000pt;}
.y10c{bottom:579.286667pt;}
.y66{bottom:580.422667pt;}
.y79{bottom:581.997697pt;}
.ya2{bottom:584.713880pt;}
.ydb{bottom:586.507336pt;}
.y18b{bottom:586.733333pt;}
.y15f{bottom:588.194667pt;}
.y32{bottom:589.389333pt;}
.yb9{bottom:589.698667pt;}
.y8e{bottom:591.215985pt;}
.ycb{bottom:593.997557pt;}
.yb{bottom:594.780000pt;}
.y10b{bottom:595.226667pt;}
.yfc{bottom:596.063658pt;}
.y65{bottom:596.364000pt;}
.y129{bottom:598.367405pt;}
.y18a{bottom:598.688000pt;}
.y15e{bottom:600.149333pt;}
.yea{bottom:601.443841pt;}
.y147{bottom:603.823405pt;}
.y8d{bottom:604.322312pt;}
.y31{bottom:605.329333pt;}
.y78{bottom:609.240958pt;}
.y189{bottom:610.644000pt;}
.ya1{bottom:610.695920pt;}
.ya{bottom:610.720000pt;}
.y15d{bottom:612.105333pt;}
.y64{bottom:612.304000pt;}
.yda{bottom:614.228394pt;}
.y8c{bottom:617.427542pt;}
.y30{bottom:621.270667pt;}
.yca{bottom:621.365740pt;}
.yfb{bottom:624.292548pt;}
.y128{bottom:625.470546pt;}
.y9{bottom:626.661333pt;}
.y63{bottom:628.244000pt;}
.y10a{bottom:629.254667pt;}
.y146{bottom:630.928740pt;}
.y8b{bottom:630.969065pt;}
.y188{bottom:633.225333pt;}
.y15c{bottom:634.686667pt;}
.yb8{bottom:636.044087pt;}
.ya0{bottom:636.677961pt;}
.y2f{bottom:637.210667pt;}
.y77{bottom:637.388833pt;}
.y8{bottom:642.601333pt;}
.y8a{bottom:644.075392pt;}
.y62{bottom:644.184000pt;}
.y187{bottom:645.180000pt;}
.y15b{bottom:646.642667pt;}
.yc9{bottom:648.733923pt;}
.yfa{bottom:651.609723pt;}
.y2e{bottom:653.150667pt;}
.y186{bottom:657.136000pt;}
.y89{bottom:657.616915pt;}
.y7{bottom:658.541333pt;}
.y61{bottom:660.124000pt;}
.y127{bottom:660.874667pt;}
.y9f{bottom:662.662175pt;}
.yb7{bottom:663.361262pt;}
.y145{bottom:667.529333pt;}
.y2d{bottom:669.090667pt;}
.y15a{bottom:673.673333pt;}
.y109{bottom:674.902689pt;}
.y60{bottom:676.065333pt;}
.yc8{bottom:676.102106pt;}
.y126{bottom:676.814667pt;}
.y185{bottom:679.717333pt;}
.yf9{bottom:679.838613pt;}
.y6{bottom:682.452000pt;}
.y2c{bottom:685.030667pt;}
.y9e{bottom:689.509197pt;}
.yb6{bottom:690.680722pt;}
.y184{bottom:691.673333pt;}
.y5f{bottom:692.005333pt;}
.y108{bottom:700.125188pt;}
.y2b{bottom:700.970667pt;}
.y183{bottom:703.628000pt;}
.yc7{bottom:704.383706pt;}
.y5e{bottom:707.945333pt;}
.y159{bottom:711.333333pt;}
.y144{bottom:713.384571pt;}
.y9d{bottom:715.491237pt;}
.y2a{bottom:716.912000pt;}
.yb5{bottom:718.907327pt;}
.y125{bottom:718.966667pt;}
.y5d{bottom:723.885333pt;}
.y107{bottom:726.189493pt;}
.y182{bottom:726.210667pt;}
.yc6{bottom:731.751889pt;}
.y29{bottom:732.852000pt;}
.y181{bottom:738.165333pt;}
.y143{bottom:739.229208pt;}
.y5c{bottom:739.825333pt;}
.y9c{bottom:742.340432pt;}
.yb4{bottom:746.224502pt;}
.y28{bottom:748.792000pt;}
.y106{bottom:751.411992pt;}
.y5b{bottom:755.765333pt;}
.y158{bottom:756.164000pt;}
.yc5{bottom:760.033490pt;}
.y180{bottom:760.746667pt;}
.y27{bottom:764.732000pt;}
.y124{bottom:764.837647pt;}
.y142{bottom:765.073846pt;}
.y5{bottom:771.374667pt;}
.y5a{bottom:771.706667pt;}
.y17f{bottom:772.702667pt;}
.yb3{bottom:774.453392pt;}
.y105{bottom:777.476297pt;}
.y26{bottom:780.672000pt;}
.y157{bottom:785.853333pt;}
.y59{bottom:787.646667pt;}
.y123{bottom:790.734024pt;}
.y141{bottom:790.920646pt;}
.y4{bottom:791.964000pt;}
.y17e{bottom:795.284000pt;}
.y25{bottom:796.612000pt;}
.y58{bottom:803.586667pt;}
.y17d{bottom:807.240000pt;}
.y3{bottom:812.553333pt;}
.y122{bottom:817.490293pt;}
.y140{bottom:817.625691pt;}
.y57{bottom:819.526667pt;}
.y24{bottom:828.493333pt;}
.y17c{bottom:829.821333pt;}
.y156{bottom:830.685333pt;}
.y56{bottom:835.466667pt;}
.y17b{bottom:841.776000pt;}
.y121{bottom:843.384504pt;}
.y13f{bottom:843.470328pt;}
.y23{bottom:844.433333pt;}
.y155{bottom:846.625333pt;}
.y55{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y22{bottom:860.373333pt;}
.y17a{bottom:864.358667pt;}
.y120{bottom:870.142938pt;}
.y13e{bottom:870.177535pt;}
.y1{bottom:876.313333pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h20{height:25.589197pt;}
.h23{height:25.770530pt;}
.h21{height:25.775863pt;}
.h22{height:27.523264pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h11{height:29.762149pt;}
.h15{height:30.054963pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.h1c{height:36.822767pt;}
.hc{height:36.874903pt;}
.hf{height:37.299379pt;}
.h1b{height:37.304713pt;}
.hb{height:39.319061pt;}
.h7{height:44.122658pt;}
.hd{height:46.258122pt;}
.h5{height:46.263455pt;}
.h13{height:46.342093pt;}
.h12{height:49.397162pt;}
.he{height:51.687767pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h1d{height:57.844180pt;}
.h1f{height:59.270964pt;}
.h1e{height:59.384654pt;}
.h16{height:59.586078pt;}
.h1a{height:60.100788pt;}
.h10{height:60.154525pt;}
.h19{height:61.520992pt;}
.h14{height:62.473279pt;}
.h17{height:62.648017pt;}
.h18{height:62.764996pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x12{left:181.061397pt;}
.xd{left:183.053466pt;}
.x18{left:184.033392pt;}
.x37{left:184.997333pt;}
.x7{left:190.262667pt;}
.x1{left:192.278667pt;}
.xb{left:194.792856pt;}
.x8{left:197.486667pt;}
.x28{left:199.997441pt;}
.x20{left:205.932417pt;}
.x35{left:207.129333pt;}
.x24{left:208.612282pt;}
.x15{left:212.006667pt;}
.xa{left:217.677784pt;}
.x31{left:218.712000pt;}
.x33{left:221.448000pt;}
.x2e{left:223.217333pt;}
.x2b{left:224.963430pt;}
.x16{left:225.882650pt;}
.x13{left:227.032000pt;}
.x1f{left:228.158667pt;}
.x1a{left:229.418667pt;}
.x27{left:231.782667pt;}
.xe{left:233.064000pt;}
.x14{left:235.053019pt;}
.x2{left:236.990667pt;}
.x2d{left:238.244000pt;}
.x2a{left:241.113333pt;}
.x23{left:242.080000pt;}
.x1e{left:243.185333pt;}
.x19{left:244.444000pt;}
.x26{left:246.809333pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x10{left:286.110629pt;}
.x1d{left:287.787926pt;}
.x11{left:297.968995pt;}
.xf{left:299.287918pt;}
.x1c{left:305.523561pt;}
.x1b{left:318.830495pt;}
.x3{left:360.866667pt;}
.x17{left:373.950089pt;}
.x32{left:385.859745pt;}
.x30{left:391.302321pt;}
.xc{left:392.678957pt;}
.x2f{left:395.300000pt;}
.x22{left:401.085423pt;}
.x9{left:404.177333pt;}
.x25{left:414.138064pt;}
.x29{left:418.518993pt;}
.x2c{left:423.564894pt;}
.x21{left:425.385578pt;}
.x34{left:426.470180pt;}
.x36{left:488.622667pt;}
}




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