
    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_6a8bc64ea5b724ea422de97a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_e8435a4b7d97bf0aafb6ad99.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_408037251223b7b764ca3e7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.430000;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_a4ced1a3522335d542edccc0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2e51b4b8484d2d1c583f19e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_63ec2ebaec96582f80db32ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.430000;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_5033adee82478ca074027d3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_b3bf1573783b885044a218bf.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_141fd4ea21a7d9d7d9e8b4fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.887000;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_75a3bfe95677d3c4538d66d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.713000;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_6cde821f0485f0f7c4cd015c.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_15d07218a2c5d5d263248862.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;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_9beb2f9d037d52cddcfbe5ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_af5541935b2fdb7edaee50ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.262000;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_091dffd3710e62079bb085fb.woff2')format("woff");}.fff{font-family:fff;line-height:0.839000;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_ee030d66663af4293f4bdc5e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.645000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3aea42b6aef5bde4cc2b1c1f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;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:-21.690000px;}
.vd{vertical-align:-16.740000px;}
.v3{vertical-align:-10.758000px;}
.v14{vertical-align:-8.436000px;}
.v7{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:6.978000px;}
.vb{vertical-align:10.758000px;}
.vf{vertical-align:17.736000px;}
.v6{vertical-align:20.724000px;}
.va{vertical-align:26.028000px;}
.vc{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:37.770000px;}
.v11{vertical-align:40.374000px;}
.v12{vertical-align:47.352000px;}
.v4{vertical-align:48.528000px;}
.v9{vertical-align:78.708000px;}
.v8{vertical-align:97.638000px;}
.v13{vertical-align:117.348000px;}
.ve{vertical-align:129.876000px;}
.ls1{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.000749px;}
.ls21{letter-spacing:0.002675px;}
.ls25{letter-spacing:0.002759px;}
.ls48{letter-spacing:0.004059px;}
.ls4c{letter-spacing:0.004800px;}
.ls16{letter-spacing:0.005226px;}
.ls1d{letter-spacing:0.005487px;}
.ls32{letter-spacing:0.005971px;}
.ls61{letter-spacing:0.006515px;}
.ls79{letter-spacing:0.007375px;}
.ls27{letter-spacing:0.007674px;}
.ls4e{letter-spacing:0.012305px;}
.ls68{letter-spacing:0.012670px;}
.ls24{letter-spacing:0.018230px;}
.ls78{letter-spacing:0.020778px;}
.ls58{letter-spacing:0.024609px;}
.ls7a{letter-spacing:0.029220px;}
.ls17{letter-spacing:0.031361px;}
.ls6a{letter-spacing:1.721542px;}
.ls57{letter-spacing:2.008474px;}
.ls5b{letter-spacing:2.573136px;}
.ls22{letter-spacing:2.582323px;}
.ls39{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.986059px;}
.ls51{letter-spacing:2.988499px;}
.ls46{letter-spacing:2.989398px;}
.ls45{letter-spacing:2.990915px;}
.ls28{letter-spacing:2.992059px;}
.ls0{letter-spacing:2.992894px;}
.ls60{letter-spacing:4.232141px;}
.ls47{letter-spacing:4.275489px;}
.ls52{letter-spacing:4.698621px;}
.ls5d{letter-spacing:4.704930px;}
.ls50{letter-spacing:5.011059px;}
.ls12{letter-spacing:5.344571px;}
.ls31{letter-spacing:6.394059px;}
.ls14{letter-spacing:7.196004px;}
.ls5f{letter-spacing:7.202004px;}
.ls2f{letter-spacing:7.460045px;}
.ls35{letter-spacing:7.531776px;}
.ls44{letter-spacing:9.718435px;}
.ls5c{letter-spacing:9.720390px;}
.ls76{letter-spacing:9.739709px;}
.ls74{letter-spacing:9.745766px;}
.ls6c{letter-spacing:9.746037px;}
.ls3a{letter-spacing:9.752868px;}
.ls3e{letter-spacing:9.753443px;}
.ls10{letter-spacing:9.755443px;}
.ls6f{letter-spacing:9.762511px;}
.ls66{letter-spacing:9.777692px;}
.ls38{letter-spacing:9.777867px;}
.ls71{letter-spacing:9.785660px;}
.ls42{letter-spacing:9.786950px;}
.ls29{letter-spacing:10.160915px;}
.lsd{letter-spacing:11.979110px;}
.ls20{letter-spacing:15.780864px;}
.ls13{letter-spacing:15.924326px;}
.ls1e{letter-spacing:18.136454px;}
.ls18{letter-spacing:18.346059px;}
.ls23{letter-spacing:18.506650px;}
.ls70{letter-spacing:18.602915px;}
.ls26{letter-spacing:18.926915px;}
.ls4d{letter-spacing:18.930499px;}
.ls2d{letter-spacing:18.937037px;}
.ls7{letter-spacing:19.510886px;}
.ls4b{letter-spacing:19.598675px;}
.ls6e{letter-spacing:19.869542px;}
.ls9{letter-spacing:19.941274px;}
.ls65{letter-spacing:20.443392px;}
.ls4f{letter-spacing:20.640621px;}
.ls59{letter-spacing:21.519360px;}
.ls77{letter-spacing:22.093210px;}
.ls1a{letter-spacing:22.164941px;}
.ls6{letter-spacing:22.451866px;}
.ls72{letter-spacing:22.886915px;}
.ls75{letter-spacing:22.910915px;}
.lsa{letter-spacing:22.912059px;}
.ls8{letter-spacing:22.918059px;}
.ls2e{letter-spacing:22.953984px;}
.lsf{letter-spacing:23.456102px;}
.ls6d{letter-spacing:23.708915px;}
.ls2b{letter-spacing:23.958221px;}
.ls6b{letter-spacing:24.675533px;}
.ls5{letter-spacing:24.818995px;}
.ls53{letter-spacing:24.937059px;}
.ls3c{letter-spacing:25.177651px;}
.ls3d{letter-spacing:25.249382px;}
.ls33{letter-spacing:25.608038px;}
.ls41{letter-spacing:25.679770px;}
.ls73{letter-spacing:25.751501px;}
.ls1c{letter-spacing:26.404059px;}
.ls67{letter-spacing:26.708915px;}
.lsb{letter-spacing:27.095518px;}
.ls1b{letter-spacing:27.472571px;}
.ls56{letter-spacing:27.616512px;}
.lse{letter-spacing:27.688243px;}
.ls3b{letter-spacing:27.836915px;}
.ls62{letter-spacing:27.903437px;}
.ls55{letter-spacing:28.118630px;}
.ls4{letter-spacing:30.127104px;}
.ls3{letter-spacing:30.198835px;}
.ls36{letter-spacing:31.489997px;}
.ls30{letter-spacing:31.876145px;}
.ls34{letter-spacing:33.283277px;}
.ls5a{letter-spacing:34.072320px;}
.ls2{letter-spacing:35.865600px;}
.ls37{letter-spacing:37.515418px;}
.ls40{letter-spacing:39.810816px;}
.ls3f{letter-spacing:39.882547px;}
.lsc{letter-spacing:40.562675px;}
.ls54{letter-spacing:42.393139px;}
.ls43{letter-spacing:42.836915px;}
.ls4a{letter-spacing:47.021518px;}
.ls49{letter-spacing:47.236516px;}
.ls69{letter-spacing:49.797894px;}
.ls63{letter-spacing:53.519975px;}
.ls5e{letter-spacing:252.557981px;}
.ls2a{letter-spacing:771.971174px;}
.ls15{letter-spacing:788.038963px;}
.ls2c{letter-spacing:834.449050px;}
.ls7b{letter-spacing:897.644237px;}
.ls19{letter-spacing:919.020134px;}
.ls1f{letter-spacing:1126.036378px;}
.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;}
}
.wsc2{word-spacing:-51.861658px;}
.ws65{word-spacing:-45.664082px;}
.ws76{word-spacing:-33.756703px;}
.ws6a{word-spacing:-33.684972px;}
.ws72{word-spacing:-33.211407px;}
.wsca{word-spacing:-31.174380px;}
.ws66{word-spacing:-25.722808px;}
.ws69{word-spacing:-19.510886px;}
.ws91{word-spacing:-7.603507px;}
.wsa2{word-spacing:-3.945216px;}
.ws47{word-spacing:-3.873485px;}
.ws6c{word-spacing:-3.658291px;}
.ws70{word-spacing:-3.586560px;}
.ws22{word-spacing:-3.514829px;}
.ws38{word-spacing:-3.227904px;}
.wsb0{word-spacing:-3.156173px;}
.ws39{word-spacing:-2.869248px;}
.ws2d{word-spacing:-2.725786px;}
.wseb{word-spacing:-2.582323px;}
.ws5a{word-spacing:-2.510592px;}
.ws5{word-spacing:-2.277820px;}
.ws3d{word-spacing:-2.151936px;}
.ws6{word-spacing:-1.950547px;}
.ws4{word-spacing:-1.819638px;}
.wse0{word-spacing:-1.721549px;}
.wsb9{word-spacing:-1.219430px;}
.ws11{word-spacing:-1.034183px;}
.wsad{word-spacing:-0.860774px;}
.wse3{word-spacing:-0.717312px;}
.ws41{word-spacing:-0.645581px;}
.ws75{word-spacing:-0.573850px;}
.ws60{word-spacing:-0.502118px;}
.wsce{word-spacing:-0.430387px;}
.ws61{word-spacing:-0.358656px;}
.ws37{word-spacing:-0.286925px;}
.ws81{word-spacing:-0.215194px;}
.wsa1{word-spacing:-0.148723px;}
.ws9b{word-spacing:-0.143462px;}
.ws1{word-spacing:-0.123975px;}
.ws19{word-spacing:-0.103292px;}
.ws54{word-spacing:-0.071731px;}
.wsaf{word-spacing:-0.047821px;}
.ws18{word-spacing:0.000000px;}
.ws40{word-spacing:0.071731px;}
.ws63{word-spacing:0.215194px;}
.ws4f{word-spacing:0.358656px;}
.ws90{word-spacing:0.425604px;}
.ws6f{word-spacing:0.430387px;}
.wsb{word-spacing:0.602182px;}
.ws79{word-spacing:0.645581px;}
.ws6d{word-spacing:0.717312px;}
.ws56{word-spacing:0.789043px;}
.ws57{word-spacing:1.004237px;}
.ws59{word-spacing:1.075968px;}
.wsb6{word-spacing:1.147699px;}
.ws15{word-spacing:1.191274px;}
.wscf{word-spacing:1.219430px;}
.wscc{word-spacing:1.434624px;}
.ws71{word-spacing:1.865011px;}
.ws8f{word-spacing:1.936742px;}
.ws99{word-spacing:2.080205px;}
.ws7f{word-spacing:2.151936px;}
.wsa6{word-spacing:2.295398px;}
.wsac{word-spacing:2.367130px;}
.ws42{word-spacing:2.438861px;}
.ws55{word-spacing:2.510592px;}
.ws6b{word-spacing:2.582323px;}
.wsdb{word-spacing:2.654054px;}
.ws2f{word-spacing:2.725786px;}
.wsa3{word-spacing:2.869248px;}
.ws3{word-spacing:2.893093px;}
.ws36{word-spacing:2.940979px;}
.ws7b{word-spacing:3.012710px;}
.ws88{word-spacing:3.084442px;}
.ws2b{word-spacing:3.156173px;}
.wsdc{word-spacing:3.227904px;}
.ws16{word-spacing:3.299613px;}
.ws80{word-spacing:3.299635px;}
.ws84{word-spacing:3.371366px;}
.ws7d{word-spacing:3.443098px;}
.ws24{word-spacing:3.514829px;}
.ws9d{word-spacing:3.586560px;}
.ws7{word-spacing:3.613094px;}
.ws4d{word-spacing:3.658291px;}
.wscb{word-spacing:3.730022px;}
.wsc{word-spacing:3.809458px;}
.ws1d{word-spacing:3.873485px;}
.wse{word-spacing:3.874912px;}
.ws26{word-spacing:3.945216px;}
.ws93{word-spacing:4.088678px;}
.wsc6{word-spacing:4.160410px;}
.ws8a{word-spacing:4.232141px;}
.ws49{word-spacing:4.375603px;}
.ws62{word-spacing:4.447334px;}
.wsc4{word-spacing:4.519066px;}
.ws4a{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.wsf{word-spacing:4.660368px;}
.wsc5{word-spacing:4.734259px;}
.wsbc{word-spacing:4.805990px;}
.ws89{word-spacing:4.877722px;}
.ws10{word-spacing:4.922186px;}
.wsec{word-spacing:4.949453px;}
.ws51{word-spacing:5.092915px;}
.ws29{word-spacing:5.164646px;}
.ws77{word-spacing:5.236378px;}
.ws35{word-spacing:5.308109px;}
.ws87{word-spacing:5.379840px;}
.ws9f{word-spacing:5.523302px;}
.wsd8{word-spacing:5.666765px;}
.ws5f{word-spacing:5.810227px;}
.ws3e{word-spacing:5.953690px;}
.ws74{word-spacing:6.025421px;}
.ws44{word-spacing:6.097152px;}
.wsc9{word-spacing:6.168883px;}
.ws32{word-spacing:6.312346px;}
.ws33{word-spacing:6.384077px;}
.ws48{word-spacing:6.455808px;}
.wsa{word-spacing:6.493096px;}
.wsa0{word-spacing:6.527539px;}
.wsa7{word-spacing:6.671002px;}
.ws5b{word-spacing:6.742733px;}
.ws3c{word-spacing:6.886195px;}
.ws3f{word-spacing:6.957926px;}
.wsae{word-spacing:7.029658px;}
.ws2e{word-spacing:7.173120px;}
.wsd3{word-spacing:7.244851px;}
.wsc0{word-spacing:7.316582px;}
.ws23{word-spacing:7.388314px;}
.wsc7{word-spacing:7.531776px;}
.ws5d{word-spacing:7.603507px;}
.ws3a{word-spacing:7.675238px;}
.ws8e{word-spacing:7.746970px;}
.ws98{word-spacing:7.890432px;}
.ws31{word-spacing:7.962163px;}
.ws30{word-spacing:8.033894px;}
.ws25{word-spacing:8.105626px;}
.ws68{word-spacing:8.177357px;}
.wsa9{word-spacing:8.249088px;}
.wsbf{word-spacing:8.320819px;}
.wsbb{word-spacing:8.392550px;}
.ws14{word-spacing:8.587644px;}
.wsd7{word-spacing:8.679475px;}
.ws82{word-spacing:8.751206px;}
.ws5e{word-spacing:8.822938px;}
.ws4c{word-spacing:8.894669px;}
.ws78{word-spacing:9.038131px;}
.wsd1{word-spacing:9.181594px;}
.wse6{word-spacing:9.253325px;}
.ws34{word-spacing:9.325056px;}
.ws4b{word-spacing:9.396787px;}
.ws2a{word-spacing:9.468518px;}
.wsb5{word-spacing:9.611981px;}
.wsb1{word-spacing:9.683712px;}
.ws97{word-spacing:9.755443px;}
.wsb2{word-spacing:9.898906px;}
.ws17{word-spacing:9.934705px;}
.ws9{word-spacing:10.093099px;}
.ws7a{word-spacing:10.114099px;}
.ws28{word-spacing:10.185830px;}
.ws13{word-spacing:10.289463px;}
.wsa4{word-spacing:10.329293px;}
.wsaa{word-spacing:10.401024px;}
.ws8b{word-spacing:10.472755px;}
.ws45{word-spacing:10.544486px;}
.ws2c{word-spacing:10.616218px;}
.wsa5{word-spacing:10.687949px;}
.ws83{word-spacing:10.831411px;}
.wsd2{word-spacing:10.903142px;}
.ws52{word-spacing:11.118336px;}
.ws9e{word-spacing:11.261798px;}
.ws86{word-spacing:11.620454px;}
.wsd6{word-spacing:11.692186px;}
.ws6e{word-spacing:11.763917px;}
.ws8{word-spacing:11.794919px;}
.ws85{word-spacing:12.337766px;}
.ws7c{word-spacing:12.409498px;}
.wsb3{word-spacing:12.552960px;}
.wsdf{word-spacing:12.624691px;}
.wsda{word-spacing:12.696422px;}
.ws94{word-spacing:12.839885px;}
.wsd{word-spacing:12.842193px;}
.ws8d{word-spacing:12.911616px;}
.ws27{word-spacing:13.126810px;}
.ws5c{word-spacing:13.413734px;}
.wse5{word-spacing:13.485466px;}
.ws96{word-spacing:13.700659px;}
.ws50{word-spacing:13.915853px;}
.ws46{word-spacing:14.059315px;}
.wsb4{word-spacing:14.131046px;}
.ws53{word-spacing:14.202778px;}
.wsa8{word-spacing:14.274509px;}
.wsde{word-spacing:14.346240px;}
.ws73{word-spacing:14.489702px;}
.ws9c{word-spacing:14.561434px;}
.wsb8{word-spacing:14.848358px;}
.wsc3{word-spacing:14.991821px;}
.ws9a{word-spacing:15.350477px;}
.wsd5{word-spacing:15.565670px;}
.ws95{word-spacing:15.637402px;}
.wsd4{word-spacing:15.709133px;}
.ws12{word-spacing:15.787650px;}
.wsc1{word-spacing:16.067789px;}
.ws1e{word-spacing:16.856832px;}
.ws1f{word-spacing:16.928563px;}
.ws43{word-spacing:17.717606px;}
.wsee{word-spacing:20.443392px;}
.wse1{word-spacing:20.718943px;}
.ws20{word-spacing:22.236672px;}
.ws58{word-spacing:22.380134px;}
.wse9{word-spacing:24.173414px;}
.wsbd{word-spacing:24.432207px;}
.wse8{word-spacing:24.460339px;}
.wse4{word-spacing:25.034189px;}
.wsea{word-spacing:25.249382px;}
.wsb7{word-spacing:25.719808px;}
.ws7e{word-spacing:26.540544px;}
.ws1a{word-spacing:26.827469px;}
.wsed{word-spacing:27.616512px;}
.ws3b{word-spacing:28.477286px;}
.wsd0{word-spacing:29.954796px;}
.wse7{word-spacing:29.983642px;}
.wsdd{word-spacing:31.131341px;}
.wsab{word-spacing:31.418266px;}
.ws1b{word-spacing:32.192873px;}
.wsc8{word-spacing:33.775433px;}
.ws21{word-spacing:38.631358px;}
.ws64{word-spacing:39.044527px;}
.wsd9{word-spacing:39.380429px;}
.ws8c{word-spacing:42.453176px;}
.wsbe{word-spacing:42.792207px;}
.wse2{word-spacing:45.791553px;}
.ws0{word-spacing:46.366650px;}
.ws1c{word-spacing:47.428537px;}
.ws4e{word-spacing:55.622252px;}
.wscd{word-spacing:96.750773px;}
.wsba{word-spacing:106.764718px;}
.ws67{word-spacing:668.706939px;}
.ws92{word-spacing:852.051886px;}
._2b{margin-left:-38.519654px;}
._1c{margin-left:-36.636626px;}
._1d{margin-left:-35.510860px;}
._35{margin-left:-9.220801px;}
._30{margin-left:-6.825403px;}
._7{margin-left:-5.367277px;}
._0{margin-left:-3.843225px;}
._2{margin-left:-2.324084px;}
._4{margin-left:-1.145009px;}
._9{width:1.257322px;}
._3{width:2.324084px;}
._1{width:3.843225px;}
._37{width:6.329973px;}
._2c{width:9.750862px;}
._31{width:17.242550px;}
._26{width:19.114339px;}
._a{width:20.179505px;}
._23{width:21.217186px;}
._6{width:22.844548px;}
._c{width:23.942699px;}
._3a{width:25.937051px;}
._5{width:27.294568px;}
._10{width:28.589975px;}
._21{width:30.384659px;}
._b{width:32.073646px;}
._d{width:33.204079px;}
._8{width:34.821847px;}
._e{width:36.150428px;}
._34{width:37.591682px;}
._1f{width:39.595622px;}
._25{width:41.489320px;}
._27{width:43.224302px;}
._f{width:44.560898px;}
._3e{width:45.804022px;}
._24{width:47.486054px;}
._32{width:48.524131px;}
._36{width:49.540004px;}
._20{width:50.747798px;}
._22{width:52.062492px;}
._3b{width:53.446067px;}
._39{width:54.618593px;}
._2f{width:57.347068px;}
._33{width:58.638230px;}
._3d{width:59.863337px;}
._28{width:61.473638px;}
._2e{width:63.032832px;}
._15{width:64.988467px;}
._38{width:66.954785px;}
._3c{width:70.497410px;}
._1b{width:71.802931px;}
._3f{width:80.737116px;}
._12{width:96.836850px;}
._29{width:116.203950px;}
._2a{width:152.428800px;}
._13{width:197.116788px;}
._2d{width:293.198759px;}
._1a{width:358.267732px;}
._16{width:441.677684px;}
._17{width:483.495632px;}
._19{width:1896.311207px;}
._18{width:1950.586522px;}
._11{width:1963.641600px;}
._1e{width:1981.359206px;}
._14{width:1982.965979px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.fs7{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y21{bottom:63.168000px;}
.y12c{bottom:101.724000px;}
.y89{bottom:108.000000px;}
.y20{bottom:108.013500px;}
.y185{bottom:112.804500px;}
.y12b{bottom:114.024000px;}
.y1a9{bottom:120.406500px;}
.y5d{bottom:122.382000px;}
.y15d{bottom:126.304500px;}
.y88{bottom:129.669000px;}
.y1f{bottom:131.368500px;}
.y184{bottom:134.473500px;}
.y1a8{bottom:142.074000px;}
.y5c{bottom:144.049500px;}
.y15c{bottom:147.972000px;}
.y104{bottom:151.338000px;}
.y183{bottom:156.142500px;}
.y12a{bottom:157.974000px;}
.y143{bottom:158.287500px;}
.y87{bottom:159.792000px;}
.y5b{bottom:165.718500px;}
.y15b{bottom:169.641000px;}
.yc5{bottom:170.583000px;}
.y86{bottom:172.092000px;}
.y103{bottom:173.007000px;}
.y1a7{bottom:176.061000px;}
.y129{bottom:179.641500px;}
.y142{bottom:179.956500px;}
.yc4{bottom:186.772500px;}
.y5a{bottom:187.387500px;}
.y182{bottom:187.524000px;}
.y15a{bottom:191.310000px;}
.y102{bottom:194.674500px;}
.yb0{bottom:195.510000px;}
.y1a6{bottom:197.728500px;}
.y128{bottom:201.310500px;}
.y141{bottom:201.625500px;}
.y59{bottom:209.056500px;}
.y181{bottom:209.193000px;}
.y159{bottom:212.979000px;}
.y85{bottom:213.102000px;}
.y101{bottom:216.343500px;}
.yaf{bottom:217.179000px;}
.y127{bottom:222.979500px;}
.y140{bottom:223.293000px;}
.y58{bottom:230.725500px;}
.y180{bottom:230.862000px;}
.y1a5{bottom:231.714000px;}
.yc3{bottom:234.511500px;}
.y158{bottom:234.648000px;}
.y84{bottom:234.771000px;}
.y100{bottom:238.012500px;}
.yae{bottom:238.846500px;}
.y13f{bottom:244.962000px;}
.y57{bottom:252.394500px;}
.y17f{bottom:252.531000px;}
.y126{bottom:252.925500px;}
.y1a4{bottom:253.383000px;}
.yc2{bottom:256.179000px;}
.y157{bottom:256.317000px;}
.y83{bottom:256.438500px;}
.yff{bottom:259.681500px;}
.yad{bottom:260.515500px;}
.y13e{bottom:266.631000px;}
.y56{bottom:274.062000px;}
.y17e{bottom:274.200000px;}
.y125{bottom:274.594500px;}
.y1a3{bottom:275.052000px;}
.yc1{bottom:277.848000px;}
.y156{bottom:277.984500px;}
.y82{bottom:278.107500px;}
.yfe{bottom:281.350500px;}
.yac{bottom:282.184500px;}
.y1e{bottom:294.058500px;}
.y55{bottom:295.731000px;}
.y17d{bottom:295.869000px;}
.y124{bottom:296.263500px;}
.yc0{bottom:299.517000px;}
.y155{bottom:299.653500px;}
.y13d{bottom:299.881500px;}
.yfd{bottom:303.019500px;}
.yab{bottom:303.853500px;}
.y1a2{bottom:309.037500px;}
.y1d{bottom:314.382000px;}
.y54{bottom:317.400000px;}
.y81{bottom:317.535000px;}
.y17c{bottom:317.536500px;}
.ybf{bottom:321.186000px;}
.y154{bottom:321.322500px;}
.y123{bottom:322.972500px;}
.yfc{bottom:324.687000px;}
.yaa{bottom:325.522500px;}
.y1a1{bottom:330.706500px;}
.y1c{bottom:334.705500px;}
.y122{bottom:335.272500px;}
.y53{bottom:339.069000px;}
.y17b{bottom:339.205500px;}
.ybe{bottom:342.855000px;}
.y153{bottom:342.991500px;}
.yfb{bottom:346.356000px;}
.ya9{bottom:347.190000px;}
.y80{bottom:350.412000px;}
.y13c{bottom:351.874500px;}
.y1b{bottom:355.029000px;}
.y52{bottom:360.738000px;}
.y17a{bottom:360.874500px;}
.y152{bottom:364.660500px;}
.y1a0{bottom:364.692000px;}
.y121{bottom:364.740000px;}
.ya8{bottom:368.859000px;}
.y13b{bottom:373.543500px;}
.y1a{bottom:375.352500px;}
.yfa{bottom:381.106500px;}
.ybd{bottom:382.282500px;}
.y51{bottom:382.407000px;}
.y179{bottom:382.543500px;}
.y151{bottom:386.329500px;}
.y19f{bottom:386.361000px;}
.y120{bottom:386.409000px;}
.ya7{bottom:390.528000px;}
.y13a{bottom:395.211000px;}
.y19{bottom:395.677500px;}
.y50{bottom:404.074500px;}
.y178{bottom:404.212500px;}
.y150{bottom:407.997000px;}
.y19e{bottom:408.030000px;}
.y7f{bottom:410.052000px;}
.ya6{bottom:412.197000px;}
.ybc{bottom:415.158000px;}
.yf9{bottom:415.855500px;}
.y18{bottom:416.001000px;}
.y11f{bottom:419.658000px;}
.y4f{bottom:425.743500px;}
.y177{bottom:425.881500px;}
.y139{bottom:426.594000px;}
.y14f{bottom:429.666000px;}
.y7e{bottom:431.721000px;}
.ya5{bottom:433.866000px;}
.y17{bottom:436.324500px;}
.yf8{bottom:437.524500px;}
.y19d{bottom:442.015500px;}
.y4e{bottom:447.412500px;}
.y138{bottom:448.263000px;}
.y14e{bottom:451.335000px;}
.y7d{bottom:453.390000px;}
.ya4{bottom:455.535000px;}
.y16{bottom:456.648000px;}
.yf7{bottom:459.193500px;}
.y19c{bottom:463.684500px;}
.y4d{bottom:469.081500px;}
.y137{bottom:469.932000px;}
.ybb{bottom:471.004500px;}
.y11e{bottom:471.156000px;}
.y176{bottom:472.642500px;}
.y14d{bottom:473.004000px;}
.y7c{bottom:475.059000px;}
.y15{bottom:476.971500px;}
.yf6{bottom:480.862500px;}
.ya3{bottom:481.984500px;}
.y19b{bottom:485.353500px;}
.y4c{bottom:490.750500px;}
.yba{bottom:492.673500px;}
.y11d{bottom:492.825000px;}
.y175{bottom:494.311500px;}
.y14c{bottom:494.673000px;}
.y7b{bottom:496.728000px;}
.y14{bottom:497.295000px;}
.yf5{bottom:502.531500px;}
.ya0{bottom:502.608000px;}
.y136{bottom:505.714500px;}
.y4b{bottom:512.419500px;}
.y135{bottom:514.258500px;}
.yb9{bottom:514.342500px;}
.y11c{bottom:514.494000px;}
.y174{bottom:515.980500px;}
.y14b{bottom:516.342000px;}
.y13{bottom:517.620000px;}
.y7a{bottom:518.397000px;}
.y19a{bottom:519.339000px;}
.ya2{bottom:519.643500px;}
.yf4{bottom:524.199000px;}
.ya1{bottom:525.024000px;}
.y134{bottom:526.558500px;}
.y4a{bottom:534.087000px;}
.yb8{bottom:536.011500px;}
.y11b{bottom:536.163000px;}
.y9f{bottom:536.481000px;}
.y173{bottom:537.649500px;}
.y12{bottom:537.943500px;}
.y14a{bottom:538.009500px;}
.y79{bottom:540.064500px;}
.y199{bottom:541.006500px;}
.yf3{bottom:545.868000px;}
.y49{bottom:555.756000px;}
.yb7{bottom:557.680500px;}
.y9e{bottom:558.150000px;}
.y11{bottom:558.267000px;}
.y172{bottom:559.318500px;}
.y149{bottom:559.678500px;}
.y78{bottom:561.733500px;}
.yf2{bottom:567.537000px;}
.y11a{bottom:567.979500px;}
.y119{bottom:572.413500px;}
.y133{bottom:573.162000px;}
.y198{bottom:574.993500px;}
.y48{bottom:577.425000px;}
.y10{bottom:578.590500px;}
.yb6{bottom:579.349500px;}
.y171{bottom:580.986000px;}
.y77{bottom:583.402500px;}
.yf1{bottom:589.206000px;}
.y30{bottom:591.904500px;}
.yde{bottom:591.945000px;}
.y9c{bottom:594.513000px;}
.y132{bottom:594.829500px;}
.y197{bottom:596.661000px;}
.yf{bottom:598.914000px;}
.y47{bottom:599.094000px;}
.y148{bottom:599.106000px;}
.y170{bottom:602.655000px;}
.y76{bottom:605.071500px;}
.y9b{bottom:606.814500px;}
.y118{bottom:608.664000px;}
.yf0{bottom:610.875000px;}
.ydd{bottom:613.614000px;}
.y131{bottom:616.498500px;}
.y9d{bottom:618.946500px;}
.ye{bottom:619.239000px;}
.y46{bottom:620.763000px;}
.y16f{bottom:624.324000px;}
.y75{bottom:626.740500px;}
.y117{bottom:630.333000px;}
.y196{bottom:630.646500px;}
.y2f{bottom:631.132500px;}
.y147{bottom:631.983000px;}
.yef{bottom:632.544000px;}
.ydc{bottom:635.283000px;}
.y130{bottom:638.167500px;}
.yd{bottom:639.562500px;}
.y45{bottom:642.430500px;}
.yb5{bottom:643.359000px;}
.y16e{bottom:645.993000px;}
.y74{bottom:648.409500px;}
.y116{bottom:652.002000px;}
.y195{bottom:652.315500px;}
.y2e{bottom:652.800000px;}
.yee{bottom:654.211500px;}
.y9a{bottom:655.309500px;}
.ydb{bottom:656.952000px;}
.yc{bottom:659.886000px;}
.y44{bottom:664.099500px;}
.yb4{bottom:665.028000px;}
.y16d{bottom:667.662000px;}
.y73{bottom:670.077000px;}
.y115{bottom:673.671000px;}
.y2d{bottom:674.469000px;}
.yed{bottom:675.880500px;}
.y99{bottom:676.978500px;}
.yda{bottom:678.621000px;}
.yb{bottom:680.209500px;}
.y146{bottom:683.290500px;}
.y43{bottom:685.768500px;}
.y12f{bottom:685.987500px;}
.y194{bottom:686.301000px;}
.yb3{bottom:686.695500px;}
.y16c{bottom:689.331000px;}
.y72{bottom:691.746000px;}
.y114{bottom:695.338500px;}
.y2c{bottom:696.138000px;}
.yec{bottom:697.549500px;}
.y98{bottom:698.647500px;}
.yd9{bottom:700.288500px;}
.ya{bottom:700.533000px;}
.y145{bottom:704.959500px;}
.y42{bottom:707.437500px;}
.y12e{bottom:707.656500px;}
.y193{bottom:707.970000px;}
.yb2{bottom:708.364500px;}
.y16b{bottom:710.998500px;}
.y71{bottom:713.415000px;}
.yeb{bottom:719.218500px;}
.y97{bottom:720.315000px;}
.y9{bottom:720.858000px;}
.yd8{bottom:721.957500px;}
.y144{bottom:726.627000px;}
.y41{bottom:729.106500px;}
.y12d{bottom:729.325500px;}
.y192{bottom:729.639000px;}
.yb1{bottom:730.033500px;}
.y113{bottom:731.590500px;}
.y16a{bottom:732.667500px;}
.y70{bottom:735.084000px;}
.y2b{bottom:735.366000px;}
.yea{bottom:740.887500px;}
.y8{bottom:741.181500px;}
.y96{bottom:741.984000px;}
.yd7{bottom:743.626500px;}
.y40{bottom:750.775500px;}
.y169{bottom:754.336500px;}
.y6f{bottom:756.753000px;}
.y2a{bottom:757.035000px;}
.ye9{bottom:762.556500px;}
.y191{bottom:763.624500px;}
.y95{bottom:763.653000px;}
.yd6{bottom:765.295500px;}
.y112{bottom:767.841000px;}
.y7{bottom:771.523500px;}
.y3f{bottom:772.443000px;}
.y168{bottom:776.005500px;}
.y6e{bottom:778.420500px;}
.ye8{bottom:784.224000px;}
.y190{bottom:785.293500px;}
.yd5{bottom:786.964500px;}
.y111{bottom:789.510000px;}
.y3e{bottom:794.112000px;}
.y167{bottom:797.674500px;}
.y94{bottom:799.020000px;}
.y6d{bottom:800.089500px;}
.ye7{bottom:805.893000px;}
.y18f{bottom:806.962500px;}
.yd4{bottom:808.633500px;}
.y93{bottom:811.321500px;}
.y3d{bottom:815.781000px;}
.y10f{bottom:818.038500px;}
.y29{bottom:818.211000px;}
.y166{bottom:819.343500px;}
.y6c{bottom:821.758500px;}
.y110{bottom:825.906000px;}
.ye6{bottom:827.562000px;}
.yd3{bottom:830.301000px;}
.y10e{bottom:830.340000px;}
.y3c{bottom:837.450000px;}
.y18e{bottom:840.948000px;}
.y165{bottom:841.011000px;}
.y6b{bottom:843.427500px;}
.ye5{bottom:849.231000px;}
.yd2{bottom:851.970000px;}
.y92{bottom:854.088000px;}
.y6{bottom:857.040000px;}
.y28{bottom:857.439000px;}
.y3b{bottom:859.119000px;}
.y18d{bottom:862.617000px;}
.y164{bottom:862.680000px;}
.y6a{bottom:865.096500px;}
.ye4{bottom:870.900000px;}
.y10d{bottom:871.506000px;}
.yd1{bottom:873.639000px;}
.y91{bottom:875.757000px;}
.y3a{bottom:880.788000px;}
.y18c{bottom:884.286000px;}
.y163{bottom:884.349000px;}
.y69{bottom:886.765500px;}
.ye3{bottom:892.567500px;}
.y10c{bottom:893.175000px;}
.yd0{bottom:895.308000px;}
.y27{bottom:896.667000px;}
.y90{bottom:897.426000px;}
.y5{bottom:899.107500px;}
.y39{bottom:902.455500px;}
.y162{bottom:906.018000px;}
.y68{bottom:908.433000px;}
.ye2{bottom:914.236500px;}
.ycf{bottom:916.977000px;}
.y18b{bottom:918.271500px;}
.y8f{bottom:919.095000px;}
.y38{bottom:924.124500px;}
.y10b{bottom:926.425500px;}
.y161{bottom:927.687000px;}
.y67{bottom:930.102000px;}
.ye1{bottom:935.905500px;}
.yce{bottom:938.646000px;}
.y18a{bottom:939.939000px;}
.y8e{bottom:940.764000px;}
.y37{bottom:945.793500px;}
.y160{bottom:949.354500px;}
.y66{bottom:951.771000px;}
.y4{bottom:952.344000px;}
.ye0{bottom:957.574500px;}
.y26{bottom:957.843000px;}
.ycd{bottom:960.313500px;}
.y189{bottom:961.608000px;}
.y36{bottom:967.462500px;}
.y15f{bottom:971.023500px;}
.y10a{bottom:977.923500px;}
.y8d{bottom:980.365500px;}
.ycc{bottom:981.982500px;}
.y35{bottom:989.131500px;}
.y3{bottom:989.704500px;}
.y65{bottom:991.198500px;}
.y188{bottom:995.593500px;}
.y25{bottom:997.071000px;}
.y109{bottom:999.592500px;}
.ydf{bottom:1002.406500px;}
.ycb{bottom:1003.651500px;}
.y15e{bottom:1010.625000px;}
.y34{bottom:1010.800500px;}
.y187{bottom:1017.262500px;}
.y8c{bottom:1019.967000px;}
.y108{bottom:1021.260000px;}
.yca{bottom:1025.320500px;}
.y2{bottom:1027.063500px;}
.y62{bottom:1028.557500px;}
.y33{bottom:1032.468000px;}
.y24{bottom:1036.299000px;}
.y107{bottom:1042.929000px;}
.y64{bottom:1047.238500px;}
.y61{bottom:1050.226500px;}
.y32{bottom:1054.137000px;}
.y8b{bottom:1056.330000px;}
.y186{bottom:1056.690000px;}
.yc9{bottom:1059.990000px;}
.y1{bottom:1064.424000px;}
.y106{bottom:1064.598000px;}
.y8a{bottom:1068.631500px;}
.y60{bottom:1071.895500px;}
.y31{bottom:1075.806000px;}
.yc6{bottom:1080.613500px;}
.y63{bottom:1092.070500px;}
.y5f{bottom:1093.564500px;}
.y23{bottom:1097.475000px;}
.yc8{bottom:1097.649000px;}
.yc7{bottom:1103.029500px;}
.y105{bottom:1104.025500px;}
.y5e{bottom:1115.233500px;}
.y22{bottom:1136.902500px;}
.h12{height:2.869248px;}
.h6{height:20.451798px;}
.h11{height:32.661470px;}
.h13{height:33.665702px;}
.h7{height:42.141798px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.ha{height:50.211840px;}
.h8{height:53.798400px;}
.h15{height:59.693702px;}
.h1b{height:59.699702px;}
.hb{height:60.254040px;}
.h16{height:63.281702px;}
.h1d{height:63.287702px;}
.h3{height:64.557900px;}
.h19{height:71.534400px;}
.h18{height:72.125702px;}
.h9{height:72.304680px;}
.h1a{height:81.017702px;}
.h2{height:86.782500px;}
.hf{height:102.320400px;}
.hd{height:102.326400px;}
.he{height:102.998400px;}
.h10{height:103.004400px;}
.hc{height:104.105820px;}
.h14{height:110.699981px;}
.h1c{height:120.217248px;}
.h17{height:132.745248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x2d{left:116.779500px;}
.x3{left:118.953000px;}
.xa{left:128.196000px;}
.xd{left:134.338500px;}
.x2e{left:144.093000px;}
.x9{left:151.897500px;}
.x4{left:154.608000px;}
.x8{left:176.443500px;}
.x1{left:186.463500px;}
.x1f{left:257.511000px;}
.x2{left:309.955500px;}
.xe{left:315.030000px;}
.x14{left:323.436000px;}
.x10{left:328.296000px;}
.x28{left:334.453500px;}
.x17{left:339.046500px;}
.x24{left:345.402000px;}
.x20{left:350.991000px;}
.x1e{left:353.065500px;}
.x1b{left:354.856500px;}
.x5{left:357.499500px;}
.x11{left:360.193500px;}
.x2c{left:363.028500px;}
.x6{left:376.369500px;}
.x15{left:394.485000px;}
.x21{left:396.252000px;}
.x29{left:400.009500px;}
.x26{left:402.162000px;}
.x25{left:406.834500px;}
.x7{left:410.455500px;}
.x12{left:411.939000px;}
.x2a{left:414.420000px;}
.xf{left:416.943000px;}
.x18{left:418.491000px;}
.x19{left:421.062000px;}
.x1c{left:428.625000px;}
.x22{left:436.258500px;}
.x1d{left:437.677500px;}
.xc{left:442.066500px;}
.x27{left:447.090000px;}
.x1a{left:452.524500px;}
.x2b{left:454.639500px;}
.x13{left:457.656000px;}
.x16{left:469.674000px;}
.x23{left:475.821000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.vd{vertical-align:-14.880000pt;}
.v3{vertical-align:-9.562667pt;}
.v14{vertical-align:-7.498667pt;}
.v7{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:6.202667pt;}
.vb{vertical-align:9.562667pt;}
.vf{vertical-align:15.765333pt;}
.v6{vertical-align:18.421333pt;}
.va{vertical-align:23.136000pt;}
.vc{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:33.573333pt;}
.v11{vertical-align:35.888000pt;}
.v12{vertical-align:42.090667pt;}
.v4{vertical-align:43.136000pt;}
.v9{vertical-align:69.962667pt;}
.v8{vertical-align:86.789333pt;}
.v13{vertical-align:104.309333pt;}
.ve{vertical-align:115.445333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.000666pt;}
.ls21{letter-spacing:0.002377pt;}
.ls25{letter-spacing:0.002452pt;}
.ls48{letter-spacing:0.003608pt;}
.ls4c{letter-spacing:0.004267pt;}
.ls16{letter-spacing:0.004646pt;}
.ls1d{letter-spacing:0.004878pt;}
.ls32{letter-spacing:0.005308pt;}
.ls61{letter-spacing:0.005791pt;}
.ls79{letter-spacing:0.006555pt;}
.ls27{letter-spacing:0.006822pt;}
.ls4e{letter-spacing:0.010938pt;}
.ls68{letter-spacing:0.011262pt;}
.ls24{letter-spacing:0.016205pt;}
.ls78{letter-spacing:0.018470pt;}
.ls58{letter-spacing:0.021874pt;}
.ls7a{letter-spacing:0.025974pt;}
.ls17{letter-spacing:0.027877pt;}
.ls6a{letter-spacing:1.530259pt;}
.ls57{letter-spacing:1.785310pt;}
.ls5b{letter-spacing:2.287232pt;}
.ls22{letter-spacing:2.295398pt;}
.ls39{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.654275pt;}
.ls51{letter-spacing:2.656444pt;}
.ls46{letter-spacing:2.657242pt;}
.ls45{letter-spacing:2.658591pt;}
.ls28{letter-spacing:2.659608pt;}
.ls0{letter-spacing:2.660350pt;}
.ls60{letter-spacing:3.761903pt;}
.ls47{letter-spacing:3.800434pt;}
.ls52{letter-spacing:4.176552pt;}
.ls5d{letter-spacing:4.182160pt;}
.ls50{letter-spacing:4.454275pt;}
.ls12{letter-spacing:4.750730pt;}
.ls31{letter-spacing:5.683608pt;}
.ls14{letter-spacing:6.396448pt;}
.ls5f{letter-spacing:6.401782pt;}
.ls2f{letter-spacing:6.631151pt;}
.ls35{letter-spacing:6.694912pt;}
.ls44{letter-spacing:8.638609pt;}
.ls5c{letter-spacing:8.640346pt;}
.ls76{letter-spacing:8.657519pt;}
.ls74{letter-spacing:8.662903pt;}
.ls6c{letter-spacing:8.663144pt;}
.ls3a{letter-spacing:8.669216pt;}
.ls3e{letter-spacing:8.669727pt;}
.ls10{letter-spacing:8.671505pt;}
.ls6f{letter-spacing:8.677787pt;}
.ls66{letter-spacing:8.691282pt;}
.ls38{letter-spacing:8.691437pt;}
.ls71{letter-spacing:8.698365pt;}
.ls42{letter-spacing:8.699511pt;}
.ls29{letter-spacing:9.031925pt;}
.lsd{letter-spacing:10.648098pt;}
.ls20{letter-spacing:14.027435pt;}
.ls13{letter-spacing:14.154957pt;}
.ls1e{letter-spacing:16.121293pt;}
.ls18{letter-spacing:16.307608pt;}
.ls23{letter-spacing:16.450355pt;}
.ls70{letter-spacing:16.535925pt;}
.ls26{letter-spacing:16.823925pt;}
.ls4d{letter-spacing:16.827110pt;}
.ls2d{letter-spacing:16.832922pt;}
.ls7{letter-spacing:17.343010pt;}
.ls4b{letter-spacing:17.421044pt;}
.ls6e{letter-spacing:17.661815pt;}
.ls9{letter-spacing:17.725577pt;}
.ls65{letter-spacing:18.171904pt;}
.ls4f{letter-spacing:18.347219pt;}
.ls59{letter-spacing:19.128320pt;}
.ls77{letter-spacing:19.638409pt;}
.ls1a{letter-spacing:19.702170pt;}
.ls6{letter-spacing:19.957214pt;}
.ls72{letter-spacing:20.343925pt;}
.ls75{letter-spacing:20.365258pt;}
.lsa{letter-spacing:20.366275pt;}
.ls8{letter-spacing:20.371608pt;}
.ls2e{letter-spacing:20.403541pt;}
.lsf{letter-spacing:20.849869pt;}
.ls6d{letter-spacing:21.074591pt;}
.ls2b{letter-spacing:21.296196pt;}
.ls6b{letter-spacing:21.933807pt;}
.ls5{letter-spacing:22.061329pt;}
.ls53{letter-spacing:22.166275pt;}
.ls3c{letter-spacing:22.380134pt;}
.ls3d{letter-spacing:22.443895pt;}
.ls33{letter-spacing:22.762701pt;}
.ls41{letter-spacing:22.826462pt;}
.ls73{letter-spacing:22.890223pt;}
.ls1c{letter-spacing:23.470275pt;}
.ls67{letter-spacing:23.741258pt;}
.lsb{letter-spacing:24.084905pt;}
.ls1b{letter-spacing:24.420063pt;}
.ls56{letter-spacing:24.548011pt;}
.lse{letter-spacing:24.611772pt;}
.ls3b{letter-spacing:24.743925pt;}
.ls62{letter-spacing:24.803055pt;}
.ls55{letter-spacing:24.994338pt;}
.ls4{letter-spacing:26.779648pt;}
.ls3{letter-spacing:26.843409pt;}
.ls36{letter-spacing:27.991108pt;}
.ls30{letter-spacing:28.334351pt;}
.ls34{letter-spacing:29.585135pt;}
.ls5a{letter-spacing:30.286507pt;}
.ls2{letter-spacing:31.880533pt;}
.ls37{letter-spacing:33.347038pt;}
.ls40{letter-spacing:35.387392pt;}
.ls3f{letter-spacing:35.451153pt;}
.lsc{letter-spacing:36.055711pt;}
.ls54{letter-spacing:37.682790pt;}
.ls43{letter-spacing:38.077258pt;}
.ls4a{letter-spacing:41.796905pt;}
.ls49{letter-spacing:41.988014pt;}
.ls69{letter-spacing:44.264794pt;}
.ls63{letter-spacing:47.573311pt;}
.ls5e{letter-spacing:224.495983pt;}
.ls2a{letter-spacing:686.196599pt;}
.ls15{letter-spacing:700.479078pt;}
.ls2c{letter-spacing:741.732489pt;}
.ls7b{letter-spacing:797.905988pt;}
.ls19{letter-spacing:816.906786pt;}
.ls1f{letter-spacing:1000.921225pt;}
.wsc2{word-spacing:-46.099251pt;}
.ws65{word-spacing:-40.590295pt;}
.ws76{word-spacing:-30.005958pt;}
.ws6a{word-spacing:-29.942197pt;}
.ws72{word-spacing:-29.521250pt;}
.wsca{word-spacing:-27.710560pt;}
.ws66{word-spacing:-22.864719pt;}
.ws69{word-spacing:-17.343010pt;}
.ws91{word-spacing:-6.758673pt;}
.wsa2{word-spacing:-3.506859pt;}
.ws47{word-spacing:-3.443098pt;}
.ws6c{word-spacing:-3.251814pt;}
.ws70{word-spacing:-3.188053pt;}
.ws22{word-spacing:-3.124292pt;}
.ws38{word-spacing:-2.869248pt;}
.wsb0{word-spacing:-2.805487pt;}
.ws39{word-spacing:-2.550443pt;}
.ws2d{word-spacing:-2.422921pt;}
.wseb{word-spacing:-2.295398pt;}
.ws5a{word-spacing:-2.231637pt;}
.ws5{word-spacing:-2.024729pt;}
.ws3d{word-spacing:-1.912832pt;}
.ws6{word-spacing:-1.733820pt;}
.ws4{word-spacing:-1.617456pt;}
.wse0{word-spacing:-1.530266pt;}
.wsb9{word-spacing:-1.083938pt;}
.ws11{word-spacing:-0.919273pt;}
.wsad{word-spacing:-0.765133pt;}
.wse3{word-spacing:-0.637611pt;}
.ws41{word-spacing:-0.573850pt;}
.ws75{word-spacing:-0.510089pt;}
.ws60{word-spacing:-0.446327pt;}
.wsce{word-spacing:-0.382566pt;}
.ws61{word-spacing:-0.318805pt;}
.ws37{word-spacing:-0.255044pt;}
.ws81{word-spacing:-0.191283pt;}
.wsa1{word-spacing:-0.132198pt;}
.ws9b{word-spacing:-0.127522pt;}
.ws1{word-spacing:-0.110200pt;}
.ws19{word-spacing:-0.091815pt;}
.ws54{word-spacing:-0.063761pt;}
.wsaf{word-spacing:-0.042507pt;}
.ws18{word-spacing:0.000000pt;}
.ws40{word-spacing:0.063761pt;}
.ws63{word-spacing:0.191283pt;}
.ws4f{word-spacing:0.318805pt;}
.ws90{word-spacing:0.378315pt;}
.ws6f{word-spacing:0.382566pt;}
.wsb{word-spacing:0.535273pt;}
.ws79{word-spacing:0.573850pt;}
.ws6d{word-spacing:0.637611pt;}
.ws56{word-spacing:0.701372pt;}
.ws57{word-spacing:0.892655pt;}
.ws59{word-spacing:0.956416pt;}
.wsb6{word-spacing:1.020177pt;}
.ws15{word-spacing:1.058910pt;}
.wscf{word-spacing:1.083938pt;}
.wscc{word-spacing:1.275221pt;}
.ws71{word-spacing:1.657788pt;}
.ws8f{word-spacing:1.721549pt;}
.ws99{word-spacing:1.849071pt;}
.ws7f{word-spacing:1.912832pt;}
.wsa6{word-spacing:2.040354pt;}
.wsac{word-spacing:2.104115pt;}
.ws42{word-spacing:2.167876pt;}
.ws55{word-spacing:2.231637pt;}
.ws6b{word-spacing:2.295398pt;}
.wsdb{word-spacing:2.359159pt;}
.ws2f{word-spacing:2.422921pt;}
.wsa3{word-spacing:2.550443pt;}
.ws3{word-spacing:2.571639pt;}
.ws36{word-spacing:2.614204pt;}
.ws7b{word-spacing:2.677965pt;}
.ws88{word-spacing:2.741726pt;}
.ws2b{word-spacing:2.805487pt;}
.wsdc{word-spacing:2.869248pt;}
.ws16{word-spacing:2.932989pt;}
.ws80{word-spacing:2.933009pt;}
.ws84{word-spacing:2.996770pt;}
.ws7d{word-spacing:3.060531pt;}
.ws24{word-spacing:3.124292pt;}
.ws9d{word-spacing:3.188053pt;}
.ws7{word-spacing:3.211639pt;}
.ws4d{word-spacing:3.251814pt;}
.wscb{word-spacing:3.315575pt;}
.wsc{word-spacing:3.386185pt;}
.ws1d{word-spacing:3.443098pt;}
.wse{word-spacing:3.444367pt;}
.ws26{word-spacing:3.506859pt;}
.ws93{word-spacing:3.634381pt;}
.wsc6{word-spacing:3.698142pt;}
.ws8a{word-spacing:3.761903pt;}
.ws49{word-spacing:3.889425pt;}
.ws62{word-spacing:3.953186pt;}
.wsc4{word-spacing:4.016947pt;}
.ws4a{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.wsf{word-spacing:4.142549pt;}
.wsc5{word-spacing:4.208230pt;}
.wsbc{word-spacing:4.271991pt;}
.ws89{word-spacing:4.335753pt;}
.ws10{word-spacing:4.375276pt;}
.wsec{word-spacing:4.399514pt;}
.ws51{word-spacing:4.527036pt;}
.ws29{word-spacing:4.590797pt;}
.ws77{word-spacing:4.654558pt;}
.ws35{word-spacing:4.718319pt;}
.ws87{word-spacing:4.782080pt;}
.ws9f{word-spacing:4.909602pt;}
.wsd8{word-spacing:5.037124pt;}
.ws5f{word-spacing:5.164646pt;}
.ws3e{word-spacing:5.292169pt;}
.ws74{word-spacing:5.355930pt;}
.ws44{word-spacing:5.419691pt;}
.wsc9{word-spacing:5.483452pt;}
.ws32{word-spacing:5.610974pt;}
.ws33{word-spacing:5.674735pt;}
.ws48{word-spacing:5.738496pt;}
.wsa{word-spacing:5.771641pt;}
.wsa0{word-spacing:5.802257pt;}
.wsa7{word-spacing:5.929779pt;}
.ws5b{word-spacing:5.993540pt;}
.ws3c{word-spacing:6.121062pt;}
.ws3f{word-spacing:6.184823pt;}
.wsae{word-spacing:6.248585pt;}
.ws2e{word-spacing:6.376107pt;}
.wsd3{word-spacing:6.439868pt;}
.wsc0{word-spacing:6.503629pt;}
.ws23{word-spacing:6.567390pt;}
.wsc7{word-spacing:6.694912pt;}
.ws5d{word-spacing:6.758673pt;}
.ws3a{word-spacing:6.822434pt;}
.ws8e{word-spacing:6.886195pt;}
.ws98{word-spacing:7.013717pt;}
.ws31{word-spacing:7.077478pt;}
.ws30{word-spacing:7.141239pt;}
.ws25{word-spacing:7.205001pt;}
.ws68{word-spacing:7.268762pt;}
.wsa9{word-spacing:7.332523pt;}
.wsbf{word-spacing:7.396284pt;}
.wsbb{word-spacing:7.460045pt;}
.ws14{word-spacing:7.633461pt;}
.wsd7{word-spacing:7.715089pt;}
.ws82{word-spacing:7.778850pt;}
.ws5e{word-spacing:7.842611pt;}
.ws4c{word-spacing:7.906372pt;}
.ws78{word-spacing:8.033894pt;}
.wsd1{word-spacing:8.161417pt;}
.wse6{word-spacing:8.225178pt;}
.ws34{word-spacing:8.288939pt;}
.ws4b{word-spacing:8.352700pt;}
.ws2a{word-spacing:8.416461pt;}
.wsb5{word-spacing:8.543983pt;}
.wsb1{word-spacing:8.607744pt;}
.ws97{word-spacing:8.671505pt;}
.wsb2{word-spacing:8.799027pt;}
.ws17{word-spacing:8.830849pt;}
.ws9{word-spacing:8.971644pt;}
.ws7a{word-spacing:8.990310pt;}
.ws28{word-spacing:9.054071pt;}
.ws13{word-spacing:9.146189pt;}
.wsa4{word-spacing:9.181594pt;}
.wsaa{word-spacing:9.245355pt;}
.ws8b{word-spacing:9.309116pt;}
.ws45{word-spacing:9.372877pt;}
.ws2c{word-spacing:9.436638pt;}
.wsa5{word-spacing:9.500399pt;}
.ws83{word-spacing:9.627921pt;}
.wsd2{word-spacing:9.691682pt;}
.ws52{word-spacing:9.882965pt;}
.ws9e{word-spacing:10.010487pt;}
.ws86{word-spacing:10.329293pt;}
.wsd6{word-spacing:10.393054pt;}
.ws6e{word-spacing:10.456815pt;}
.ws8{word-spacing:10.484372pt;}
.ws85{word-spacing:10.966903pt;}
.ws7c{word-spacing:11.030665pt;}
.wsb3{word-spacing:11.158187pt;}
.wsdf{word-spacing:11.221948pt;}
.wsda{word-spacing:11.285709pt;}
.ws94{word-spacing:11.413231pt;}
.wsd{word-spacing:11.415282pt;}
.ws8d{word-spacing:11.476992pt;}
.ws27{word-spacing:11.668275pt;}
.ws5c{word-spacing:11.923319pt;}
.wse5{word-spacing:11.987081pt;}
.ws96{word-spacing:12.178364pt;}
.ws50{word-spacing:12.369647pt;}
.ws46{word-spacing:12.497169pt;}
.wsb4{word-spacing:12.560930pt;}
.ws53{word-spacing:12.624691pt;}
.wsa8{word-spacing:12.688452pt;}
.wsde{word-spacing:12.752213pt;}
.ws73{word-spacing:12.879735pt;}
.ws9c{word-spacing:12.943497pt;}
.wsb8{word-spacing:13.198541pt;}
.wsc3{word-spacing:13.326063pt;}
.ws9a{word-spacing:13.644868pt;}
.wsd5{word-spacing:13.836151pt;}
.ws95{word-spacing:13.899913pt;}
.wsd4{word-spacing:13.963674pt;}
.ws12{word-spacing:14.033466pt;}
.wsc1{word-spacing:14.282479pt;}
.ws1e{word-spacing:14.983851pt;}
.ws1f{word-spacing:15.047612pt;}
.ws43{word-spacing:15.748983pt;}
.wsee{word-spacing:18.171904pt;}
.wse1{word-spacing:18.416838pt;}
.ws20{word-spacing:19.765931pt;}
.ws58{word-spacing:19.893453pt;}
.wse9{word-spacing:21.487479pt;}
.wsbd{word-spacing:21.717518pt;}
.wse8{word-spacing:21.742524pt;}
.wse4{word-spacing:22.252612pt;}
.wsea{word-spacing:22.443895pt;}
.wsb7{word-spacing:22.862051pt;}
.ws7e{word-spacing:23.591595pt;}
.ws1a{word-spacing:23.846639pt;}
.wsed{word-spacing:24.548011pt;}
.ws3b{word-spacing:25.313143pt;}
.wsd0{word-spacing:26.626485pt;}
.wse7{word-spacing:26.652126pt;}
.wsdd{word-spacing:27.672303pt;}
.wsab{word-spacing:27.927347pt;}
.ws1b{word-spacing:28.615887pt;}
.wsc8{word-spacing:30.022607pt;}
.ws21{word-spacing:34.338985pt;}
.ws64{word-spacing:34.706246pt;}
.wsd9{word-spacing:35.004826pt;}
.ws8c{word-spacing:37.736157pt;}
.wsbe{word-spacing:38.037518pt;}
.wse2{word-spacing:40.703602pt;}
.ws0{word-spacing:41.214800pt;}
.ws1c{word-spacing:42.158700pt;}
.ws4e{word-spacing:49.442002pt;}
.wscd{word-spacing:86.000687pt;}
.wsba{word-spacing:94.901972pt;}
.ws67{word-spacing:594.406168pt;}
.ws92{word-spacing:757.379454pt;}
._2b{margin-left:-34.239693pt;}
._1c{margin-left:-32.565890pt;}
._1d{margin-left:-31.565209pt;}
._35{margin-left:-8.196268pt;}
._30{margin-left:-6.067025pt;}
._7{margin-left:-4.770913pt;}
._0{margin-left:-3.416200pt;}
._2{margin-left:-2.065853pt;}
._4{margin-left:-1.017786pt;}
._9{width:1.117620pt;}
._3{width:2.065853pt;}
._1{width:3.416200pt;}
._37{width:5.626643pt;}
._2c{width:8.667433pt;}
._31{width:15.326711pt;}
._26{width:16.990523pt;}
._a{width:17.937338pt;}
._23{width:18.859721pt;}
._6{width:20.306265pt;}
._c{width:21.282399pt;}
._3a{width:23.055157pt;}
._5{width:24.261838pt;}
._10{width:25.413311pt;}
._21{width:27.008586pt;}
._b{width:28.509908pt;}
._d{width:29.514737pt;}
._8{width:30.952753pt;}
._e{width:32.133714pt;}
._34{width:33.414829pt;}
._1f{width:35.196109pt;}
._25{width:36.879395pt;}
._27{width:38.421602pt;}
._f{width:39.609687pt;}
._3e{width:40.714686pt;}
._24{width:42.209826pt;}
._32{width:43.132561pt;}
._36{width:44.035559pt;}
._20{width:45.109154pt;}
._22{width:46.277771pt;}
._3b{width:47.507615pt;}
._39{width:48.549860pt;}
._2f{width:50.975172pt;}
._33{width:52.122871pt;}
._3d{width:53.211855pt;}
._28{width:54.643234pt;}
._2e{width:56.029184pt;}
._15{width:57.767526pt;}
._38{width:59.515365pt;}
._3c{width:62.664365pt;}
._1b{width:63.824828pt;}
._3f{width:71.766325pt;}
._12{width:86.077200pt;}
._29{width:103.292400pt;}
._2a{width:135.492267pt;}
._13{width:175.214923pt;}
._2d{width:260.621119pt;}
._1a{width:318.460206pt;}
._16{width:392.602386pt;}
._17{width:429.773895pt;}
._19{width:1685.609962pt;}
._18{width:1733.854686pt;}
._11{width:1745.459200pt;}
._1e{width:1761.208183pt;}
._14{width:1762.636426pt;}
.fs9{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.fs7{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:56.149333pt;}
.y12c{bottom:90.421333pt;}
.y89{bottom:96.000000pt;}
.y20{bottom:96.012000pt;}
.y185{bottom:100.270667pt;}
.y12b{bottom:101.354667pt;}
.y1a9{bottom:107.028000pt;}
.y5d{bottom:108.784000pt;}
.y15d{bottom:112.270667pt;}
.y88{bottom:115.261333pt;}
.y1f{bottom:116.772000pt;}
.y184{bottom:119.532000pt;}
.y1a8{bottom:126.288000pt;}
.y5c{bottom:128.044000pt;}
.y15c{bottom:131.530667pt;}
.y104{bottom:134.522667pt;}
.y183{bottom:138.793333pt;}
.y12a{bottom:140.421333pt;}
.y143{bottom:140.700000pt;}
.y87{bottom:142.037333pt;}
.y5b{bottom:147.305333pt;}
.y15b{bottom:150.792000pt;}
.yc5{bottom:151.629333pt;}
.y86{bottom:152.970667pt;}
.y103{bottom:153.784000pt;}
.y1a7{bottom:156.498667pt;}
.y129{bottom:159.681333pt;}
.y142{bottom:159.961333pt;}
.yc4{bottom:166.020000pt;}
.y5a{bottom:166.566667pt;}
.y182{bottom:166.688000pt;}
.y15a{bottom:170.053333pt;}
.y102{bottom:173.044000pt;}
.yb0{bottom:173.786667pt;}
.y1a6{bottom:175.758667pt;}
.y128{bottom:178.942667pt;}
.y141{bottom:179.222667pt;}
.y59{bottom:185.828000pt;}
.y181{bottom:185.949333pt;}
.y159{bottom:189.314667pt;}
.y85{bottom:189.424000pt;}
.y101{bottom:192.305333pt;}
.yaf{bottom:193.048000pt;}
.y127{bottom:198.204000pt;}
.y140{bottom:198.482667pt;}
.y58{bottom:205.089333pt;}
.y180{bottom:205.210667pt;}
.y1a5{bottom:205.968000pt;}
.yc3{bottom:208.454667pt;}
.y158{bottom:208.576000pt;}
.y84{bottom:208.685333pt;}
.y100{bottom:211.566667pt;}
.yae{bottom:212.308000pt;}
.y13f{bottom:217.744000pt;}
.y57{bottom:224.350667pt;}
.y17f{bottom:224.472000pt;}
.y126{bottom:224.822667pt;}
.y1a4{bottom:225.229333pt;}
.yc2{bottom:227.714667pt;}
.y157{bottom:227.837333pt;}
.y83{bottom:227.945333pt;}
.yff{bottom:230.828000pt;}
.yad{bottom:231.569333pt;}
.y13e{bottom:237.005333pt;}
.y56{bottom:243.610667pt;}
.y17e{bottom:243.733333pt;}
.y125{bottom:244.084000pt;}
.y1a3{bottom:244.490667pt;}
.yc1{bottom:246.976000pt;}
.y156{bottom:247.097333pt;}
.y82{bottom:247.206667pt;}
.yfe{bottom:250.089333pt;}
.yac{bottom:250.830667pt;}
.y1e{bottom:261.385333pt;}
.y55{bottom:262.872000pt;}
.y17d{bottom:262.994667pt;}
.y124{bottom:263.345333pt;}
.yc0{bottom:266.237333pt;}
.y155{bottom:266.358667pt;}
.y13d{bottom:266.561333pt;}
.yfd{bottom:269.350667pt;}
.yab{bottom:270.092000pt;}
.y1a2{bottom:274.700000pt;}
.y1d{bottom:279.450667pt;}
.y54{bottom:282.133333pt;}
.y81{bottom:282.253333pt;}
.y17c{bottom:282.254667pt;}
.ybf{bottom:285.498667pt;}
.y154{bottom:285.620000pt;}
.y123{bottom:287.086667pt;}
.yfc{bottom:288.610667pt;}
.yaa{bottom:289.353333pt;}
.y1a1{bottom:293.961333pt;}
.y1c{bottom:297.516000pt;}
.y122{bottom:298.020000pt;}
.y53{bottom:301.394667pt;}
.y17b{bottom:301.516000pt;}
.ybe{bottom:304.760000pt;}
.y153{bottom:304.881333pt;}
.yfb{bottom:307.872000pt;}
.ya9{bottom:308.613333pt;}
.y80{bottom:311.477333pt;}
.y13c{bottom:312.777333pt;}
.y1b{bottom:315.581333pt;}
.y52{bottom:320.656000pt;}
.y17a{bottom:320.777333pt;}
.y152{bottom:324.142667pt;}
.y1a0{bottom:324.170667pt;}
.y121{bottom:324.213333pt;}
.ya8{bottom:327.874667pt;}
.y13b{bottom:332.038667pt;}
.y1a{bottom:333.646667pt;}
.yfa{bottom:338.761333pt;}
.ybd{bottom:339.806667pt;}
.y51{bottom:339.917333pt;}
.y179{bottom:340.038667pt;}
.y151{bottom:343.404000pt;}
.y19f{bottom:343.432000pt;}
.y120{bottom:343.474667pt;}
.ya7{bottom:347.136000pt;}
.y13a{bottom:351.298667pt;}
.y19{bottom:351.713333pt;}
.y50{bottom:359.177333pt;}
.y178{bottom:359.300000pt;}
.y150{bottom:362.664000pt;}
.y19e{bottom:362.693333pt;}
.y7f{bottom:364.490667pt;}
.ya6{bottom:366.397333pt;}
.ybc{bottom:369.029333pt;}
.yf9{bottom:369.649333pt;}
.y18{bottom:369.778667pt;}
.y11f{bottom:373.029333pt;}
.y4f{bottom:378.438667pt;}
.y177{bottom:378.561333pt;}
.y139{bottom:379.194667pt;}
.y14f{bottom:381.925333pt;}
.y7e{bottom:383.752000pt;}
.ya5{bottom:385.658667pt;}
.y17{bottom:387.844000pt;}
.yf8{bottom:388.910667pt;}
.y19d{bottom:392.902667pt;}
.y4e{bottom:397.700000pt;}
.y138{bottom:398.456000pt;}
.y14e{bottom:401.186667pt;}
.y7d{bottom:403.013333pt;}
.ya4{bottom:404.920000pt;}
.y16{bottom:405.909333pt;}
.yf7{bottom:408.172000pt;}
.y19c{bottom:412.164000pt;}
.y4d{bottom:416.961333pt;}
.y137{bottom:417.717333pt;}
.ybb{bottom:418.670667pt;}
.y11e{bottom:418.805333pt;}
.y176{bottom:420.126667pt;}
.y14d{bottom:420.448000pt;}
.y7c{bottom:422.274667pt;}
.y15{bottom:423.974667pt;}
.yf6{bottom:427.433333pt;}
.ya3{bottom:428.430667pt;}
.y19b{bottom:431.425333pt;}
.y4c{bottom:436.222667pt;}
.yba{bottom:437.932000pt;}
.y11d{bottom:438.066667pt;}
.y175{bottom:439.388000pt;}
.y14c{bottom:439.709333pt;}
.y7b{bottom:441.536000pt;}
.y14{bottom:442.040000pt;}
.yf5{bottom:446.694667pt;}
.ya0{bottom:446.762667pt;}
.y136{bottom:449.524000pt;}
.y4b{bottom:455.484000pt;}
.y135{bottom:457.118667pt;}
.yb9{bottom:457.193333pt;}
.y11c{bottom:457.328000pt;}
.y174{bottom:458.649333pt;}
.y14b{bottom:458.970667pt;}
.y13{bottom:460.106667pt;}
.y7a{bottom:460.797333pt;}
.y19a{bottom:461.634667pt;}
.ya2{bottom:461.905333pt;}
.yf4{bottom:465.954667pt;}
.ya1{bottom:466.688000pt;}
.y134{bottom:468.052000pt;}
.y4a{bottom:474.744000pt;}
.yb8{bottom:476.454667pt;}
.y11b{bottom:476.589333pt;}
.y9f{bottom:476.872000pt;}
.y173{bottom:477.910667pt;}
.y12{bottom:478.172000pt;}
.y14a{bottom:478.230667pt;}
.y79{bottom:480.057333pt;}
.y199{bottom:480.894667pt;}
.yf3{bottom:485.216000pt;}
.y49{bottom:494.005333pt;}
.yb7{bottom:495.716000pt;}
.y9e{bottom:496.133333pt;}
.y11{bottom:496.237333pt;}
.y172{bottom:497.172000pt;}
.y149{bottom:497.492000pt;}
.y78{bottom:499.318667pt;}
.yf2{bottom:504.477333pt;}
.y11a{bottom:504.870667pt;}
.y119{bottom:508.812000pt;}
.y133{bottom:509.477333pt;}
.y198{bottom:511.105333pt;}
.y48{bottom:513.266667pt;}
.y10{bottom:514.302667pt;}
.yb6{bottom:514.977333pt;}
.y171{bottom:516.432000pt;}
.y77{bottom:518.580000pt;}
.yf1{bottom:523.738667pt;}
.y30{bottom:526.137333pt;}
.yde{bottom:526.173333pt;}
.y9c{bottom:528.456000pt;}
.y132{bottom:528.737333pt;}
.y197{bottom:530.365333pt;}
.yf{bottom:532.368000pt;}
.y47{bottom:532.528000pt;}
.y148{bottom:532.538667pt;}
.y170{bottom:535.693333pt;}
.y76{bottom:537.841333pt;}
.y9b{bottom:539.390667pt;}
.y118{bottom:541.034667pt;}
.yf0{bottom:543.000000pt;}
.ydd{bottom:545.434667pt;}
.y131{bottom:547.998667pt;}
.y9d{bottom:550.174667pt;}
.ye{bottom:550.434667pt;}
.y46{bottom:551.789333pt;}
.y16f{bottom:554.954667pt;}
.y75{bottom:557.102667pt;}
.y117{bottom:560.296000pt;}
.y196{bottom:560.574667pt;}
.y2f{bottom:561.006667pt;}
.y147{bottom:561.762667pt;}
.yef{bottom:562.261333pt;}
.ydc{bottom:564.696000pt;}
.y130{bottom:567.260000pt;}
.yd{bottom:568.500000pt;}
.y45{bottom:571.049333pt;}
.yb5{bottom:571.874667pt;}
.y16e{bottom:574.216000pt;}
.y74{bottom:576.364000pt;}
.y116{bottom:579.557333pt;}
.y195{bottom:579.836000pt;}
.y2e{bottom:580.266667pt;}
.yee{bottom:581.521333pt;}
.y9a{bottom:582.497333pt;}
.ydb{bottom:583.957333pt;}
.yc{bottom:586.565333pt;}
.y44{bottom:590.310667pt;}
.yb4{bottom:591.136000pt;}
.y16d{bottom:593.477333pt;}
.y73{bottom:595.624000pt;}
.y115{bottom:598.818667pt;}
.y2d{bottom:599.528000pt;}
.yed{bottom:600.782667pt;}
.y99{bottom:601.758667pt;}
.yda{bottom:603.218667pt;}
.yb{bottom:604.630667pt;}
.y146{bottom:607.369333pt;}
.y43{bottom:609.572000pt;}
.y12f{bottom:609.766667pt;}
.y194{bottom:610.045333pt;}
.yb3{bottom:610.396000pt;}
.y16c{bottom:612.738667pt;}
.y72{bottom:614.885333pt;}
.y114{bottom:618.078667pt;}
.y2c{bottom:618.789333pt;}
.yec{bottom:620.044000pt;}
.y98{bottom:621.020000pt;}
.yd9{bottom:622.478667pt;}
.ya{bottom:622.696000pt;}
.y145{bottom:626.630667pt;}
.y42{bottom:628.833333pt;}
.y12e{bottom:629.028000pt;}
.y193{bottom:629.306667pt;}
.yb2{bottom:629.657333pt;}
.y16b{bottom:631.998667pt;}
.y71{bottom:634.146667pt;}
.yeb{bottom:639.305333pt;}
.y97{bottom:640.280000pt;}
.y9{bottom:640.762667pt;}
.yd8{bottom:641.740000pt;}
.y144{bottom:645.890667pt;}
.y41{bottom:648.094667pt;}
.y12d{bottom:648.289333pt;}
.y192{bottom:648.568000pt;}
.yb1{bottom:648.918667pt;}
.y113{bottom:650.302667pt;}
.y16a{bottom:651.260000pt;}
.y70{bottom:653.408000pt;}
.y2b{bottom:653.658667pt;}
.yea{bottom:658.566667pt;}
.y8{bottom:658.828000pt;}
.y96{bottom:659.541333pt;}
.yd7{bottom:661.001333pt;}
.y40{bottom:667.356000pt;}
.y169{bottom:670.521333pt;}
.y6f{bottom:672.669333pt;}
.y2a{bottom:672.920000pt;}
.ye9{bottom:677.828000pt;}
.y191{bottom:678.777333pt;}
.y95{bottom:678.802667pt;}
.yd6{bottom:680.262667pt;}
.y112{bottom:682.525333pt;}
.y7{bottom:685.798667pt;}
.y3f{bottom:686.616000pt;}
.y168{bottom:689.782667pt;}
.y6e{bottom:691.929333pt;}
.ye8{bottom:697.088000pt;}
.y190{bottom:698.038667pt;}
.yd5{bottom:699.524000pt;}
.y111{bottom:701.786667pt;}
.y3e{bottom:705.877333pt;}
.y167{bottom:709.044000pt;}
.y94{bottom:710.240000pt;}
.y6d{bottom:711.190667pt;}
.ye7{bottom:716.349333pt;}
.y18f{bottom:717.300000pt;}
.yd4{bottom:718.785333pt;}
.y93{bottom:721.174667pt;}
.y3d{bottom:725.138667pt;}
.y10f{bottom:727.145333pt;}
.y29{bottom:727.298667pt;}
.y166{bottom:728.305333pt;}
.y6c{bottom:730.452000pt;}
.y110{bottom:734.138667pt;}
.ye6{bottom:735.610667pt;}
.yd3{bottom:738.045333pt;}
.y10e{bottom:738.080000pt;}
.y3c{bottom:744.400000pt;}
.y18e{bottom:747.509333pt;}
.y165{bottom:747.565333pt;}
.y6b{bottom:749.713333pt;}
.ye5{bottom:754.872000pt;}
.yd2{bottom:757.306667pt;}
.y92{bottom:759.189333pt;}
.y6{bottom:761.813333pt;}
.y28{bottom:762.168000pt;}
.y3b{bottom:763.661333pt;}
.y18d{bottom:766.770667pt;}
.y164{bottom:766.826667pt;}
.y6a{bottom:768.974667pt;}
.ye4{bottom:774.133333pt;}
.y10d{bottom:774.672000pt;}
.yd1{bottom:776.568000pt;}
.y91{bottom:778.450667pt;}
.y3a{bottom:782.922667pt;}
.y18c{bottom:786.032000pt;}
.y163{bottom:786.088000pt;}
.y69{bottom:788.236000pt;}
.ye3{bottom:793.393333pt;}
.y10c{bottom:793.933333pt;}
.yd0{bottom:795.829333pt;}
.y27{bottom:797.037333pt;}
.y90{bottom:797.712000pt;}
.y5{bottom:799.206667pt;}
.y39{bottom:802.182667pt;}
.y162{bottom:805.349333pt;}
.y68{bottom:807.496000pt;}
.ye2{bottom:812.654667pt;}
.ycf{bottom:815.090667pt;}
.y18b{bottom:816.241333pt;}
.y8f{bottom:816.973333pt;}
.y38{bottom:821.444000pt;}
.y10b{bottom:823.489333pt;}
.y161{bottom:824.610667pt;}
.y67{bottom:826.757333pt;}
.ye1{bottom:831.916000pt;}
.yce{bottom:834.352000pt;}
.y18a{bottom:835.501333pt;}
.y8e{bottom:836.234667pt;}
.y37{bottom:840.705333pt;}
.y160{bottom:843.870667pt;}
.y66{bottom:846.018667pt;}
.y4{bottom:846.528000pt;}
.ye0{bottom:851.177333pt;}
.y26{bottom:851.416000pt;}
.ycd{bottom:853.612000pt;}
.y189{bottom:854.762667pt;}
.y36{bottom:859.966667pt;}
.y15f{bottom:863.132000pt;}
.y10a{bottom:869.265333pt;}
.y8d{bottom:871.436000pt;}
.ycc{bottom:872.873333pt;}
.y35{bottom:879.228000pt;}
.y3{bottom:879.737333pt;}
.y65{bottom:881.065333pt;}
.y188{bottom:884.972000pt;}
.y25{bottom:886.285333pt;}
.y109{bottom:888.526667pt;}
.ydf{bottom:891.028000pt;}
.ycb{bottom:892.134667pt;}
.y15e{bottom:898.333333pt;}
.y34{bottom:898.489333pt;}
.y187{bottom:904.233333pt;}
.y8c{bottom:906.637333pt;}
.y108{bottom:907.786667pt;}
.yca{bottom:911.396000pt;}
.y2{bottom:912.945333pt;}
.y62{bottom:914.273333pt;}
.y33{bottom:917.749333pt;}
.y24{bottom:921.154667pt;}
.y107{bottom:927.048000pt;}
.y64{bottom:930.878667pt;}
.y61{bottom:933.534667pt;}
.y32{bottom:937.010667pt;}
.y8b{bottom:938.960000pt;}
.y186{bottom:939.280000pt;}
.yc9{bottom:942.213333pt;}
.y1{bottom:946.154667pt;}
.y106{bottom:946.309333pt;}
.y8a{bottom:949.894667pt;}
.y60{bottom:952.796000pt;}
.y31{bottom:956.272000pt;}
.yc6{bottom:960.545333pt;}
.y63{bottom:970.729333pt;}
.y5f{bottom:972.057333pt;}
.y23{bottom:975.533333pt;}
.yc8{bottom:975.688000pt;}
.yc7{bottom:980.470667pt;}
.y105{bottom:981.356000pt;}
.y5e{bottom:991.318667pt;}
.y22{bottom:1010.580000pt;}
.h12{height:2.550443pt;}
.h6{height:18.179376pt;}
.h11{height:29.032418pt;}
.h13{height:29.925069pt;}
.h7{height:37.459376pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.ha{height:44.632747pt;}
.h8{height:47.820800pt;}
.h15{height:53.061069pt;}
.h1b{height:53.066402pt;}
.hb{height:53.559147pt;}
.h16{height:56.250402pt;}
.h1d{height:56.255735pt;}
.h3{height:57.384800pt;}
.h19{height:63.586133pt;}
.h18{height:64.111735pt;}
.h9{height:64.270827pt;}
.h1a{height:72.015735pt;}
.h2{height:77.140000pt;}
.hf{height:90.951467pt;}
.hd{height:90.956800pt;}
.he{height:91.554133pt;}
.h10{height:91.559467pt;}
.hc{height:92.538507pt;}
.h14{height:98.399983pt;}
.h1c{height:106.859776pt;}
.h17{height:117.995776pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x2d{left:103.804000pt;}
.x3{left:105.736000pt;}
.xa{left:113.952000pt;}
.xd{left:119.412000pt;}
.x2e{left:128.082667pt;}
.x9{left:135.020000pt;}
.x4{left:137.429333pt;}
.x8{left:156.838667pt;}
.x1{left:165.745333pt;}
.x1f{left:228.898667pt;}
.x2{left:275.516000pt;}
.xe{left:280.026667pt;}
.x14{left:287.498667pt;}
.x10{left:291.818667pt;}
.x28{left:297.292000pt;}
.x17{left:301.374667pt;}
.x24{left:307.024000pt;}
.x20{left:311.992000pt;}
.x1e{left:313.836000pt;}
.x1b{left:315.428000pt;}
.x5{left:317.777333pt;}
.x11{left:320.172000pt;}
.x2c{left:322.692000pt;}
.x6{left:334.550667pt;}
.x15{left:350.653333pt;}
.x21{left:352.224000pt;}
.x29{left:355.564000pt;}
.x26{left:357.477333pt;}
.x25{left:361.630667pt;}
.x7{left:364.849333pt;}
.x12{left:366.168000pt;}
.x2a{left:368.373333pt;}
.xf{left:370.616000pt;}
.x18{left:371.992000pt;}
.x19{left:374.277333pt;}
.x1c{left:381.000000pt;}
.x22{left:387.785333pt;}
.x1d{left:389.046667pt;}
.xc{left:392.948000pt;}
.x27{left:397.413333pt;}
.x1a{left:402.244000pt;}
.x2b{left:404.124000pt;}
.x13{left:406.805333pt;}
.x16{left:417.488000pt;}
.x23{left:422.952000pt;}
}




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