
    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_aeacab3e3257e708ff3d6a7b.woff')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_478270d0742d57e171b7c397.woff')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_43f09a2c69bbc0e14ef1a093.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4652040d31377bb9cb56df64.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1dbde0d8a97eef61e44df6ef.woff')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_f7491b29114d418e334edd17.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_b9f0f7130a23c7596b52f821.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_155d44ac4c7e38f0b6dbb182.woff')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_759febc67aa89fe162629732.woff')format("woff");}.ff9{font-family:ff9;line-height:0.046000;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_1211ba2ea8cea72d9dfc34a5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.383000;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_bb72b44794908b8454f07295.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_16a3666490856c7bb791079a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_105a5f1dcb6b16fcf3ea398a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:13.614000px;}
.v5{vertical-align:20.724000px;}
.v9{vertical-align:24.738000px;}
.v1{vertical-align:26.034000px;}
.v7{vertical-align:28.242000px;}
.v4{vertical-align:29.616000px;}
.v2{vertical-align:48.528000px;}
.v3{vertical-align:97.728000px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000472px;}
.ls2b{letter-spacing:0.000960px;}
.ls8{letter-spacing:0.001114px;}
.ls1c{letter-spacing:0.002227px;}
.lsb{letter-spacing:0.002287px;}
.ls27{letter-spacing:0.002759px;}
.ls24{letter-spacing:0.003056px;}
.lsa{letter-spacing:0.003206px;}
.ls51{letter-spacing:0.397473px;}
.ls49{letter-spacing:0.401073px;}
.ls4b{letter-spacing:0.403473px;}
.ls2{letter-spacing:2.984915px;}
.ls57{letter-spacing:2.990915px;}
.ls2c{letter-spacing:10.158532px;}
.ls21{letter-spacing:14.041473px;}
.ls20{letter-spacing:14.047473px;}
.ls55{letter-spacing:14.936915px;}
.ls22{letter-spacing:14.942915px;}
.ls26{letter-spacing:15.934404px;}
.ls38{letter-spacing:15.935073px;}
.ls32{letter-spacing:15.936472px;}
.ls23{letter-spacing:15.937473px;}
.ls54{letter-spacing:15.940404px;}
.ls25{letter-spacing:15.941073px;}
.ls39{letter-spacing:15.942163px;}
.ls35{letter-spacing:15.942472px;}
.ls46{letter-spacing:15.942760px;}
.ls4d{letter-spacing:16.337518px;}
.ls50{letter-spacing:16.343518px;}
.ls9{letter-spacing:16.369473px;}
.ls1e{letter-spacing:16.915473px;}
.ls3a{letter-spacing:18.096163px;}
.ls3b{letter-spacing:18.101073px;}
.ls4c{letter-spacing:18.926915px;}
.ls1f{letter-spacing:19.919123px;}
.lsf{letter-spacing:19.919518px;}
.ls3f{letter-spacing:19.920472px;}
.ls11{letter-spacing:19.921139px;}
.ls29{letter-spacing:19.921473px;}
.ls19{letter-spacing:19.922227px;}
.ls3d{letter-spacing:19.923848px;}
.ls10{letter-spacing:19.924800px;}
.ls4a{letter-spacing:19.925073px;}
.ls53{letter-spacing:19.925123px;}
.ls5{letter-spacing:19.925518px;}
.lse{letter-spacing:19.926472px;}
.ls45{letter-spacing:19.926760px;}
.ls13{letter-spacing:19.927288px;}
.ls3e{letter-spacing:19.927473px;}
.ls40{letter-spacing:19.928227px;}
.ls4f{letter-spacing:22.493518px;}
.ls18{letter-spacing:22.910915px;}
.ls5d{letter-spacing:23.407114px;}
.ls5e{letter-spacing:23.413114px;}
.lsd{letter-spacing:23.413139px;}
.ls5a{letter-spacing:23.687518px;}
.ls7{letter-spacing:24.035123px;}
.ls4{letter-spacing:24.131226px;}
.ls34{letter-spacing:24.593518px;}
.ls30{letter-spacing:24.858960px;}
.ls4e{letter-spacing:25.484915px;}
.ls2e{letter-spacing:25.819288px;}
.ls3c{letter-spacing:26.577848px;}
.ls1d{letter-spacing:26.880445px;}
.ls41{letter-spacing:27.091473px;}
.ls36{letter-spacing:27.093848px;}
.ls14{letter-spacing:27.095518px;}
.ls47{letter-spacing:27.097473px;}
.ls58{letter-spacing:27.098759px;}
.ls17{letter-spacing:27.365518px;}
.ls59{letter-spacing:27.899226px;}
.ls6{letter-spacing:28.247226px;}
.ls1a{letter-spacing:28.307518px;}
.lsc{letter-spacing:28.560445px;}
.ls5b{letter-spacing:28.610915px;}
.ls1{letter-spacing:29.465518px;}
.ls2d{letter-spacing:29.686765px;}
.ls44{letter-spacing:30.086915px;}
.ls12{letter-spacing:31.595518px;}
.ls2f{letter-spacing:32.993518px;}
.ls0{letter-spacing:33.671226px;}
.ls33{letter-spacing:34.354765px;}
.ls5c{letter-spacing:35.117578px;}
.ls2a{letter-spacing:39.647518px;}
.ls15{letter-spacing:40.080472px;}
.ls52{letter-spacing:42.479518px;}
.ls42{letter-spacing:43.295518px;}
.ls43{letter-spacing:48.324532px;}
.ls16{letter-spacing:51.816472px;}
.ls31{letter-spacing:70.229518px;}
.ls48{letter-spacing:82.189114px;}
.ls37{letter-spacing:114.569518px;}
.ls56{letter-spacing:161.797473px;}
.ls28{letter-spacing:232.778915px;}
.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;}
}
.wsa6{word-spacing:-71.731200px;}
.wsa2{word-spacing:-51.810000px;}
.ws18{word-spacing:-45.664082px;}
.ws1{word-spacing:-38.742188px;}
.wsb9{word-spacing:-25.757785px;}
.wsb8{word-spacing:-25.752451px;}
.ws8e{word-spacing:-25.741692px;}
.wse0{word-spacing:-22.416000px;}
.ws50{word-spacing:-21.212498px;}
.ws3f{word-spacing:-19.510886px;}
.wse2{word-spacing:-17.932800px;}
.ws64{word-spacing:-17.728514px;}
.wsa5{word-spacing:-14.111859px;}
.ws6d{word-spacing:-5.482237px;}
.ws6b{word-spacing:-5.469673px;}
.wsca{word-spacing:-4.483200px;}
.wscb{word-spacing:-3.873485px;}
.wsba{word-spacing:-3.595428px;}
.ws6f{word-spacing:-3.579673px;}
.wsbb{word-spacing:-3.576914px;}
.ws71{word-spacing:-3.573723px;}
.wsb7{word-spacing:-3.573673px;}
.ws72{word-spacing:-3.572077px;}
.ws42{word-spacing:-3.227904px;}
.ws4b{word-spacing:-3.147673px;}
.ws53{word-spacing:-2.869248px;}
.ws68{word-spacing:-2.623098px;}
.wsc0{word-spacing:-2.582323px;}
.wsd3{word-spacing:-2.510592px;}
.ws78{word-spacing:-2.223667px;}
.wsc9{word-spacing:-2.008474px;}
.ws30{word-spacing:-1.865011px;}
.ws88{word-spacing:-1.793280px;}
.ws33{word-spacing:-1.291162px;}
.wsd5{word-spacing:-1.004237px;}
.ws97{word-spacing:-0.932506px;}
.ws5{word-spacing:-0.641455px;}
.ws41{word-spacing:-0.573850px;}
.ws32{word-spacing:-0.358656px;}
.ws9d{word-spacing:-0.143462px;}
.ws4c{word-spacing:-0.047821px;}
.ws23{word-spacing:0.000000px;}
.ws48{word-spacing:0.071731px;}
.wsa9{word-spacing:0.397763px;}
.ws6a{word-spacing:0.430387px;}
.wsaa{word-spacing:0.440037px;}
.ws34{word-spacing:0.502118px;}
.wsb3{word-spacing:0.537984px;}
.ws8b{word-spacing:0.717312px;}
.ws4d{word-spacing:0.827971px;}
.wsd9{word-spacing:0.860774px;}
.wsda{word-spacing:0.932506px;}
.ws1d{word-spacing:1.075968px;}
.ws20{word-spacing:1.147699px;}
.wsce{word-spacing:1.219430px;}
.wsbf{word-spacing:1.291162px;}
.ws28{word-spacing:1.362893px;}
.wscd{word-spacing:1.470490px;}
.wsc{word-spacing:1.506355px;}
.wsb{word-spacing:1.578086px;}
.ws1f{word-spacing:1.649818px;}
.ws38{word-spacing:1.721549px;}
.ws8{word-spacing:1.780365px;}
.ws37{word-spacing:1.793280px;}
.ws8c{word-spacing:2.008474px;}
.wsa1{word-spacing:2.080205px;}
.ws2f{word-spacing:2.151936px;}
.ws5b{word-spacing:2.223667px;}
.ws63{word-spacing:2.295398px;}
.ws7c{word-spacing:2.367130px;}
.wsc7{word-spacing:2.438861px;}
.ws85{word-spacing:2.510592px;}
.ws98{word-spacing:2.582323px;}
.ws3e{word-spacing:2.654054px;}
.ws62{word-spacing:2.689920px;}
.wsae{word-spacing:2.725786px;}
.wsaf{word-spacing:2.869248px;}
.ws6c{word-spacing:2.940979px;}
.ws69{word-spacing:2.952630px;}
.wsea{word-spacing:3.084442px;}
.ws5d{word-spacing:3.156173px;}
.wsb4{word-spacing:3.227904px;}
.ws9c{word-spacing:3.371366px;}
.wsc4{word-spacing:3.443098px;}
.wsdc{word-spacing:3.514829px;}
.ws9{word-spacing:3.613094px;}
.ws15{word-spacing:3.658291px;}
.ws1c{word-spacing:3.730022px;}
.ws4f{word-spacing:3.862785px;}
.wsf{word-spacing:3.873485px;}
.ws91{word-spacing:3.945216px;}
.ws2e{word-spacing:4.016947px;}
.ws4{word-spacing:4.071276px;}
.ws43{word-spacing:4.088678px;}
.wsc8{word-spacing:4.160410px;}
.ws96{word-spacing:4.232141px;}
.ws47{word-spacing:4.375603px;}
.ws40{word-spacing:4.483200px;}
.ws4a{word-spacing:4.519066px;}
.ws49{word-spacing:4.520959px;}
.ws4e{word-spacing:4.549841px;}
.ws1e{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.ws22{word-spacing:4.662528px;}
.ws84{word-spacing:4.734259px;}
.ws70{word-spacing:4.811971px;}
.wsc1{word-spacing:4.877722px;}
.ws35{word-spacing:4.949453px;}
.wsd2{word-spacing:5.021184px;}
.ws99{word-spacing:5.092915px;}
.ws39{word-spacing:5.164646px;}
.ws36{word-spacing:5.236378px;}
.ws67{word-spacing:5.308109px;}
.ws2a{word-spacing:5.379825px;}
.wsb2{word-spacing:5.379840px;}
.ws10{word-spacing:5.451571px;}
.ws31{word-spacing:5.595034px;}
.ws44{word-spacing:5.666765px;}
.ws26{word-spacing:5.738496px;}
.wse{word-spacing:5.810227px;}
.ws29{word-spacing:5.881958px;}
.ws2b{word-spacing:5.953690px;}
.wsd6{word-spacing:6.025421px;}
.wsbe{word-spacing:6.097152px;}
.ws66{word-spacing:6.133018px;}
.ws27{word-spacing:6.240614px;}
.ws59{word-spacing:6.312346px;}
.ws58{word-spacing:6.384077px;}
.ws5a{word-spacing:6.527539px;}
.ws75{word-spacing:6.671002px;}
.wsd4{word-spacing:6.742733px;}
.ws3b{word-spacing:6.814464px;}
.ws5f{word-spacing:6.886195px;}
.ws51{word-spacing:7.029658px;}
.ws55{word-spacing:7.101389px;}
.ws83{word-spacing:7.137254px;}
.ws6{word-spacing:7.147642px;}
.ws7b{word-spacing:7.173120px;}
.ws7a{word-spacing:7.280717px;}
.ws7e{word-spacing:7.316582px;}
.ws1a{word-spacing:7.388314px;}
.ws2c{word-spacing:7.460045px;}
.ws16{word-spacing:7.531776px;}
.ws46{word-spacing:7.603507px;}
.ws86{word-spacing:7.746970px;}
.ws0{word-spacing:7.748437px;}
.ws45{word-spacing:7.818701px;}
.ws8f{word-spacing:7.859449px;}
.ws3c{word-spacing:7.890432px;}
.wse3{word-spacing:7.962163px;}
.wsac{word-spacing:8.033894px;}
.ws24{word-spacing:8.105626px;}
.wsd0{word-spacing:8.177357px;}
.wsa3{word-spacing:8.249088px;}
.ws2d{word-spacing:8.320819px;}
.wsc6{word-spacing:8.356685px;}
.ws7f{word-spacing:8.392550px;}
.ws79{word-spacing:8.464282px;}
.wse1{word-spacing:8.607744px;}
.wsa0{word-spacing:8.679475px;}
.wsb6{word-spacing:8.798838px;}
.ws65{word-spacing:8.800046px;}
.ws6e{word-spacing:8.806046px;}
.wsa8{word-spacing:8.822125px;}
.ws3a{word-spacing:8.822938px;}
.wsa4{word-spacing:8.828125px;}
.ws8d{word-spacing:8.894669px;}
.ws81{word-spacing:8.966400px;}
.ws74{word-spacing:9.038131px;}
.wsd7{word-spacing:9.109862px;}
.ws57{word-spacing:9.181594px;}
.ws8a{word-spacing:9.253325px;}
.ws11{word-spacing:9.325056px;}
.ws95{word-spacing:9.396787px;}
.ws3{word-spacing:9.438553px;}
.ws9e{word-spacing:9.468518px;}
.ws7{word-spacing:9.504008px;}
.ws17{word-spacing:9.540250px;}
.wsbc{word-spacing:9.970637px;}
.wscc{word-spacing:10.149965px;}
.ws9a{word-spacing:10.257562px;}
.wsbd{word-spacing:10.329293px;}
.ws73{word-spacing:10.365158px;}
.wsd{word-spacing:10.472755px;}
.ws92{word-spacing:10.544486px;}
.ws82{word-spacing:10.687949px;}
.ws52{word-spacing:10.759680px;}
.ws21{word-spacing:10.903142px;}
.ws56{word-spacing:11.261798px;}
.wsdb{word-spacing:11.476992px;}
.wsad{word-spacing:11.548723px;}
.ws1b{word-spacing:11.620454px;}
.wsde{word-spacing:11.692186px;}
.wse5{word-spacing:11.697009px;}
.wsb1{word-spacing:11.805333px;}
.ws14{word-spacing:11.907379px;}
.ws12{word-spacing:11.979110px;}
.ws25{word-spacing:12.050842px;}
.ws5c{word-spacing:12.194304px;}
.wsab{word-spacing:12.409498px;}
.ws54{word-spacing:12.624691px;}
.ws90{word-spacing:12.696422px;}
.wse4{word-spacing:12.768154px;}
.ws3d{word-spacing:12.911616px;}
.ws7d{word-spacing:13.055078px;}
.wsd8{word-spacing:13.270272px;}
.ws93{word-spacing:13.413734px;}
.ws9f{word-spacing:13.628928px;}
.wsc5{word-spacing:13.664794px;}
.ws61{word-spacing:13.844122px;}
.wscf{word-spacing:13.915853px;}
.ws60{word-spacing:13.987584px;}
.ws77{word-spacing:14.059315px;}
.wse6{word-spacing:14.131046px;}
.ws76{word-spacing:14.202778px;}
.ws13{word-spacing:14.561434px;}
.wsdd{word-spacing:14.633165px;}
.wsc3{word-spacing:14.920090px;}
.ws5e{word-spacing:15.063552px;}
.wsdf{word-spacing:15.207014px;}
.ws9b{word-spacing:15.350477px;}
.wsb0{word-spacing:15.606632px;}
.wseb{word-spacing:16.426445px;}
.wse8{word-spacing:16.785101px;}
.wsc2{word-spacing:17.179622px;}
.wsb5{word-spacing:17.767102px;}
.ws89{word-spacing:17.854046px;}
.wse9{word-spacing:19.008768px;}
.ws94{word-spacing:25.006046px;}
.ws19{word-spacing:28.549018px;}
.wse7{word-spacing:34.430976px;}
.wsa7{word-spacing:36.898529px;}
.ws87{word-spacing:47.813727px;}
.ws80{word-spacing:47.815361px;}
.wsd1{word-spacing:58.281600px;}
.wsa{word-spacing:69.937725px;}
._26{margin-left:-36.355705px;}
._25{margin-left:-34.671546px;}
._1a{margin-left:-8.091257px;}
._9{margin-left:-5.770778px;}
._0{margin-left:-3.843225px;}
._2{margin-left:-2.324084px;}
._6{margin-left:-1.275919px;}
._3{width:1.767274px;}
._e{width:2.783158px;}
._1{width:3.843225px;}
._1d{width:4.851716px;}
._1c{width:17.723033px;}
._18{width:19.709041px;}
._19{width:21.143665px;}
._8{width:22.219633px;}
._27{width:23.573101px;}
._29{width:25.390165px;}
._b{width:26.623922px;}
._10{width:28.046899px;}
._4{width:29.487743px;}
._5{width:30.634537px;}
._11{width:32.003762px;}
._14{width:33.911818px;}
._c{width:34.955504px;}
._15{width:36.911966px;}
._16{width:38.949125px;}
._20{width:40.196584px;}
._2a{width:41.224949px;}
._f{width:42.565288px;}
._13{width:43.756032px;}
._12{width:45.351158px;}
._7{width:47.095031px;}
._a{width:51.052057px;}
._24{width:52.292045px;}
._1f{width:53.999234px;}
._d{width:55.816528px;}
._1e{width:57.528422px;}
._2c{width:58.536936px;}
._2b{width:59.952924px;}
._23{width:61.961398px;}
._21{width:65.130356px;}
._22{width:69.671123px;}
._1b{width:80.697600px;}
._28{width:82.174030px;}
._17{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.168000px;}
.y25{bottom:108.000000px;}
.y51{bottom:112.144500px;}
.yb8{bottom:117.432000px;}
.y24{bottom:129.669000px;}
.yb7{bottom:129.733500px;}
.y50{bottom:133.813500px;}
.y172{bottom:137.799000px;}
.y153{bottom:142.462500px;}
.y23{bottom:151.338000px;}
.y4f{bottom:155.482500px;}
.y134{bottom:159.045000px;}
.y190{bottom:162.606000px;}
.y6b{bottom:173.005500px;}
.y22{bottom:173.007000px;}
.y171{bottom:174.412500px;}
.y152{bottom:176.926500px;}
.y4e{bottom:177.151500px;}
.yb6{bottom:177.231000px;}
.y133{bottom:180.714000px;}
.y18f{bottom:184.275000px;}
.y90{bottom:194.010000px;}
.y21{bottom:194.674500px;}
.yb5{bottom:198.900000px;}
.y132{bottom:202.381500px;}
.y4d{bottom:210.402000px;}
.y170{bottom:211.024500px;}
.y151{bottom:211.389000px;}
.y115{bottom:212.433000px;}
.yb4{bottom:214.386000px;}
.y8f{bottom:215.679000px;}
.y20{bottom:216.343500px;}
.yb3{bottom:220.569000px;}
.y18e{bottom:220.887000px;}
.ydd{bottom:234.102000px;}
.y8e{bottom:237.348000px;}
.y1f{bottom:238.012500px;}
.y18d{bottom:242.556000px;}
.y131{bottom:243.478500px;}
.y150{bottom:245.853000px;}
.y16f{bottom:247.638000px;}
.y4c{bottom:252.892500px;}
.yb2{bottom:255.360000px;}
.y8d{bottom:259.017000px;}
.y1e{bottom:259.681500px;}
.y130{bottom:265.147500px;}
.y114{bottom:265.762500px;}
.yb1{bottom:267.660000px;}
.y16e{bottom:269.305500px;}
.y18c{bottom:279.168000px;}
.y14f{bottom:280.315500px;}
.y8c{bottom:280.684500px;}
.y1d{bottom:281.350500px;}
.ydc{bottom:286.600500px;}
.y113{bottom:287.431500px;}
.y18b{bottom:300.837000px;}
.y12f{bottom:301.759500px;}
.y8b{bottom:302.353500px;}
.y1c{bottom:303.018000px;}
.yfa{bottom:303.019500px;}
.y16d{bottom:305.919000px;}
.y4b{bottom:306.814500px;}
.ydb{bottom:308.269500px;}
.y112{bottom:309.100500px;}
.y14e{bottom:310.479000px;}
.yb0{bottom:314.959500px;}
.y12e{bottom:323.428500px;}
.y8a{bottom:324.022500px;}
.y1b{bottom:324.687000px;}
.y16c{bottom:327.588000px;}
.y4a{bottom:328.483500px;}
.yda{bottom:329.938500px;}
.y14d{bottom:332.148000px;}
.y111{bottom:335.520000px;}
.y6a{bottom:336.268500px;}
.yaf{bottom:336.628500px;}
.y18a{bottom:337.450500px;}
.y1a{bottom:346.356000px;}
.y110{bottom:347.821500px;}
.y16b{bottom:349.257000px;}
.y49{bottom:350.152500px;}
.yd9{bottom:351.607500px;}
.y14c{bottom:353.817000px;}
.yae{bottom:358.297500px;}
.y189{bottom:359.118000px;}
.y12d{bottom:360.040500px;}
.y19{bottom:368.025000px;}
.y89{bottom:370.785000px;}
.y16a{bottom:370.924500px;}
.y48{bottom:371.821500px;}
.yd8{bottom:373.275000px;}
.yad{bottom:373.782000px;}
.y14b{bottom:375.486000px;}
.y10f{bottom:375.658500px;}
.yf9{bottom:375.972000px;}
.yac{bottom:379.966500px;}
.y12c{bottom:381.709500px;}
.y69{bottom:382.975500px;}
.y18{bottom:389.694000px;}
.y88{bottom:392.454000px;}
.y169{bottom:392.593500px;}
.y47{bottom:393.490500px;}
.yd7{bottom:394.944000px;}
.y188{bottom:395.731500px;}
.y14a{bottom:397.153500px;}
.yab{bottom:401.635500px;}
.y68{bottom:404.643000px;}
.yf8{bottom:405.588000px;}
.y10e{bottom:411.237000px;}
.y17{bottom:411.363000px;}
.y87{bottom:414.121500px;}
.y168{bottom:414.262500px;}
.y46{bottom:415.158000px;}
.yd6{bottom:416.613000px;}
.y187{bottom:417.400500px;}
.y149{bottom:418.822500px;}
.y12b{bottom:422.805000px;}
.y67{bottom:426.312000px;}
.yf7{bottom:432.690000px;}
.y16{bottom:433.030500px;}
.yaa{bottom:434.886000px;}
.y86{bottom:435.790500px;}
.y167{bottom:435.931500px;}
.y45{bottom:436.827000px;}
.yd5{bottom:438.282000px;}
.y148{bottom:440.491500px;}
.y12a{bottom:444.474000px;}
.y10d{bottom:446.815500px;}
.y66{bottom:447.981000px;}
.y186{bottom:454.012500px;}
.yf6{bottom:454.359000px;}
.y15{bottom:454.699500px;}
.y85{bottom:457.459500px;}
.y166{bottom:457.600500px;}
.y44{bottom:458.496000px;}
.yd4{bottom:459.951000px;}
.y147{bottom:462.160500px;}
.y65{bottom:469.650000px;}
.y10c{bottom:474.673500px;}
.y185{bottom:475.681500px;}
.yf5{bottom:476.028000px;}
.y14{bottom:476.368500px;}
.y129{bottom:477.724500px;}
.y84{bottom:479.128500px;}
.y165{bottom:479.269500px;}
.y43{bottom:480.165000px;}
.yd3{bottom:481.620000px;}
.ya9{bottom:481.647000px;}
.y146{bottom:483.829500px;}
.y10b{bottom:486.975000px;}
.y64{bottom:491.319000px;}
.yf4{bottom:497.697000px;}
.y13{bottom:498.037500px;}
.y83{bottom:500.797500px;}
.y164{bottom:500.937000px;}
.y42{bottom:501.834000px;}
.yd2{bottom:503.287500px;}
.ya8{bottom:503.316000px;}
.y145{bottom:505.498500px;}
.y184{bottom:512.293500px;}
.y63{bottom:512.988000px;}
.y12{bottom:519.706500px;}
.y82{bottom:522.466500px;}
.y163{bottom:522.606000px;}
.y41{bottom:523.501500px;}
.y128{bottom:524.487000px;}
.yd1{bottom:524.956500px;}
.ya7{bottom:524.985000px;}
.y144{bottom:527.166000px;}
.yf3{bottom:530.946000px;}
.y10a{bottom:531.447000px;}
.y183{bottom:533.962500px;}
.y62{bottom:534.655500px;}
.y11{bottom:541.375500px;}
.y81{bottom:544.134000px;}
.y162{bottom:544.275000px;}
.y40{bottom:545.170500px;}
.y127{bottom:546.156000px;}
.yd0{bottom:546.625500px;}
.ya6{bottom:546.654000px;}
.y143{bottom:548.835000px;}
.y109{bottom:553.116000px;}
.y61{bottom:556.324500px;}
.y10{bottom:563.043000px;}
.y80{bottom:565.803000px;}
.y161{bottom:565.944000px;}
.y3f{bottom:566.839500px;}
.y126{bottom:567.825000px;}
.ycf{bottom:568.294500px;}
.ya5{bottom:568.323000px;}
.y142{bottom:570.504000px;}
.y182{bottom:570.576000px;}
.yf2{bottom:576.234000px;}
.y60{bottom:577.993500px;}
.yf{bottom:584.712000px;}
.y108{bottom:586.365000px;}
.y3e{bottom:588.508500px;}
.yce{bottom:589.963500px;}
.ya4{bottom:589.990500px;}
.y141{bottom:592.173000px;}
.y181{bottom:592.245000px;}
.y160{bottom:597.823500px;}
.yf1{bottom:597.903000px;}
.y5f{bottom:599.662500px;}
.y125{bottom:608.920500px;}
.y15f{bottom:610.125000px;}
.y3d{bottom:610.177500px;}
.ycd{bottom:611.631000px;}
.y7f{bottom:612.565500px;}
.y140{bottom:613.842000px;}
.yf0{bottom:619.798500px;}
.y5e{bottom:621.331500px;}
.ye{bottom:624.139500px;}
.ycc{bottom:627.117000px;}
.y180{bottom:628.857000px;}
.y124{bottom:630.589500px;}
.y3c{bottom:631.846500px;}
.yef{bottom:632.098500px;}
.y107{bottom:632.533500px;}
.ycb{bottom:633.300000px;}
.y7e{bottom:634.234500px;}
.ya3{bottom:636.753000px;}
.y5d{bottom:643.000500px;}
.y13f{bottom:647.092500px;}
.y17f{bottom:650.526000px;}
.y123{bottom:652.257000px;}
.y3b{bottom:653.514000px;}
.y106{bottom:654.202500px;}
.y7d{bottom:655.903500px;}
.y15e{bottom:657.624000px;}
.ya2{bottom:658.422000px;}
.y5c{bottom:664.668000px;}
.yca{bottom:668.239500px;}
.yee{bottom:669.513000px;}
.y3a{bottom:675.183000px;}
.y105{bottom:675.871500px;}
.yd{bottom:677.938500px;}
.y15d{bottom:679.293000px;}
.ya1{bottom:680.091000px;}
.y7c{bottom:684.048000px;}
.y17e{bottom:687.138000px;}
.y122{bottom:688.870500px;}
.y13e{bottom:692.743500px;}
.y5b{bottom:696.168000px;}
.y7b{bottom:696.348000px;}
.y39{bottom:696.852000px;}
.yc{bottom:698.262000px;}
.yed{bottom:699.127500px;}
.y15c{bottom:700.962000px;}
.ya0{bottom:701.760000px;}
.y5a{bottom:708.469500px;}
.y121{bottom:710.539500px;}
.y104{bottom:712.369500px;}
.yc9{bottom:713.578500px;}
.y13d{bottom:714.412500px;}
.y38{bottom:718.521000px;}
.yb{bottom:718.587000px;}
.y15b{bottom:722.631000px;}
.y9f{bottom:723.429000px;}
.y17d{bottom:723.751500px;}
.y7a{bottom:724.186500px;}
.yec{bottom:728.743500px;}
.y120{bottom:732.208500px;}
.yc8{bottom:735.246000px;}
.ya{bottom:738.910500px;}
.y37{bottom:740.190000px;}
.y15a{bottom:744.298500px;}
.y9e{bottom:745.096500px;}
.y17c{bottom:745.420500px;}
.y79{bottom:745.855500px;}
.y13c{bottom:747.663000px;}
.y103{bottom:747.948000px;}
.yeb{bottom:750.412500px;}
.y59{bottom:755.587500px;}
.yc7{bottom:756.915000px;}
.y9{bottom:759.234000px;}
.y36{bottom:761.859000px;}
.y159{bottom:765.967500px;}
.y78{bottom:767.524500px;}
.y11f{bottom:768.820500px;}
.yea{bottom:772.081500px;}
.yc6{bottom:778.584000px;}
.y8{bottom:779.557500px;}
.y17b{bottom:782.032500px;}
.y35{bottom:783.526500px;}
.y58{bottom:787.086000px;}
.y158{bottom:787.636500px;}
.y11e{bottom:790.489500px;}
.y9d{bottom:791.859000px;}
.y13b{bottom:793.314000px;}
.y57{bottom:799.387500px;}
.y7{bottom:799.881000px;}
.yc5{bottom:800.253000px;}
.y17a{bottom:803.701500px;}
.y34{bottom:805.195500px;}
.ye9{bottom:805.332000px;}
.y77{bottom:808.324500px;}
.y9c{bottom:813.528000px;}
.y76{bottom:820.624500px;}
.yc4{bottom:821.922000px;}
.y33{bottom:826.864500px;}
.y157{bottom:827.064000px;}
.y13a{bottom:827.776500px;}
.y6{bottom:829.267500px;}
.y11d{bottom:831.585000px;}
.y9b{bottom:835.197000px;}
.y102{bottom:839.949000px;}
.y179{bottom:840.313500px;}
.y56{bottom:841.773000px;}
.yc3{bottom:843.591000px;}
.ye8{bottom:845.613000px;}
.y32{bottom:848.533500px;}
.y101{bottom:852.250500px;}
.y11c{bottom:853.254000px;}
.y9a{bottom:856.866000px;}
.ye7{bottom:857.914500px;}
.y178{bottom:861.982500px;}
.y139{bottom:862.240500px;}
.y55{bottom:863.442000px;}
.y75{bottom:868.123500px;}
.y31{bottom:870.202500px;}
.yc2{bottom:871.899000px;}
.y156{bottom:880.986000px;}
.yc1{bottom:884.200500px;}
.y54{bottom:885.111000px;}
.y11b{bottom:886.504500px;}
.y99{bottom:888.745500px;}
.y74{bottom:891.784500px;}
.y30{bottom:891.871500px;}
.y5{bottom:894.399000px;}
.y138{bottom:894.738000px;}
.ye6{bottom:895.428000px;}
.y100{bottom:895.527000px;}
.y177{bottom:898.596000px;}
.y98{bottom:901.047000px;}
.y73{bottom:904.086000px;}
.y137{bottom:916.405500px;}
.ye5{bottom:917.095500px;}
.yff{bottom:917.196000px;}
.y155{bottom:917.599500px;}
.y176{bottom:920.265000px;}
.y53{bottom:924.331500px;}
.yc0{bottom:927.130500px;}
.y2f{bottom:931.297500px;}
.y11a{bottom:933.267000px;}
.y72{bottom:933.453000px;}
.y4{bottom:936.466500px;}
.ye4{bottom:938.991000px;}
.y97{bottom:948.546000px;}
.ybf{bottom:949.362000px;}
.y136{bottom:949.656000px;}
.ye3{bottom:951.291000px;}
.yfe{bottom:952.774500px;}
.y154{bottom:954.211500px;}
.y119{bottom:954.934500px;}
.y71{bottom:955.122000px;}
.y175{bottom:956.877000px;}
.ybe{bottom:961.663500px;}
.y52{bottom:963.552000px;}
.y96{bottom:970.215000px;}
.y118{bottom:976.603500px;}
.y174{bottom:978.546000px;}
.y2e{bottom:985.221000px;}
.yfd{bottom:988.353000px;}
.ye2{bottom:988.605000px;}
.y3{bottom:989.704500px;}
.y135{bottom:995.308500px;}
.ybd{bottom:999.513000px;}
.y117{bottom:1000.264500px;}
.y70{bottom:1001.884500px;}
.y2d{bottom:1006.890000px;}
.ye1{bottom:1010.274000px;}
.y116{bottom:1012.566000px;}
.y95{bottom:1016.976000px;}
.y173{bottom:1017.973500px;}
.ybc{bottom:1021.182000px;}
.y6f{bottom:1023.553500px;}
.yfc{bottom:1023.816000px;}
.y2{bottom:1027.063500px;}
.y2c{bottom:1028.557500px;}
.ye0{bottom:1031.943000px;}
.y94{bottom:1038.645000px;}
.ybb{bottom:1042.851000px;}
.y6e{bottom:1045.221000px;}
.yfb{bottom:1045.485000px;}
.y2b{bottom:1050.226500px;}
.ydf{bottom:1053.837000px;}
.y93{bottom:1060.314000px;}
.y1{bottom:1064.424000px;}
.yba{bottom:1065.082500px;}
.yde{bottom:1066.138500px;}
.y2a{bottom:1071.895500px;}
.y6d{bottom:1077.102000px;}
.yb9{bottom:1077.382500px;}
.y92{bottom:1081.983000px;}
.y6c{bottom:1089.403500px;}
.y29{bottom:1093.564500px;}
.y91{bottom:1103.652000px;}
.y28{bottom:1115.233500px;}
.y27{bottom:1136.902500px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.h9{height:50.211840px;}
.hc{height:51.144346px;}
.h7{height:53.798400px;}
.h10{height:54.383702px;}
.hf{height:54.389702px;}
.ha{height:59.693702px;}
.h8{height:59.699702px;}
.h6{height:60.254040px;}
.h13{height:61.429496px;}
.h19{height:63.287702px;}
.h3{height:64.557900px;}
.h16{height:78.530400px;}
.h14{height:78.536400px;}
.h2{height:86.782500px;}
.h18{height:98.309453px;}
.hd{height:99.666346px;}
.hb{height:99.672346px;}
.h15{height:102.326400px;}
.h11{height:108.221702px;}
.h12{height:112.481702px;}
.h1a{height:112.487702px;}
.he{height:148.872346px;}
.h17{height:148.878346px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x2{left:124.876500px;}
.x2a{left:129.460500px;}
.xa{left:134.338500px;}
.x1{left:138.663000px;}
.x8{left:151.897500px;}
.x1a{left:167.100000px;}
.x7{left:176.443500px;}
.x31{left:220.414500px;}
.x28{left:246.322500px;}
.x18{left:260.059500px;}
.x29{left:262.141500px;}
.x32{left:276.924000px;}
.x1f{left:332.769000px;}
.x2e{left:342.142500px;}
.x23{left:345.144000px;}
.x21{left:363.819000px;}
.x19{left:365.308500px;}
.x14{left:370.057500px;}
.x3{left:373.936500px;}
.xf{left:379.138500px;}
.x4{left:381.784500px;}
.xd{left:383.268000px;}
.x24{left:387.385500px;}
.x5{left:390.417000px;}
.x26{left:397.024500px;}
.x1d{left:405.210000px;}
.x16{left:408.315000px;}
.x2f{left:409.372500px;}
.x6{left:410.455500px;}
.x1b{left:414.228000px;}
.x10{left:416.610000px;}
.xc{left:417.664500px;}
.x2b{left:425.581500px;}
.x2c{left:432.894000px;}
.x33{left:437.677500px;}
.xb{left:442.066500px;}
.x1e{left:444.429000px;}
.x1c{left:454.683000px;}
.x13{left:458.895000px;}
.x11{left:460.797000px;}
.x30{left:463.947000px;}
.x17{left:465.519000px;}
.x27{left:484.525500px;}
.x25{left:486.450000px;}
.x2d{left:487.468500px;}
.x20{left:494.700000px;}
.xe{left:498.045000px;}
.x12{left:501.739500px;}
.x15{left:506.407500px;}
.x22{left:510.016500px;}
@media print{
.v6{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.101333pt;}
.v5{vertical-align:18.421333pt;}
.v9{vertical-align:21.989333pt;}
.v1{vertical-align:23.141333pt;}
.v7{vertical-align:25.104000pt;}
.v4{vertical-align:26.325333pt;}
.v2{vertical-align:43.136000pt;}
.v3{vertical-align:86.869333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000420pt;}
.ls2b{letter-spacing:0.000853pt;}
.ls8{letter-spacing:0.000990pt;}
.ls1c{letter-spacing:0.001980pt;}
.lsb{letter-spacing:0.002033pt;}
.ls27{letter-spacing:0.002452pt;}
.ls24{letter-spacing:0.002717pt;}
.lsa{letter-spacing:0.002850pt;}
.ls51{letter-spacing:0.353309pt;}
.ls49{letter-spacing:0.356509pt;}
.ls4b{letter-spacing:0.358642pt;}
.ls2{letter-spacing:2.653258pt;}
.ls57{letter-spacing:2.658591pt;}
.ls2c{letter-spacing:9.029806pt;}
.ls21{letter-spacing:12.481309pt;}
.ls20{letter-spacing:12.486642pt;}
.ls55{letter-spacing:13.277258pt;}
.ls22{letter-spacing:13.282591pt;}
.ls26{letter-spacing:14.163915pt;}
.ls38{letter-spacing:14.164509pt;}
.ls32{letter-spacing:14.165753pt;}
.ls23{letter-spacing:14.166642pt;}
.ls54{letter-spacing:14.169248pt;}
.ls25{letter-spacing:14.169842pt;}
.ls39{letter-spacing:14.170812pt;}
.ls35{letter-spacing:14.171087pt;}
.ls46{letter-spacing:14.171343pt;}
.ls4d{letter-spacing:14.522238pt;}
.ls50{letter-spacing:14.527572pt;}
.ls9{letter-spacing:14.550642pt;}
.ls1e{letter-spacing:15.035976pt;}
.ls3a{letter-spacing:16.085478pt;}
.ls3b{letter-spacing:16.089842pt;}
.ls4c{letter-spacing:16.823925pt;}
.ls1f{letter-spacing:17.705887pt;}
.lsf{letter-spacing:17.706238pt;}
.ls3f{letter-spacing:17.707087pt;}
.ls11{letter-spacing:17.707679pt;}
.ls29{letter-spacing:17.707976pt;}
.ls19{letter-spacing:17.708646pt;}
.ls3d{letter-spacing:17.710087pt;}
.ls10{letter-spacing:17.710933pt;}
.ls4a{letter-spacing:17.711176pt;}
.ls53{letter-spacing:17.711220pt;}
.ls5{letter-spacing:17.711572pt;}
.lse{letter-spacing:17.712420pt;}
.ls45{letter-spacing:17.712676pt;}
.ls13{letter-spacing:17.713145pt;}
.ls3e{letter-spacing:17.713309pt;}
.ls40{letter-spacing:17.713980pt;}
.ls4f{letter-spacing:19.994238pt;}
.ls18{letter-spacing:20.365258pt;}
.ls5d{letter-spacing:20.806323pt;}
.ls5e{letter-spacing:20.811657pt;}
.lsd{letter-spacing:20.811679pt;}
.ls5a{letter-spacing:21.055572pt;}
.ls7{letter-spacing:21.364553pt;}
.ls4{letter-spacing:21.449979pt;}
.ls34{letter-spacing:21.860905pt;}
.ls30{letter-spacing:22.096853pt;}
.ls4e{letter-spacing:22.653258pt;}
.ls2e{letter-spacing:22.950479pt;}
.ls3c{letter-spacing:23.624753pt;}
.ls1d{letter-spacing:23.893729pt;}
.ls41{letter-spacing:24.081309pt;}
.ls36{letter-spacing:24.083420pt;}
.ls14{letter-spacing:24.084905pt;}
.ls47{letter-spacing:24.086642pt;}
.ls58{letter-spacing:24.087786pt;}
.ls17{letter-spacing:24.324905pt;}
.ls59{letter-spacing:24.799312pt;}
.ls6{letter-spacing:25.108646pt;}
.ls1a{letter-spacing:25.162238pt;}
.lsc{letter-spacing:25.387063pt;}
.ls5b{letter-spacing:25.431925pt;}
.ls1{letter-spacing:26.191572pt;}
.ls2d{letter-spacing:26.388236pt;}
.ls44{letter-spacing:26.743925pt;}
.ls12{letter-spacing:28.084905pt;}
.ls2f{letter-spacing:29.327572pt;}
.ls0{letter-spacing:29.929979pt;}
.ls33{letter-spacing:30.537569pt;}
.ls5c{letter-spacing:31.215625pt;}
.ls2a{letter-spacing:35.242238pt;}
.ls15{letter-spacing:35.627087pt;}
.ls52{letter-spacing:37.759572pt;}
.ls42{letter-spacing:38.484905pt;}
.ls43{letter-spacing:42.955139pt;}
.ls16{letter-spacing:46.059087pt;}
.ls31{letter-spacing:62.426238pt;}
.ls48{letter-spacing:73.056990pt;}
.ls37{letter-spacing:101.839572pt;}
.ls56{letter-spacing:143.819976pt;}
.ls28{letter-spacing:206.914591pt;}
.wsa6{word-spacing:-63.761067pt;}
.wsa2{word-spacing:-46.053333pt;}
.ws18{word-spacing:-40.590295pt;}
.ws1{word-spacing:-34.437500pt;}
.wsb9{word-spacing:-22.895809pt;}
.wsb8{word-spacing:-22.891068pt;}
.ws8e{word-spacing:-22.881504pt;}
.wse0{word-spacing:-19.925333pt;}
.ws50{word-spacing:-18.855554pt;}
.ws3f{word-spacing:-17.343010pt;}
.wse2{word-spacing:-15.940267pt;}
.ws64{word-spacing:-15.758679pt;}
.wsa5{word-spacing:-12.543875pt;}
.ws6d{word-spacing:-4.873100pt;}
.ws6b{word-spacing:-4.861932pt;}
.wsca{word-spacing:-3.985067pt;}
.wscb{word-spacing:-3.443098pt;}
.wsba{word-spacing:-3.195936pt;}
.ws6f{word-spacing:-3.181932pt;}
.wsbb{word-spacing:-3.179479pt;}
.ws71{word-spacing:-3.176643pt;}
.wsb7{word-spacing:-3.176598pt;}
.ws72{word-spacing:-3.175180pt;}
.ws42{word-spacing:-2.869248pt;}
.ws4b{word-spacing:-2.797932pt;}
.ws53{word-spacing:-2.550443pt;}
.ws68{word-spacing:-2.331643pt;}
.wsc0{word-spacing:-2.295398pt;}
.wsd3{word-spacing:-2.231637pt;}
.ws78{word-spacing:-1.976593pt;}
.wsc9{word-spacing:-1.785310pt;}
.ws30{word-spacing:-1.657788pt;}
.ws88{word-spacing:-1.594027pt;}
.ws33{word-spacing:-1.147699pt;}
.wsd5{word-spacing:-0.892655pt;}
.ws97{word-spacing:-0.828894pt;}
.ws5{word-spacing:-0.570182pt;}
.ws41{word-spacing:-0.510089pt;}
.ws32{word-spacing:-0.318805pt;}
.ws9d{word-spacing:-0.127522pt;}
.ws4c{word-spacing:-0.042507pt;}
.ws23{word-spacing:0.000000pt;}
.ws48{word-spacing:0.063761pt;}
.wsa9{word-spacing:0.353567pt;}
.ws6a{word-spacing:0.382566pt;}
.wsaa{word-spacing:0.391144pt;}
.ws34{word-spacing:0.446327pt;}
.wsb3{word-spacing:0.478208pt;}
.ws8b{word-spacing:0.637611pt;}
.ws4d{word-spacing:0.735975pt;}
.wsd9{word-spacing:0.765133pt;}
.wsda{word-spacing:0.828894pt;}
.ws1d{word-spacing:0.956416pt;}
.ws20{word-spacing:1.020177pt;}
.wsce{word-spacing:1.083938pt;}
.wsbf{word-spacing:1.147699pt;}
.ws28{word-spacing:1.211460pt;}
.wscd{word-spacing:1.307102pt;}
.wsc{word-spacing:1.338982pt;}
.wsb{word-spacing:1.402743pt;}
.ws1f{word-spacing:1.466505pt;}
.ws38{word-spacing:1.530266pt;}
.ws8{word-spacing:1.582547pt;}
.ws37{word-spacing:1.594027pt;}
.ws8c{word-spacing:1.785310pt;}
.wsa1{word-spacing:1.849071pt;}
.ws2f{word-spacing:1.912832pt;}
.ws5b{word-spacing:1.976593pt;}
.ws63{word-spacing:2.040354pt;}
.ws7c{word-spacing:2.104115pt;}
.wsc7{word-spacing:2.167876pt;}
.ws85{word-spacing:2.231637pt;}
.ws98{word-spacing:2.295398pt;}
.ws3e{word-spacing:2.359159pt;}
.ws62{word-spacing:2.391040pt;}
.wsae{word-spacing:2.422921pt;}
.wsaf{word-spacing:2.550443pt;}
.ws6c{word-spacing:2.614204pt;}
.ws69{word-spacing:2.624560pt;}
.wsea{word-spacing:2.741726pt;}
.ws5d{word-spacing:2.805487pt;}
.wsb4{word-spacing:2.869248pt;}
.ws9c{word-spacing:2.996770pt;}
.wsc4{word-spacing:3.060531pt;}
.wsdc{word-spacing:3.124292pt;}
.ws9{word-spacing:3.211639pt;}
.ws15{word-spacing:3.251814pt;}
.ws1c{word-spacing:3.315575pt;}
.ws4f{word-spacing:3.433586pt;}
.wsf{word-spacing:3.443098pt;}
.ws91{word-spacing:3.506859pt;}
.ws2e{word-spacing:3.570620pt;}
.ws4{word-spacing:3.618912pt;}
.ws43{word-spacing:3.634381pt;}
.wsc8{word-spacing:3.698142pt;}
.ws96{word-spacing:3.761903pt;}
.ws47{word-spacing:3.889425pt;}
.ws40{word-spacing:3.985067pt;}
.ws4a{word-spacing:4.016947pt;}
.ws49{word-spacing:4.018630pt;}
.ws4e{word-spacing:4.044303pt;}
.ws1e{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.ws22{word-spacing:4.144469pt;}
.ws84{word-spacing:4.208230pt;}
.ws70{word-spacing:4.277308pt;}
.wsc1{word-spacing:4.335753pt;}
.ws35{word-spacing:4.399514pt;}
.wsd2{word-spacing:4.463275pt;}
.ws99{word-spacing:4.527036pt;}
.ws39{word-spacing:4.590797pt;}
.ws36{word-spacing:4.654558pt;}
.ws67{word-spacing:4.718319pt;}
.ws2a{word-spacing:4.782067pt;}
.wsb2{word-spacing:4.782080pt;}
.ws10{word-spacing:4.845841pt;}
.ws31{word-spacing:4.973363pt;}
.ws44{word-spacing:5.037124pt;}
.ws26{word-spacing:5.100885pt;}
.wse{word-spacing:5.164646pt;}
.ws29{word-spacing:5.228407pt;}
.ws2b{word-spacing:5.292169pt;}
.wsd6{word-spacing:5.355930pt;}
.wsbe{word-spacing:5.419691pt;}
.ws66{word-spacing:5.451571pt;}
.ws27{word-spacing:5.547213pt;}
.ws59{word-spacing:5.610974pt;}
.ws58{word-spacing:5.674735pt;}
.ws5a{word-spacing:5.802257pt;}
.ws75{word-spacing:5.929779pt;}
.wsd4{word-spacing:5.993540pt;}
.ws3b{word-spacing:6.057301pt;}
.ws5f{word-spacing:6.121062pt;}
.ws51{word-spacing:6.248585pt;}
.ws55{word-spacing:6.312346pt;}
.ws83{word-spacing:6.344226pt;}
.ws6{word-spacing:6.353460pt;}
.ws7b{word-spacing:6.376107pt;}
.ws7a{word-spacing:6.471748pt;}
.ws7e{word-spacing:6.503629pt;}
.ws1a{word-spacing:6.567390pt;}
.ws2c{word-spacing:6.631151pt;}
.ws16{word-spacing:6.694912pt;}
.ws46{word-spacing:6.758673pt;}
.ws86{word-spacing:6.886195pt;}
.ws0{word-spacing:6.887500pt;}
.ws45{word-spacing:6.949956pt;}
.ws8f{word-spacing:6.986177pt;}
.ws3c{word-spacing:7.013717pt;}
.wse3{word-spacing:7.077478pt;}
.wsac{word-spacing:7.141239pt;}
.ws24{word-spacing:7.205001pt;}
.wsd0{word-spacing:7.268762pt;}
.wsa3{word-spacing:7.332523pt;}
.ws2d{word-spacing:7.396284pt;}
.wsc6{word-spacing:7.428164pt;}
.ws7f{word-spacing:7.460045pt;}
.ws79{word-spacing:7.523806pt;}
.wse1{word-spacing:7.651328pt;}
.wsa0{word-spacing:7.715089pt;}
.wsb6{word-spacing:7.821189pt;}
.ws65{word-spacing:7.822263pt;}
.ws6e{word-spacing:7.827596pt;}
.wsa8{word-spacing:7.841889pt;}
.ws3a{word-spacing:7.842611pt;}
.wsa4{word-spacing:7.847222pt;}
.ws8d{word-spacing:7.906372pt;}
.ws81{word-spacing:7.970133pt;}
.ws74{word-spacing:8.033894pt;}
.wsd7{word-spacing:8.097655pt;}
.ws57{word-spacing:8.161417pt;}
.ws8a{word-spacing:8.225178pt;}
.ws11{word-spacing:8.288939pt;}
.ws95{word-spacing:8.352700pt;}
.ws3{word-spacing:8.389825pt;}
.ws9e{word-spacing:8.416461pt;}
.ws7{word-spacing:8.448007pt;}
.ws17{word-spacing:8.480222pt;}
.wsbc{word-spacing:8.862788pt;}
.wscc{word-spacing:9.022191pt;}
.ws9a{word-spacing:9.117833pt;}
.wsbd{word-spacing:9.181594pt;}
.ws73{word-spacing:9.213474pt;}
.wsd{word-spacing:9.309116pt;}
.ws92{word-spacing:9.372877pt;}
.ws82{word-spacing:9.500399pt;}
.ws52{word-spacing:9.564160pt;}
.ws21{word-spacing:9.691682pt;}
.ws56{word-spacing:10.010487pt;}
.wsdb{word-spacing:10.201771pt;}
.wsad{word-spacing:10.265532pt;}
.ws1b{word-spacing:10.329293pt;}
.wsde{word-spacing:10.393054pt;}
.wse5{word-spacing:10.397341pt;}
.wsb1{word-spacing:10.493629pt;}
.ws14{word-spacing:10.584337pt;}
.ws12{word-spacing:10.648098pt;}
.ws25{word-spacing:10.711859pt;}
.ws5c{word-spacing:10.839381pt;}
.wsab{word-spacing:11.030665pt;}
.ws54{word-spacing:11.221948pt;}
.ws90{word-spacing:11.285709pt;}
.wse4{word-spacing:11.349470pt;}
.ws3d{word-spacing:11.476992pt;}
.ws7d{word-spacing:11.604514pt;}
.wsd8{word-spacing:11.795797pt;}
.ws93{word-spacing:11.923319pt;}
.ws9f{word-spacing:12.114603pt;}
.wsc5{word-spacing:12.146483pt;}
.ws61{word-spacing:12.305886pt;}
.wscf{word-spacing:12.369647pt;}
.ws60{word-spacing:12.433408pt;}
.ws77{word-spacing:12.497169pt;}
.wse6{word-spacing:12.560930pt;}
.ws76{word-spacing:12.624691pt;}
.ws13{word-spacing:12.943497pt;}
.wsdd{word-spacing:13.007258pt;}
.wsc3{word-spacing:13.262302pt;}
.ws5e{word-spacing:13.389824pt;}
.wsdf{word-spacing:13.517346pt;}
.ws9b{word-spacing:13.644868pt;}
.wsb0{word-spacing:13.872561pt;}
.wseb{word-spacing:14.601284pt;}
.wse8{word-spacing:14.920090pt;}
.wsc2{word-spacing:15.270775pt;}
.wsb5{word-spacing:15.792980pt;}
.ws89{word-spacing:15.870263pt;}
.wse9{word-spacing:16.896683pt;}
.ws94{word-spacing:22.227596pt;}
.ws19{word-spacing:25.376905pt;}
.wse7{word-spacing:30.605312pt;}
.wsa7{word-spacing:32.798693pt;}
.ws87{word-spacing:42.501091pt;}
.ws80{word-spacing:42.502543pt;}
.wsd1{word-spacing:51.805867pt;}
.wsa{word-spacing:62.166867pt;}
._26{margin-left:-32.316183pt;}
._25{margin-left:-30.819152pt;}
._1a{margin-left:-7.192228pt;}
._9{margin-left:-5.129581pt;}
._0{margin-left:-3.416200pt;}
._2{margin-left:-2.065853pt;}
._6{margin-left:-1.134150pt;}
._3{width:1.570910pt;}
._e{width:2.473918pt;}
._1{width:3.416200pt;}
._1d{width:4.312636pt;}
._1c{width:15.753807pt;}
._18{width:17.519147pt;}
._19{width:18.794369pt;}
._8{width:19.750785pt;}
._27{width:20.953867pt;}
._29{width:22.569035pt;}
._b{width:23.665708pt;}
._10{width:24.930577pt;}
._4{width:26.211327pt;}
._5{width:27.230700pt;}
._11{width:28.447788pt;}
._14{width:30.143838pt;}
._c{width:31.071559pt;}
._15{width:32.810636pt;}
._16{width:34.621445pt;}
._20{width:35.730297pt;}
._2a{width:36.644399pt;}
._f{width:37.835811pt;}
._13{width:38.894251pt;}
._12{width:40.312140pt;}
._7{width:41.862250pt;}
._a{width:45.379606pt;}
._24{width:46.481818pt;}
._1f{width:47.999319pt;}
._d{width:49.614691pt;}
._1e{width:51.136375pt;}
._2c{width:52.032832pt;}
._2b{width:53.291488pt;}
._23{width:55.076798pt;}
._21{width:57.893650pt;}
._22{width:61.929887pt;}
._1b{width:71.731200pt;}
._28{width:73.043582pt;}
._17{width:86.077200pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.149333pt;}
.y25{bottom:96.000000pt;}
.y51{bottom:99.684000pt;}
.yb8{bottom:104.384000pt;}
.y24{bottom:115.261333pt;}
.yb7{bottom:115.318667pt;}
.y50{bottom:118.945333pt;}
.y172{bottom:122.488000pt;}
.y153{bottom:126.633333pt;}
.y23{bottom:134.522667pt;}
.y4f{bottom:138.206667pt;}
.y134{bottom:141.373333pt;}
.y190{bottom:144.538667pt;}
.y6b{bottom:153.782667pt;}
.y22{bottom:153.784000pt;}
.y171{bottom:155.033333pt;}
.y152{bottom:157.268000pt;}
.y4e{bottom:157.468000pt;}
.yb6{bottom:157.538667pt;}
.y133{bottom:160.634667pt;}
.y18f{bottom:163.800000pt;}
.y90{bottom:172.453333pt;}
.y21{bottom:173.044000pt;}
.yb5{bottom:176.800000pt;}
.y132{bottom:179.894667pt;}
.y4d{bottom:187.024000pt;}
.y170{bottom:187.577333pt;}
.y151{bottom:187.901333pt;}
.y115{bottom:188.829333pt;}
.yb4{bottom:190.565333pt;}
.y8f{bottom:191.714667pt;}
.y20{bottom:192.305333pt;}
.yb3{bottom:196.061333pt;}
.y18e{bottom:196.344000pt;}
.ydd{bottom:208.090667pt;}
.y8e{bottom:210.976000pt;}
.y1f{bottom:211.566667pt;}
.y18d{bottom:215.605333pt;}
.y131{bottom:216.425333pt;}
.y150{bottom:218.536000pt;}
.y16f{bottom:220.122667pt;}
.y4c{bottom:224.793333pt;}
.yb2{bottom:226.986667pt;}
.y8d{bottom:230.237333pt;}
.y1e{bottom:230.828000pt;}
.y130{bottom:235.686667pt;}
.y114{bottom:236.233333pt;}
.yb1{bottom:237.920000pt;}
.y16e{bottom:239.382667pt;}
.y18c{bottom:248.149333pt;}
.y14f{bottom:249.169333pt;}
.y8c{bottom:249.497333pt;}
.y1d{bottom:250.089333pt;}
.ydc{bottom:254.756000pt;}
.y113{bottom:255.494667pt;}
.y18b{bottom:267.410667pt;}
.y12f{bottom:268.230667pt;}
.y8b{bottom:268.758667pt;}
.y1c{bottom:269.349333pt;}
.yfa{bottom:269.350667pt;}
.y16d{bottom:271.928000pt;}
.y4b{bottom:272.724000pt;}
.ydb{bottom:274.017333pt;}
.y112{bottom:274.756000pt;}
.y14e{bottom:275.981333pt;}
.yb0{bottom:279.964000pt;}
.y12e{bottom:287.492000pt;}
.y8a{bottom:288.020000pt;}
.y1b{bottom:288.610667pt;}
.y16c{bottom:291.189333pt;}
.y4a{bottom:291.985333pt;}
.yda{bottom:293.278667pt;}
.y14d{bottom:295.242667pt;}
.y111{bottom:298.240000pt;}
.y6a{bottom:298.905333pt;}
.yaf{bottom:299.225333pt;}
.y18a{bottom:299.956000pt;}
.y1a{bottom:307.872000pt;}
.y110{bottom:309.174667pt;}
.y16b{bottom:310.450667pt;}
.y49{bottom:311.246667pt;}
.yd9{bottom:312.540000pt;}
.y14c{bottom:314.504000pt;}
.yae{bottom:318.486667pt;}
.y189{bottom:319.216000pt;}
.y12d{bottom:320.036000pt;}
.y19{bottom:327.133333pt;}
.y89{bottom:329.586667pt;}
.y16a{bottom:329.710667pt;}
.y48{bottom:330.508000pt;}
.yd8{bottom:331.800000pt;}
.yad{bottom:332.250667pt;}
.y14b{bottom:333.765333pt;}
.y10f{bottom:333.918667pt;}
.yf9{bottom:334.197333pt;}
.yac{bottom:337.748000pt;}
.y12c{bottom:339.297333pt;}
.y69{bottom:340.422667pt;}
.y18{bottom:346.394667pt;}
.y88{bottom:348.848000pt;}
.y169{bottom:348.972000pt;}
.y47{bottom:349.769333pt;}
.yd7{bottom:351.061333pt;}
.y188{bottom:351.761333pt;}
.y14a{bottom:353.025333pt;}
.yab{bottom:357.009333pt;}
.y68{bottom:359.682667pt;}
.yf8{bottom:360.522667pt;}
.y10e{bottom:365.544000pt;}
.y17{bottom:365.656000pt;}
.y87{bottom:368.108000pt;}
.y168{bottom:368.233333pt;}
.y46{bottom:369.029333pt;}
.yd6{bottom:370.322667pt;}
.y187{bottom:371.022667pt;}
.y149{bottom:372.286667pt;}
.y12b{bottom:375.826667pt;}
.y67{bottom:378.944000pt;}
.yf7{bottom:384.613333pt;}
.y16{bottom:384.916000pt;}
.yaa{bottom:386.565333pt;}
.y86{bottom:387.369333pt;}
.y167{bottom:387.494667pt;}
.y45{bottom:388.290667pt;}
.yd5{bottom:389.584000pt;}
.y148{bottom:391.548000pt;}
.y12a{bottom:395.088000pt;}
.y10d{bottom:397.169333pt;}
.y66{bottom:398.205333pt;}
.y186{bottom:403.566667pt;}
.yf6{bottom:403.874667pt;}
.y15{bottom:404.177333pt;}
.y85{bottom:406.630667pt;}
.y166{bottom:406.756000pt;}
.y44{bottom:407.552000pt;}
.yd4{bottom:408.845333pt;}
.y147{bottom:410.809333pt;}
.y65{bottom:417.466667pt;}
.y10c{bottom:421.932000pt;}
.y185{bottom:422.828000pt;}
.yf5{bottom:423.136000pt;}
.y14{bottom:423.438667pt;}
.y129{bottom:424.644000pt;}
.y84{bottom:425.892000pt;}
.y165{bottom:426.017333pt;}
.y43{bottom:426.813333pt;}
.yd3{bottom:428.106667pt;}
.ya9{bottom:428.130667pt;}
.y146{bottom:430.070667pt;}
.y10b{bottom:432.866667pt;}
.y64{bottom:436.728000pt;}
.yf4{bottom:442.397333pt;}
.y13{bottom:442.700000pt;}
.y83{bottom:445.153333pt;}
.y164{bottom:445.277333pt;}
.y42{bottom:446.074667pt;}
.yd2{bottom:447.366667pt;}
.ya8{bottom:447.392000pt;}
.y145{bottom:449.332000pt;}
.y184{bottom:455.372000pt;}
.y63{bottom:455.989333pt;}
.y12{bottom:461.961333pt;}
.y82{bottom:464.414667pt;}
.y163{bottom:464.538667pt;}
.y41{bottom:465.334667pt;}
.y128{bottom:466.210667pt;}
.yd1{bottom:466.628000pt;}
.ya7{bottom:466.653333pt;}
.y144{bottom:468.592000pt;}
.yf3{bottom:471.952000pt;}
.y10a{bottom:472.397333pt;}
.y183{bottom:474.633333pt;}
.y62{bottom:475.249333pt;}
.y11{bottom:481.222667pt;}
.y81{bottom:483.674667pt;}
.y162{bottom:483.800000pt;}
.y40{bottom:484.596000pt;}
.y127{bottom:485.472000pt;}
.yd0{bottom:485.889333pt;}
.ya6{bottom:485.914667pt;}
.y143{bottom:487.853333pt;}
.y109{bottom:491.658667pt;}
.y61{bottom:494.510667pt;}
.y10{bottom:500.482667pt;}
.y80{bottom:502.936000pt;}
.y161{bottom:503.061333pt;}
.y3f{bottom:503.857333pt;}
.y126{bottom:504.733333pt;}
.ycf{bottom:505.150667pt;}
.ya5{bottom:505.176000pt;}
.y142{bottom:507.114667pt;}
.y182{bottom:507.178667pt;}
.yf2{bottom:512.208000pt;}
.y60{bottom:513.772000pt;}
.yf{bottom:519.744000pt;}
.y108{bottom:521.213333pt;}
.y3e{bottom:523.118667pt;}
.yce{bottom:524.412000pt;}
.ya4{bottom:524.436000pt;}
.y141{bottom:526.376000pt;}
.y181{bottom:526.440000pt;}
.y160{bottom:531.398667pt;}
.yf1{bottom:531.469333pt;}
.y5f{bottom:533.033333pt;}
.y125{bottom:541.262667pt;}
.y15f{bottom:542.333333pt;}
.y3d{bottom:542.380000pt;}
.ycd{bottom:543.672000pt;}
.y7f{bottom:544.502667pt;}
.y140{bottom:545.637333pt;}
.yf0{bottom:550.932000pt;}
.y5e{bottom:552.294667pt;}
.ye{bottom:554.790667pt;}
.ycc{bottom:557.437333pt;}
.y180{bottom:558.984000pt;}
.y124{bottom:560.524000pt;}
.y3c{bottom:561.641333pt;}
.yef{bottom:561.865333pt;}
.y107{bottom:562.252000pt;}
.ycb{bottom:562.933333pt;}
.y7e{bottom:563.764000pt;}
.ya3{bottom:566.002667pt;}
.y5d{bottom:571.556000pt;}
.y13f{bottom:575.193333pt;}
.y17f{bottom:578.245333pt;}
.y123{bottom:579.784000pt;}
.y3b{bottom:580.901333pt;}
.y106{bottom:581.513333pt;}
.y7d{bottom:583.025333pt;}
.y15e{bottom:584.554667pt;}
.ya2{bottom:585.264000pt;}
.y5c{bottom:590.816000pt;}
.yca{bottom:593.990667pt;}
.yee{bottom:595.122667pt;}
.y3a{bottom:600.162667pt;}
.y105{bottom:600.774667pt;}
.yd{bottom:602.612000pt;}
.y15d{bottom:603.816000pt;}
.ya1{bottom:604.525333pt;}
.y7c{bottom:608.042667pt;}
.y17e{bottom:610.789333pt;}
.y122{bottom:612.329333pt;}
.y13e{bottom:615.772000pt;}
.y5b{bottom:618.816000pt;}
.y7b{bottom:618.976000pt;}
.y39{bottom:619.424000pt;}
.yc{bottom:620.677333pt;}
.yed{bottom:621.446667pt;}
.y15c{bottom:623.077333pt;}
.ya0{bottom:623.786667pt;}
.y5a{bottom:629.750667pt;}
.y121{bottom:631.590667pt;}
.y104{bottom:633.217333pt;}
.yc9{bottom:634.292000pt;}
.y13d{bottom:635.033333pt;}
.y38{bottom:638.685333pt;}
.yb{bottom:638.744000pt;}
.y15b{bottom:642.338667pt;}
.y9f{bottom:643.048000pt;}
.y17d{bottom:643.334667pt;}
.y7a{bottom:643.721333pt;}
.yec{bottom:647.772000pt;}
.y120{bottom:650.852000pt;}
.yc8{bottom:653.552000pt;}
.ya{bottom:656.809333pt;}
.y37{bottom:657.946667pt;}
.y15a{bottom:661.598667pt;}
.y9e{bottom:662.308000pt;}
.y17c{bottom:662.596000pt;}
.y79{bottom:662.982667pt;}
.y13c{bottom:664.589333pt;}
.y103{bottom:664.842667pt;}
.yeb{bottom:667.033333pt;}
.y59{bottom:671.633333pt;}
.yc7{bottom:672.813333pt;}
.y9{bottom:674.874667pt;}
.y36{bottom:677.208000pt;}
.y159{bottom:680.860000pt;}
.y78{bottom:682.244000pt;}
.y11f{bottom:683.396000pt;}
.yea{bottom:686.294667pt;}
.yc6{bottom:692.074667pt;}
.y8{bottom:692.940000pt;}
.y17b{bottom:695.140000pt;}
.y35{bottom:696.468000pt;}
.y58{bottom:699.632000pt;}
.y158{bottom:700.121333pt;}
.y11e{bottom:702.657333pt;}
.y9d{bottom:703.874667pt;}
.y13b{bottom:705.168000pt;}
.y57{bottom:710.566667pt;}
.y7{bottom:711.005333pt;}
.yc5{bottom:711.336000pt;}
.y17a{bottom:714.401333pt;}
.y34{bottom:715.729333pt;}
.ye9{bottom:715.850667pt;}
.y77{bottom:718.510667pt;}
.y9c{bottom:723.136000pt;}
.y76{bottom:729.444000pt;}
.yc4{bottom:730.597333pt;}
.y33{bottom:734.990667pt;}
.y157{bottom:735.168000pt;}
.y13a{bottom:735.801333pt;}
.y6{bottom:737.126667pt;}
.y11d{bottom:739.186667pt;}
.y9b{bottom:742.397333pt;}
.y102{bottom:746.621333pt;}
.y179{bottom:746.945333pt;}
.y56{bottom:748.242667pt;}
.yc3{bottom:749.858667pt;}
.ye8{bottom:751.656000pt;}
.y32{bottom:754.252000pt;}
.y101{bottom:757.556000pt;}
.y11c{bottom:758.448000pt;}
.y9a{bottom:761.658667pt;}
.ye7{bottom:762.590667pt;}
.y178{bottom:766.206667pt;}
.y139{bottom:766.436000pt;}
.y55{bottom:767.504000pt;}
.y75{bottom:771.665333pt;}
.y31{bottom:773.513333pt;}
.yc2{bottom:775.021333pt;}
.y156{bottom:783.098667pt;}
.yc1{bottom:785.956000pt;}
.y54{bottom:786.765333pt;}
.y11b{bottom:788.004000pt;}
.y99{bottom:789.996000pt;}
.y74{bottom:792.697333pt;}
.y30{bottom:792.774667pt;}
.y5{bottom:795.021333pt;}
.y138{bottom:795.322667pt;}
.ye6{bottom:795.936000pt;}
.y100{bottom:796.024000pt;}
.y177{bottom:798.752000pt;}
.y98{bottom:800.930667pt;}
.y73{bottom:803.632000pt;}
.y137{bottom:814.582667pt;}
.ye5{bottom:815.196000pt;}
.yff{bottom:815.285333pt;}
.y155{bottom:815.644000pt;}
.y176{bottom:818.013333pt;}
.y53{bottom:821.628000pt;}
.yc0{bottom:824.116000pt;}
.y2f{bottom:827.820000pt;}
.y11a{bottom:829.570667pt;}
.y72{bottom:829.736000pt;}
.y4{bottom:832.414667pt;}
.ye4{bottom:834.658667pt;}
.y97{bottom:843.152000pt;}
.ybf{bottom:843.877333pt;}
.y136{bottom:844.138667pt;}
.ye3{bottom:845.592000pt;}
.yfe{bottom:846.910667pt;}
.y154{bottom:848.188000pt;}
.y119{bottom:848.830667pt;}
.y71{bottom:848.997333pt;}
.y175{bottom:850.557333pt;}
.ybe{bottom:854.812000pt;}
.y52{bottom:856.490667pt;}
.y96{bottom:862.413333pt;}
.y118{bottom:868.092000pt;}
.y174{bottom:869.818667pt;}
.y2e{bottom:875.752000pt;}
.yfd{bottom:878.536000pt;}
.ye2{bottom:878.760000pt;}
.y3{bottom:879.737333pt;}
.y135{bottom:884.718667pt;}
.ybd{bottom:888.456000pt;}
.y117{bottom:889.124000pt;}
.y70{bottom:890.564000pt;}
.y2d{bottom:895.013333pt;}
.ye1{bottom:898.021333pt;}
.y116{bottom:900.058667pt;}
.y95{bottom:903.978667pt;}
.y173{bottom:904.865333pt;}
.ybc{bottom:907.717333pt;}
.y6f{bottom:909.825333pt;}
.yfc{bottom:910.058667pt;}
.y2{bottom:912.945333pt;}
.y2c{bottom:914.273333pt;}
.ye0{bottom:917.282667pt;}
.y94{bottom:923.240000pt;}
.ybb{bottom:926.978667pt;}
.y6e{bottom:929.085333pt;}
.yfb{bottom:929.320000pt;}
.y2b{bottom:933.534667pt;}
.ydf{bottom:936.744000pt;}
.y93{bottom:942.501333pt;}
.y1{bottom:946.154667pt;}
.yba{bottom:946.740000pt;}
.yde{bottom:947.678667pt;}
.y2a{bottom:952.796000pt;}
.y6d{bottom:957.424000pt;}
.yb9{bottom:957.673333pt;}
.y92{bottom:961.762667pt;}
.y6c{bottom:968.358667pt;}
.y29{bottom:972.057333pt;}
.y91{bottom:981.024000pt;}
.y28{bottom:991.318667pt;}
.y27{bottom:1010.580000pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.h9{height:44.632747pt;}
.hc{height:45.461641pt;}
.h7{height:47.820800pt;}
.h10{height:48.341069pt;}
.hf{height:48.346402pt;}
.ha{height:53.061069pt;}
.h8{height:53.066402pt;}
.h6{height:53.559147pt;}
.h13{height:54.603997pt;}
.h19{height:56.255735pt;}
.h3{height:57.384800pt;}
.h16{height:69.804800pt;}
.h14{height:69.810133pt;}
.h2{height:77.140000pt;}
.h18{height:87.386180pt;}
.hd{height:88.592307pt;}
.hb{height:88.597641pt;}
.h15{height:90.956800pt;}
.h11{height:96.197069pt;}
.h12{height:99.983735pt;}
.h1a{height:99.989069pt;}
.he{height:132.330974pt;}
.h17{height:132.336307pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x2{left:111.001333pt;}
.x2a{left:115.076000pt;}
.xa{left:119.412000pt;}
.x1{left:123.256000pt;}
.x8{left:135.020000pt;}
.x1a{left:148.533333pt;}
.x7{left:156.838667pt;}
.x31{left:195.924000pt;}
.x28{left:218.953333pt;}
.x18{left:231.164000pt;}
.x29{left:233.014667pt;}
.x32{left:246.154667pt;}
.x1f{left:295.794667pt;}
.x2e{left:304.126667pt;}
.x23{left:306.794667pt;}
.x21{left:323.394667pt;}
.x19{left:324.718667pt;}
.x14{left:328.940000pt;}
.x3{left:332.388000pt;}
.xf{left:337.012000pt;}
.x4{left:339.364000pt;}
.xd{left:340.682667pt;}
.x24{left:344.342667pt;}
.x5{left:347.037333pt;}
.x26{left:352.910667pt;}
.x1d{left:360.186667pt;}
.x16{left:362.946667pt;}
.x2f{left:363.886667pt;}
.x6{left:364.849333pt;}
.x1b{left:368.202667pt;}
.x10{left:370.320000pt;}
.xc{left:371.257333pt;}
.x2b{left:378.294667pt;}
.x2c{left:384.794667pt;}
.x33{left:389.046667pt;}
.xb{left:392.948000pt;}
.x1e{left:395.048000pt;}
.x1c{left:404.162667pt;}
.x13{left:407.906667pt;}
.x11{left:409.597333pt;}
.x30{left:412.397333pt;}
.x17{left:413.794667pt;}
.x27{left:430.689333pt;}
.x25{left:432.400000pt;}
.x2d{left:433.305333pt;}
.x20{left:439.733333pt;}
.xe{left:442.706667pt;}
.x12{left:445.990667pt;}
.x15{left:450.140000pt;}
.x22{left:453.348000pt;}
}




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