
    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_76008aef3de83f48f72f55d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_46fc6455c3b931ae82189a40.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_172dfc90d841da28c51805e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_90f6a16893ce7fca63961341.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_29c239a2c3a5373984257577.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_490831b8318effd2d2381743.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_17513f69c7230552040a7ce9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.052734;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_9728a15123201390d9c2c1aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_f528d712b839d7e1d49653f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;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);}
.m2{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.ls31{letter-spacing:-0.838956px;}
.lsf{letter-spacing:-0.696000px;}
.ls3c{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.579600px;}
.ls35{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.414000px;}
.ls38{letter-spacing:-0.326400px;}
.ls8{letter-spacing:-0.303000px;}
.ls15{letter-spacing:-0.248400px;}
.ls39{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.214800px;}
.ls5{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.115800px;}
.ls2f{letter-spacing:-0.078600px;}
.lse{letter-spacing:-0.067200px;}
.lsd{letter-spacing:-0.058320px;}
.ls2c{letter-spacing:-0.055440px;}
.ls3{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.012960px;}
.ls33{letter-spacing:0.023760px;}
.ls4{letter-spacing:0.038880px;}
.ls13{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls37{letter-spacing:0.067200px;}
.lsb{letter-spacing:0.132480px;}
.ls1c{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.lsc{letter-spacing:0.174000px;}
.ls11{letter-spacing:0.174240px;}
.ls2d{letter-spacing:0.175200px;}
.ls20{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.274800px;}
.ls2e{letter-spacing:0.306000px;}
.ls22{letter-spacing:0.314400px;}
.ls1e{letter-spacing:0.479520px;}
.ls1{letter-spacing:0.731520px;}
.ls10{letter-spacing:0.744000px;}
.ls26{letter-spacing:1.404720px;}
.ls28{letter-spacing:2.329200px;}
.ls18{letter-spacing:2.460960px;}
.ls27{letter-spacing:2.604960px;}
.ls19{letter-spacing:3.180960px;}
.ls1a{letter-spacing:3.225600px;}
.ls1b{letter-spacing:3.945600px;}
.ls12{letter-spacing:8.814240px;}
.ls3d{letter-spacing:12.186720px;}
.ls25{letter-spacing:15.420960px;}
.ls17{letter-spacing:16.140960px;}
.ls16{letter-spacing:20.505600px;}
.ls2{letter-spacing:36.666720px;}
.ls1d{letter-spacing:38.826720px;}
.ls1f{letter-spacing:41.706720px;}
.ls2a{letter-spacing:41.850720px;}
.ls3b{letter-spacing:42.570720px;}
.ls34{letter-spacing:43.866720px;}
.ls29{letter-spacing:44.730720px;}
.ls3a{letter-spacing:46.170720px;}
.ls2b{letter-spacing:47.610720px;}
.ls30{letter-spacing:58.986720px;}
.ls23{letter-spacing:123.210720px;}
.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;}
}
.ws16{word-spacing:-59.772960px;}
.wse{word-spacing:-59.760000px;}
.ws10{word-spacing:-46.680720px;}
.ws17{word-spacing:-46.092960px;}
.wsd{word-spacing:-46.080720px;}
.ws15{word-spacing:-43.200720px;}
.wsc{word-spacing:-42.480720px;}
.ws11{word-spacing:-41.760000px;}
.wsf{word-spacing:-24.854400px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws13{word-spacing:-13.820160px;}
.ws19{word-spacing:-13.811760px;}
.ws1d{word-spacing:-13.780560px;}
.ws18{word-spacing:-13.680960px;}
.ws1e{word-spacing:-13.646160px;}
.ws1f{word-spacing:-13.572960px;}
.ws6{word-spacing:-13.505760px;}
.ws14{word-spacing:-13.450320px;}
.ws9{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.438560px;}
.ws1a{word-spacing:-13.427160px;}
.ws7{word-spacing:-13.389960px;}
.ws12{word-spacing:-13.290960px;}
.wsb{word-spacing:-13.257360px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
.ws1b{word-spacing:57.630897px;}
.ws1c{word-spacing:76.640572px;}
._1d{margin-left:-533.098560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.758240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.172160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-223.014000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-189.930240px;}
._25{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.134400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.104000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.155360px;}
._11{margin-left:-115.342560px;}
._23{margin-left:-109.410240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.700000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._22{margin-left:-53.422560px;}
._14{margin-left:-48.883920px;}
._19{margin-left:-31.530240px;}
._36{margin-left:-6.122880px;}
._27{margin-left:-4.826880px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.412400px;}
._2c{width:3.326640px;}
._2a{width:5.285760px;}
._2b{width:7.051680px;}
._2d{width:8.187120px;}
._2f{width:9.643200px;}
._31{width:10.734960px;}
._2e{width:12.104640px;}
._42{width:14.680320px;}
._33{width:15.792480px;}
._32{width:17.673120px;}
._34{width:18.784080px;}
._29{width:20.124480px;}
._43{width:21.274560px;}
._35{width:22.529520px;}
._45{width:31.574880px;}
._44{width:32.906160px;}
._40{width:70.583691px;}
._41{width:94.597686px;}
._3c{width:95.848513px;}
._3d{width:103.403898px;}
._38{width:107.001894px;}
._3e{width:109.258525px;}
._30{width:113.065920px;}
._39{width:114.839748px;}
._3f{width:125.973806px;}
._3a{width:127.658510px;}
._3b{width:133.481067px;}
._37{width:175.278720px;}
.fc4{color:transparent;}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs9{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.123471px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:56.177452px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yc2{bottom:-18.285000px;}
.yf5{bottom:-10.980000px;}
.yfa{bottom:-10.800000px;}
.yf3{bottom:-7.920000px;}
.y198{bottom:-7.785000px;}
.yf8{bottom:-7.740000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:4.755000px;}
.y104{bottom:6.480000px;}
.y37{bottom:6.660000px;}
.y143{bottom:6.690000px;}
.y39{bottom:7.020000px;}
.y3c{bottom:7.380000px;}
.y135{bottom:10.342235px;}
.yba{bottom:13.215000px;}
.yb3{bottom:13.785000px;}
.y12a{bottom:25.158205px;}
.ybd{bottom:25.770000px;}
.yb6{bottom:27.615000px;}
.y35{bottom:27.720000px;}
.y134{bottom:28.127178px;}
.yb9{bottom:36.255000px;}
.yb2{bottom:36.825000px;}
.y124{bottom:38.265733px;}
.y36{bottom:48.810000px;}
.ybf{bottom:51.195000px;}
.y6{bottom:61.416000px;}
.y133{bottom:63.724564px;}
.y125{bottom:81.537239px;}
.y1d5{bottom:92.196000px;}
.y15c{bottom:92.556000px;}
.y96{bottom:95.256000px;}
.y122{bottom:96.696000px;}
.y132{bottom:99.323115px;}
.y30{bottom:102.096000px;}
.yb0{bottom:102.456000px;}
.y1bd{bottom:108.036000px;}
.y66{bottom:110.376000px;}
.y1d4{bottom:113.256000px;}
.y15b{bottom:113.616000px;}
.y95{bottom:116.316000px;}
.y131{bottom:117.104329px;}
.yec{bottom:117.216000px;}
.y121{bottom:117.756000px;}
.y18f{bottom:122.976000px;}
.y2f{bottom:123.156000px;}
.yaf{bottom:123.516000px;}
.y126{bottom:124.783110px;}
.y1bc{bottom:129.096000px;}
.y15a{bottom:129.996000px;}
.y1d6{bottom:130.896000px;}
.y65{bottom:131.436000px;}
.y1d3{bottom:134.316000px;}
.y130{bottom:134.920500px;}
.y94{bottom:137.376000px;}
.yeb{bottom:138.276000px;}
.y120{bottom:138.816000px;}
.y18e{bottom:144.036000px;}
.y2e{bottom:144.216000px;}
.yae{bottom:144.576000px;}
.y1bb{bottom:149.976000px;}
.y159{bottom:151.050000px;}
.y64{bottom:152.490000px;}
.y12f{bottom:152.701715px;}
.y1d2{bottom:155.370000px;}
.y93{bottom:158.430000px;}
.yea{bottom:159.330000px;}
.y11f{bottom:159.870000px;}
.y18d{bottom:165.090000px;}
.y2d{bottom:165.270000px;}
.yad{bottom:165.630000px;}
.y127{bottom:168.059277px;}
.y12e{bottom:170.517886px;}
.y1ba{bottom:171.030000px;}
.y63{bottom:173.550000px;}
.y1d1{bottom:176.430000px;}
.y158{bottom:178.770000px;}
.y92{bottom:179.490000px;}
.ye9{bottom:180.390000px;}
.y11e{bottom:180.930000px;}
.y18c{bottom:186.150000px;}
.y2c{bottom:186.330000px;}
.yac{bottom:186.690000px;}
.y1b9{bottom:192.090000px;}
.y62{bottom:194.610000px;}
.y1d0{bottom:197.490000px;}
.y157{bottom:199.830000px;}
.y91{bottom:200.550000px;}
.ye8{bottom:201.450000px;}
.y11d{bottom:201.990000px;}
.y12d{bottom:206.091967px;}
.y18b{bottom:207.210000px;}
.y2b{bottom:207.390000px;}
.yab{bottom:207.750000px;}
.y128{bottom:211.323792px;}
.y1b8{bottom:213.150000px;}
.y61{bottom:215.670000px;}
.ybc{bottom:216.180000px;}
.y1cf{bottom:218.550000px;}
.y156{bottom:220.890000px;}
.y90{bottom:221.610000px;}
.ye7{bottom:222.510000px;}
.y11c{bottom:223.050000px;}
.y12c{bottom:223.896486px;}
.y18a{bottom:228.270000px;}
.y2a{bottom:228.450000px;}
.yaa{bottom:228.810000px;}
.y1b7{bottom:234.210000px;}
.y60{bottom:236.730000px;}
.y1ce{bottom:239.610000px;}
.y12b{bottom:241.689353px;}
.y155{bottom:241.950000px;}
.y8f{bottom:242.670000px;}
.ye6{bottom:243.570000px;}
.y11b{bottom:244.110000px;}
.ya9{bottom:246.090000px;}
.y189{bottom:249.330000px;}
.y29{bottom:249.510000px;}
.y129{bottom:254.483438px;}
.y1b6{bottom:255.270000px;}
.y5f{bottom:257.790000px;}
.y1cd{bottom:260.670000px;}
.y154{bottom:263.010000px;}
.ye5{bottom:264.450000px;}
.y11a{bottom:265.170000px;}
.y188{bottom:270.390000px;}
.y28{bottom:270.570000px;}
.y8e{bottom:272.775000px;}
.y5e{bottom:278.895000px;}
.y1cc{bottom:281.775000px;}
.y153{bottom:284.115000px;}
.y1b5{bottom:285.375000px;}
.ye4{bottom:285.555000px;}
.y119{bottom:286.275000px;}
.y187{bottom:291.495000px;}
.y27{bottom:291.675000px;}
.y8d{bottom:293.835000px;}
.y5d{bottom:299.955000px;}
.y1cb{bottom:302.835000px;}
.y152{bottom:305.175000px;}
.y1b4{bottom:306.435000px;}
.ye3{bottom:306.615000px;}
.y118{bottom:307.335000px;}
.y186{bottom:312.555000px;}
.y26{bottom:312.735000px;}
.y8c{bottom:314.895000px;}
.y5c{bottom:321.015000px;}
.y1ca{bottom:323.895000px;}
.y151{bottom:326.235000px;}
.yb8{bottom:326.700000px;}
.y185{bottom:326.955000px;}
.y1b3{bottom:327.495000px;}
.ye2{bottom:327.675000px;}
.y117{bottom:328.395000px;}
.y25{bottom:333.795000px;}
.y8b{bottom:335.955000px;}
.y184{bottom:336.855000px;}
.ybb{bottom:339.915000px;}
.y5b{bottom:342.075000px;}
.y183{bottom:343.515000px;}
.y1c9{bottom:344.955000px;}
.y150{bottom:347.295000px;}
.y1b2{bottom:348.555000px;}
.ye1{bottom:348.735000px;}
.y116{bottom:349.455000px;}
.y24{bottom:354.855000px;}
.y8a{bottom:357.015000px;}
.y5a{bottom:363.135000px;}
.y182{bottom:364.575000px;}
.y14f{bottom:365.115000px;}
.y1c8{bottom:366.015000px;}
.y1b1{bottom:369.615000px;}
.ye0{bottom:369.795000px;}
.y115{bottom:370.515000px;}
.y14e{bottom:371.775000px;}
.ybe{bottom:374.040000px;}
.y23{bottom:375.915000px;}
.y89{bottom:378.075000px;}
.y59{bottom:384.195000px;}
.y181{bottom:385.635000px;}
.y1c7{bottom:387.075000px;}
.y1b0{bottom:390.675000px;}
.y114{bottom:391.575000px;}
.y14d{bottom:392.655000px;}
.y22{bottom:396.975000px;}
.y88{bottom:399.135000px;}
.ydf{bottom:399.855000px;}
.yc0{bottom:402.015000px;}
.y58{bottom:405.255000px;}
.y180{bottom:406.695000px;}
.y1c6{bottom:408.135000px;}
.y1af{bottom:411.735000px;}
.y113{bottom:412.635000px;}
.y14c{bottom:413.715000px;}
.y21{bottom:418.035000px;}
.y87{bottom:420.195000px;}
.yde{bottom:420.915000px;}
.y57{bottom:426.315000px;}
.y17f{bottom:427.755000px;}
.y1c5{bottom:429.195000px;}
.y1ae{bottom:432.795000px;}
.y112{bottom:433.695000px;}
.y14b{bottom:434.775000px;}
.y20{bottom:439.095000px;}
.y86{bottom:441.255000px;}
.ydd{bottom:441.975000px;}
.yb5{bottom:443.520000px;}
.y56{bottom:447.375000px;}
.y17e{bottom:448.815000px;}
.y1c4{bottom:450.255000px;}
.y1ad{bottom:453.855000px;}
.y111{bottom:454.755000px;}
.y14a{bottom:455.835000px;}
.y17d{bottom:458.715000px;}
.y1f{bottom:460.155000px;}
.y85{bottom:462.315000px;}
.ydc{bottom:463.035000px;}
.y17c{bottom:465.375000px;}
.y55{bottom:468.435000px;}
.yb7{bottom:471.135000px;}
.y1c3{bottom:471.315000px;}
.y1ac{bottom:474.915000px;}
.y110{bottom:475.095000px;}
.y149{bottom:476.895000px;}
.y1e{bottom:481.215000px;}
.y84{bottom:483.375000px;}
.ydb{bottom:484.095000px;}
.y17b{bottom:486.435000px;}
.y148{bottom:486.795000px;}
.y1ab{bottom:489.315000px;}
.y54{bottom:489.495000px;}
.y1c2{bottom:492.375000px;}
.y147{bottom:493.455000px;}
.y10f{bottom:495.975000px;}
.y17a{bottom:496.335000px;}
.y1aa{bottom:499.215000px;}
.y1d{bottom:502.275000px;}
.y179{bottom:502.815000px;}
.y83{bottom:504.435000px;}
.yda{bottom:505.155000px;}
.y1a9{bottom:505.875000px;}
.y53{bottom:510.555000px;}
.y1c1{bottom:513.435000px;}
.y146{bottom:514.515000px;}
.y10e{bottom:517.035000px;}
.y1c{bottom:523.335000px;}
.y178{bottom:523.875000px;}
.y82{bottom:525.495000px;}
.yd9{bottom:526.215000px;}
.y1a8{bottom:526.935000px;}
.y52{bottom:531.615000px;}
.y1c0{bottom:534.495000px;}
.y145{bottom:535.575000px;}
.y10d{bottom:538.095000px;}
.y1b{bottom:544.395000px;}
.y177{bottom:544.935000px;}
.y144{bottom:545.475000px;}
.y81{bottom:546.555000px;}
.yd8{bottom:547.275000px;}
.y1a7{bottom:547.995000px;}
.y142{bottom:552.135000px;}
.yb1{bottom:552.600000px;}
.y51{bottom:552.675000px;}
.y1bf{bottom:555.555000px;}
.y10c{bottom:559.185000px;}
.y1a{bottom:565.485000px;}
.y176{bottom:566.025000px;}
.yb4{bottom:566.385000px;}
.y80{bottom:567.645000px;}
.yd7{bottom:568.365000px;}
.y1a6{bottom:569.085000px;}
.y141{bottom:573.225000px;}
.y50{bottom:573.765000px;}
.y1be{bottom:576.645000px;}
.y10b{bottom:580.245000px;}
.y19{bottom:586.545000px;}
.y175{bottom:587.085000px;}
.yd6{bottom:589.425000px;}
.y1a5{bottom:590.145000px;}
.y140{bottom:594.285000px;}
.y4f{bottom:594.825000px;}
.y7f{bottom:597.705000px;}
.y10a{bottom:598.065000px;}
.y109{bottom:604.725000px;}
.y18{bottom:608.325000px;}
.yd5{bottom:610.485000px;}
.y1a4{bottom:611.205000px;}
.y174{bottom:614.805000px;}
.y13f{bottom:615.345000px;}
.y4e{bottom:615.885000px;}
.y7e{bottom:618.765000px;}
.y108{bottom:625.785000px;}
.ya8{bottom:630.825000px;}
.yd4{bottom:631.545000px;}
.y1a3{bottom:632.265000px;}
.y173{bottom:635.865000px;}
.y4d{bottom:636.945000px;}
.y17{bottom:638.385000px;}
.y7d{bottom:639.825000px;}
.y13e{bottom:643.065000px;}
.y107{bottom:646.845000px;}
.ya7{bottom:651.885000px;}
.yd3{bottom:652.605000px;}
.y1a2{bottom:653.325000px;}
.y172{bottom:656.925000px;}
.y4c{bottom:658.005000px;}
.y16{bottom:659.445000px;}
.y7c{bottom:660.885000px;}
.y1a1{bottom:663.225000px;}
.y13d{bottom:664.125000px;}
.y106{bottom:667.905000px;}
.ya6{bottom:672.945000px;}
.yd2{bottom:673.665000px;}
.y1a0{bottom:676.365000px;}
.y171{bottom:677.985000px;}
.y4b{bottom:679.065000px;}
.y15{bottom:680.505000px;}
.y7b{bottom:681.945000px;}
.y13c{bottom:685.185000px;}
.y105{bottom:688.965000px;}
.ya5{bottom:694.005000px;}
.yd1{bottom:694.725000px;}
.y19f{bottom:697.425000px;}
.y170{bottom:699.045000px;}
.y4a{bottom:700.125000px;}
.y14{bottom:701.565000px;}
.y7a{bottom:703.005000px;}
.y13b{bottom:706.245000px;}
.y103{bottom:710.025000px;}
.ya4{bottom:715.065000px;}
.yd0{bottom:715.785000px;}
.y19e{bottom:718.485000px;}
.y16f{bottom:720.105000px;}
.y49{bottom:721.185000px;}
.y13{bottom:722.625000px;}
.y79{bottom:724.065000px;}
.y13a{bottom:727.305000px;}
.y102{bottom:730.905000px;}
.ya3{bottom:736.125000px;}
.y48{bottom:736.305000px;}
.ycf{bottom:736.845000px;}
.y19d{bottom:739.545000px;}
.y16e{bottom:741.165000px;}
.y12{bottom:743.685000px;}
.y78{bottom:745.125000px;}
.y139{bottom:748.365000px;}
.y101{bottom:751.965000px;}
.ya2{bottom:757.005000px;}
.yce{bottom:757.905000px;}
.y47{bottom:758.805000px;}
.y19c{bottom:760.605000px;}
.y100{bottom:761.865000px;}
.y16d{bottom:762.225000px;}
.y11{bottom:764.745000px;}
.y77{bottom:766.005000px;}
.yff{bottom:768.525000px;}
.y138{bottom:769.425000px;}
.ya1{bottom:778.065000px;}
.ycd{bottom:778.965000px;}
.y46{bottom:781.305000px;}
.y19b{bottom:781.665000px;}
.y16c{bottom:783.285000px;}
.y10{bottom:785.805000px;}
.y76{bottom:787.065000px;}
.yfe{bottom:789.585000px;}
.y137{bottom:790.485000px;}
.ya0{bottom:799.125000px;}
.ycc{bottom:800.025000px;}
.y19a{bottom:802.725000px;}
.y45{bottom:803.805000px;}
.y16b{bottom:804.345000px;}
.yf{bottom:806.865000px;}
.y75{bottom:808.125000px;}
.yfd{bottom:810.645000px;}
.y136{bottom:811.545000px;}
.y16a{bottom:818.745000px;}
.y9f{bottom:820.185000px;}
.ycb{bottom:821.085000px;}
.y199{bottom:823.785000px;}
.y169{bottom:825.045000px;}
.y44{bottom:826.305000px;}
.ye{bottom:827.925000px;}
.y123{bottom:828.465000px;}
.y74{bottom:829.185000px;}
.yfc{bottom:831.705000px;}
.y9e{bottom:841.290000px;}
.y197{bottom:841.650000px;}
.yca{bottom:842.190000px;}
.y196{bottom:848.310000px;}
.y43{bottom:848.850000px;}
.y73{bottom:850.290000px;}
.yd{bottom:851.190000px;}
.yfb{bottom:852.810000px;}
.y9d{bottom:862.350000px;}
.yc9{bottom:863.250000px;}
.y195{bottom:869.370000px;}
.y42{bottom:871.350000px;}
.yf9{bottom:873.870000px;}
.yc{bottom:877.470000px;}
.y9c{bottom:883.410000px;}
.yf7{bottom:883.770000px;}
.yf6{bottom:890.430000px;}
.y72{bottom:892.410000px;}
.yc8{bottom:893.310000px;}
.y41{bottom:893.850000px;}
.yb{bottom:894.210000px;}
.y9b{bottom:904.470000px;}
.yc7{bottom:911.310000px;}
.yf4{bottom:911.490000px;}
.y71{bottom:913.470000px;}
.yc6{bottom:914.370000px;}
.y40{bottom:916.350000px;}
.ya{bottom:916.530000px;}
.yf2{bottom:921.390000px;}
.y9a{bottom:925.530000px;}
.yf1{bottom:927.870000px;}
.y194{bottom:932.550000px;}
.y70{bottom:934.530000px;}
.yc5{bottom:935.430000px;}
.y3f{bottom:938.850000px;}
.y168{bottom:939.210000px;}
.y9{bottom:941.730000px;}
.y99{bottom:946.590000px;}
.yf0{bottom:948.930000px;}
.yc4{bottom:952.710000px;}
.y193{bottom:953.610000px;}
.y6f{bottom:955.590000px;}
.yc3{bottom:955.770000px;}
.y167{bottom:960.270000px;}
.y3e{bottom:961.350000px;}
.y98{bottom:967.650000px;}
.yef{bottom:969.990000px;}
.y192{bottom:974.670000px;}
.y8{bottom:975.390000px;}
.y6e{bottom:976.650000px;}
.y166{bottom:981.330000px;}
.y3d{bottom:983.850000px;}
.y97{bottom:988.710000px;}
.yee{bottom:991.050000px;}
.y191{bottom:995.730000px;}
.y6d{bottom:997.710000px;}
.y165{bottom:1002.390000px;}
.y190{bottom:1005.630000px;}
.y3b{bottom:1006.350000px;}
.y7{bottom:1009.050000px;}
.yed{bottom:1012.110000px;}
.y6c{bottom:1018.770000px;}
.y164{bottom:1023.450000px;}
.y3a{bottom:1029.570000px;}
.y6b{bottom:1039.830000px;}
.y163{bottom:1044.510000px;}
.y5{bottom:1049.190000px;}
.y38{bottom:1052.070000px;}
.y6a{bottom:1060.890000px;}
.y162{bottom:1065.570000px;}
.y34{bottom:1074.570000px;}
.y4{bottom:1081.410000px;}
.y69{bottom:1081.950000px;}
.y161{bottom:1086.630000px;}
.y160{bottom:1101.030000px;}
.y68{bottom:1103.010000px;}
.y15f{bottom:1110.930000px;}
.y3{bottom:1113.630000px;}
.y15e{bottom:1117.410000px;}
.y67{bottom:1124.100000px;}
.y15d{bottom:1138.500000px;}
.y33{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.h23{height:2.864531px;}
.h1a{height:3.420000px;}
.h1c{height:3.600000px;}
.h19{height:6.480000px;}
.h1b{height:6.660000px;}
.h1e{height:20.880000px;}
.h18{height:21.060000px;}
.h1d{height:21.096000px;}
.hb{height:21.780000px;}
.hd{height:21.816000px;}
.hc{height:22.500000px;}
.h8{height:38.671172px;}
.h10{height:44.860781px;}
.he{height:45.170156px;}
.h13{height:45.180000px;}
.h24{height:45.637031px;}
.h21{height:47.864995px;}
.h11{height:48.600000px;}
.h15{height:50.364141px;}
.h12{height:52.020000px;}
.hf{height:52.560000px;}
.h20{height:55.875718px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h16{height:62.604141px;}
.ha{height:63.216000px;}
.h3{height:65.884219px;}
.h14{height:66.960000px;}
.h7{height:67.824844px;}
.h17{height:71.679023px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h22{height:113.796000px;}
.h1f{height:267.673696px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:71.280000px;}
.w17{width:78.660000px;}
.we{width:78.840000px;}
.wc{width:86.220000px;}
.wf{width:86.256000px;}
.w14{width:86.400000px;}
.w1c{width:91.476000px;}
.w4{width:116.676000px;}
.w1a{width:125.496000px;}
.w1b{width:127.620000px;}
.wd{width:144.036000px;}
.w19{width:146.376000px;}
.w5{width:159.120000px;}
.w7{width:159.300000px;}
.w6{width:159.840000px;}
.w8{width:160.200000px;}
.w10{width:172.470000px;}
.w9{width:215.820000px;}
.wb{width:309.135000px;}
.w13{width:316.515000px;}
.wa{width:395.355000px;}
.w12{width:402.915000px;}
.w16{width:466.455000px;}
.w15{width:466.635000px;}
.w18{width:468.795000px;}
.w11{width:482.696039px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:2.876118px;}
.x9{left:7.740000px;}
.xf{left:19.080000px;}
.x39{left:21.960000px;}
.x1c{left:26.205000px;}
.x28{left:32.039987px;}
.x12{left:34.236000px;}
.xe{left:37.476000px;}
.x15{left:40.896000px;}
.x18{left:42.876000px;}
.x16{left:47.376000px;}
.x6{left:53.999987px;}
.x21{left:56.159987px;}
.x1a{left:60.225000px;}
.x20{left:64.619987px;}
.xc{left:70.199987px;}
.x11{left:71.460000px;}
.x14{left:72.540000px;}
.x2a{left:75.239987px;}
.x7{left:80.999987px;}
.x2c{left:86.039987px;}
.x2b{left:102.275987px;}
.xb{left:108.035987px;}
.x27{left:141.515987px;}
.x3a{left:147.456000px;}
.x1f{left:159.149987px;}
.x5{left:164.729987px;}
.x17{left:184.349987px;}
.x29{left:188.489987px;}
.x13{left:196.769987px;}
.x3e{left:204.689987px;}
.x10{left:211.169987px;}
.x33{left:213.869987px;}
.x22{left:216.030000px;}
.x34{left:218.370000px;}
.x2d{left:259.140000px;}
.x3b{left:275.070000px;}
.x3{left:286.589987px;}
.x1d{left:329.294987px;}
.x1e{left:335.774987px;}
.x2f{left:346.799424px;}
.x2{left:350.534987px;}
.x8{left:352.515000px;}
.x25{left:360.075000px;}
.x3c{left:361.335000px;}
.x35{left:362.415000px;}
.x4{left:419.114987px;}
.xa{left:424.155000px;}
.x26{left:438.915000px;}
.x36{left:441.075000px;}
.x32{left:446.295000px;}
.x3d{left:447.735000px;}
.x1{left:479.234987px;}
.x24{left:525.165000px;}
.x19{left:526.320000px;}
.x37{left:527.325000px;}
.x31{left:532.545000px;}
.x1b{left:551.444987px;}
.x23{left:611.385000px;}
.x38{left:613.545000px;}
.xd{left:702.149987px;}
.x30{left:741.929987px;}
.x3f{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.ls31{letter-spacing:-0.745739pt;}
.lsf{letter-spacing:-0.618667pt;}
.ls3c{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.515200pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.368000pt;}
.ls38{letter-spacing:-0.290133pt;}
.ls8{letter-spacing:-0.269333pt;}
.ls15{letter-spacing:-0.220800pt;}
.ls39{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.190933pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls2f{letter-spacing:-0.069867pt;}
.lse{letter-spacing:-0.059733pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls2c{letter-spacing:-0.049280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.011520pt;}
.ls33{letter-spacing:0.021120pt;}
.ls4{letter-spacing:0.034560pt;}
.ls13{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls37{letter-spacing:0.059733pt;}
.lsb{letter-spacing:0.117760pt;}
.ls1c{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.lsc{letter-spacing:0.154667pt;}
.ls11{letter-spacing:0.154880pt;}
.ls2d{letter-spacing:0.155733pt;}
.ls20{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.244267pt;}
.ls2e{letter-spacing:0.272000pt;}
.ls22{letter-spacing:0.279467pt;}
.ls1e{letter-spacing:0.426240pt;}
.ls1{letter-spacing:0.650240pt;}
.ls10{letter-spacing:0.661333pt;}
.ls26{letter-spacing:1.248640pt;}
.ls28{letter-spacing:2.070400pt;}
.ls18{letter-spacing:2.187520pt;}
.ls27{letter-spacing:2.315520pt;}
.ls19{letter-spacing:2.827520pt;}
.ls1a{letter-spacing:2.867200pt;}
.ls1b{letter-spacing:3.507200pt;}
.ls12{letter-spacing:7.834880pt;}
.ls3d{letter-spacing:10.832640pt;}
.ls25{letter-spacing:13.707520pt;}
.ls17{letter-spacing:14.347520pt;}
.ls16{letter-spacing:18.227200pt;}
.ls2{letter-spacing:32.592640pt;}
.ls1d{letter-spacing:34.512640pt;}
.ls1f{letter-spacing:37.072640pt;}
.ls2a{letter-spacing:37.200640pt;}
.ls3b{letter-spacing:37.840640pt;}
.ls34{letter-spacing:38.992640pt;}
.ls29{letter-spacing:39.760640pt;}
.ls3a{letter-spacing:41.040640pt;}
.ls2b{letter-spacing:42.320640pt;}
.ls30{letter-spacing:52.432640pt;}
.ls23{letter-spacing:109.520640pt;}
.ws16{word-spacing:-53.131520pt;}
.wse{word-spacing:-53.120000pt;}
.ws10{word-spacing:-41.493973pt;}
.ws17{word-spacing:-40.971520pt;}
.wsd{word-spacing:-40.960640pt;}
.ws15{word-spacing:-38.400640pt;}
.wsc{word-spacing:-37.760640pt;}
.ws11{word-spacing:-37.120000pt;}
.wsf{word-spacing:-22.092800pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.284587pt;}
.ws19{word-spacing:-12.277120pt;}
.ws1d{word-spacing:-12.249387pt;}
.ws18{word-spacing:-12.160853pt;}
.ws1e{word-spacing:-12.129920pt;}
.ws1f{word-spacing:-12.064853pt;}
.ws6{word-spacing:-12.005120pt;}
.ws14{word-spacing:-11.955840pt;}
.ws9{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.945387pt;}
.ws1a{word-spacing:-11.935253pt;}
.ws7{word-spacing:-11.902187pt;}
.ws12{word-spacing:-11.814187pt;}
.wsb{word-spacing:-11.784320pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
.ws1b{word-spacing:51.227464pt;}
.ws1c{word-spacing:68.124953pt;}
._1d{margin-left:-473.865387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.562880pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.041920pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.234667pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.826880pt;}
._25{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.452800pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.981333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.360320pt;}
._11{margin-left:-102.526720pt;}
._23{margin-left:-97.253547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.400000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._22{margin-left:-47.486720pt;}
._14{margin-left:-43.452373pt;}
._19{margin-left:-28.026880pt;}
._36{margin-left:-5.442560pt;}
._27{margin-left:-4.290560pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.255467pt;}
._2c{width:2.957013pt;}
._2a{width:4.698453pt;}
._2b{width:6.268160pt;}
._2d{width:7.277440pt;}
._2f{width:8.571733pt;}
._31{width:9.542187pt;}
._2e{width:10.759680pt;}
._42{width:13.049173pt;}
._33{width:14.037760pt;}
._32{width:15.709440pt;}
._34{width:16.696960pt;}
._29{width:17.888427pt;}
._43{width:18.910720pt;}
._35{width:20.026240pt;}
._45{width:28.066560pt;}
._44{width:29.249920pt;}
._40{width:62.741059pt;}
._41{width:84.086832pt;}
._3c{width:85.198678pt;}
._3d{width:91.914576pt;}
._38{width:95.112794pt;}
._3e{width:97.118689pt;}
._30{width:100.503040pt;}
._39{width:102.079776pt;}
._3f{width:111.976716pt;}
._3a{width:113.474231pt;}
._3b{width:118.649837pt;}
._37{width:155.803307pt;}
.fs9{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.776418pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:49.935513pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yc2{bottom:-16.253333pt;}
.yf5{bottom:-9.760000pt;}
.yfa{bottom:-9.600000pt;}
.yf3{bottom:-7.040000pt;}
.y198{bottom:-6.920000pt;}
.yf8{bottom:-6.880000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:4.226667pt;}
.y104{bottom:5.760000pt;}
.y37{bottom:5.920000pt;}
.y143{bottom:5.946667pt;}
.y39{bottom:6.240000pt;}
.y3c{bottom:6.560000pt;}
.y135{bottom:9.193098pt;}
.yba{bottom:11.746667pt;}
.yb3{bottom:12.253333pt;}
.y12a{bottom:22.362849pt;}
.ybd{bottom:22.906667pt;}
.yb6{bottom:24.546667pt;}
.y35{bottom:24.640000pt;}
.y134{bottom:25.001936pt;}
.yb9{bottom:32.226667pt;}
.yb2{bottom:32.733333pt;}
.y124{bottom:34.013985pt;}
.y36{bottom:43.386667pt;}
.ybf{bottom:45.506667pt;}
.y6{bottom:54.592000pt;}
.y133{bottom:56.644057pt;}
.y125{bottom:72.477546pt;}
.y1d5{bottom:81.952000pt;}
.y15c{bottom:82.272000pt;}
.y96{bottom:84.672000pt;}
.y122{bottom:85.952000pt;}
.y132{bottom:88.287213pt;}
.y30{bottom:90.752000pt;}
.yb0{bottom:91.072000pt;}
.y1bd{bottom:96.032000pt;}
.y66{bottom:98.112000pt;}
.y1d4{bottom:100.672000pt;}
.y15b{bottom:100.992000pt;}
.y95{bottom:103.392000pt;}
.y131{bottom:104.092737pt;}
.yec{bottom:104.192000pt;}
.y121{bottom:104.672000pt;}
.y18f{bottom:109.312000pt;}
.y2f{bottom:109.472000pt;}
.yaf{bottom:109.792000pt;}
.y126{bottom:110.918320pt;}
.y1bc{bottom:114.752000pt;}
.y15a{bottom:115.552000pt;}
.y1d6{bottom:116.352000pt;}
.y65{bottom:116.832000pt;}
.y1d3{bottom:119.392000pt;}
.y130{bottom:119.929333pt;}
.y94{bottom:122.112000pt;}
.yeb{bottom:122.912000pt;}
.y120{bottom:123.392000pt;}
.y18e{bottom:128.032000pt;}
.y2e{bottom:128.192000pt;}
.yae{bottom:128.512000pt;}
.y1bb{bottom:133.312000pt;}
.y159{bottom:134.266667pt;}
.y64{bottom:135.546667pt;}
.y12f{bottom:135.734858pt;}
.y1d2{bottom:138.106667pt;}
.y93{bottom:140.826667pt;}
.yea{bottom:141.626667pt;}
.y11f{bottom:142.106667pt;}
.y18d{bottom:146.746667pt;}
.y2d{bottom:146.906667pt;}
.yad{bottom:147.226667pt;}
.y127{bottom:149.386024pt;}
.y12e{bottom:151.571454pt;}
.y1ba{bottom:152.026667pt;}
.y63{bottom:154.266667pt;}
.y1d1{bottom:156.826667pt;}
.y158{bottom:158.906667pt;}
.y92{bottom:159.546667pt;}
.ye9{bottom:160.346667pt;}
.y11e{bottom:160.826667pt;}
.y18c{bottom:165.466667pt;}
.y2c{bottom:165.626667pt;}
.yac{bottom:165.946667pt;}
.y1b9{bottom:170.746667pt;}
.y62{bottom:172.986667pt;}
.y1d0{bottom:175.546667pt;}
.y157{bottom:177.626667pt;}
.y91{bottom:178.266667pt;}
.ye8{bottom:179.066667pt;}
.y11d{bottom:179.546667pt;}
.y12d{bottom:183.192860pt;}
.y18b{bottom:184.186667pt;}
.y2b{bottom:184.346667pt;}
.yab{bottom:184.666667pt;}
.y128{bottom:187.843371pt;}
.y1b8{bottom:189.466667pt;}
.y61{bottom:191.706667pt;}
.ybc{bottom:192.160000pt;}
.y1cf{bottom:194.266667pt;}
.y156{bottom:196.346667pt;}
.y90{bottom:196.986667pt;}
.ye7{bottom:197.786667pt;}
.y11c{bottom:198.266667pt;}
.y12c{bottom:199.019099pt;}
.y18a{bottom:202.906667pt;}
.y2a{bottom:203.066667pt;}
.yaa{bottom:203.386667pt;}
.y1b7{bottom:208.186667pt;}
.y60{bottom:210.426667pt;}
.y1ce{bottom:212.986667pt;}
.y12b{bottom:214.834980pt;}
.y155{bottom:215.066667pt;}
.y8f{bottom:215.706667pt;}
.ye6{bottom:216.506667pt;}
.y11b{bottom:216.986667pt;}
.ya9{bottom:218.746667pt;}
.y189{bottom:221.626667pt;}
.y29{bottom:221.786667pt;}
.y129{bottom:226.207500pt;}
.y1b6{bottom:226.906667pt;}
.y5f{bottom:229.146667pt;}
.y1cd{bottom:231.706667pt;}
.y154{bottom:233.786667pt;}
.ye5{bottom:235.066667pt;}
.y11a{bottom:235.706667pt;}
.y188{bottom:240.346667pt;}
.y28{bottom:240.506667pt;}
.y8e{bottom:242.466667pt;}
.y5e{bottom:247.906667pt;}
.y1cc{bottom:250.466667pt;}
.y153{bottom:252.546667pt;}
.y1b5{bottom:253.666667pt;}
.ye4{bottom:253.826667pt;}
.y119{bottom:254.466667pt;}
.y187{bottom:259.106667pt;}
.y27{bottom:259.266667pt;}
.y8d{bottom:261.186667pt;}
.y5d{bottom:266.626667pt;}
.y1cb{bottom:269.186667pt;}
.y152{bottom:271.266667pt;}
.y1b4{bottom:272.386667pt;}
.ye3{bottom:272.546667pt;}
.y118{bottom:273.186667pt;}
.y186{bottom:277.826667pt;}
.y26{bottom:277.986667pt;}
.y8c{bottom:279.906667pt;}
.y5c{bottom:285.346667pt;}
.y1ca{bottom:287.906667pt;}
.y151{bottom:289.986667pt;}
.yb8{bottom:290.400000pt;}
.y185{bottom:290.626667pt;}
.y1b3{bottom:291.106667pt;}
.ye2{bottom:291.266667pt;}
.y117{bottom:291.906667pt;}
.y25{bottom:296.706667pt;}
.y8b{bottom:298.626667pt;}
.y184{bottom:299.426667pt;}
.ybb{bottom:302.146667pt;}
.y5b{bottom:304.066667pt;}
.y183{bottom:305.346667pt;}
.y1c9{bottom:306.626667pt;}
.y150{bottom:308.706667pt;}
.y1b2{bottom:309.826667pt;}
.ye1{bottom:309.986667pt;}
.y116{bottom:310.626667pt;}
.y24{bottom:315.426667pt;}
.y8a{bottom:317.346667pt;}
.y5a{bottom:322.786667pt;}
.y182{bottom:324.066667pt;}
.y14f{bottom:324.546667pt;}
.y1c8{bottom:325.346667pt;}
.y1b1{bottom:328.546667pt;}
.ye0{bottom:328.706667pt;}
.y115{bottom:329.346667pt;}
.y14e{bottom:330.466667pt;}
.ybe{bottom:332.480000pt;}
.y23{bottom:334.146667pt;}
.y89{bottom:336.066667pt;}
.y59{bottom:341.506667pt;}
.y181{bottom:342.786667pt;}
.y1c7{bottom:344.066667pt;}
.y1b0{bottom:347.266667pt;}
.y114{bottom:348.066667pt;}
.y14d{bottom:349.026667pt;}
.y22{bottom:352.866667pt;}
.y88{bottom:354.786667pt;}
.ydf{bottom:355.426667pt;}
.yc0{bottom:357.346667pt;}
.y58{bottom:360.226667pt;}
.y180{bottom:361.506667pt;}
.y1c6{bottom:362.786667pt;}
.y1af{bottom:365.986667pt;}
.y113{bottom:366.786667pt;}
.y14c{bottom:367.746667pt;}
.y21{bottom:371.586667pt;}
.y87{bottom:373.506667pt;}
.yde{bottom:374.146667pt;}
.y57{bottom:378.946667pt;}
.y17f{bottom:380.226667pt;}
.y1c5{bottom:381.506667pt;}
.y1ae{bottom:384.706667pt;}
.y112{bottom:385.506667pt;}
.y14b{bottom:386.466667pt;}
.y20{bottom:390.306667pt;}
.y86{bottom:392.226667pt;}
.ydd{bottom:392.866667pt;}
.yb5{bottom:394.240000pt;}
.y56{bottom:397.666667pt;}
.y17e{bottom:398.946667pt;}
.y1c4{bottom:400.226667pt;}
.y1ad{bottom:403.426667pt;}
.y111{bottom:404.226667pt;}
.y14a{bottom:405.186667pt;}
.y17d{bottom:407.746667pt;}
.y1f{bottom:409.026667pt;}
.y85{bottom:410.946667pt;}
.ydc{bottom:411.586667pt;}
.y17c{bottom:413.666667pt;}
.y55{bottom:416.386667pt;}
.yb7{bottom:418.786667pt;}
.y1c3{bottom:418.946667pt;}
.y1ac{bottom:422.146667pt;}
.y110{bottom:422.306667pt;}
.y149{bottom:423.906667pt;}
.y1e{bottom:427.746667pt;}
.y84{bottom:429.666667pt;}
.ydb{bottom:430.306667pt;}
.y17b{bottom:432.386667pt;}
.y148{bottom:432.706667pt;}
.y1ab{bottom:434.946667pt;}
.y54{bottom:435.106667pt;}
.y1c2{bottom:437.666667pt;}
.y147{bottom:438.626667pt;}
.y10f{bottom:440.866667pt;}
.y17a{bottom:441.186667pt;}
.y1aa{bottom:443.746667pt;}
.y1d{bottom:446.466667pt;}
.y179{bottom:446.946667pt;}
.y83{bottom:448.386667pt;}
.yda{bottom:449.026667pt;}
.y1a9{bottom:449.666667pt;}
.y53{bottom:453.826667pt;}
.y1c1{bottom:456.386667pt;}
.y146{bottom:457.346667pt;}
.y10e{bottom:459.586667pt;}
.y1c{bottom:465.186667pt;}
.y178{bottom:465.666667pt;}
.y82{bottom:467.106667pt;}
.yd9{bottom:467.746667pt;}
.y1a8{bottom:468.386667pt;}
.y52{bottom:472.546667pt;}
.y1c0{bottom:475.106667pt;}
.y145{bottom:476.066667pt;}
.y10d{bottom:478.306667pt;}
.y1b{bottom:483.906667pt;}
.y177{bottom:484.386667pt;}
.y144{bottom:484.866667pt;}
.y81{bottom:485.826667pt;}
.yd8{bottom:486.466667pt;}
.y1a7{bottom:487.106667pt;}
.y142{bottom:490.786667pt;}
.yb1{bottom:491.200000pt;}
.y51{bottom:491.266667pt;}
.y1bf{bottom:493.826667pt;}
.y10c{bottom:497.053333pt;}
.y1a{bottom:502.653333pt;}
.y176{bottom:503.133333pt;}
.yb4{bottom:503.453333pt;}
.y80{bottom:504.573333pt;}
.yd7{bottom:505.213333pt;}
.y1a6{bottom:505.853333pt;}
.y141{bottom:509.533333pt;}
.y50{bottom:510.013333pt;}
.y1be{bottom:512.573333pt;}
.y10b{bottom:515.773333pt;}
.y19{bottom:521.373333pt;}
.y175{bottom:521.853333pt;}
.yd6{bottom:523.933333pt;}
.y1a5{bottom:524.573333pt;}
.y140{bottom:528.253333pt;}
.y4f{bottom:528.733333pt;}
.y7f{bottom:531.293333pt;}
.y10a{bottom:531.613333pt;}
.y109{bottom:537.533333pt;}
.y18{bottom:540.733333pt;}
.yd5{bottom:542.653333pt;}
.y1a4{bottom:543.293333pt;}
.y174{bottom:546.493333pt;}
.y13f{bottom:546.973333pt;}
.y4e{bottom:547.453333pt;}
.y7e{bottom:550.013333pt;}
.y108{bottom:556.253333pt;}
.ya8{bottom:560.733333pt;}
.yd4{bottom:561.373333pt;}
.y1a3{bottom:562.013333pt;}
.y173{bottom:565.213333pt;}
.y4d{bottom:566.173333pt;}
.y17{bottom:567.453333pt;}
.y7d{bottom:568.733333pt;}
.y13e{bottom:571.613333pt;}
.y107{bottom:574.973333pt;}
.ya7{bottom:579.453333pt;}
.yd3{bottom:580.093333pt;}
.y1a2{bottom:580.733333pt;}
.y172{bottom:583.933333pt;}
.y4c{bottom:584.893333pt;}
.y16{bottom:586.173333pt;}
.y7c{bottom:587.453333pt;}
.y1a1{bottom:589.533333pt;}
.y13d{bottom:590.333333pt;}
.y106{bottom:593.693333pt;}
.ya6{bottom:598.173333pt;}
.yd2{bottom:598.813333pt;}
.y1a0{bottom:601.213333pt;}
.y171{bottom:602.653333pt;}
.y4b{bottom:603.613333pt;}
.y15{bottom:604.893333pt;}
.y7b{bottom:606.173333pt;}
.y13c{bottom:609.053333pt;}
.y105{bottom:612.413333pt;}
.ya5{bottom:616.893333pt;}
.yd1{bottom:617.533333pt;}
.y19f{bottom:619.933333pt;}
.y170{bottom:621.373333pt;}
.y4a{bottom:622.333333pt;}
.y14{bottom:623.613333pt;}
.y7a{bottom:624.893333pt;}
.y13b{bottom:627.773333pt;}
.y103{bottom:631.133333pt;}
.ya4{bottom:635.613333pt;}
.yd0{bottom:636.253333pt;}
.y19e{bottom:638.653333pt;}
.y16f{bottom:640.093333pt;}
.y49{bottom:641.053333pt;}
.y13{bottom:642.333333pt;}
.y79{bottom:643.613333pt;}
.y13a{bottom:646.493333pt;}
.y102{bottom:649.693333pt;}
.ya3{bottom:654.333333pt;}
.y48{bottom:654.493333pt;}
.ycf{bottom:654.973333pt;}
.y19d{bottom:657.373333pt;}
.y16e{bottom:658.813333pt;}
.y12{bottom:661.053333pt;}
.y78{bottom:662.333333pt;}
.y139{bottom:665.213333pt;}
.y101{bottom:668.413333pt;}
.ya2{bottom:672.893333pt;}
.yce{bottom:673.693333pt;}
.y47{bottom:674.493333pt;}
.y19c{bottom:676.093333pt;}
.y100{bottom:677.213333pt;}
.y16d{bottom:677.533333pt;}
.y11{bottom:679.773333pt;}
.y77{bottom:680.893333pt;}
.yff{bottom:683.133333pt;}
.y138{bottom:683.933333pt;}
.ya1{bottom:691.613333pt;}
.ycd{bottom:692.413333pt;}
.y46{bottom:694.493333pt;}
.y19b{bottom:694.813333pt;}
.y16c{bottom:696.253333pt;}
.y10{bottom:698.493333pt;}
.y76{bottom:699.613333pt;}
.yfe{bottom:701.853333pt;}
.y137{bottom:702.653333pt;}
.ya0{bottom:710.333333pt;}
.ycc{bottom:711.133333pt;}
.y19a{bottom:713.533333pt;}
.y45{bottom:714.493333pt;}
.y16b{bottom:714.973333pt;}
.yf{bottom:717.213333pt;}
.y75{bottom:718.333333pt;}
.yfd{bottom:720.573333pt;}
.y136{bottom:721.373333pt;}
.y16a{bottom:727.773333pt;}
.y9f{bottom:729.053333pt;}
.ycb{bottom:729.853333pt;}
.y199{bottom:732.253333pt;}
.y169{bottom:733.373333pt;}
.y44{bottom:734.493333pt;}
.ye{bottom:735.933333pt;}
.y123{bottom:736.413333pt;}
.y74{bottom:737.053333pt;}
.yfc{bottom:739.293333pt;}
.y9e{bottom:747.813333pt;}
.y197{bottom:748.133333pt;}
.yca{bottom:748.613333pt;}
.y196{bottom:754.053333pt;}
.y43{bottom:754.533333pt;}
.y73{bottom:755.813333pt;}
.yd{bottom:756.613333pt;}
.yfb{bottom:758.053333pt;}
.y9d{bottom:766.533333pt;}
.yc9{bottom:767.333333pt;}
.y195{bottom:772.773333pt;}
.y42{bottom:774.533333pt;}
.yf9{bottom:776.773333pt;}
.yc{bottom:779.973333pt;}
.y9c{bottom:785.253333pt;}
.yf7{bottom:785.573333pt;}
.yf6{bottom:791.493333pt;}
.y72{bottom:793.253333pt;}
.yc8{bottom:794.053333pt;}
.y41{bottom:794.533333pt;}
.yb{bottom:794.853333pt;}
.y9b{bottom:803.973333pt;}
.yc7{bottom:810.053333pt;}
.yf4{bottom:810.213333pt;}
.y71{bottom:811.973333pt;}
.yc6{bottom:812.773333pt;}
.y40{bottom:814.533333pt;}
.ya{bottom:814.693333pt;}
.yf2{bottom:819.013333pt;}
.y9a{bottom:822.693333pt;}
.yf1{bottom:824.773333pt;}
.y194{bottom:828.933333pt;}
.y70{bottom:830.693333pt;}
.yc5{bottom:831.493333pt;}
.y3f{bottom:834.533333pt;}
.y168{bottom:834.853333pt;}
.y9{bottom:837.093333pt;}
.y99{bottom:841.413333pt;}
.yf0{bottom:843.493333pt;}
.yc4{bottom:846.853333pt;}
.y193{bottom:847.653333pt;}
.y6f{bottom:849.413333pt;}
.yc3{bottom:849.573333pt;}
.y167{bottom:853.573333pt;}
.y3e{bottom:854.533333pt;}
.y98{bottom:860.133333pt;}
.yef{bottom:862.213333pt;}
.y192{bottom:866.373333pt;}
.y8{bottom:867.013333pt;}
.y6e{bottom:868.133333pt;}
.y166{bottom:872.293333pt;}
.y3d{bottom:874.533333pt;}
.y97{bottom:878.853333pt;}
.yee{bottom:880.933333pt;}
.y191{bottom:885.093333pt;}
.y6d{bottom:886.853333pt;}
.y165{bottom:891.013333pt;}
.y190{bottom:893.893333pt;}
.y3b{bottom:894.533333pt;}
.y7{bottom:896.933333pt;}
.yed{bottom:899.653333pt;}
.y6c{bottom:905.573333pt;}
.y164{bottom:909.733333pt;}
.y3a{bottom:915.173333pt;}
.y6b{bottom:924.293333pt;}
.y163{bottom:928.453333pt;}
.y5{bottom:932.613333pt;}
.y38{bottom:935.173333pt;}
.y6a{bottom:943.013333pt;}
.y162{bottom:947.173333pt;}
.y34{bottom:955.173333pt;}
.y4{bottom:961.253333pt;}
.y69{bottom:961.733333pt;}
.y161{bottom:965.893333pt;}
.y160{bottom:978.693333pt;}
.y68{bottom:980.453333pt;}
.y15f{bottom:987.493333pt;}
.y3{bottom:989.893333pt;}
.y15e{bottom:993.253333pt;}
.y67{bottom:999.200000pt;}
.y15d{bottom:1012.000000pt;}
.y33{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.h23{height:2.546250pt;}
.h1a{height:3.040000pt;}
.h1c{height:3.200000pt;}
.h19{height:5.760000pt;}
.h1b{height:5.920000pt;}
.h1e{height:18.560000pt;}
.h18{height:18.720000pt;}
.h1d{height:18.752000pt;}
.hb{height:19.360000pt;}
.hd{height:19.392000pt;}
.hc{height:20.000000pt;}
.h8{height:34.374375pt;}
.h10{height:39.876250pt;}
.he{height:40.151250pt;}
.h13{height:40.160000pt;}
.h24{height:40.566250pt;}
.h21{height:42.546662pt;}
.h11{height:43.200000pt;}
.h15{height:44.768125pt;}
.h12{height:46.240000pt;}
.hf{height:46.720000pt;}
.h20{height:49.667304pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h16{height:55.648125pt;}
.ha{height:56.192000pt;}
.h3{height:58.563750pt;}
.h14{height:59.520000pt;}
.h7{height:60.288750pt;}
.h17{height:63.714688pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h22{height:101.152000pt;}
.h1f{height:237.932175pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:63.360000pt;}
.w17{width:69.920000pt;}
.we{width:70.080000pt;}
.wc{width:76.640000pt;}
.wf{width:76.672000pt;}
.w14{width:76.800000pt;}
.w1c{width:81.312000pt;}
.w4{width:103.712000pt;}
.w1a{width:111.552000pt;}
.w1b{width:113.440000pt;}
.wd{width:128.032000pt;}
.w19{width:130.112000pt;}
.w5{width:141.440000pt;}
.w7{width:141.600000pt;}
.w6{width:142.080000pt;}
.w8{width:142.400000pt;}
.w10{width:153.306667pt;}
.w9{width:191.840000pt;}
.wb{width:274.786667pt;}
.w13{width:281.346667pt;}
.wa{width:351.426667pt;}
.w12{width:358.146667pt;}
.w16{width:414.626667pt;}
.w15{width:414.786667pt;}
.w18{width:416.706667pt;}
.w11{width:429.063145pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:2.556550pt;}
.x9{left:6.880000pt;}
.xf{left:16.960000pt;}
.x39{left:19.520000pt;}
.x1c{left:23.293333pt;}
.x28{left:28.479988pt;}
.x12{left:30.432000pt;}
.xe{left:33.312000pt;}
.x15{left:36.352000pt;}
.x18{left:38.112000pt;}
.x16{left:42.112000pt;}
.x6{left:47.999988pt;}
.x21{left:49.919988pt;}
.x1a{left:53.533333pt;}
.x20{left:57.439988pt;}
.xc{left:62.399988pt;}
.x11{left:63.520000pt;}
.x14{left:64.480000pt;}
.x2a{left:66.879988pt;}
.x7{left:71.999988pt;}
.x2c{left:76.479988pt;}
.x2b{left:90.911988pt;}
.xb{left:96.031988pt;}
.x27{left:125.791988pt;}
.x3a{left:131.072000pt;}
.x1f{left:141.466655pt;}
.x5{left:146.426655pt;}
.x17{left:163.866655pt;}
.x29{left:167.546655pt;}
.x13{left:174.906655pt;}
.x3e{left:181.946655pt;}
.x10{left:187.706655pt;}
.x33{left:190.106655pt;}
.x22{left:192.026667pt;}
.x34{left:194.106667pt;}
.x2d{left:230.346667pt;}
.x3b{left:244.506667pt;}
.x3{left:254.746655pt;}
.x1d{left:292.706655pt;}
.x1e{left:298.466655pt;}
.x2f{left:308.266155pt;}
.x2{left:311.586655pt;}
.x8{left:313.346667pt;}
.x25{left:320.066667pt;}
.x3c{left:321.186667pt;}
.x35{left:322.146667pt;}
.x4{left:372.546655pt;}
.xa{left:377.026667pt;}
.x26{left:390.146667pt;}
.x36{left:392.066667pt;}
.x32{left:396.706667pt;}
.x3d{left:397.986667pt;}
.x1{left:425.986655pt;}
.x24{left:466.813333pt;}
.x19{left:467.840000pt;}
.x37{left:468.733333pt;}
.x31{left:473.373333pt;}
.x1b{left:490.173322pt;}
.x23{left:543.453333pt;}
.x38{left:545.373333pt;}
.xd{left:624.133322pt;}
.x30{left:659.493322pt;}
.x3f{left:746.053322pt;}
}




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