
    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_a18f0073abd1727d6df8a019.woff')format("woff");}.ff1{font-family:ff1;line-height:1.127000;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_05d89855e15a375a4583f3ab.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_ea1554c7863673dbbbcc502d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4fdf99e814778c817a5b4c65.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_b516742fb4462f8393b37a44.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_db430c19eacb6ad1a90e3d3c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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_3d20f4b2b4e4e754643bdd31.woff')format("woff");}.ff7{font-family:ff7;line-height:1.050000;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_d81ca92e8140d79033b5fef6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_3817be2de43ba07b6455b4c6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.052000;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_06e3ff17cd4795b9ee0c183e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.105000;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_ea1554c7863673dbbbcc502d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f8c521107ff1b01e9204404b.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ab9359e1b3425cd417358799.woff')format("woff");}.ffd{font-family:ffd;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4a47b0d261289bf40ef2d6e7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.196000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d81ca92e8140d79033b5fef6.woff')format("woff");}.fff{font-family:fff;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c830cc0221eee847ea68d144.woff')format("woff");}.ff10{font-family:ff10;line-height:1.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_06e3ff17cd4795b9ee0c183e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.105000;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:ff12;src:url('chunks/assets/font_ea1554c7863673dbbbcc502d.woff')format("woff");}.ff12{font-family:ff12;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);}
.v4{vertical-align:-18.981000px;}
.v1{vertical-align:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.154600px;}
.v3{vertical-align:19.305000px;}
.ls5{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.912000px;}
.lse{letter-spacing:-0.855000px;}
.lsf{letter-spacing:-0.498465px;}
.ls14{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.057000px;}
.ls3{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.057000px;}
.ls12{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.627000px;}
.ls9{letter-spacing:0.663756px;}
.ls8{letter-spacing:0.664356px;}
.ls2{letter-spacing:0.840000px;}
.lsb{letter-spacing:1.083000px;}
.ls0{letter-spacing:1.092000px;}
.ls7{letter-spacing:1.140000px;}
.ls4{letter-spacing:1.440000px;}
.lsc{letter-spacing:1.704300px;}
.ls11{letter-spacing:3.083700px;}
.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;}
}
.ws1a{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.000000px;}
.ws82{word-spacing:-13.623000px;}
.ws3f{word-spacing:-12.597000px;}
.ws1b{word-spacing:-12.150000px;}
.wsfe{word-spacing:-11.880000px;}
.ws1c{word-spacing:-11.826000px;}
.wsf8{word-spacing:-11.400000px;}
.ws1{word-spacing:-11.280000px;}
.ws19{word-spacing:-11.250000px;}
.ws100{word-spacing:-10.854000px;}
.wsff{word-spacing:-10.800000px;}
.ws9a{word-spacing:-7.310820px;}
.wse2{word-spacing:-6.812355px;}
.ws16{word-spacing:-5.616000px;}
.ws17{word-spacing:-5.508000px;}
.ws4d{word-spacing:-5.073000px;}
.wsc5{word-spacing:-3.990000px;}
.wsce{word-spacing:-3.819000px;}
.wsbe{word-spacing:-3.705000px;}
.wsc6{word-spacing:-3.648000px;}
.ws59{word-spacing:-3.420000px;}
.ws10c{word-spacing:-3.402000px;}
.ws34{word-spacing:-3.192000px;}
.ws71{word-spacing:-3.135000px;}
.ws33{word-spacing:-3.021000px;}
.ws9d{word-spacing:-2.850000px;}
.wsc8{word-spacing:-2.793000px;}
.ws110{word-spacing:-2.754000px;}
.ws93{word-spacing:-2.679000px;}
.ws84{word-spacing:-2.622000px;}
.ws23{word-spacing:-2.508000px;}
.ws111{word-spacing:-2.484000px;}
.wsfc{word-spacing:-2.451000px;}
.wsf9{word-spacing:-2.394000px;}
.ws8d{word-spacing:-2.337000px;}
.ws38{word-spacing:-2.280000px;}
.ws8c{word-spacing:-2.223000px;}
.ws3c{word-spacing:-2.109000px;}
.wsaf{word-spacing:-2.052000px;}
.ws77{word-spacing:-1.938000px;}
.ws49{word-spacing:-1.881000px;}
.wsd{word-spacing:-1.824000px;}
.wsef{word-spacing:-1.767000px;}
.ws50{word-spacing:-1.710000px;}
.ws54{word-spacing:-1.596000px;}
.wse{word-spacing:-1.539000px;}
.ws99{word-spacing:-1.530000px;}
.wsfa{word-spacing:-1.482000px;}
.wsd5{word-spacing:-1.440000px;}
.ws58{word-spacing:-1.425000px;}
.ws2f{word-spacing:-1.368000px;}
.wsa2{word-spacing:-1.311000px;}
.ws27{word-spacing:-1.254000px;}
.wsb9{word-spacing:-1.197000px;}
.wsa7{word-spacing:-1.140000px;}
.ws112{word-spacing:-1.134000px;}
.ws113{word-spacing:-1.080000px;}
.wsf4{word-spacing:-1.026000px;}
.ws8e{word-spacing:-0.969000px;}
.wsa4{word-spacing:-0.945000px;}
.ws7e{word-spacing:-0.912000px;}
.ws4{word-spacing:-0.840000px;}
.ws52{word-spacing:-0.741000px;}
.ws56{word-spacing:-0.684000px;}
.ws94{word-spacing:-0.627000px;}
.ws3{word-spacing:-0.546000px;}
.ws72{word-spacing:-0.513000px;}
.ws6e{word-spacing:-0.456000px;}
.ws1d{word-spacing:-0.450000px;}
.ws6b{word-spacing:-0.420000px;}
.ws28{word-spacing:-0.399000px;}
.wsac{word-spacing:-0.342000px;}
.ws26{word-spacing:-0.285000px;}
.ws8f{word-spacing:-0.228000px;}
.wsbd{word-spacing:-0.171000px;}
.ws7b{word-spacing:-0.114000px;}
.ws86{word-spacing:-0.057000px;}
.ws114{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.wsab{word-spacing:0.057000px;}
.ws48{word-spacing:0.114000px;}
.wsc1{word-spacing:0.135000px;}
.ws10d{word-spacing:0.162000px;}
.ws6c{word-spacing:0.171000px;}
.wsb7{word-spacing:0.228000px;}
.ws31{word-spacing:0.285000px;}
.wsf5{word-spacing:0.399000px;}
.wsa1{word-spacing:0.456000px;}
.ws9c{word-spacing:0.513000px;}
.ws85{word-spacing:0.570000px;}
.ws7f{word-spacing:0.627000px;}
.ws37{word-spacing:0.798000px;}
.ws10f{word-spacing:0.810000px;}
.ws1f{word-spacing:0.855000px;}
.ws4c{word-spacing:0.912000px;}
.ws10e{word-spacing:0.918000px;}
.ws5e{word-spacing:0.969000px;}
.wsa6{word-spacing:0.990000px;}
.wsb6{word-spacing:1.026000px;}
.ws35{word-spacing:1.083000px;}
.wsc0{word-spacing:1.125000px;}
.ws2e{word-spacing:1.140000px;}
.ws60{word-spacing:1.197000px;}
.ws8b{word-spacing:1.254000px;}
.ws45{word-spacing:1.368000px;}
.ws42{word-spacing:1.425000px;}
.ws90{word-spacing:1.482000px;}
.wsb3{word-spacing:1.539000px;}
.wse5{word-spacing:1.596000px;}
.wsa{word-spacing:1.653000px;}
.ws98{word-spacing:1.710000px;}
.ws6a{word-spacing:1.824000px;}
.ws9{word-spacing:1.881000px;}
.wsa5{word-spacing:1.935000px;}
.ws95{word-spacing:1.938000px;}
.ws78{word-spacing:1.995000px;}
.wsbc{word-spacing:2.052000px;}
.ws96{word-spacing:2.070000px;}
.wsb2{word-spacing:2.109000px;}
.ws43{word-spacing:2.166000px;}
.wsba{word-spacing:2.280000px;}
.ws5b{word-spacing:2.394000px;}
.ws7{word-spacing:2.451000px;}
.wsaa{word-spacing:2.508000px;}
.ws62{word-spacing:2.565000px;}
.ws11{word-spacing:2.679000px;}
.wsd7{word-spacing:2.736000px;}
.ws4a{word-spacing:2.850000px;}
.ws4f{word-spacing:2.907000px;}
.ws97{word-spacing:3.015000px;}
.ws5f{word-spacing:3.021000px;}
.ws65{word-spacing:3.078000px;}
.ws61{word-spacing:3.135000px;}
.wsfb{word-spacing:3.192000px;}
.ws76{word-spacing:3.249000px;}
.ws55{word-spacing:3.306000px;}
.ws4b{word-spacing:3.420000px;}
.ws63{word-spacing:3.534000px;}
.ws64{word-spacing:3.591000px;}
.wsc{word-spacing:3.648000px;}
.ws2b{word-spacing:3.762000px;}
.ws7c{word-spacing:3.819000px;}
.ws79{word-spacing:3.876000px;}
.ws7a{word-spacing:3.933000px;}
.ws3a{word-spacing:3.990000px;}
.ws15{word-spacing:4.047000px;}
.wsa8{word-spacing:4.104000px;}
.ws29{word-spacing:4.161000px;}
.ws44{word-spacing:4.332000px;}
.ws70{word-spacing:4.446000px;}
.ws104{word-spacing:4.482000px;}
.wsfd{word-spacing:4.503000px;}
.ws6d{word-spacing:4.560000px;}
.ws101{word-spacing:4.590000px;}
.wsbb{word-spacing:4.617000px;}
.wsf6{word-spacing:4.788000px;}
.ws103{word-spacing:4.806000px;}
.wse9{word-spacing:4.845000px;}
.wsc4{word-spacing:4.902000px;}
.ws73{word-spacing:4.959000px;}
.ws57{word-spacing:5.016000px;}
.wsf{word-spacing:5.073000px;}
.ws81{word-spacing:5.130000px;}
.ws91{word-spacing:5.244000px;}
.ws102{word-spacing:5.292000px;}
.ws9f{word-spacing:5.301000px;}
.ws47{word-spacing:5.358000px;}
.ws3b{word-spacing:5.472000px;}
.ws4e{word-spacing:5.529000px;}
.ws5a{word-spacing:5.586000px;}
.wsc9{word-spacing:5.643000px;}
.wsb5{word-spacing:5.814000px;}
.ws36{word-spacing:5.928000px;}
.ws80{word-spacing:5.985000px;}
.ws51{word-spacing:6.042000px;}
.ws10b{word-spacing:6.048000px;}
.ws2a{word-spacing:6.156000px;}
.wsbf{word-spacing:6.213000px;}
.ws13{word-spacing:6.270000px;}
.ws109{word-spacing:6.318000px;}
.wscf{word-spacing:6.384000px;}
.ws24{word-spacing:6.441000px;}
.wsc2{word-spacing:6.498000px;}
.wsa3{word-spacing:6.555000px;}
.wsb4{word-spacing:6.669000px;}
.ws10a{word-spacing:6.696000px;}
.wse1{word-spacing:6.726000px;}
.ws10{word-spacing:6.783000px;}
.ws87{word-spacing:6.840000px;}
.ws108{word-spacing:6.912000px;}
.ws8a{word-spacing:6.954000px;}
.wsa9{word-spacing:7.011000px;}
.ws74{word-spacing:7.125000px;}
.ws75{word-spacing:7.182000px;}
.wsc7{word-spacing:7.353000px;}
.wsc3{word-spacing:7.467000px;}
.wsb0{word-spacing:7.524000px;}
.wsd9{word-spacing:7.581000px;}
.wse7{word-spacing:7.695000px;}
.ws39{word-spacing:7.809000px;}
.ws5{word-spacing:7.866000px;}
.ws5d{word-spacing:7.980000px;}
.ws66{word-spacing:8.037000px;}
.wsd1{word-spacing:8.379000px;}
.wsb{word-spacing:8.550000px;}
.ws8{word-spacing:8.607000px;}
.ws5c{word-spacing:8.664000px;}
.wsee{word-spacing:8.721000px;}
.ws2d{word-spacing:8.778000px;}
.ws89{word-spacing:8.892000px;}
.wscb{word-spacing:8.949000px;}
.ws46{word-spacing:9.063000px;}
.ws12{word-spacing:9.405000px;}
.ws92{word-spacing:9.462000px;}
.wsa0{word-spacing:9.690000px;}
.ws83{word-spacing:9.747000px;}
.ws9b{word-spacing:9.804000px;}
.wsca{word-spacing:9.918000px;}
.ws1e{word-spacing:10.032000px;}
.wsb1{word-spacing:10.089000px;}
.ws68{word-spacing:10.260000px;}
.ws30{word-spacing:10.431000px;}
.ws67{word-spacing:10.488000px;}
.ws88{word-spacing:10.716000px;}
.ws9e{word-spacing:11.001000px;}
.ws32{word-spacing:11.229000px;}
.ws106{word-spacing:11.394000px;}
.ws20{word-spacing:11.457000px;}
.ws53{word-spacing:11.742000px;}
.wsad{word-spacing:11.799000px;}
.wsae{word-spacing:11.856000px;}
.wsb8{word-spacing:12.084000px;}
.wscd{word-spacing:12.198000px;}
.ws107{word-spacing:12.420000px;}
.ws105{word-spacing:12.528000px;}
.wsd3{word-spacing:12.540000px;}
.ws6f{word-spacing:12.825000px;}
.ws115{word-spacing:12.939000px;}
.ws69{word-spacing:13.053000px;}
.wsd0{word-spacing:13.167000px;}
.wsd2{word-spacing:13.737000px;}
.ws41{word-spacing:14.022000px;}
.ws2c{word-spacing:14.592000px;}
.wsd4{word-spacing:14.706000px;}
.wsd6{word-spacing:14.991000px;}
.ws40{word-spacing:15.180000px;}
.ws22{word-spacing:15.390000px;}
.wsd8{word-spacing:15.960000px;}
.wsea{word-spacing:16.131000px;}
.ws6{word-spacing:16.530000px;}
.wse3{word-spacing:16.587000px;}
.wse4{word-spacing:16.644000px;}
.ws21{word-spacing:16.758000px;}
.wsdb{word-spacing:16.929000px;}
.wse8{word-spacing:17.841000px;}
.ws7d{word-spacing:17.898000px;}
.wse6{word-spacing:18.126000px;}
.wscc{word-spacing:19.551000px;}
.ws25{word-spacing:19.893000px;}
.wsf3{word-spacing:20.463000px;}
.wsda{word-spacing:21.489000px;}
.ws14{word-spacing:21.603000px;}
.wsf0{word-spacing:23.028000px;}
.wsec{word-spacing:23.541000px;}
.wsf2{word-spacing:24.453000px;}
.wsde{word-spacing:25.707000px;}
.wsdd{word-spacing:28.842000px;}
.ws3d{word-spacing:28.944000px;}
.wse0{word-spacing:30.438000px;}
.wsf7{word-spacing:35.100000px;}
.wsdc{word-spacing:37.905000px;}
.wsdf{word-spacing:37.962000px;}
.wseb{word-spacing:38.475000px;}
.wsed{word-spacing:39.330000px;}
.wsf1{word-spacing:53.124000px;}
.ws18{word-spacing:98.010000px;}
.ws3e{word-spacing:595.110000px;}
._9{margin-left:-12.653400px;}
._3{margin-left:-7.332000px;}
._4{margin-left:-5.973600px;}
._5{margin-left:-4.480200px;}
._2{margin-left:-3.361800px;}
._0{margin-left:-2.149200px;}
._1{margin-left:-1.124400px;}
._6{width:1.506600px;}
._8{width:2.604900px;}
._a{width:33.030000px;}
._c{width:35.100000px;}
._b{width:36.630000px;}
._7{width:48.235800px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.231000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y50{bottom:56.126700px;}
.y27{bottom:56.665350px;}
.y137{bottom:114.803100px;}
.yd2{bottom:114.803250px;}
.y172{bottom:114.803400px;}
.y150{bottom:114.803550px;}
.yef{bottom:114.803850px;}
.yb2{bottom:117.865950px;}
.y25{bottom:122.944050px;}
.y19a{bottom:127.973850px;}
.y168{bottom:128.222850px;}
.yd1{bottom:128.303250px;}
.y14f{bottom:128.303550px;}
.yee{bottom:128.303850px;}
.ya3{bottom:128.979600px;}
.y10a{bottom:129.060600px;}
.y136{bottom:129.203100px;}
.y16b{bottom:130.499400px;}
.y7a{bottom:130.757850px;}
.yb1{bottom:135.122700px;}
.yd0{bottom:141.803250px;}
.yed{bottom:141.803850px;}
.y24{bottom:142.234350px;}
.y135{bottom:143.603100px;}
.y16a{bottom:144.899400px;}
.y199{bottom:145.230600px;}
.y167{bottom:145.479600px;}
.ya2{bottom:146.236350px;}
.y109{bottom:146.317350px;}
.y79{bottom:148.014600px;}
.yb0{bottom:152.379450px;}
.y4e{bottom:153.224250px;}
.ycf{bottom:155.303250px;}
.yec{bottom:155.303850px;}
.y134{bottom:158.003100px;}
.y169{bottom:159.299400px;}
.y23{bottom:160.232100px;}
.y198{bottom:162.487350px;}
.y166{bottom:162.736350px;}
.ya1{bottom:163.493100px;}
.y108{bottom:163.574100px;}
.y78{bottom:165.271350px;}
.y4d{bottom:168.222750px;}
.yce{bottom:168.803250px;}
.yeb{bottom:168.803850px;}
.yaf{bottom:169.636200px;}
.y133{bottom:172.403100px;}
.y22{bottom:178.229850px;}
.y197{bottom:179.744100px;}
.y165{bottom:179.993100px;}
.ya0{bottom:180.749850px;}
.y107{bottom:180.830850px;}
.ycd{bottom:182.303250px;}
.yea{bottom:182.303850px;}
.y77{bottom:182.528100px;}
.y14e{bottom:182.737350px;}
.y132{bottom:186.803100px;}
.yae{bottom:186.892950px;}
.y4c{bottom:187.510800px;}
.ye9{bottom:195.803850px;}
.y21{bottom:196.227600px;}
.y196{bottom:197.000850px;}
.y164{bottom:197.249850px;}
.y9f{bottom:198.006600px;}
.y106{bottom:198.087600px;}
.y76{bottom:199.784850px;}
.y14d{bottom:199.994100px;}
.y131{bottom:201.203100px;}
.yad{bottom:204.149700px;}
.y4b{bottom:205.508550px;}
.y20{bottom:214.225350px;}
.y195{bottom:214.257600px;}
.y163{bottom:214.506600px;}
.y9e{bottom:215.263350px;}
.y105{bottom:215.344350px;}
.y130{bottom:215.603100px;}
.y75{bottom:217.041600px;}
.y14c{bottom:217.250850px;}
.y12f{bottom:218.114850px;}
.yac{bottom:221.406450px;}
.y4a{bottom:223.506300px;}
.y194{bottom:231.514350px;}
.y162{bottom:231.763350px;}
.y1f{bottom:232.223100px;}
.y9d{bottom:232.520100px;}
.y104{bottom:232.601100px;}
.y74{bottom:234.298350px;}
.y14b{bottom:234.507600px;}
.y12e{bottom:235.371600px;}
.yab{bottom:238.663200px;}
.y49{bottom:241.504050px;}
.y193{bottom:248.771100px;}
.y161{bottom:249.020100px;}
.y9c{bottom:249.776850px;}
.y103{bottom:249.857850px;}
.y1e{bottom:250.220850px;}
.y73{bottom:251.555100px;}
.y14a{bottom:251.764350px;}
.y171{bottom:252.621600px;}
.y12d{bottom:252.628350px;}
.yaa{bottom:255.919950px;}
.ye8{bottom:259.257600px;}
.y48{bottom:259.501800px;}
.y192{bottom:266.027850px;}
.y160{bottom:266.276850px;}
.y9b{bottom:267.033600px;}
.y102{bottom:267.114600px;}
.y1d{bottom:268.218600px;}
.y72{bottom:268.811850px;}
.y149{bottom:269.021100px;}
.y170{bottom:269.878350px;}
.y12c{bottom:269.885100px;}
.ycc{bottom:269.979600px;}
.ya9{bottom:273.176700px;}
.ye7{bottom:276.514350px;}
.y47{bottom:277.499550px;}
.y191{bottom:283.284600px;}
.y15f{bottom:283.533600px;}
.y9a{bottom:284.290350px;}
.y71{bottom:286.068600px;}
.y1c{bottom:286.216350px;}
.y148{bottom:286.277850px;}
.y16f{bottom:287.135100px;}
.y12b{bottom:287.141850px;}
.ycb{bottom:287.236350px;}
.ya8{bottom:290.433450px;}
.ye6{bottom:293.771100px;}
.y46{bottom:295.497300px;}
.y15e{bottom:300.790350px;}
.y99{bottom:301.547100px;}
.y101{bottom:302.364600px;}
.y70{bottom:303.325350px;}
.y147{bottom:303.426600px;}
.y1b{bottom:304.214100px;}
.y16e{bottom:304.391850px;}
.y12a{bottom:304.398600px;}
.yca{bottom:304.493100px;}
.ya7{bottom:307.690200px;}
.ye5{bottom:311.027850px;}
.y45{bottom:313.495050px;}
.y15d{bottom:318.047100px;}
.y190{bottom:318.534600px;}
.y98{bottom:318.803850px;}
.y6f{bottom:320.582100px;}
.y146{bottom:320.683350px;}
.y16d{bottom:321.648600px;}
.y129{bottom:321.655350px;}
.yc9{bottom:321.749850px;}
.y1a{bottom:322.211850px;}
.ya6{bottom:324.946950px;}
.ye4{bottom:328.237350px;}
.y44{bottom:331.492800px;}
.y15c{bottom:335.303850px;}
.y97{bottom:336.060600px;}
.y6e{bottom:337.838850px;}
.y145{bottom:337.940100px;}
.y16c{bottom:338.905350px;}
.y128{bottom:338.912100px;}
.yc8{bottom:339.006600px;}
.y19{bottom:340.209600px;}
.ya5{bottom:342.203700px;}
.ye3{bottom:345.494100px;}
.y43{bottom:349.490550px;}
.y15b{bottom:352.560600px;}
.y96{bottom:353.317350px;}
.y6d{bottom:355.095600px;}
.y144{bottom:355.196850px;}
.y100{bottom:356.162100px;}
.y127{bottom:356.168850px;}
.yc7{bottom:356.263350px;}
.y18{bottom:358.207350px;}
.ya4{bottom:359.460450px;}
.ye2{bottom:362.750850px;}
.y42{bottom:367.488300px;}
.y15a{bottom:369.817350px;}
.y95{bottom:370.574100px;}
.y6c{bottom:372.352350px;}
.y143{bottom:372.453600px;}
.yff{bottom:373.418850px;}
.y126{bottom:373.425600px;}
.yc6{bottom:373.520100px;}
.y17{bottom:376.205100px;}
.ye1{bottom:380.007600px;}
.y41{bottom:385.486050px;}
.y159{bottom:387.074100px;}
.y94{bottom:387.830850px;}
.y6b{bottom:389.609100px;}
.y18f{bottom:389.706600px;}
.y142{bottom:389.710350px;}
.yfe{bottom:390.675600px;}
.y125{bottom:390.682350px;}
.yc5{bottom:390.776850px;}
.y16{bottom:394.202850px;}
.ye0{bottom:397.264350px;}
.y40{bottom:403.483800px;}
.y158{bottom:404.330850px;}
.yb5{bottom:404.505750px;}
.y93{bottom:405.087600px;}
.y6a{bottom:406.865850px;}
.y18e{bottom:406.959600px;}
.y141{bottom:406.967100px;}
.yfd{bottom:407.932350px;}
.y124{bottom:407.939100px;}
.yc4{bottom:408.033600px;}
.y15{bottom:412.200600px;}
.ydf{bottom:414.521100px;}
.yb4{bottom:418.905750px;}
.y3f{bottom:421.481550px;}
.y157{bottom:421.587600px;}
.y92{bottom:422.344350px;}
.y69{bottom:424.122600px;}
.y18d{bottom:424.212600px;}
.y140{bottom:424.223850px;}
.yfc{bottom:425.189100px;}
.y123{bottom:425.195850px;}
.yc3{bottom:425.290350px;}
.y14{bottom:430.198350px;}
.yde{bottom:431.777850px;}
.yb3{bottom:433.305750px;}
.y156{bottom:438.844350px;}
.y3e{bottom:439.479300px;}
.y91{bottom:439.601100px;}
.y68{bottom:441.379350px;}
.y18c{bottom:441.465600px;}
.y13f{bottom:441.480600px;}
.yfb{bottom:442.445850px;}
.y122{bottom:442.452600px;}
.yc2{bottom:442.547100px;}
.y13{bottom:448.196100px;}
.ydd{bottom:448.994100px;}
.y155{bottom:456.101100px;}
.y90{bottom:456.857850px;}
.y3d{bottom:457.477050px;}
.y67{bottom:458.636100px;}
.y18b{bottom:458.718600px;}
.y13e{bottom:458.737350px;}
.yfa{bottom:459.702600px;}
.y121{bottom:459.709350px;}
.yc1{bottom:459.803850px;}
.ydc{bottom:466.250850px;}
.y154{bottom:473.357850px;}
.y8f{bottom:474.114600px;}
.y12{bottom:474.699900px;}
.y3c{bottom:475.474800px;}
.y66{bottom:475.892850px;}
.y18a{bottom:475.971600px;}
.y13d{bottom:475.994100px;}
.yf9{bottom:476.959350px;}
.y120{bottom:476.966100px;}
.yc0{bottom:477.060600px;}
.y175{bottom:477.729750px;}
.ydb{bottom:483.507600px;}
.y153{bottom:490.614600px;}
.y174{bottom:492.129750px;}
.y65{bottom:493.149600px;}
.y189{bottom:493.224600px;}
.y13c{bottom:493.250850px;}
.yf8{bottom:494.216100px;}
.y11f{bottom:494.222850px;}
.ybf{bottom:494.317350px;}
.yda{bottom:500.764350px;}
.y3b{bottom:501.978750px;}
.y173{bottom:506.529750px;}
.y8e{bottom:509.364600px;}
.y64{bottom:510.406350px;}
.y188{bottom:510.477600px;}
.y13b{bottom:510.507600px;}
.yf7{bottom:511.472850px;}
.y11e{bottom:511.479600px;}
.ybe{bottom:511.574100px;}
.yd9{bottom:518.021100px;}
.y152{bottom:525.864600px;}
.y63{bottom:527.663100px;}
.y187{bottom:527.730600px;}
.y13a{bottom:527.764350px;}
.yf6{bottom:528.729600px;}
.y11d{bottom:528.736350px;}
.ybd{bottom:528.830850px;}
.yd8{bottom:535.277850px;}
.y3a{bottom:539.778750px;}
.y151{bottom:543.864600px;}
.y62{bottom:544.919850px;}
.y186{bottom:544.983600px;}
.y139{bottom:545.021100px;}
.yf5{bottom:545.986350px;}
.y11c{bottom:545.993100px;}
.ybc{bottom:546.087600px;}
.y11{bottom:546.731100px;}
.yd7{bottom:552.527850px;}
.y39{bottom:559.066650px;}
.y10{bottom:561.729600px;}
.y61{bottom:562.176600px;}
.y185{bottom:562.236600px;}
.y138{bottom:562.277850px;}
.y8d{bottom:563.243100px;}
.y11b{bottom:563.249850px;}
.ybb{bottom:563.344350px;}
.yd6{bottom:569.771100px;}
.yf{bottom:576.728100px;}
.y38{bottom:577.064400px;}
.y60{bottom:579.433350px;}
.y184{bottom:579.489600px;}
.y8c{bottom:580.499850px;}
.y11a{bottom:580.506600px;}
.yba{bottom:580.601100px;}
.yd5{bottom:587.027850px;}
.y37{bottom:595.062150px;}
.ye{bottom:595.980000px;}
.y5f{bottom:596.690100px;}
.y183{bottom:596.742600px;}
.y8b{bottom:597.756600px;}
.y119{bottom:597.763350px;}
.yb9{bottom:597.857850px;}
.yd4{bottom:604.284600px;}
.y36{bottom:613.059900px;}
.y5e{bottom:613.946850px;}
.y182{bottom:613.995600px;}
.y8a{bottom:615.013350px;}
.y118{bottom:615.020100px;}
.yb8{bottom:615.094350px;}
.yd{bottom:623.983950px;}
.y35{bottom:631.057650px;}
.y5d{bottom:631.203600px;}
.y181{bottom:631.248600px;}
.y89{bottom:632.270100px;}
.y117{bottom:632.276850px;}
.yb7{bottom:632.351100px;}
.yd3{bottom:639.534600px;}
.yc{bottom:647.383950px;}
.y5c{bottom:648.460350px;}
.y180{bottom:648.501600px;}
.y34{bottom:649.055400px;}
.y88{bottom:649.526850px;}
.y116{bottom:649.533600px;}
.yb6{bottom:649.607850px;}
.y5b{bottom:665.717100px;}
.y17f{bottom:665.754600px;}
.y87{bottom:666.783600px;}
.y115{bottom:666.790350px;}
.y33{bottom:667.053150px;}
.yb{bottom:670.783950px;}
.y5a{bottom:682.973850px;}
.y17e{bottom:683.007600px;}
.y86{bottom:684.040350px;}
.y114{bottom:684.047100px;}
.y32{bottom:685.050900px;}
.yf4{bottom:685.842600px;}
.ya{bottom:694.183950px;}
.y59{bottom:700.230600px;}
.yf3{bottom:700.242600px;}
.y17d{bottom:700.260600px;}
.y85{bottom:701.297100px;}
.y113{bottom:701.303850px;}
.y31{bottom:703.048650px;}
.yf2{bottom:714.642600px;}
.y58{bottom:717.487350px;}
.y17c{bottom:717.513600px;}
.y9{bottom:717.583950px;}
.y84{bottom:718.553850px;}
.y112{bottom:718.560600px;}
.y30{bottom:721.046400px;}
.yf1{bottom:729.042600px;}
.y57{bottom:734.744100px;}
.y17b{bottom:734.766600px;}
.y83{bottom:735.810600px;}
.y111{bottom:735.817350px;}
.y2f{bottom:739.044150px;}
.y8{bottom:740.983950px;}
.yf0{bottom:743.442600px;}
.y56{bottom:752.000850px;}
.y17a{bottom:752.019600px;}
.y82{bottom:753.067350px;}
.y110{bottom:753.074100px;}
.y2e{bottom:757.041900px;}
.y7{bottom:764.383950px;}
.y55{bottom:769.257600px;}
.y179{bottom:769.272600px;}
.y81{bottom:770.324100px;}
.y10f{bottom:770.330850px;}
.y2d{bottom:775.039650px;}
.y54{bottom:786.514350px;}
.y178{bottom:786.525600px;}
.y80{bottom:787.580850px;}
.y10e{bottom:787.587600px;}
.y6{bottom:787.783950px;}
.y2c{bottom:793.037400px;}
.y53{bottom:803.771100px;}
.y177{bottom:803.778600px;}
.y7f{bottom:804.837600px;}
.y10d{bottom:804.844350px;}
.y2b{bottom:811.035150px;}
.y52{bottom:821.027850px;}
.y176{bottom:821.031600px;}
.y7e{bottom:822.094350px;}
.y10c{bottom:822.101100px;}
.y2a{bottom:829.032900px;}
.y51{bottom:838.284600px;}
.y7d{bottom:839.351100px;}
.y10b{bottom:839.357850px;}
.y29{bottom:847.030650px;}
.y5{bottom:849.772950px;}
.y7c{bottom:856.607850px;}
.y4{bottom:867.772950px;}
.y28{bottom:873.534600px;}
.y7b{bottom:873.864600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y4f{bottom:916.970700px;}
.y26{bottom:917.533200px;}
.h4{height:36.000000px;}
.hb{height:37.305000px;}
.h12{height:38.475000px;}
.hc{height:39.792000px;}
.h11{height:39.825000px;}
.he{height:43.536000px;}
.h7{height:46.170000px;}
.h2{height:46.332000px;}
.ha{height:47.790000px;}
.hd{height:48.486600px;}
.h9{height:48.735000px;}
.h14{height:48.762000px;}
.h13{height:48.789000px;}
.h10{height:48.816000px;}
.h15{height:48.897000px;}
.h16{height:48.924000px;}
.hf{height:49.059000px;}
.h18{height:49.140000px;}
.h19{height:49.167000px;}
.h17{height:50.445000px;}
.h8{height:52.387059px;}
.h3{height:52.646484px;}
.h5{height:68.103176px;}
.h6{height:72.072000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x16{left:63.779550px;}
.x11{left:72.388350px;}
.x9{left:74.604450px;}
.xa{left:84.178950px;}
.x13{left:85.198800px;}
.x12{left:89.403750px;}
.x1e{left:91.527000px;}
.x17{left:93.547800px;}
.xb{left:95.761950px;}
.x1b{left:96.824700px;}
.xc{left:101.397450px;}
.x7{left:102.528450px;}
.x18{left:104.903700px;}
.x1f{left:106.023000px;}
.x1a{left:107.912700px;}
.x1c{left:117.728700px;}
.x8{left:119.103450px;}
.x6{left:123.978450px;}
.xd{left:127.878450px;}
.xe{left:140.284950px;}
.xf{left:185.361450px;}
.x2{left:200.302050px;}
.x10{left:223.512450px;}
.x19{left:226.775700px;}
.x15{left:236.053050px;}
.x1{left:338.727750px;}
.x21{left:359.428650px;}
.x22{left:361.948650px;}
.x20{left:374.380650px;}
.x4{left:393.166950px;}
.x5{left:407.158950px;}
.x3{left:409.462950px;}
.x14{left:475.153050px;}
.x1d{left:519.676200px;}
@media print{
.v4{vertical-align:-16.872000pt;}
.v1{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.915200pt;}
.v3{vertical-align:17.160000pt;}
.ls5{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.810667pt;}
.lse{letter-spacing:-0.760000pt;}
.lsf{letter-spacing:-0.443080pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.050667pt;}
.ls12{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.557333pt;}
.ls9{letter-spacing:0.590005pt;}
.ls8{letter-spacing:0.590539pt;}
.ls2{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.962667pt;}
.ls0{letter-spacing:0.970667pt;}
.ls7{letter-spacing:1.013333pt;}
.ls4{letter-spacing:1.280000pt;}
.lsc{letter-spacing:1.514933pt;}
.ls11{letter-spacing:2.741067pt;}
.ws1a{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws82{word-spacing:-12.109333pt;}
.ws3f{word-spacing:-11.197333pt;}
.ws1b{word-spacing:-10.800000pt;}
.wsfe{word-spacing:-10.560000pt;}
.ws1c{word-spacing:-10.512000pt;}
.wsf8{word-spacing:-10.133333pt;}
.ws1{word-spacing:-10.026667pt;}
.ws19{word-spacing:-10.000000pt;}
.ws100{word-spacing:-9.648000pt;}
.wsff{word-spacing:-9.600000pt;}
.ws9a{word-spacing:-6.498507pt;}
.wse2{word-spacing:-6.055427pt;}
.ws16{word-spacing:-4.992000pt;}
.ws17{word-spacing:-4.896000pt;}
.ws4d{word-spacing:-4.509333pt;}
.wsc5{word-spacing:-3.546667pt;}
.wsce{word-spacing:-3.394667pt;}
.wsbe{word-spacing:-3.293333pt;}
.wsc6{word-spacing:-3.242667pt;}
.ws59{word-spacing:-3.040000pt;}
.ws10c{word-spacing:-3.024000pt;}
.ws34{word-spacing:-2.837333pt;}
.ws71{word-spacing:-2.786667pt;}
.ws33{word-spacing:-2.685333pt;}
.ws9d{word-spacing:-2.533333pt;}
.wsc8{word-spacing:-2.482667pt;}
.ws110{word-spacing:-2.448000pt;}
.ws93{word-spacing:-2.381333pt;}
.ws84{word-spacing:-2.330667pt;}
.ws23{word-spacing:-2.229333pt;}
.ws111{word-spacing:-2.208000pt;}
.wsfc{word-spacing:-2.178667pt;}
.wsf9{word-spacing:-2.128000pt;}
.ws8d{word-spacing:-2.077333pt;}
.ws38{word-spacing:-2.026667pt;}
.ws8c{word-spacing:-1.976000pt;}
.ws3c{word-spacing:-1.874667pt;}
.wsaf{word-spacing:-1.824000pt;}
.ws77{word-spacing:-1.722667pt;}
.ws49{word-spacing:-1.672000pt;}
.wsd{word-spacing:-1.621333pt;}
.wsef{word-spacing:-1.570667pt;}
.ws50{word-spacing:-1.520000pt;}
.ws54{word-spacing:-1.418667pt;}
.wse{word-spacing:-1.368000pt;}
.ws99{word-spacing:-1.360000pt;}
.wsfa{word-spacing:-1.317333pt;}
.wsd5{word-spacing:-1.280000pt;}
.ws58{word-spacing:-1.266667pt;}
.ws2f{word-spacing:-1.216000pt;}
.wsa2{word-spacing:-1.165333pt;}
.ws27{word-spacing:-1.114667pt;}
.wsb9{word-spacing:-1.064000pt;}
.wsa7{word-spacing:-1.013333pt;}
.ws112{word-spacing:-1.008000pt;}
.ws113{word-spacing:-0.960000pt;}
.wsf4{word-spacing:-0.912000pt;}
.ws8e{word-spacing:-0.861333pt;}
.wsa4{word-spacing:-0.840000pt;}
.ws7e{word-spacing:-0.810667pt;}
.ws4{word-spacing:-0.746667pt;}
.ws52{word-spacing:-0.658667pt;}
.ws56{word-spacing:-0.608000pt;}
.ws94{word-spacing:-0.557333pt;}
.ws3{word-spacing:-0.485333pt;}
.ws72{word-spacing:-0.456000pt;}
.ws6e{word-spacing:-0.405333pt;}
.ws1d{word-spacing:-0.400000pt;}
.ws6b{word-spacing:-0.373333pt;}
.ws28{word-spacing:-0.354667pt;}
.wsac{word-spacing:-0.304000pt;}
.ws26{word-spacing:-0.253333pt;}
.ws8f{word-spacing:-0.202667pt;}
.wsbd{word-spacing:-0.152000pt;}
.ws7b{word-spacing:-0.101333pt;}
.ws86{word-spacing:-0.050667pt;}
.ws114{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.wsab{word-spacing:0.050667pt;}
.ws48{word-spacing:0.101333pt;}
.wsc1{word-spacing:0.120000pt;}
.ws10d{word-spacing:0.144000pt;}
.ws6c{word-spacing:0.152000pt;}
.wsb7{word-spacing:0.202667pt;}
.ws31{word-spacing:0.253333pt;}
.wsf5{word-spacing:0.354667pt;}
.wsa1{word-spacing:0.405333pt;}
.ws9c{word-spacing:0.456000pt;}
.ws85{word-spacing:0.506667pt;}
.ws7f{word-spacing:0.557333pt;}
.ws37{word-spacing:0.709333pt;}
.ws10f{word-spacing:0.720000pt;}
.ws1f{word-spacing:0.760000pt;}
.ws4c{word-spacing:0.810667pt;}
.ws10e{word-spacing:0.816000pt;}
.ws5e{word-spacing:0.861333pt;}
.wsa6{word-spacing:0.880000pt;}
.wsb6{word-spacing:0.912000pt;}
.ws35{word-spacing:0.962667pt;}
.wsc0{word-spacing:1.000000pt;}
.ws2e{word-spacing:1.013333pt;}
.ws60{word-spacing:1.064000pt;}
.ws8b{word-spacing:1.114667pt;}
.ws45{word-spacing:1.216000pt;}
.ws42{word-spacing:1.266667pt;}
.ws90{word-spacing:1.317333pt;}
.wsb3{word-spacing:1.368000pt;}
.wse5{word-spacing:1.418667pt;}
.wsa{word-spacing:1.469333pt;}
.ws98{word-spacing:1.520000pt;}
.ws6a{word-spacing:1.621333pt;}
.ws9{word-spacing:1.672000pt;}
.wsa5{word-spacing:1.720000pt;}
.ws95{word-spacing:1.722667pt;}
.ws78{word-spacing:1.773333pt;}
.wsbc{word-spacing:1.824000pt;}
.ws96{word-spacing:1.840000pt;}
.wsb2{word-spacing:1.874667pt;}
.ws43{word-spacing:1.925333pt;}
.wsba{word-spacing:2.026667pt;}
.ws5b{word-spacing:2.128000pt;}
.ws7{word-spacing:2.178667pt;}
.wsaa{word-spacing:2.229333pt;}
.ws62{word-spacing:2.280000pt;}
.ws11{word-spacing:2.381333pt;}
.wsd7{word-spacing:2.432000pt;}
.ws4a{word-spacing:2.533333pt;}
.ws4f{word-spacing:2.584000pt;}
.ws97{word-spacing:2.680000pt;}
.ws5f{word-spacing:2.685333pt;}
.ws65{word-spacing:2.736000pt;}
.ws61{word-spacing:2.786667pt;}
.wsfb{word-spacing:2.837333pt;}
.ws76{word-spacing:2.888000pt;}
.ws55{word-spacing:2.938667pt;}
.ws4b{word-spacing:3.040000pt;}
.ws63{word-spacing:3.141333pt;}
.ws64{word-spacing:3.192000pt;}
.wsc{word-spacing:3.242667pt;}
.ws2b{word-spacing:3.344000pt;}
.ws7c{word-spacing:3.394667pt;}
.ws79{word-spacing:3.445333pt;}
.ws7a{word-spacing:3.496000pt;}
.ws3a{word-spacing:3.546667pt;}
.ws15{word-spacing:3.597333pt;}
.wsa8{word-spacing:3.648000pt;}
.ws29{word-spacing:3.698667pt;}
.ws44{word-spacing:3.850667pt;}
.ws70{word-spacing:3.952000pt;}
.ws104{word-spacing:3.984000pt;}
.wsfd{word-spacing:4.002667pt;}
.ws6d{word-spacing:4.053333pt;}
.ws101{word-spacing:4.080000pt;}
.wsbb{word-spacing:4.104000pt;}
.wsf6{word-spacing:4.256000pt;}
.ws103{word-spacing:4.272000pt;}
.wse9{word-spacing:4.306667pt;}
.wsc4{word-spacing:4.357333pt;}
.ws73{word-spacing:4.408000pt;}
.ws57{word-spacing:4.458667pt;}
.wsf{word-spacing:4.509333pt;}
.ws81{word-spacing:4.560000pt;}
.ws91{word-spacing:4.661333pt;}
.ws102{word-spacing:4.704000pt;}
.ws9f{word-spacing:4.712000pt;}
.ws47{word-spacing:4.762667pt;}
.ws3b{word-spacing:4.864000pt;}
.ws4e{word-spacing:4.914667pt;}
.ws5a{word-spacing:4.965333pt;}
.wsc9{word-spacing:5.016000pt;}
.wsb5{word-spacing:5.168000pt;}
.ws36{word-spacing:5.269333pt;}
.ws80{word-spacing:5.320000pt;}
.ws51{word-spacing:5.370667pt;}
.ws10b{word-spacing:5.376000pt;}
.ws2a{word-spacing:5.472000pt;}
.wsbf{word-spacing:5.522667pt;}
.ws13{word-spacing:5.573333pt;}
.ws109{word-spacing:5.616000pt;}
.wscf{word-spacing:5.674667pt;}
.ws24{word-spacing:5.725333pt;}
.wsc2{word-spacing:5.776000pt;}
.wsa3{word-spacing:5.826667pt;}
.wsb4{word-spacing:5.928000pt;}
.ws10a{word-spacing:5.952000pt;}
.wse1{word-spacing:5.978667pt;}
.ws10{word-spacing:6.029333pt;}
.ws87{word-spacing:6.080000pt;}
.ws108{word-spacing:6.144000pt;}
.ws8a{word-spacing:6.181333pt;}
.wsa9{word-spacing:6.232000pt;}
.ws74{word-spacing:6.333333pt;}
.ws75{word-spacing:6.384000pt;}
.wsc7{word-spacing:6.536000pt;}
.wsc3{word-spacing:6.637333pt;}
.wsb0{word-spacing:6.688000pt;}
.wsd9{word-spacing:6.738667pt;}
.wse7{word-spacing:6.840000pt;}
.ws39{word-spacing:6.941333pt;}
.ws5{word-spacing:6.992000pt;}
.ws5d{word-spacing:7.093333pt;}
.ws66{word-spacing:7.144000pt;}
.wsd1{word-spacing:7.448000pt;}
.wsb{word-spacing:7.600000pt;}
.ws8{word-spacing:7.650667pt;}
.ws5c{word-spacing:7.701333pt;}
.wsee{word-spacing:7.752000pt;}
.ws2d{word-spacing:7.802667pt;}
.ws89{word-spacing:7.904000pt;}
.wscb{word-spacing:7.954667pt;}
.ws46{word-spacing:8.056000pt;}
.ws12{word-spacing:8.360000pt;}
.ws92{word-spacing:8.410667pt;}
.wsa0{word-spacing:8.613333pt;}
.ws83{word-spacing:8.664000pt;}
.ws9b{word-spacing:8.714667pt;}
.wsca{word-spacing:8.816000pt;}
.ws1e{word-spacing:8.917333pt;}
.wsb1{word-spacing:8.968000pt;}
.ws68{word-spacing:9.120000pt;}
.ws30{word-spacing:9.272000pt;}
.ws67{word-spacing:9.322667pt;}
.ws88{word-spacing:9.525333pt;}
.ws9e{word-spacing:9.778667pt;}
.ws32{word-spacing:9.981333pt;}
.ws106{word-spacing:10.128000pt;}
.ws20{word-spacing:10.184000pt;}
.ws53{word-spacing:10.437333pt;}
.wsad{word-spacing:10.488000pt;}
.wsae{word-spacing:10.538667pt;}
.wsb8{word-spacing:10.741333pt;}
.wscd{word-spacing:10.842667pt;}
.ws107{word-spacing:11.040000pt;}
.ws105{word-spacing:11.136000pt;}
.wsd3{word-spacing:11.146667pt;}
.ws6f{word-spacing:11.400000pt;}
.ws115{word-spacing:11.501333pt;}
.ws69{word-spacing:11.602667pt;}
.wsd0{word-spacing:11.704000pt;}
.wsd2{word-spacing:12.210667pt;}
.ws41{word-spacing:12.464000pt;}
.ws2c{word-spacing:12.970667pt;}
.wsd4{word-spacing:13.072000pt;}
.wsd6{word-spacing:13.325333pt;}
.ws40{word-spacing:13.493333pt;}
.ws22{word-spacing:13.680000pt;}
.wsd8{word-spacing:14.186667pt;}
.wsea{word-spacing:14.338667pt;}
.ws6{word-spacing:14.693333pt;}
.wse3{word-spacing:14.744000pt;}
.wse4{word-spacing:14.794667pt;}
.ws21{word-spacing:14.896000pt;}
.wsdb{word-spacing:15.048000pt;}
.wse8{word-spacing:15.858667pt;}
.ws7d{word-spacing:15.909333pt;}
.wse6{word-spacing:16.112000pt;}
.wscc{word-spacing:17.378667pt;}
.ws25{word-spacing:17.682667pt;}
.wsf3{word-spacing:18.189333pt;}
.wsda{word-spacing:19.101333pt;}
.ws14{word-spacing:19.202667pt;}
.wsf0{word-spacing:20.469333pt;}
.wsec{word-spacing:20.925333pt;}
.wsf2{word-spacing:21.736000pt;}
.wsde{word-spacing:22.850667pt;}
.wsdd{word-spacing:25.637333pt;}
.ws3d{word-spacing:25.728000pt;}
.wse0{word-spacing:27.056000pt;}
.wsf7{word-spacing:31.200000pt;}
.wsdc{word-spacing:33.693333pt;}
.wsdf{word-spacing:33.744000pt;}
.wseb{word-spacing:34.200000pt;}
.wsed{word-spacing:34.960000pt;}
.wsf1{word-spacing:47.221333pt;}
.ws18{word-spacing:87.120000pt;}
.ws3e{word-spacing:528.986667pt;}
._9{margin-left:-11.247467pt;}
._3{margin-left:-6.517333pt;}
._4{margin-left:-5.309867pt;}
._5{margin-left:-3.982400pt;}
._2{margin-left:-2.988267pt;}
._0{margin-left:-1.910400pt;}
._1{margin-left:-0.999467pt;}
._6{width:1.339200pt;}
._8{width:2.315467pt;}
._a{width:29.360000pt;}
._c{width:31.200000pt;}
._b{width:32.560000pt;}
._7{width:42.876267pt;}
.fs7{font-size:29.538667pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y50{bottom:49.890400pt;}
.y27{bottom:50.369200pt;}
.y137{bottom:102.047200pt;}
.yd2{bottom:102.047333pt;}
.y172{bottom:102.047467pt;}
.y150{bottom:102.047600pt;}
.yef{bottom:102.047867pt;}
.yb2{bottom:104.769733pt;}
.y25{bottom:109.283600pt;}
.y19a{bottom:113.754533pt;}
.y168{bottom:113.975867pt;}
.yd1{bottom:114.047333pt;}
.y14f{bottom:114.047600pt;}
.yee{bottom:114.047867pt;}
.ya3{bottom:114.648533pt;}
.y10a{bottom:114.720533pt;}
.y136{bottom:114.847200pt;}
.y16b{bottom:115.999467pt;}
.y7a{bottom:116.229200pt;}
.yb1{bottom:120.109067pt;}
.yd0{bottom:126.047333pt;}
.yed{bottom:126.047867pt;}
.y24{bottom:126.430533pt;}
.y135{bottom:127.647200pt;}
.y16a{bottom:128.799467pt;}
.y199{bottom:129.093867pt;}
.y167{bottom:129.315200pt;}
.ya2{bottom:129.987867pt;}
.y109{bottom:130.059867pt;}
.y79{bottom:131.568533pt;}
.yb0{bottom:135.448400pt;}
.y4e{bottom:136.199333pt;}
.ycf{bottom:138.047333pt;}
.yec{bottom:138.047867pt;}
.y134{bottom:140.447200pt;}
.y169{bottom:141.599467pt;}
.y23{bottom:142.428533pt;}
.y198{bottom:144.433200pt;}
.y166{bottom:144.654533pt;}
.ya1{bottom:145.327200pt;}
.y108{bottom:145.399200pt;}
.y78{bottom:146.907867pt;}
.y4d{bottom:149.531333pt;}
.yce{bottom:150.047333pt;}
.yeb{bottom:150.047867pt;}
.yaf{bottom:150.787733pt;}
.y133{bottom:153.247200pt;}
.y22{bottom:158.426533pt;}
.y197{bottom:159.772533pt;}
.y165{bottom:159.993867pt;}
.ya0{bottom:160.666533pt;}
.y107{bottom:160.738533pt;}
.ycd{bottom:162.047333pt;}
.yea{bottom:162.047867pt;}
.y77{bottom:162.247200pt;}
.y14e{bottom:162.433200pt;}
.y132{bottom:166.047200pt;}
.yae{bottom:166.127067pt;}
.y4c{bottom:166.676267pt;}
.ye9{bottom:174.047867pt;}
.y21{bottom:174.424533pt;}
.y196{bottom:175.111867pt;}
.y164{bottom:175.333200pt;}
.y9f{bottom:176.005867pt;}
.y106{bottom:176.077867pt;}
.y76{bottom:177.586533pt;}
.y14d{bottom:177.772533pt;}
.y131{bottom:178.847200pt;}
.yad{bottom:181.466400pt;}
.y4b{bottom:182.674267pt;}
.y20{bottom:190.422533pt;}
.y195{bottom:190.451200pt;}
.y163{bottom:190.672533pt;}
.y9e{bottom:191.345200pt;}
.y105{bottom:191.417200pt;}
.y130{bottom:191.647200pt;}
.y75{bottom:192.925867pt;}
.y14c{bottom:193.111867pt;}
.y12f{bottom:193.879867pt;}
.yac{bottom:196.805733pt;}
.y4a{bottom:198.672267pt;}
.y194{bottom:205.790533pt;}
.y162{bottom:206.011867pt;}
.y1f{bottom:206.420533pt;}
.y9d{bottom:206.684533pt;}
.y104{bottom:206.756533pt;}
.y74{bottom:208.265200pt;}
.y14b{bottom:208.451200pt;}
.y12e{bottom:209.219200pt;}
.yab{bottom:212.145067pt;}
.y49{bottom:214.670267pt;}
.y193{bottom:221.129867pt;}
.y161{bottom:221.351200pt;}
.y9c{bottom:222.023867pt;}
.y103{bottom:222.095867pt;}
.y1e{bottom:222.418533pt;}
.y73{bottom:223.604533pt;}
.y14a{bottom:223.790533pt;}
.y171{bottom:224.552533pt;}
.y12d{bottom:224.558533pt;}
.yaa{bottom:227.484400pt;}
.ye8{bottom:230.451200pt;}
.y48{bottom:230.668267pt;}
.y192{bottom:236.469200pt;}
.y160{bottom:236.690533pt;}
.y9b{bottom:237.363200pt;}
.y102{bottom:237.435200pt;}
.y1d{bottom:238.416533pt;}
.y72{bottom:238.943867pt;}
.y149{bottom:239.129867pt;}
.y170{bottom:239.891867pt;}
.y12c{bottom:239.897867pt;}
.ycc{bottom:239.981867pt;}
.ya9{bottom:242.823733pt;}
.ye7{bottom:245.790533pt;}
.y47{bottom:246.666267pt;}
.y191{bottom:251.808533pt;}
.y15f{bottom:252.029867pt;}
.y9a{bottom:252.702533pt;}
.y71{bottom:254.283200pt;}
.y1c{bottom:254.414533pt;}
.y148{bottom:254.469200pt;}
.y16f{bottom:255.231200pt;}
.y12b{bottom:255.237200pt;}
.ycb{bottom:255.321200pt;}
.ya8{bottom:258.163067pt;}
.ye6{bottom:261.129867pt;}
.y46{bottom:262.664267pt;}
.y15e{bottom:267.369200pt;}
.y99{bottom:268.041867pt;}
.y101{bottom:268.768533pt;}
.y70{bottom:269.622533pt;}
.y147{bottom:269.712533pt;}
.y1b{bottom:270.412533pt;}
.y16e{bottom:270.570533pt;}
.y12a{bottom:270.576533pt;}
.yca{bottom:270.660533pt;}
.ya7{bottom:273.502400pt;}
.ye5{bottom:276.469200pt;}
.y45{bottom:278.662267pt;}
.y15d{bottom:282.708533pt;}
.y190{bottom:283.141867pt;}
.y98{bottom:283.381200pt;}
.y6f{bottom:284.961867pt;}
.y146{bottom:285.051867pt;}
.y16d{bottom:285.909867pt;}
.y129{bottom:285.915867pt;}
.yc9{bottom:285.999867pt;}
.y1a{bottom:286.410533pt;}
.ya6{bottom:288.841733pt;}
.ye4{bottom:291.766533pt;}
.y44{bottom:294.660267pt;}
.y15c{bottom:298.047867pt;}
.y97{bottom:298.720533pt;}
.y6e{bottom:300.301200pt;}
.y145{bottom:300.391200pt;}
.y16c{bottom:301.249200pt;}
.y128{bottom:301.255200pt;}
.yc8{bottom:301.339200pt;}
.y19{bottom:302.408533pt;}
.ya5{bottom:304.181067pt;}
.ye3{bottom:307.105867pt;}
.y43{bottom:310.658267pt;}
.y15b{bottom:313.387200pt;}
.y96{bottom:314.059867pt;}
.y6d{bottom:315.640533pt;}
.y144{bottom:315.730533pt;}
.y100{bottom:316.588533pt;}
.y127{bottom:316.594533pt;}
.yc7{bottom:316.678533pt;}
.y18{bottom:318.406533pt;}
.ya4{bottom:319.520400pt;}
.ye2{bottom:322.445200pt;}
.y42{bottom:326.656267pt;}
.y15a{bottom:328.726533pt;}
.y95{bottom:329.399200pt;}
.y6c{bottom:330.979867pt;}
.y143{bottom:331.069867pt;}
.yff{bottom:331.927867pt;}
.y126{bottom:331.933867pt;}
.yc6{bottom:332.017867pt;}
.y17{bottom:334.404533pt;}
.ye1{bottom:337.784533pt;}
.y41{bottom:342.654267pt;}
.y159{bottom:344.065867pt;}
.y94{bottom:344.738533pt;}
.y6b{bottom:346.319200pt;}
.y18f{bottom:346.405867pt;}
.y142{bottom:346.409200pt;}
.yfe{bottom:347.267200pt;}
.y125{bottom:347.273200pt;}
.yc5{bottom:347.357200pt;}
.y16{bottom:350.402533pt;}
.ye0{bottom:353.123867pt;}
.y40{bottom:358.652267pt;}
.y158{bottom:359.405200pt;}
.yb5{bottom:359.560667pt;}
.y93{bottom:360.077867pt;}
.y6a{bottom:361.658533pt;}
.y18e{bottom:361.741867pt;}
.y141{bottom:361.748533pt;}
.yfd{bottom:362.606533pt;}
.y124{bottom:362.612533pt;}
.yc4{bottom:362.696533pt;}
.y15{bottom:366.400533pt;}
.ydf{bottom:368.463200pt;}
.yb4{bottom:372.360667pt;}
.y3f{bottom:374.650267pt;}
.y157{bottom:374.744533pt;}
.y92{bottom:375.417200pt;}
.y69{bottom:376.997867pt;}
.y18d{bottom:377.077867pt;}
.y140{bottom:377.087867pt;}
.yfc{bottom:377.945867pt;}
.y123{bottom:377.951867pt;}
.yc3{bottom:378.035867pt;}
.y14{bottom:382.398533pt;}
.yde{bottom:383.802533pt;}
.yb3{bottom:385.160667pt;}
.y156{bottom:390.083867pt;}
.y3e{bottom:390.648267pt;}
.y91{bottom:390.756533pt;}
.y68{bottom:392.337200pt;}
.y18c{bottom:392.413867pt;}
.y13f{bottom:392.427200pt;}
.yfb{bottom:393.285200pt;}
.y122{bottom:393.291200pt;}
.yc2{bottom:393.375200pt;}
.y13{bottom:398.396533pt;}
.ydd{bottom:399.105867pt;}
.y155{bottom:405.423200pt;}
.y90{bottom:406.095867pt;}
.y3d{bottom:406.646267pt;}
.y67{bottom:407.676533pt;}
.y18b{bottom:407.749867pt;}
.y13e{bottom:407.766533pt;}
.yfa{bottom:408.624533pt;}
.y121{bottom:408.630533pt;}
.yc1{bottom:408.714533pt;}
.ydc{bottom:414.445200pt;}
.y154{bottom:420.762533pt;}
.y8f{bottom:421.435200pt;}
.y12{bottom:421.955467pt;}
.y3c{bottom:422.644267pt;}
.y66{bottom:423.015867pt;}
.y18a{bottom:423.085867pt;}
.y13d{bottom:423.105867pt;}
.yf9{bottom:423.963867pt;}
.y120{bottom:423.969867pt;}
.yc0{bottom:424.053867pt;}
.y175{bottom:424.648667pt;}
.ydb{bottom:429.784533pt;}
.y153{bottom:436.101867pt;}
.y174{bottom:437.448667pt;}
.y65{bottom:438.355200pt;}
.y189{bottom:438.421867pt;}
.y13c{bottom:438.445200pt;}
.yf8{bottom:439.303200pt;}
.y11f{bottom:439.309200pt;}
.ybf{bottom:439.393200pt;}
.yda{bottom:445.123867pt;}
.y3b{bottom:446.203333pt;}
.y173{bottom:450.248667pt;}
.y8e{bottom:452.768533pt;}
.y64{bottom:453.694533pt;}
.y188{bottom:453.757867pt;}
.y13b{bottom:453.784533pt;}
.yf7{bottom:454.642533pt;}
.y11e{bottom:454.648533pt;}
.ybe{bottom:454.732533pt;}
.yd9{bottom:460.463200pt;}
.y152{bottom:467.435200pt;}
.y63{bottom:469.033867pt;}
.y187{bottom:469.093867pt;}
.y13a{bottom:469.123867pt;}
.yf6{bottom:469.981867pt;}
.y11d{bottom:469.987867pt;}
.ybd{bottom:470.071867pt;}
.yd8{bottom:475.802533pt;}
.y3a{bottom:479.803333pt;}
.y151{bottom:483.435200pt;}
.y62{bottom:484.373200pt;}
.y186{bottom:484.429867pt;}
.y139{bottom:484.463200pt;}
.yf5{bottom:485.321200pt;}
.y11c{bottom:485.327200pt;}
.ybc{bottom:485.411200pt;}
.y11{bottom:485.983200pt;}
.yd7{bottom:491.135867pt;}
.y39{bottom:496.948133pt;}
.y10{bottom:499.315200pt;}
.y61{bottom:499.712533pt;}
.y185{bottom:499.765867pt;}
.y138{bottom:499.802533pt;}
.y8d{bottom:500.660533pt;}
.y11b{bottom:500.666533pt;}
.ybb{bottom:500.750533pt;}
.yd6{bottom:506.463200pt;}
.yf{bottom:512.647200pt;}
.y38{bottom:512.946133pt;}
.y60{bottom:515.051867pt;}
.y184{bottom:515.101867pt;}
.y8c{bottom:515.999867pt;}
.y11a{bottom:516.005867pt;}
.yba{bottom:516.089867pt;}
.yd5{bottom:521.802533pt;}
.y37{bottom:528.944133pt;}
.ye{bottom:529.760000pt;}
.y5f{bottom:530.391200pt;}
.y183{bottom:530.437867pt;}
.y8b{bottom:531.339200pt;}
.y119{bottom:531.345200pt;}
.yb9{bottom:531.429200pt;}
.yd4{bottom:537.141867pt;}
.y36{bottom:544.942133pt;}
.y5e{bottom:545.730533pt;}
.y182{bottom:545.773867pt;}
.y8a{bottom:546.678533pt;}
.y118{bottom:546.684533pt;}
.yb8{bottom:546.750533pt;}
.yd{bottom:554.652400pt;}
.y35{bottom:560.940133pt;}
.y5d{bottom:561.069867pt;}
.y181{bottom:561.109867pt;}
.y89{bottom:562.017867pt;}
.y117{bottom:562.023867pt;}
.yb7{bottom:562.089867pt;}
.yd3{bottom:568.475200pt;}
.yc{bottom:575.452400pt;}
.y5c{bottom:576.409200pt;}
.y180{bottom:576.445867pt;}
.y34{bottom:576.938133pt;}
.y88{bottom:577.357200pt;}
.y116{bottom:577.363200pt;}
.yb6{bottom:577.429200pt;}
.y5b{bottom:591.748533pt;}
.y17f{bottom:591.781867pt;}
.y87{bottom:592.696533pt;}
.y115{bottom:592.702533pt;}
.y33{bottom:592.936133pt;}
.yb{bottom:596.252400pt;}
.y5a{bottom:607.087867pt;}
.y17e{bottom:607.117867pt;}
.y86{bottom:608.035867pt;}
.y114{bottom:608.041867pt;}
.y32{bottom:608.934133pt;}
.yf4{bottom:609.637867pt;}
.ya{bottom:617.052400pt;}
.y59{bottom:622.427200pt;}
.yf3{bottom:622.437867pt;}
.y17d{bottom:622.453867pt;}
.y85{bottom:623.375200pt;}
.y113{bottom:623.381200pt;}
.y31{bottom:624.932133pt;}
.yf2{bottom:635.237867pt;}
.y58{bottom:637.766533pt;}
.y17c{bottom:637.789867pt;}
.y9{bottom:637.852400pt;}
.y84{bottom:638.714533pt;}
.y112{bottom:638.720533pt;}
.y30{bottom:640.930133pt;}
.yf1{bottom:648.037867pt;}
.y57{bottom:653.105867pt;}
.y17b{bottom:653.125867pt;}
.y83{bottom:654.053867pt;}
.y111{bottom:654.059867pt;}
.y2f{bottom:656.928133pt;}
.y8{bottom:658.652400pt;}
.yf0{bottom:660.837867pt;}
.y56{bottom:668.445200pt;}
.y17a{bottom:668.461867pt;}
.y82{bottom:669.393200pt;}
.y110{bottom:669.399200pt;}
.y2e{bottom:672.926133pt;}
.y7{bottom:679.452400pt;}
.y55{bottom:683.784533pt;}
.y179{bottom:683.797867pt;}
.y81{bottom:684.732533pt;}
.y10f{bottom:684.738533pt;}
.y2d{bottom:688.924133pt;}
.y54{bottom:699.123867pt;}
.y178{bottom:699.133867pt;}
.y80{bottom:700.071867pt;}
.y10e{bottom:700.077867pt;}
.y6{bottom:700.252400pt;}
.y2c{bottom:704.922133pt;}
.y53{bottom:714.463200pt;}
.y177{bottom:714.469867pt;}
.y7f{bottom:715.411200pt;}
.y10d{bottom:715.417200pt;}
.y2b{bottom:720.920133pt;}
.y52{bottom:729.802533pt;}
.y176{bottom:729.805867pt;}
.y7e{bottom:730.750533pt;}
.y10c{bottom:730.756533pt;}
.y2a{bottom:736.918133pt;}
.y51{bottom:745.141867pt;}
.y7d{bottom:746.089867pt;}
.y10b{bottom:746.095867pt;}
.y29{bottom:752.916133pt;}
.y5{bottom:755.353733pt;}
.y7c{bottom:761.429200pt;}
.y4{bottom:771.353733pt;}
.y28{bottom:776.475200pt;}
.y7b{bottom:776.768533pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y4f{bottom:815.085067pt;}
.y26{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.hb{height:33.160000pt;}
.h12{height:34.200000pt;}
.hc{height:35.370667pt;}
.h11{height:35.400000pt;}
.he{height:38.698667pt;}
.h7{height:41.040000pt;}
.h2{height:41.184000pt;}
.ha{height:42.480000pt;}
.hd{height:43.099200pt;}
.h9{height:43.320000pt;}
.h14{height:43.344000pt;}
.h13{height:43.368000pt;}
.h10{height:43.392000pt;}
.h15{height:43.464000pt;}
.h16{height:43.488000pt;}
.hf{height:43.608000pt;}
.h18{height:43.680000pt;}
.h19{height:43.704000pt;}
.h17{height:44.840000pt;}
.h8{height:46.566275pt;}
.h3{height:46.796875pt;}
.h5{height:60.536157pt;}
.h6{height:64.064000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x16{left:56.692933pt;}
.x11{left:64.345200pt;}
.x9{left:66.315067pt;}
.xa{left:74.825733pt;}
.x13{left:75.732267pt;}
.x12{left:79.470000pt;}
.x1e{left:81.357333pt;}
.x17{left:83.153600pt;}
.xb{left:85.121733pt;}
.x1b{left:86.066400pt;}
.xc{left:90.131067pt;}
.x7{left:91.136400pt;}
.x18{left:93.247733pt;}
.x1f{left:94.242667pt;}
.x1a{left:95.922400pt;}
.x1c{left:104.647733pt;}
.x8{left:105.869733pt;}
.x6{left:110.203067pt;}
.xd{left:113.669733pt;}
.xe{left:124.697733pt;}
.xf{left:164.765733pt;}
.x2{left:178.046267pt;}
.x10{left:198.677733pt;}
.x19{left:201.578400pt;}
.x15{left:209.824933pt;}
.x1{left:301.091333pt;}
.x21{left:319.492133pt;}
.x22{left:321.732133pt;}
.x20{left:332.782800pt;}
.x4{left:349.481733pt;}
.x5{left:361.919067pt;}
.x3{left:363.967067pt;}
.x14{left:422.358267pt;}
.x1d{left:461.934400pt;}
}




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