
    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_bc7e40f78e2000dafaf82ebd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4c45d0c9d567faf95f213b47.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_5ba18620969fb070b7b4774d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_800e24e7686d20c122542d4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_44b24f1720e13d495d2c19f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3170f349424ba4bef5ed5cb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_79a49e9a47b40052580b566b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.664000;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_7c50f8ad9bb2049e237c98ce.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;}
.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.696000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.933349px;}
.v1{vertical-align:26.028000px;}
.v4{vertical-align:33.525102px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.990525px;}
.ls4{letter-spacing:2.990915px;}
.ls0{letter-spacing:23.413974px;}
.ls6{letter-spacing:30.344915px;}
.ls3{letter-spacing:35.117578px;}
.ls2{letter-spacing:35.865600px;}
.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;}
}
.ws23{word-spacing:-40.528128px;}
.ws25{word-spacing:-34.359245px;}
.ws24{word-spacing:-33.355008px;}
.ws1f{word-spacing:-32.278875px;}
.ws26{word-spacing:-23.671296px;}
.ws1{word-spacing:-22.416000px;}
.ws6{word-spacing:-19.510886px;}
.ws22{word-spacing:-19.439155px;}
.ws6d{word-spacing:-16.927060px;}
.wsbd{word-spacing:-15.095183px;}
.wsaf{word-spacing:-13.995205px;}
.wsb0{word-spacing:-12.181427px;}
.wsa6{word-spacing:-11.382651px;}
.wsb6{word-spacing:-3.873485px;}
.ws13{word-spacing:-3.658291px;}
.ws5b{word-spacing:-3.299635px;}
.wsad{word-spacing:-3.012710px;}
.ws3b{word-spacing:-2.869248px;}
.ws39{word-spacing:-2.654054px;}
.ws66{word-spacing:-2.510592px;}
.ws88{word-spacing:-2.438861px;}
.ws80{word-spacing:-2.008474px;}
.ws1a{word-spacing:-1.434624px;}
.ws79{word-spacing:-1.362893px;}
.ws98{word-spacing:-1.219430px;}
.ws89{word-spacing:-1.187863px;}
.wsb4{word-spacing:-1.075968px;}
.ws8a{word-spacing:-1.004237px;}
.ws61{word-spacing:-0.789043px;}
.ws4d{word-spacing:-0.573850px;}
.ws7e{word-spacing:-0.286925px;}
.ws3c{word-spacing:-0.185670px;}
.ws51{word-spacing:-0.107597px;}
.ws52{word-spacing:-0.071731px;}
.ws55{word-spacing:-0.059776px;}
.ws92{word-spacing:-0.054816px;}
.ws9c{word-spacing:-0.041848px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:0.071731px;}
.ws81{word-spacing:0.286925px;}
.ws8e{word-spacing:0.430387px;}
.ws63{word-spacing:0.645581px;}
.ws44{word-spacing:0.717312px;}
.ws83{word-spacing:0.789043px;}
.wsc0{word-spacing:1.075968px;}
.ws15{word-spacing:1.291162px;}
.ws7b{word-spacing:1.362893px;}
.ws11{word-spacing:1.506355px;}
.ws2f{word-spacing:1.578086px;}
.ws7a{word-spacing:1.721549px;}
.ws17{word-spacing:1.793280px;}
.ws86{word-spacing:1.865011px;}
.ws48{word-spacing:2.008474px;}
.ws4c{word-spacing:2.080205px;}
.ws78{word-spacing:2.151936px;}
.ws5a{word-spacing:2.223667px;}
.ws9b{word-spacing:2.259791px;}
.ws5e{word-spacing:2.295398px;}
.wsa7{word-spacing:2.301639px;}
.wsb1{word-spacing:2.418372px;}
.ws2d{word-spacing:2.438861px;}
.wsb2{word-spacing:2.463156px;}
.ws99{word-spacing:2.615499px;}
.ws1b{word-spacing:2.654054px;}
.ws3d{word-spacing:2.725786px;}
.wsae{word-spacing:2.799041px;}
.ws60{word-spacing:2.940979px;}
.ws91{word-spacing:2.960040px;}
.wsb9{word-spacing:2.996838px;}
.wsba{word-spacing:3.052335px;}
.ws96{word-spacing:3.084442px;}
.wsc2{word-spacing:3.299635px;}
.ws6c{word-spacing:3.360519px;}
.ws90{word-spacing:3.425972px;}
.wsb8{word-spacing:3.468562px;}
.wsab{word-spacing:3.514829px;}
.ws37{word-spacing:3.658291px;}
.ws38{word-spacing:3.730022px;}
.ws2{word-spacing:3.873485px;}
.ws6b{word-spacing:3.889490px;}
.ws9{word-spacing:3.945216px;}
.ws3e{word-spacing:4.016947px;}
.ws8b{word-spacing:4.088678px;}
.ws76{word-spacing:4.232141px;}
.wsbf{word-spacing:4.303872px;}
.ws5d{word-spacing:4.375603px;}
.ws97{word-spacing:4.447334px;}
.ws0{word-spacing:4.483200px;}
.ws68{word-spacing:4.519066px;}
.ws3{word-spacing:4.648169px;}
.ws19{word-spacing:4.805990px;}
.ws3f{word-spacing:5.021184px;}
.ws16{word-spacing:5.092915px;}
.ws75{word-spacing:5.293748px;}
.ws3a{word-spacing:5.379825px;}
.wsac{word-spacing:5.379840px;}
.ws5c{word-spacing:5.451571px;}
.ws62{word-spacing:5.523302px;}
.ws6a{word-spacing:5.666765px;}
.ws5f{word-spacing:5.810227px;}
.ws1c{word-spacing:5.953690px;}
.ws59{word-spacing:6.025421px;}
.ws32{word-spacing:6.097152px;}
.ws12{word-spacing:6.168883px;}
.ws95{word-spacing:6.384077px;}
.ws4{word-spacing:6.455775px;}
.wsc1{word-spacing:6.455808px;}
.ws45{word-spacing:6.599270px;}
.ws7f{word-spacing:6.671002px;}
.ws4b{word-spacing:6.886195px;}
.ws31{word-spacing:6.957926px;}
.ws2a{word-spacing:7.173120px;}
.ws67{word-spacing:7.244851px;}
.ws54{word-spacing:7.316582px;}
.ws2e{word-spacing:7.388314px;}
.wsbe{word-spacing:7.531776px;}
.ws29{word-spacing:7.818701px;}
.wsb3{word-spacing:7.890432px;}
.ws47{word-spacing:7.962163px;}
.ws4e{word-spacing:8.033894px;}
.ws82{word-spacing:8.177357px;}
.ws53{word-spacing:8.356685px;}
.ws7c{word-spacing:8.392550px;}
.wsb7{word-spacing:8.464282px;}
.ws49{word-spacing:8.751206px;}
.ws18{word-spacing:8.822938px;}
.ws46{word-spacing:8.894669px;}
.ws33{word-spacing:9.109862px;}
.wsb5{word-spacing:9.181594px;}
.ws8f{word-spacing:9.325056px;}
.ws41{word-spacing:9.396787px;}
.ws84{word-spacing:9.468518px;}
.ws14{word-spacing:9.683712px;}
.ws42{word-spacing:9.800256px;}
.wsc3{word-spacing:10.114099px;}
.ws7d{word-spacing:10.185830px;}
.ws4f{word-spacing:10.257562px;}
.ws8c{word-spacing:10.329293px;}
.ws4a{word-spacing:10.401024px;}
.ws85{word-spacing:10.616218px;}
.wsc6{word-spacing:10.903142px;}
.ws77{word-spacing:10.974874px;}
.ws57{word-spacing:11.692186px;}
.wsb{word-spacing:11.695811px;}
.ws2c{word-spacing:11.907379px;}
.ws28{word-spacing:12.122573px;}
.wsc4{word-spacing:12.194304px;}
.ws34{word-spacing:12.266035px;}
.ws8d{word-spacing:12.481229px;}
.ws58{word-spacing:12.552960px;}
.ws43{word-spacing:12.696422px;}
.ws1e{word-spacing:12.839885px;}
.ws36{word-spacing:13.055078px;}
.ws69{word-spacing:13.413734px;}
.ws56{word-spacing:13.449600px;}
.wsc5{word-spacing:13.557197px;}
.ws50{word-spacing:13.772390px;}
.ws40{word-spacing:13.844122px;}
.ws5{word-spacing:14.030584px;}
.ws2b{word-spacing:14.059315px;}
.ws1d{word-spacing:14.202778px;}
.ws64{word-spacing:14.274509px;}
.ws30{word-spacing:14.776627px;}
.ws35{word-spacing:15.493939px;}
.ws65{word-spacing:15.852595px;}
.ws21{word-spacing:16.354714px;}
.ws8{word-spacing:23.384371px;}
.ws20{word-spacing:42.572467px;}
.wsf{word-spacing:49.315200px;}
.ws87{word-spacing:69.937725px;}
.ws27{word-spacing:83.925075px;}
.ws93{word-spacing:124.693962px;}
.ws9f{word-spacing:133.393950px;}
.wsa1{word-spacing:147.304219px;}
.wsa9{word-spacing:175.874957px;}
.ws9e{word-spacing:176.716101px;}
.wsa5{word-spacing:179.200751px;}
.ws94{word-spacing:181.378721px;}
.wsaa{word-spacing:196.924492px;}
.ws9a{word-spacing:204.175627px;}
.wsa2{word-spacing:209.306189px;}
.wsa3{word-spacing:219.584054px;}
.ws9d{word-spacing:222.387869px;}
.ws6f{word-spacing:248.647452px;}
.wsa8{word-spacing:272.049989px;}
.wsbb{word-spacing:334.744401px;}
.ws72{word-spacing:336.083183px;}
.wsa0{word-spacing:414.048081px;}
.wsc{word-spacing:414.316368px;}
.wsd{word-spacing:421.080620px;}
.wsbc{word-spacing:421.519502px;}
.ws70{word-spacing:432.125578px;}
.wsa{word-spacing:475.811526px;}
.ws74{word-spacing:503.088913px;}
.ws6e{word-spacing:508.142138px;}
.wse{word-spacing:514.610932px;}
.wsa4{word-spacing:519.429670px;}
.ws71{word-spacing:531.423068px;}
.ws73{word-spacing:542.830164px;}
._34{margin-left:-37.802342px;}
._2a{margin-left:-35.865600px;}
._33{margin-left:-33.928858px;}
._2c{margin-left:-14.202778px;}
._2b{margin-left:-12.481229px;}
._6{margin-left:-10.687883px;}
._26{margin-left:-8.016505px;}
._46{margin-left:-7.003818px;}
._d{margin-left:-5.881958px;}
._1{margin-left:-4.519066px;}
._11{margin-left:-3.514829px;}
._0{margin-left:-2.223667px;}
._c{margin-left:-1.004237px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._1c{width:4.662528px;}
._47{width:5.738496px;}
._42{width:10.831411px;}
._41{width:12.624691px;}
._1d{width:16.856832px;}
._3f{width:18.202335px;}
._21{width:19.295693px;}
._48{width:20.756156px;}
._1b{width:22.021478px;}
._27{width:23.384371px;}
._28{width:24.890726px;}
._45{width:26.684006px;}
._3c{width:27.903437px;}
._44{width:28.907674px;}
._1e{width:30.557491px;}
._4{width:31.561728px;}
._55{width:32.565965px;}
._20{width:33.667772px;}
._32{width:35.937331px;}
._3d{width:37.371955px;}
._31{width:38.465313px;}
._2f{width:40.760711px;}
._37{width:42.195335px;}
._49{width:43.971226px;}
._1f{width:45.621043px;}
._68{width:46.768742px;}
._30{width:47.790369px;}
._35{width:51.359539px;}
._36{width:53.798400px;}
._59{width:54.886654px;}
._6d{width:56.222858px;}
._4a{width:58.102272px;}
._2e{width:60.056404px;}
._43{width:61.186714px;}
._54{width:62.507794px;}
._24{width:64.988467px;}
._38{width:66.870868px;}
._7{width:72.000735px;}
._5b{width:74.330735px;}
._e{width:76.096587px;}
._b{width:84.058750px;}
._40{width:96.836850px;}
._67{width:98.765384px;}
._2d{width:107.309875px;}
._18{width:112.707105px;}
._3e{width:116.203950px;}
._f{width:118.382129px;}
._50{width:130.214043px;}
._69{width:136.085891px;}
._5f{width:139.603791px;}
._29{width:143.175475px;}
._8{width:155.108504px;}
._4c{width:165.642999px;}
._4d{width:174.680399px;}
._6b{width:181.035341px;}
._14{width:184.851302px;}
._4b{width:191.725307px;}
._61{width:196.288550px;}
._63{width:213.027595px;}
._5c{width:214.152937px;}
._a{width:218.203267px;}
._5a{width:236.280002px;}
._19{width:251.220052px;}
._12{width:253.569792px;}
._15{width:260.473377px;}
._64{width:268.841193px;}
._65{width:296.101083px;}
._58{width:313.637676px;}
._66{width:333.172671px;}
._10{width:336.710383px;}
._5d{width:340.648806px;}
._6c{width:349.010916px;}
._16{width:361.901293px;}
._4e{width:387.101215px;}
._6a{width:414.336531px;}
._5e{width:426.276174px;}
._1a{width:429.687277px;}
._57{width:436.620728px;}
._9{width:445.655729px;}
._60{width:496.352371px;}
._53{width:525.069198px;}
._4f{width:555.537905px;}
._52{width:558.178526px;}
._51{width:559.757224px;}
._62{width:634.050903px;}
._3a{width:911.631821px;}
._13{width:964.139059px;}
._17{width:986.321389px;}
._39{width:1402.129766px;}
._56{width:1421.834392px;}
._5{width:1455.948156px;}
._22{width:1456.952392px;}
._25{width:1621.125120px;}
._23{width:2118.150605px;}
._3b{width:2135.653018px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs8{font-size:41.847982px;}
.fs9{font-size:44.784657px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:54.815548px;}
.fsa{font-size:55.496995px;}
.fs5{font-size:59.775600px;}
.fs6{font-size:62.231837px;}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yd1{bottom:110.311500px;}
.yf0{bottom:114.744000px;}
.y86{bottom:115.735500px;}
.yac{bottom:123.585000px;}
.y146{bottom:126.247500px;}
.yd0{bottom:131.980500px;}
.yef{bottom:136.411500px;}
.y85{bottom:141.373500px;}
.yab{bottom:145.254000px;}
.y145{bottom:149.517000px;}
.ya{bottom:151.408500px;}
.ycf{bottom:153.649500px;}
.y84{bottom:163.042500px;}
.yaa{bottom:166.923000px;}
.y144{bottom:171.184500px;}
.yee{bottom:173.025000px;}
.y9{bottom:173.077500px;}
.y64{bottom:175.503000px;}
.yce{bottom:186.900000px;}
.ya9{bottom:188.592000px;}
.y143{bottom:192.853500px;}
.yed{bottom:194.694000px;}
.y112{bottom:198.051000px;}
.y83{bottom:198.537000px;}
.ya8{bottom:210.261000px;}
.y63{bottom:212.116500px;}
.y142{bottom:214.522500px;}
.y82{bottom:220.206000px;}
.yec{bottom:231.306000px;}
.ya7{bottom:231.928500px;}
.y111{bottom:232.365921px;}
.ycd{bottom:238.576500px;}
.y62{bottom:248.728500px;}
.y110{bottom:249.381153px;}
.yeb{bottom:252.975000px;}
.ya6{bottom:253.597500px;}
.y81{bottom:256.830000px;}
.y141{bottom:257.113500px;}
.ycc{bottom:260.245500px;}
.y10f{bottom:266.397531px;}
.ya5{bottom:275.266500px;}
.ycb{bottom:281.914500px;}
.y10e{bottom:283.412763px;}
.y61{bottom:285.340500px;}
.yea{bottom:289.587000px;}
.y80{bottom:290.080500px;}
.y140{bottom:290.147469px;}
.ya4{bottom:296.935500px;}
.y10d{bottom:300.427995px;}
.y13f{bottom:302.789164px;}
.yca{bottom:303.582000px;}
.y60{bottom:307.009500px;}
.ye9{bottom:311.256000px;}
.y13b{bottom:315.343349px;}
.y13e{bottom:315.430859px;}
.y16e{bottom:316.098000px;}
.y10c{bottom:317.443227px;}
.y19f{bottom:324.685500px;}
.y13d{bottom:328.072553px;}
.ya3{bottom:330.186000px;}
.y10b{bottom:334.459605px;}
.yc9{bottom:336.832500px;}
.y16d{bottom:337.765500px;}
.y13c{bottom:340.713373px;}
.y7f{bottom:341.496000px;}
.y5f{bottom:343.623000px;}
.y19e{bottom:346.353000px;}
.ye8{bottom:347.869500px;}
.y10a{bottom:351.018621px;}
.y13a{bottom:353.704232px;}
.y16c{bottom:359.434500px;}
.y7e{bottom:363.165000px;}
.y139{bottom:366.345927px;}
.y19d{bottom:368.022000px;}
.y109{bottom:368.033853px;}
.ye7{bottom:369.538500px;}
.y136{bottom:372.579264px;}
.y138{bottom:378.986746px;}
.y5e{bottom:380.235000px;}
.y16b{bottom:381.103500px;}
.ya2{bottom:382.177500px;}
.y7d{bottom:384.834000px;}
.y108{bottom:385.049085px;}
.yc8{bottom:388.509000px;}
.y19c{bottom:389.691000px;}
.y137{bottom:391.628441px;}
.y107{bottom:401.608101px;}
.y5d{bottom:401.904000px;}
.y16a{bottom:402.772500px;}
.ya1{bottom:403.846500px;}
.y135{bottom:404.618425px;}
.y7c{bottom:406.501500px;}
.yc7{bottom:410.178000px;}
.ye6{bottom:410.634000px;}
.y19b{bottom:411.360000px;}
.y132{bottom:417.173485px;}
.y134{bottom:417.260120px;}
.y106{bottom:418.623333px;}
.y5c{bottom:423.573000px;}
.y169{bottom:424.441500px;}
.ya0{bottom:425.515500px;}
.y7b{bottom:428.170500px;}
.y133{bottom:429.901814px;}
.yc6{bottom:431.847000px;}
.ye5{bottom:432.303000px;}
.y19a{bottom:433.029000px;}
.y131{bottom:442.891799px;}
.y5b{bottom:445.242000px;}
.y168{bottom:446.110500px;}
.y9f{bottom:447.184500px;}
.y7a{bottom:449.839500px;}
.yc5{bottom:453.516000px;}
.ye4{bottom:453.972000px;}
.y199{bottom:454.698000px;}
.y105{bottom:455.079000px;}
.y12e{bottom:455.446859px;}
.y130{bottom:455.533493px;}
.y5a{bottom:466.911000px;}
.y12f{bottom:468.175188px;}
.y9e{bottom:468.853500px;}
.y79{bottom:471.508500px;}
.yc4{bottom:475.183500px;}
.ye3{bottom:475.639500px;}
.y198{bottom:476.365500px;}
.y104{bottom:476.748000px;}
.y12d{bottom:481.165172px;}
.y167{bottom:485.536500px;}
.y12c{bottom:487.399385px;}
.y59{bottom:488.578500px;}
.y9d{bottom:490.522500px;}
.yc3{bottom:496.852500px;}
.ye2{bottom:497.308500px;}
.y197{bottom:498.034500px;}
.y103{bottom:498.417000px;}
.y12b{bottom:506.796851px;}
.y78{bottom:508.132500px;}
.y58{bottom:510.247500px;}
.y9c{bottom:512.190000px;}
.y12a{bottom:513.031064px;}
.yc2{bottom:518.521500px;}
.ye1{bottom:518.977500px;}
.y196{bottom:519.703500px;}
.y102{bottom:520.086000px;}
.y77{bottom:529.801500px;}
.y57{bottom:531.916500px;}
.y129{bottom:532.429406px;}
.y9b{bottom:533.859000px;}
.y128{bottom:538.662743px;}
.yc1{bottom:540.190500px;}
.y195{bottom:541.372500px;}
.y101{bottom:541.755000px;}
.y76{bottom:551.470500px;}
.y56{bottom:553.585500px;}
.y8{bottom:554.341500px;}
.y47{bottom:555.454500px;}
.y9a{bottom:555.528000px;}
.y127{bottom:558.061084px;}
.ye0{bottom:560.073000px;}
.yc0{bottom:561.859500px;}
.y194{bottom:563.041500px;}
.y100{bottom:563.424000px;}
.y126{bottom:564.294422px;}
.y166{bottom:566.359500px;}
.y75{bottom:573.139500px;}
.y55{bottom:575.254500px;}
.y99{bottom:577.197000px;}
.ybf{bottom:583.528500px;}
.y125{bottom:583.692763px;}
.y193{bottom:584.710500px;}
.yff{bottom:585.091500px;}
.y124{bottom:589.926101px;}
.y46{bottom:594.682500px;}
.y74{bottom:594.808500px;}
.ydf{bottom:596.686500px;}
.y54{bottom:596.922000px;}
.y98{bottom:598.866000px;}
.y165{bottom:599.683492px;}
.y7{bottom:600.669000px;}
.y192{bottom:606.378000px;}
.yfe{bottom:606.760500px;}
.y123{bottom:609.324443px;}
.y161{bottom:613.211379px;}
.y122{bottom:615.557780px;}
.y73{bottom:616.476000px;}
.ybe{bottom:616.777500px;}
.y53{bottom:618.591000px;}
.y163{bottom:619.975790px;}
.y160{bottom:626.740202px;}
.y191{bottom:628.047000px;}
.yfd{bottom:628.429500px;}
.y97{bottom:632.116500px;}
.yde{bottom:633.298500px;}
.y162{bottom:633.504614px;}
.y6{bottom:633.544500px;}
.y45{bottom:633.909000px;}
.y121{bottom:634.956121px;}
.y72{bottom:638.145000px;}
.y52{bottom:640.260000px;}
.y15f{bottom:640.269025px;}
.y120{bottom:641.189459px;}
.y190{bottom:649.716000px;}
.yfc{bottom:650.098500px;}
.y164{bottom:653.797849px;}
.y71{bottom:659.814000px;}
.y11f{bottom:660.587801px;}
.y51{bottom:661.929000px;}
.y1c{bottom:663.568500px;}
.y15c{bottom:667.699403px;}
.ydd{bottom:669.912000px;}
.y18f{bottom:671.385000px;}
.yfb{bottom:671.767500px;}
.y44{bottom:673.137000px;}
.y15a{bottom:681.228227px;}
.y70{bottom:681.483000px;}
.y50{bottom:683.598000px;}
.y96{bottom:684.108000px;}
.ybd{bottom:684.664500px;}
.y1b{bottom:685.836000px;}
.y34{bottom:686.586000px;}
.y15e{bottom:687.992639px;}
.y11e{bottom:694.195500px;}
.y159{bottom:694.757050px;}
.y43{bottom:694.806000px;}
.y15d{bottom:701.521462px;}
.y6f{bottom:703.152000px;}
.yfa{bottom:705.018000px;}
.y4f{bottom:705.267000px;}
.y95{bottom:705.777000px;}
.ydc{bottom:706.524000px;}
.y1a{bottom:708.102000px;}
.y33{bottom:708.255000px;}
.y158{bottom:708.285874px;}
.y18e{bottom:710.812500px;}
.y11d{bottom:715.864500px;}
.y42{bottom:716.475000px;}
.ybc{bottom:719.714693px;}
.y15b{bottom:721.813761px;}
.y5{bottom:723.208500px;}
.y6e{bottom:724.821000px;}
.y4e{bottom:726.934500px;}
.y94{bottom:727.446000px;}
.ydb{bottom:728.193000px;}
.y32{bottom:729.924000px;}
.y19{bottom:730.368000px;}
.y157{bottom:735.716252px;}
.y11c{bottom:737.533500px;}
.y41{bottom:738.144000px;}
.ybb{bottom:739.032007px;}
.y93{bottom:749.115000px;}
.y155{bottom:749.245075px;}
.y4{bottom:750.108000px;}
.y31{bottom:751.593000px;}
.y18{bottom:752.635500px;}
.y152{bottom:756.008550px;}
.yf9{bottom:757.009500px;}
.yba{bottom:758.350621px;}
.y11b{bottom:759.201000px;}
.y6d{bottom:760.315500px;}
.y18d{bottom:762.120000px;}
.y154{bottom:762.772962px;}
.y4d{bottom:763.548000px;}
.yda{bottom:764.805000px;}
.y151{bottom:769.537374px;}
.y92{bottom:770.784000px;}
.y30{bottom:773.262000px;}
.y17{bottom:774.901500px;}
.y153{bottom:776.301786px;}
.y40{bottom:777.370500px;}
.yb9{bottom:777.667935px;}
.yf8{bottom:778.678500px;}
.y11a{bottom:780.870000px;}
.y6c{bottom:781.984500px;}
.y4c{bottom:785.217000px;}
.y156{bottom:789.830609px;}
.y91{bottom:792.451500px;}
.y2f{bottom:794.929500px;}
.y189{bottom:796.503431px;}
.y16{bottom:796.570500px;}
.yb8{bottom:796.985249px;}
.y3f{bottom:799.039500px;}
.y6b{bottom:803.652000px;}
.y150{bottom:803.732163px;}
.y18c{bottom:804.885867px;}
.yd9{bottom:805.902000px;}
.y14d{bottom:810.496575px;}
.y188{bottom:813.268303px;}
.y90{bottom:814.120500px;}
.yb7{bottom:816.303864px;}
.y2e{bottom:816.598500px;}
.y14f{bottom:817.260987px;}
.yf7{bottom:818.106000px;}
.y15{bottom:818.239500px;}
.y3e{bottom:820.708500px;}
.y18a{bottom:821.650739px;}
.y4b{bottom:821.829000px;}
.y14c{bottom:824.025399px;}
.y6a{bottom:825.321000px;}
.yd8{bottom:827.571000px;}
.y187{bottom:830.033175px;}
.y14e{bottom:830.789810px;}
.yb6{bottom:835.621177px;}
.y8f{bottom:835.789500px;}
.y2d{bottom:838.267500px;}
.y18b{bottom:838.415611px;}
.y14{bottom:839.907000px;}
.y3d{bottom:842.377500px;}
.y186{bottom:846.796886px;}
.y69{bottom:846.990000px;}
.yd7{bottom:849.238500px;}
.yf6{bottom:850.983000px;}
.yb5{bottom:854.938491px;}
.y8e{bottom:857.458500px;}
.y4a{bottom:858.442500px;}
.y2c{bottom:859.936500px;}
.y13{bottom:862.174500px;}
.y184{bottom:864.024805px;}
.y3c{bottom:864.046500px;}
.y22{bottom:864.565500px;}
.y14b{bottom:865.042500px;}
.y119{bottom:866.113500px;}
.y68{bottom:868.659000px;}
.y185{bottom:872.407241px;}
.yb4{bottom:874.257106px;}
.y8d{bottom:879.127500px;}
.y183{bottom:880.789677px;}
.y2b{bottom:881.605500px;}
.yd6{bottom:882.489000px;}
.y12{bottom:883.843500px;}
.y3b{bottom:885.715500px;}
.y21{bottom:886.234500px;}
.y14a{bottom:886.711500px;}
.y118{bottom:887.782500px;}
.yb3{bottom:893.574420px;}
.y49{bottom:895.054500px;}
.y182{bottom:897.553389px;}
.y8c{bottom:900.795000px;}
.y2a{bottom:903.274500px;}
.y67{bottom:905.283000px;}
.y11{bottom:906.109500px;}
.y3a{bottom:907.383000px;}
.y20{bottom:907.902000px;}
.y149{bottom:908.379000px;}
.y117{bottom:909.450000px;}
.yf5{bottom:910.882500px;}
.yb2{bottom:912.891733px;}
.y17d{bottom:914.781308px;}
.y8b{bottom:922.464000px;}
.y181{bottom:923.163744px;}
.y29{bottom:924.942000px;}
.y66{bottom:926.952000px;}
.y10{bottom:927.778500px;}
.y39{bottom:929.052000px;}
.y1f{bottom:929.571000px;}
.y148{bottom:930.048000px;}
.y116{bottom:931.119000px;}
.y17c{bottom:931.546180px;}
.y48{bottom:931.668000px;}
.yb1{bottom:932.210348px;}
.yf4{bottom:932.551500px;}
.yd5{bottom:934.482000px;}
.y180{bottom:939.927456px;}
.y8a{bottom:944.133000px;}
.y28{bottom:946.611000px;}
.y17b{bottom:948.309891px;}
.yf{bottom:950.044500px;}
.y38{bottom:950.721000px;}
.y1e{bottom:951.240000px;}
.yb0{bottom:951.527662px;}
.y115{bottom:952.788000px;}
.yd4{bottom:956.151000px;}
.y17f{bottom:956.692327px;}
.y65{bottom:960.202500px;}
.y17a{bottom:965.074763px;}
.y89{bottom:965.802000px;}
.y27{bottom:968.280000px;}
.y147{bottom:969.475500px;}
.yaf{bottom:970.844975px;}
.ye{bottom:972.310500px;}
.y37{bottom:972.390000px;}
.y1d{bottom:972.909000px;}
.y17e{bottom:973.457199px;}
.y114{bottom:974.457000px;}
.y179{bottom:981.839635px;}
.y88{bottom:987.471000px;}
.y26{bottom:989.949000px;}
.yd3{bottom:992.763000px;}
.y36{bottom:994.059000px;}
.yd{bottom:994.578000px;}
.y113{bottom:996.126000px;}
.y175{bottom:999.066394px;}
.yae{bottom:1007.707500px;}
.y25{bottom:1011.618000px;}
.yd2{bottom:1014.432000px;}
.y35{bottom:1015.728000px;}
.y174{bottom:1015.831266px;}
.yc{bottom:1016.844000px;}
.yf3{bottom:1017.795000px;}
.y87{bottom:1020.721500px;}
.y178{bottom:1024.213702px;}
.yad{bottom:1029.376500px;}
.y173{bottom:1032.596138px;}
.y24{bottom:1033.287000px;}
.yf2{bottom:1039.462500px;}
.y176{bottom:1040.978574px;}
.y172{bottom:1049.361010px;}
.y3{bottom:1051.044000px;}
.y23{bottom:1054.954500px;}
.y177{bottom:1057.743446px;}
.yf1{bottom:1061.131500px;}
.y171{bottom:1066.125882px;}
.y2{bottom:1072.713000px;}
.y170{bottom:1082.889593px;}
.y1{bottom:1094.382000px;}
.y16f{bottom:1100.117513px;}
.yb{bottom:1142.382000px;}
.h7{height:27.783619px;}
.ha{height:31.385987px;}
.hf{height:33.588493px;}
.h9{height:41.111661px;}
.h10{height:41.622746px;}
.h8{height:46.673878px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.hc{height:56.319336px;}
.he{height:56.322836px;}
.hd{height:57.015915px;}
.hb{height:57.019416px;}
.h6{height:57.828699px;}
.h3{height:64.557900px;}
.h11{height:75.147848px;}
.h4{height:77.469300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x17{left:113.233473px;}
.x15{left:114.852402px;}
.x22{left:122.116500px;}
.x11{left:128.194500px;}
.xf{left:134.338500px;}
.xc{left:135.690000px;}
.x10{left:151.897500px;}
.xe{left:154.314000px;}
.x12{left:183.461000px;}
.x1a{left:188.521500px;}
.x18{left:198.425333px;}
.x16{left:217.295698px;}
.x3{left:218.566500px;}
.xa{left:221.271000px;}
.x4{left:227.973000px;}
.x1{left:232.443000px;}
.x7{left:234.918000px;}
.x1b{left:244.534729px;}
.x2{left:251.863500px;}
.x9{left:259.918500px;}
.x1f{left:262.731000px;}
.x20{left:328.058963px;}
.xd{left:332.026500px;}
.x13{left:349.607596px;}
.x8{left:356.476500px;}
.x19{left:376.089885px;}
.x5{left:399.048000px;}
.x6{left:416.763000px;}
.x1c{left:453.294047px;}
.x14{left:520.432563px;}
.x1d{left:566.639852px;}
.x21{left:591.985582px;}
.x1e{left:682.442123px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.162977pt;}
.v1{vertical-align:23.136000pt;}
.v4{vertical-align:29.800090pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.658245pt;}
.ls4{letter-spacing:2.658591pt;}
.ls0{letter-spacing:20.812421pt;}
.ls6{letter-spacing:26.973258pt;}
.ls3{letter-spacing:31.215625pt;}
.ls2{letter-spacing:31.880533pt;}
.ws23{word-spacing:-36.025003pt;}
.ws25{word-spacing:-30.541551pt;}
.ws24{word-spacing:-29.648896pt;}
.ws1f{word-spacing:-28.692333pt;}
.ws26{word-spacing:-21.041152pt;}
.ws1{word-spacing:-19.925333pt;}
.ws6{word-spacing:-17.343010pt;}
.ws22{word-spacing:-17.279249pt;}
.ws6d{word-spacing:-15.046275pt;}
.wsbd{word-spacing:-13.417940pt;}
.wsaf{word-spacing:-12.440183pt;}
.wsb0{word-spacing:-10.827935pt;}
.wsa6{word-spacing:-10.117912pt;}
.wsb6{word-spacing:-3.443098pt;}
.ws13{word-spacing:-3.251814pt;}
.ws5b{word-spacing:-2.933009pt;}
.wsad{word-spacing:-2.677965pt;}
.ws3b{word-spacing:-2.550443pt;}
.ws39{word-spacing:-2.359159pt;}
.ws66{word-spacing:-2.231637pt;}
.ws88{word-spacing:-2.167876pt;}
.ws80{word-spacing:-1.785310pt;}
.ws1a{word-spacing:-1.275221pt;}
.ws79{word-spacing:-1.211460pt;}
.ws98{word-spacing:-1.083938pt;}
.ws89{word-spacing:-1.055878pt;}
.wsb4{word-spacing:-0.956416pt;}
.ws8a{word-spacing:-0.892655pt;}
.ws61{word-spacing:-0.701372pt;}
.ws4d{word-spacing:-0.510089pt;}
.ws7e{word-spacing:-0.255044pt;}
.ws3c{word-spacing:-0.165040pt;}
.ws51{word-spacing:-0.095642pt;}
.ws52{word-spacing:-0.063761pt;}
.ws55{word-spacing:-0.053134pt;}
.ws92{word-spacing:-0.048725pt;}
.ws9c{word-spacing:-0.037198pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:0.063761pt;}
.ws81{word-spacing:0.255044pt;}
.ws8e{word-spacing:0.382566pt;}
.ws63{word-spacing:0.573850pt;}
.ws44{word-spacing:0.637611pt;}
.ws83{word-spacing:0.701372pt;}
.wsc0{word-spacing:0.956416pt;}
.ws15{word-spacing:1.147699pt;}
.ws7b{word-spacing:1.211460pt;}
.ws11{word-spacing:1.338982pt;}
.ws2f{word-spacing:1.402743pt;}
.ws7a{word-spacing:1.530266pt;}
.ws17{word-spacing:1.594027pt;}
.ws86{word-spacing:1.657788pt;}
.ws48{word-spacing:1.785310pt;}
.ws4c{word-spacing:1.849071pt;}
.ws78{word-spacing:1.912832pt;}
.ws5a{word-spacing:1.976593pt;}
.ws9b{word-spacing:2.008703pt;}
.ws5e{word-spacing:2.040354pt;}
.wsa7{word-spacing:2.045901pt;}
.wsb1{word-spacing:2.149664pt;}
.ws2d{word-spacing:2.167876pt;}
.wsb2{word-spacing:2.189472pt;}
.ws99{word-spacing:2.324888pt;}
.ws1b{word-spacing:2.359159pt;}
.ws3d{word-spacing:2.422921pt;}
.wsae{word-spacing:2.488037pt;}
.ws60{word-spacing:2.614204pt;}
.ws91{word-spacing:2.631146pt;}
.wsb9{word-spacing:2.663856pt;}
.wsba{word-spacing:2.713186pt;}
.ws96{word-spacing:2.741726pt;}
.wsc2{word-spacing:2.933009pt;}
.ws6c{word-spacing:2.987128pt;}
.ws90{word-spacing:3.045308pt;}
.wsb8{word-spacing:3.083166pt;}
.wsab{word-spacing:3.124292pt;}
.ws37{word-spacing:3.251814pt;}
.ws38{word-spacing:3.315575pt;}
.ws2{word-spacing:3.443098pt;}
.ws6b{word-spacing:3.457324pt;}
.ws9{word-spacing:3.506859pt;}
.ws3e{word-spacing:3.570620pt;}
.ws8b{word-spacing:3.634381pt;}
.ws76{word-spacing:3.761903pt;}
.wsbf{word-spacing:3.825664pt;}
.ws5d{word-spacing:3.889425pt;}
.ws97{word-spacing:3.953186pt;}
.ws0{word-spacing:3.985067pt;}
.ws68{word-spacing:4.016947pt;}
.ws3{word-spacing:4.131706pt;}
.ws19{word-spacing:4.271991pt;}
.ws3f{word-spacing:4.463275pt;}
.ws16{word-spacing:4.527036pt;}
.ws75{word-spacing:4.705554pt;}
.ws3a{word-spacing:4.782067pt;}
.wsac{word-spacing:4.782080pt;}
.ws5c{word-spacing:4.845841pt;}
.ws62{word-spacing:4.909602pt;}
.ws6a{word-spacing:5.037124pt;}
.ws5f{word-spacing:5.164646pt;}
.ws1c{word-spacing:5.292169pt;}
.ws59{word-spacing:5.355930pt;}
.ws32{word-spacing:5.419691pt;}
.ws12{word-spacing:5.483452pt;}
.ws95{word-spacing:5.674735pt;}
.ws4{word-spacing:5.738467pt;}
.wsc1{word-spacing:5.738496pt;}
.ws45{word-spacing:5.866018pt;}
.ws7f{word-spacing:5.929779pt;}
.ws4b{word-spacing:6.121062pt;}
.ws31{word-spacing:6.184823pt;}
.ws2a{word-spacing:6.376107pt;}
.ws67{word-spacing:6.439868pt;}
.ws54{word-spacing:6.503629pt;}
.ws2e{word-spacing:6.567390pt;}
.wsbe{word-spacing:6.694912pt;}
.ws29{word-spacing:6.949956pt;}
.wsb3{word-spacing:7.013717pt;}
.ws47{word-spacing:7.077478pt;}
.ws4e{word-spacing:7.141239pt;}
.ws82{word-spacing:7.268762pt;}
.ws53{word-spacing:7.428164pt;}
.ws7c{word-spacing:7.460045pt;}
.wsb7{word-spacing:7.523806pt;}
.ws49{word-spacing:7.778850pt;}
.ws18{word-spacing:7.842611pt;}
.ws46{word-spacing:7.906372pt;}
.ws33{word-spacing:8.097655pt;}
.wsb5{word-spacing:8.161417pt;}
.ws8f{word-spacing:8.288939pt;}
.ws41{word-spacing:8.352700pt;}
.ws84{word-spacing:8.416461pt;}
.ws14{word-spacing:8.607744pt;}
.ws42{word-spacing:8.711339pt;}
.wsc3{word-spacing:8.990310pt;}
.ws7d{word-spacing:9.054071pt;}
.ws4f{word-spacing:9.117833pt;}
.ws8c{word-spacing:9.181594pt;}
.ws4a{word-spacing:9.245355pt;}
.ws85{word-spacing:9.436638pt;}
.wsc6{word-spacing:9.691682pt;}
.ws77{word-spacing:9.755443pt;}
.ws57{word-spacing:10.393054pt;}
.wsb{word-spacing:10.396276pt;}
.ws2c{word-spacing:10.584337pt;}
.ws28{word-spacing:10.775620pt;}
.wsc4{word-spacing:10.839381pt;}
.ws34{word-spacing:10.903142pt;}
.ws8d{word-spacing:11.094426pt;}
.ws58{word-spacing:11.158187pt;}
.ws43{word-spacing:11.285709pt;}
.ws1e{word-spacing:11.413231pt;}
.ws36{word-spacing:11.604514pt;}
.ws69{word-spacing:11.923319pt;}
.ws56{word-spacing:11.955200pt;}
.wsc5{word-spacing:12.050842pt;}
.ws50{word-spacing:12.242125pt;}
.ws40{word-spacing:12.305886pt;}
.ws5{word-spacing:12.471630pt;}
.ws2b{word-spacing:12.497169pt;}
.ws1d{word-spacing:12.624691pt;}
.ws64{word-spacing:12.688452pt;}
.ws30{word-spacing:13.134780pt;}
.ws35{word-spacing:13.772390pt;}
.ws65{word-spacing:14.091196pt;}
.ws21{word-spacing:14.537523pt;}
.ws8{word-spacing:20.786108pt;}
.ws20{word-spacing:37.842193pt;}
.wsf{word-spacing:43.835733pt;}
.ws87{word-spacing:62.166867pt;}
.ws27{word-spacing:74.600067pt;}
.ws93{word-spacing:110.839077pt;}
.ws9f{word-spacing:118.572400pt;}
.wsa1{word-spacing:130.937084pt;}
.wsa9{word-spacing:156.333295pt;}
.ws9e{word-spacing:157.080979pt;}
.wsa5{word-spacing:159.289557pt;}
.ws94{word-spacing:161.225529pt;}
.wsaa{word-spacing:175.043993pt;}
.ws9a{word-spacing:181.489446pt;}
.wsa2{word-spacing:186.049946pt;}
.wsa3{word-spacing:195.185826pt;}
.ws9d{word-spacing:197.678106pt;}
.ws6f{word-spacing:221.019957pt;}
.wsa8{word-spacing:241.822213pt;}
.wsbb{word-spacing:297.550579pt;}
.ws72{word-spacing:298.740607pt;}
.wsa0{word-spacing:368.042739pt;}
.wsc{word-spacing:368.281216pt;}
.wsd{word-spacing:374.293885pt;}
.wsbc{word-spacing:374.684002pt;}
.ws70{word-spacing:384.111625pt;}
.wsa{word-spacing:422.943578pt;}
.ws74{word-spacing:447.190145pt;}
.ws6e{word-spacing:451.681901pt;}
.wse{word-spacing:457.431939pt;}
.wsa4{word-spacing:461.715262pt;}
.ws71{word-spacing:472.376061pt;}
.ws73{word-spacing:482.515702pt;}
._34{margin-left:-33.602082pt;}
._2a{margin-left:-31.880533pt;}
._33{margin-left:-30.158985pt;}
._2c{margin-left:-12.624691pt;}
._2b{margin-left:-11.094426pt;}
._6{margin-left:-9.500340pt;}
._26{margin-left:-7.125782pt;}
._46{margin-left:-6.225616pt;}
._d{margin-left:-5.228407pt;}
._1{margin-left:-4.016947pt;}
._11{margin-left:-3.124292pt;}
._0{margin-left:-1.976593pt;}
._c{margin-left:-0.892655pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._1c{width:4.144469pt;}
._47{width:5.100885pt;}
._42{width:9.627921pt;}
._41{width:11.221948pt;}
._1d{width:14.983851pt;}
._3f{width:16.179854pt;}
._21{width:17.151727pt;}
._48{width:18.449917pt;}
._1b{width:19.574647pt;}
._27{width:20.786108pt;}
._28{width:22.125090pt;}
._45{width:23.719117pt;}
._3c{width:24.803055pt;}
._44{width:25.695710pt;}
._1e{width:27.162214pt;}
._4{width:28.054869pt;}
._55{width:28.947524pt;}
._20{width:29.926909pt;}
._32{width:31.944294pt;}
._3d{width:33.219516pt;}
._31{width:34.191389pt;}
._2f{width:36.231743pt;}
._37{width:37.506964pt;}
._49{width:39.085534pt;}
._1f{width:40.552038pt;}
._68{width:41.572215pt;}
._30{width:42.480328pt;}
._35{width:45.652924pt;}
._36{width:47.820800pt;}
._59{width:48.788137pt;}
._6d{width:49.975874pt;}
._4a{width:51.646464pt;}
._2e{width:53.383470pt;}
._43{width:54.388190pt;}
._54{width:55.562484pt;}
._24{width:57.767526pt;}
._38{width:59.440771pt;}
._7{width:64.000654pt;}
._5b{width:66.071764pt;}
._e{width:67.641411pt;}
._b{width:74.718889pt;}
._40{width:86.077200pt;}
._67{width:87.791453pt;}
._2d{width:95.386556pt;}
._18{width:100.184093pt;}
._3e{width:103.292400pt;}
._f{width:105.228559pt;}
._50{width:115.745816pt;}
._69{width:120.965236pt;}
._5f{width:124.092259pt;}
._29{width:127.267089pt;}
._8{width:137.874225pt;}
._4c{width:147.238221pt;}
._4d{width:155.271465pt;}
._6b{width:160.920303pt;}
._14{width:164.312269pt;}
._4b{width:170.422495pt;}
._61{width:174.478711pt;}
._63{width:189.357862pt;}
._5c{width:190.358166pt;}
._a{width:193.958460pt;}
._5a{width:210.026668pt;}
._19{width:223.306713pt;}
._12{width:225.395371pt;}
._15{width:231.531890pt;}
._64{width:238.969949pt;}
._65{width:263.200963pt;}
._58{width:278.789045pt;}
._66{width:296.153486pt;}
._10{width:299.298118pt;}
._5d{width:302.798939pt;}
._6c{width:310.231925pt;}
._16{width:321.690039pt;}
._4e{width:344.089969pt;}
._6a{width:368.299139pt;}
._5e{width:378.912155pt;}
._1a{width:381.944247pt;}
._57{width:388.107314pt;}
._9{width:396.138426pt;}
._60{width:441.202108pt;}
._53{width:466.728176pt;}
._4f{width:493.811471pt;}
._52{width:496.158690pt;}
._51{width:497.561977pt;}
._62{width:563.600803pt;}
._3a{width:810.339396pt;}
._13{width:857.012497pt;}
._17{width:876.730124pt;}
._39{width:1246.337570pt;}
._56{width:1263.852793pt;}
._5{width:1294.176138pt;}
._22{width:1295.068793pt;}
._25{width:1441.000107pt;}
._23{width:1882.800538pt;}
._3b{width:1898.358238pt;}
.fs4{font-size:37.193600pt;}
.fs8{font-size:37.198206pt;}
.fs9{font-size:39.808584pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:48.724932pt;}
.fsa{font-size:49.330662pt;}
.fs5{font-size:53.133867pt;}
.fs6{font-size:55.317189pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:98.054667pt;}
.yf0{bottom:101.994667pt;}
.y86{bottom:102.876000pt;}
.yac{bottom:109.853333pt;}
.y146{bottom:112.220000pt;}
.yd0{bottom:117.316000pt;}
.yef{bottom:121.254667pt;}
.y85{bottom:125.665333pt;}
.yab{bottom:129.114667pt;}
.y145{bottom:132.904000pt;}
.ya{bottom:134.585333pt;}
.ycf{bottom:136.577333pt;}
.y84{bottom:144.926667pt;}
.yaa{bottom:148.376000pt;}
.y144{bottom:152.164000pt;}
.yee{bottom:153.800000pt;}
.y9{bottom:153.846667pt;}
.y64{bottom:156.002667pt;}
.yce{bottom:166.133333pt;}
.ya9{bottom:167.637333pt;}
.y143{bottom:171.425333pt;}
.yed{bottom:173.061333pt;}
.y112{bottom:176.045333pt;}
.y83{bottom:176.477333pt;}
.ya8{bottom:186.898667pt;}
.y63{bottom:188.548000pt;}
.y142{bottom:190.686667pt;}
.y82{bottom:195.738667pt;}
.yec{bottom:205.605333pt;}
.ya7{bottom:206.158667pt;}
.y111{bottom:206.547485pt;}
.ycd{bottom:212.068000pt;}
.y62{bottom:221.092000pt;}
.y110{bottom:221.672136pt;}
.yeb{bottom:224.866667pt;}
.ya6{bottom:225.420000pt;}
.y81{bottom:228.293333pt;}
.y141{bottom:228.545333pt;}
.ycc{bottom:231.329333pt;}
.y10f{bottom:236.797805pt;}
.ya5{bottom:244.681333pt;}
.ycb{bottom:250.590667pt;}
.y10e{bottom:251.922456pt;}
.y61{bottom:253.636000pt;}
.yea{bottom:257.410667pt;}
.y80{bottom:257.849333pt;}
.y140{bottom:257.908862pt;}
.ya4{bottom:263.942667pt;}
.y10d{bottom:267.047106pt;}
.y13f{bottom:269.145923pt;}
.yca{bottom:269.850667pt;}
.y60{bottom:272.897333pt;}
.ye9{bottom:276.672000pt;}
.y13b{bottom:280.305199pt;}
.y13e{bottom:280.382985pt;}
.y16e{bottom:280.976000pt;}
.y10c{bottom:282.171757pt;}
.y19f{bottom:288.609333pt;}
.y13d{bottom:291.620047pt;}
.ya3{bottom:293.498667pt;}
.y10b{bottom:297.297426pt;}
.yc9{bottom:299.406667pt;}
.y16d{bottom:300.236000pt;}
.y13c{bottom:302.856331pt;}
.y7f{bottom:303.552000pt;}
.y5f{bottom:305.442667pt;}
.y19e{bottom:307.869333pt;}
.ye8{bottom:309.217333pt;}
.y10a{bottom:312.016552pt;}
.y13a{bottom:314.403762pt;}
.y16c{bottom:319.497333pt;}
.y7e{bottom:322.813333pt;}
.y139{bottom:325.640824pt;}
.y19d{bottom:327.130667pt;}
.y109{bottom:327.141203pt;}
.ye7{bottom:328.478667pt;}
.y136{bottom:331.181568pt;}
.y138{bottom:336.877108pt;}
.y5e{bottom:337.986667pt;}
.y16b{bottom:338.758667pt;}
.ya2{bottom:339.713333pt;}
.y7d{bottom:342.074667pt;}
.y108{bottom:342.265853pt;}
.yc8{bottom:345.341333pt;}
.y19c{bottom:346.392000pt;}
.y137{bottom:348.114170pt;}
.y107{bottom:356.984979pt;}
.y5d{bottom:357.248000pt;}
.y16a{bottom:358.020000pt;}
.ya1{bottom:358.974667pt;}
.y135{bottom:359.660822pt;}
.y7c{bottom:361.334667pt;}
.yc7{bottom:364.602667pt;}
.ye6{bottom:365.008000pt;}
.y19b{bottom:365.653333pt;}
.y132{bottom:370.820875pt;}
.y134{bottom:370.897884pt;}
.y106{bottom:372.109629pt;}
.y5c{bottom:376.509333pt;}
.y169{bottom:377.281333pt;}
.ya0{bottom:378.236000pt;}
.y7b{bottom:380.596000pt;}
.y133{bottom:382.134946pt;}
.yc6{bottom:383.864000pt;}
.ye5{bottom:384.269333pt;}
.y19a{bottom:384.914667pt;}
.y131{bottom:393.681599pt;}
.y5b{bottom:395.770667pt;}
.y168{bottom:396.542667pt;}
.y9f{bottom:397.497333pt;}
.y7a{bottom:399.857333pt;}
.yc5{bottom:403.125333pt;}
.ye4{bottom:403.530667pt;}
.y199{bottom:404.176000pt;}
.y105{bottom:404.514667pt;}
.y12e{bottom:404.841652pt;}
.y130{bottom:404.918661pt;}
.y5a{bottom:415.032000pt;}
.y12f{bottom:416.155723pt;}
.y9e{bottom:416.758667pt;}
.y79{bottom:419.118667pt;}
.yc4{bottom:422.385333pt;}
.ye3{bottom:422.790667pt;}
.y198{bottom:423.436000pt;}
.y104{bottom:423.776000pt;}
.y12d{bottom:427.702375pt;}
.y167{bottom:431.588000pt;}
.y12c{bottom:433.243898pt;}
.y59{bottom:434.292000pt;}
.y9d{bottom:436.020000pt;}
.yc3{bottom:441.646667pt;}
.ye2{bottom:442.052000pt;}
.y197{bottom:442.697333pt;}
.y103{bottom:443.037333pt;}
.y12b{bottom:450.486090pt;}
.y78{bottom:451.673333pt;}
.y58{bottom:453.553333pt;}
.y9c{bottom:455.280000pt;}
.y12a{bottom:456.027612pt;}
.yc2{bottom:460.908000pt;}
.ye1{bottom:461.313333pt;}
.y196{bottom:461.958667pt;}
.y102{bottom:462.298667pt;}
.y77{bottom:470.934667pt;}
.y57{bottom:472.814667pt;}
.y129{bottom:473.270583pt;}
.y9b{bottom:474.541333pt;}
.y128{bottom:478.811327pt;}
.yc1{bottom:480.169333pt;}
.y195{bottom:481.220000pt;}
.y101{bottom:481.560000pt;}
.y76{bottom:490.196000pt;}
.y56{bottom:492.076000pt;}
.y8{bottom:492.748000pt;}
.y47{bottom:493.737333pt;}
.y9a{bottom:493.802667pt;}
.y127{bottom:496.054297pt;}
.ye0{bottom:497.842667pt;}
.yc0{bottom:499.430667pt;}
.y194{bottom:500.481333pt;}
.y100{bottom:500.821333pt;}
.y126{bottom:501.595042pt;}
.y166{bottom:503.430667pt;}
.y75{bottom:509.457333pt;}
.y55{bottom:511.337333pt;}
.y99{bottom:513.064000pt;}
.ybf{bottom:518.692000pt;}
.y125{bottom:518.838012pt;}
.y193{bottom:519.742667pt;}
.yff{bottom:520.081333pt;}
.y124{bottom:524.378756pt;}
.y46{bottom:528.606667pt;}
.y74{bottom:528.718667pt;}
.ydf{bottom:530.388000pt;}
.y54{bottom:530.597333pt;}
.y98{bottom:532.325333pt;}
.y165{bottom:533.051993pt;}
.y7{bottom:533.928000pt;}
.y192{bottom:539.002667pt;}
.yfe{bottom:539.342667pt;}
.y123{bottom:541.621727pt;}
.y161{bottom:545.076781pt;}
.y122{bottom:547.162471pt;}
.y73{bottom:547.978667pt;}
.ybe{bottom:548.246667pt;}
.y53{bottom:549.858667pt;}
.y163{bottom:551.089591pt;}
.y160{bottom:557.102402pt;}
.y191{bottom:558.264000pt;}
.yfd{bottom:558.604000pt;}
.y97{bottom:561.881333pt;}
.yde{bottom:562.932000pt;}
.y162{bottom:563.115212pt;}
.y6{bottom:563.150667pt;}
.y45{bottom:563.474667pt;}
.y121{bottom:564.405441pt;}
.y72{bottom:567.240000pt;}
.y52{bottom:569.120000pt;}
.y15f{bottom:569.128023pt;}
.y120{bottom:569.946186pt;}
.y190{bottom:577.525333pt;}
.yfc{bottom:577.865333pt;}
.y164{bottom:581.153644pt;}
.y71{bottom:586.501333pt;}
.y11f{bottom:587.189156pt;}
.y51{bottom:588.381333pt;}
.y1c{bottom:589.838667pt;}
.y15c{bottom:593.510581pt;}
.ydd{bottom:595.477333pt;}
.y18f{bottom:596.786667pt;}
.yfb{bottom:597.126667pt;}
.y44{bottom:598.344000pt;}
.y15a{bottom:605.536202pt;}
.y70{bottom:605.762667pt;}
.y50{bottom:607.642667pt;}
.y96{bottom:608.096000pt;}
.ybd{bottom:608.590667pt;}
.y1b{bottom:609.632000pt;}
.y34{bottom:610.298667pt;}
.y15e{bottom:611.549012pt;}
.y11e{bottom:617.062667pt;}
.y159{bottom:617.561823pt;}
.y43{bottom:617.605333pt;}
.y15d{bottom:623.574633pt;}
.y6f{bottom:625.024000pt;}
.yfa{bottom:626.682667pt;}
.y4f{bottom:626.904000pt;}
.y95{bottom:627.357333pt;}
.ydc{bottom:628.021333pt;}
.y1a{bottom:629.424000pt;}
.y33{bottom:629.560000pt;}
.y158{bottom:629.587443pt;}
.y18e{bottom:631.833333pt;}
.y11d{bottom:636.324000pt;}
.y42{bottom:636.866667pt;}
.ybc{bottom:639.746394pt;}
.y15b{bottom:641.612232pt;}
.y5{bottom:642.852000pt;}
.y6e{bottom:644.285333pt;}
.y4e{bottom:646.164000pt;}
.y94{bottom:646.618667pt;}
.ydb{bottom:647.282667pt;}
.y32{bottom:648.821333pt;}
.y19{bottom:649.216000pt;}
.y157{bottom:653.970001pt;}
.y11c{bottom:655.585333pt;}
.y41{bottom:656.128000pt;}
.ybb{bottom:656.917339pt;}
.y93{bottom:665.880000pt;}
.y155{bottom:665.995622pt;}
.y4{bottom:666.762667pt;}
.y31{bottom:668.082667pt;}
.y18{bottom:669.009333pt;}
.y152{bottom:672.007600pt;}
.yf9{bottom:672.897333pt;}
.yba{bottom:674.089441pt;}
.y11b{bottom:674.845333pt;}
.y6d{bottom:675.836000pt;}
.y18d{bottom:677.440000pt;}
.y154{bottom:678.020411pt;}
.y4d{bottom:678.709333pt;}
.yda{bottom:679.826667pt;}
.y151{bottom:684.033221pt;}
.y92{bottom:685.141333pt;}
.y30{bottom:687.344000pt;}
.y17{bottom:688.801333pt;}
.y153{bottom:690.046032pt;}
.y40{bottom:690.996000pt;}
.yb9{bottom:691.260387pt;}
.yf8{bottom:692.158667pt;}
.y11a{bottom:694.106667pt;}
.y6c{bottom:695.097333pt;}
.y4c{bottom:697.970667pt;}
.y156{bottom:702.071652pt;}
.y91{bottom:704.401333pt;}
.y2f{bottom:706.604000pt;}
.y189{bottom:708.003050pt;}
.y16{bottom:708.062667pt;}
.yb8{bottom:708.431332pt;}
.y3f{bottom:710.257333pt;}
.y6b{bottom:714.357333pt;}
.y150{bottom:714.428590pt;}
.y18c{bottom:715.454104pt;}
.yd9{bottom:716.357333pt;}
.y14d{bottom:720.441400pt;}
.y188{bottom:722.905158pt;}
.y90{bottom:723.662667pt;}
.yb7{bottom:725.603434pt;}
.y2e{bottom:725.865333pt;}
.y14f{bottom:726.454211pt;}
.yf7{bottom:727.205333pt;}
.y15{bottom:727.324000pt;}
.y3e{bottom:729.518667pt;}
.y18a{bottom:730.356212pt;}
.y4b{bottom:730.514667pt;}
.y14c{bottom:732.467021pt;}
.y6a{bottom:733.618667pt;}
.yd8{bottom:735.618667pt;}
.y187{bottom:737.807266pt;}
.y14e{bottom:738.479831pt;}
.yb6{bottom:742.774380pt;}
.y8f{bottom:742.924000pt;}
.y2d{bottom:745.126667pt;}
.y18b{bottom:745.258321pt;}
.y14{bottom:746.584000pt;}
.y3d{bottom:748.780000pt;}
.y186{bottom:752.708343pt;}
.y69{bottom:752.880000pt;}
.yd7{bottom:754.878667pt;}
.yf6{bottom:756.429333pt;}
.yb5{bottom:759.945325pt;}
.y8e{bottom:762.185333pt;}
.y4a{bottom:763.060000pt;}
.y2c{bottom:764.388000pt;}
.y13{bottom:766.377333pt;}
.y184{bottom:768.022049pt;}
.y3c{bottom:768.041333pt;}
.y22{bottom:768.502667pt;}
.y14b{bottom:768.926667pt;}
.y119{bottom:769.878667pt;}
.y68{bottom:772.141333pt;}
.y185{bottom:775.473103pt;}
.yb4{bottom:777.117427pt;}
.y8d{bottom:781.446667pt;}
.y183{bottom:782.924158pt;}
.y2b{bottom:783.649333pt;}
.yd6{bottom:784.434667pt;}
.y12{bottom:785.638667pt;}
.y3b{bottom:787.302667pt;}
.y21{bottom:787.764000pt;}
.y14a{bottom:788.188000pt;}
.y118{bottom:789.140000pt;}
.yb3{bottom:794.288373pt;}
.y49{bottom:795.604000pt;}
.y182{bottom:797.825234pt;}
.y8c{bottom:800.706667pt;}
.y2a{bottom:802.910667pt;}
.y67{bottom:804.696000pt;}
.y11{bottom:805.430667pt;}
.y3a{bottom:806.562667pt;}
.y20{bottom:807.024000pt;}
.y149{bottom:807.448000pt;}
.y117{bottom:808.400000pt;}
.yf5{bottom:809.673333pt;}
.yb2{bottom:811.459318pt;}
.y17d{bottom:813.138941pt;}
.y8b{bottom:819.968000pt;}
.y181{bottom:820.589995pt;}
.y29{bottom:822.170667pt;}
.y66{bottom:823.957333pt;}
.y10{bottom:824.692000pt;}
.y39{bottom:825.824000pt;}
.y1f{bottom:826.285333pt;}
.y148{bottom:826.709333pt;}
.y116{bottom:827.661333pt;}
.y17c{bottom:828.041049pt;}
.y48{bottom:828.149333pt;}
.yb1{bottom:828.631421pt;}
.yf4{bottom:828.934667pt;}
.yd5{bottom:830.650667pt;}
.y180{bottom:835.491072pt;}
.y8a{bottom:839.229333pt;}
.y28{bottom:841.432000pt;}
.y17b{bottom:842.942126pt;}
.yf{bottom:844.484000pt;}
.y38{bottom:845.085333pt;}
.y1e{bottom:845.546667pt;}
.yb0{bottom:845.802366pt;}
.y115{bottom:846.922667pt;}
.yd4{bottom:849.912000pt;}
.y17f{bottom:850.393180pt;}
.y65{bottom:853.513333pt;}
.y17a{bottom:857.844234pt;}
.y89{bottom:858.490667pt;}
.y27{bottom:860.693333pt;}
.y147{bottom:861.756000pt;}
.yaf{bottom:862.973311pt;}
.ye{bottom:864.276000pt;}
.y37{bottom:864.346667pt;}
.y1d{bottom:864.808000pt;}
.y17e{bottom:865.295288pt;}
.y114{bottom:866.184000pt;}
.y179{bottom:872.746343pt;}
.y88{bottom:877.752000pt;}
.y26{bottom:879.954667pt;}
.yd3{bottom:882.456000pt;}
.y36{bottom:883.608000pt;}
.yd{bottom:884.069333pt;}
.y113{bottom:885.445333pt;}
.y175{bottom:888.059017pt;}
.yae{bottom:895.740000pt;}
.y25{bottom:899.216000pt;}
.yd2{bottom:901.717333pt;}
.y35{bottom:902.869333pt;}
.y174{bottom:902.961125pt;}
.yc{bottom:903.861333pt;}
.yf3{bottom:904.706667pt;}
.y87{bottom:907.308000pt;}
.y178{bottom:910.412180pt;}
.yad{bottom:915.001333pt;}
.y173{bottom:917.863234pt;}
.y24{bottom:918.477333pt;}
.yf2{bottom:923.966667pt;}
.y176{bottom:925.314288pt;}
.y172{bottom:932.765342pt;}
.y3{bottom:934.261333pt;}
.y23{bottom:937.737333pt;}
.y177{bottom:940.216396pt;}
.yf1{bottom:943.228000pt;}
.y171{bottom:947.667451pt;}
.y2{bottom:953.522667pt;}
.y170{bottom:962.568527pt;}
.y1{bottom:972.784000pt;}
.y16f{bottom:977.882233pt;}
.yb{bottom:1015.450667pt;}
.h7{height:24.696550pt;}
.ha{height:27.898655pt;}
.hf{height:29.856438pt;}
.h9{height:36.543699pt;}
.h10{height:36.997997pt;}
.h8{height:41.487891pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.hc{height:50.061632pt;}
.he{height:50.064743pt;}
.hd{height:50.680814pt;}
.hb{height:50.683925pt;}
.h6{height:51.403288pt;}
.h3{height:57.384800pt;}
.h11{height:66.798087pt;}
.h4{height:68.861600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x17{left:100.651976pt;}
.x15{left:102.091024pt;}
.x22{left:108.548000pt;}
.x11{left:113.950667pt;}
.xf{left:119.412000pt;}
.xc{left:120.613333pt;}
.x10{left:135.020000pt;}
.xe{left:137.168000pt;}
.x12{left:163.076445pt;}
.x1a{left:167.574667pt;}
.x18{left:176.378074pt;}
.x16{left:193.151732pt;}
.x3{left:194.281333pt;}
.xa{left:196.685333pt;}
.x4{left:202.642667pt;}
.x1{left:206.616000pt;}
.x7{left:208.816000pt;}
.x1b{left:217.364204pt;}
.x2{left:223.878667pt;}
.x9{left:231.038667pt;}
.x1f{left:233.538667pt;}
.x20{left:291.607967pt;}
.xd{left:295.134667pt;}
.x13{left:310.762307pt;}
.x8{left:316.868000pt;}
.x19{left:334.302120pt;}
.x5{left:354.709333pt;}
.x6{left:370.456000pt;}
.x1c{left:402.928041pt;}
.x14{left:462.606722pt;}
.x1d{left:503.679868pt;}
.x21{left:526.209406pt;}
.x1e{left:606.615220pt;}
}




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