
    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_2fc7497c9e6134ca1a0c53ae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_553ea44ffcd7415d0549b354.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_113c6b75407c2454255b888e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d6d66ec1d1b7099d34696bb3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_c2ee656fe76125d9b45c1f3f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_3c707b63eaf60c6a4834e01f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_370bb8f73a79282b9894e236.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.737793;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_b010e47a581509ad388b8702.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_7529c046a4b3b5321060b2b0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_0f31720e86d7001c818442b7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_554f0d7cbb2042e59e6ff353.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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_8ed0558d77db6d2ac4fdaa1f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_0d9847eba7aa8d5028f53a4c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.435059;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_8c69e36fe62490b639b66dbd.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.265800px;}
.lsa{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.150600px;}
.lsd{letter-spacing:-0.053280px;}
.ls1e{letter-spacing:-0.006480px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.033120px;}
.ls19{letter-spacing:0.074160px;}
.lse{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.135360px;}
.ls4{letter-spacing:0.144720px;}
.ls1b{letter-spacing:0.178560px;}
.ls5{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.315360px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493920px;}
.ls1d{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.828000px;}
.ls1f{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.080000px;}
.ls6{letter-spacing:3.216000px;}
.ls22{letter-spacing:5.940000px;}
.ls11{letter-spacing:8.100000px;}
.lsf{letter-spacing:8.280000px;}
.ls12{letter-spacing:10.980000px;}
.ls13{letter-spacing:19.620000px;}
.ls14{letter-spacing:30.420000px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.400000px;}
.ls1{letter-spacing:72.120000px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.wse{word-spacing:-16.020000px;}
.wsd{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.674200px;}
.ws12{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.ws16{word-spacing:-12.053520px;}
.ws15{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.950480px;}
.ws0{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.560000px;}
.ws14{word-spacing:-6.840000px;}
.ws8{word-spacing:0.000000px;}
.ws1{word-spacing:60.840000px;}
.ws2{word-spacing:61.020000px;}
._6{margin-left:-59.580000px;}
._13{margin-left:-3.873600px;}
._3{margin-left:-2.384640px;}
._2{margin-left:-1.044000px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._a{width:3.463680px;}
._9{width:4.601520px;}
._e{width:6.342240px;}
._14{width:7.530720px;}
._17{width:9.174000px;}
._1d{width:10.305600px;}
._16{width:11.354400px;}
._15{width:12.430080px;}
._f{width:13.744800px;}
._20{width:15.948720px;}
._10{width:17.063280px;}
._d{width:18.135360px;}
._c{width:19.182960px;}
._b{width:20.796480px;}
._22{width:22.290480px;}
._2d{width:23.963760px;}
._23{width:25.158960px;}
._2e{width:26.234640px;}
._29{width:27.310320px;}
._1c{width:28.332720px;}
._1a{width:29.341440px;}
._2c{width:30.355920px;}
._1f{width:31.732560px;}
._19{width:33.449760px;}
._2a{width:34.588800px;}
._30{width:35.685360px;}
._8{width:36.931680px;}
._36{width:38.457360px;}
._24{width:39.740400px;}
._33{width:41.118480px;}
._37{width:42.162480px;}
._21{width:43.385760px;}
._12{width:44.401680px;}
._11{width:45.835920px;}
._1e{width:46.851840px;}
._28{width:48.349440px;}
._32{width:49.628880px;}
._2b{width:51.066720px;}
._26{width:52.079040px;}
._25{width:53.485200px;}
._3c{width:54.627840px;}
._35{width:55.768080px;}
._34{width:56.951280px;}
._38{width:58.500000px;}
._41{width:59.713200px;}
._3d{width:63.556560px;}
._4{width:65.496000px;}
._31{width:66.751920px;}
._3a{width:68.425200px;}
._18{width:70.073280px;}
._27{width:72.488880px;}
._39{width:79.480800px;}
._3f{width:94.241520px;}
._3e{width:95.376960px;}
._3b{width:96.930720px;}
._5{width:199.620000px;}
._2f{width:209.949600px;}
._1b{width:285.870000px;}
._40{width:971.229120px;}
._7{width:1120.956000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs14{font-size:6.000000px;}
.fs13{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fse{font-size:27.360000px;}
.fs6{font-size:30.240000px;}
.fsf{font-size:31.875440px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs11{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs12{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs10{font-size:75.893905px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y6d{bottom:-251.490000px;}
.y6c{bottom:-217.830000px;}
.y7b{bottom:-198.030000px;}
.y6b{bottom:-183.990000px;}
.y7a{bottom:-164.370000px;}
.y6a{bottom:-150.330000px;}
.y79{bottom:-130.710000px;}
.y69{bottom:-116.490000px;}
.y78{bottom:-96.870000px;}
.y68{bottom:-82.830000px;}
.y77{bottom:-63.165000px;}
.y67{bottom:-49.140000px;}
.y76{bottom:-29.325000px;}
.y60{bottom:-28.650000px;}
.y3d{bottom:-27.180000px;}
.y7d{bottom:-17.922750px;}
.y66{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y75{bottom:1.635000px;}
.y1c0{bottom:1.837500px;}
.y144{bottom:2.685000px;}
.y65{bottom:2.700000px;}
.y141{bottom:2.865000px;}
.y135{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y153{bottom:4.500000px;}
.y113{bottom:4.680000px;}
.y120{bottom:4.845000px;}
.y115{bottom:4.860000px;}
.y3c{bottom:5.040000px;}
.y5f{bottom:5.580000px;}
.y5d{bottom:8.295000px;}
.y156{bottom:11.160000px;}
.y157{bottom:11.340000px;}
.y7{bottom:12.420000px;}
.y130{bottom:12.960000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y74{bottom:14.595000px;}
.y64{bottom:15.660000px;}
.y140{bottom:16.545000px;}
.y134{bottom:16.560000px;}
.y142{bottom:17.625000px;}
.y136{bottom:17.640000px;}
.y14b{bottom:20.520000px;}
.y11f{bottom:20.685000px;}
.y5c{bottom:20.895000px;}
.y147{bottom:24.480000px;}
.y6{bottom:25.200000px;}
.y73{bottom:27.735000px;}
.y14c{bottom:28.620000px;}
.y63{bottom:28.800000px;}
.y13f{bottom:30.405000px;}
.y133{bottom:30.420000px;}
.y53{bottom:31.875000px;}
.y5b{bottom:32.955000px;}
.y14a{bottom:36.360000px;}
.y5{bottom:38.160000px;}
.y72{bottom:40.695000px;}
.y62{bottom:41.040000px;}
.y146{bottom:44.280000px;}
.y5a{bottom:45.015000px;}
.y52{bottom:45.735000px;}
.yd8{bottom:46.260000px;}
.y149{bottom:52.380000px;}
.y71{bottom:53.655000px;}
.y51{bottom:54.555000px;}
.y59{bottom:57.075000px;}
.y80{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.yd7{bottom:62.640000px;}
.y7c{bottom:63.780000px;}
.y70{bottom:66.795000px;}
.y58{bottom:69.165000px;}
.y50{bottom:72.375000px;}
.y6f{bottom:79.035000px;}
.yd6{bottom:80.460000px;}
.y57{bottom:81.405000px;}
.y4f{bottom:90.195000px;}
.y56{bottom:93.465000px;}
.yb0{bottom:103.680000px;}
.y4e{bottom:105.315000px;}
.y55{bottom:110.385000px;}
.yd5{bottom:112.500000px;}
.y12d{bottom:114.660000px;}
.y1bf{bottom:115.200000px;}
.y4d{bottom:118.095000px;}
.y13d{bottom:120.285000px;}
.y15d{bottom:120.600000px;}
.yaf{bottom:123.480000px;}
.y194{bottom:124.740000px;}
.y169{bottom:124.920000px;}
.y3a{bottom:130.140000px;}
.yd4{bottom:132.300000px;}
.y13c{bottom:134.325000px;}
.y12c{bottom:134.460000px;}
.y1be{bottom:135.000000px;}
.y101{bottom:135.360000px;}
.y4c{bottom:135.915000px;}
.y15c{bottom:136.080000px;}
.y138{bottom:140.970000px;}
.yae{bottom:143.280000px;}
.y193{bottom:144.540000px;}
.y168{bottom:144.900000px;}
.y13b{bottom:148.005000px;}
.y39{bottom:149.940000px;}
.yd3{bottom:152.280000px;}
.y4b{bottom:153.735000px;}
.y12b{bottom:154.260000px;}
.y1bd{bottom:154.980000px;}
.y100{bottom:155.160000px;}
.y139{bottom:161.850000px;}
.yad{bottom:163.110000px;}
.y192{bottom:164.370000px;}
.y167{bottom:164.730000px;}
.y38{bottom:169.770000px;}
.y4a{bottom:171.555000px;}
.yd2{bottom:172.110000px;}
.y12a{bottom:174.090000px;}
.y1bc{bottom:174.810000px;}
.yff{bottom:174.990000px;}
.yac{bottom:183.090000px;}
.y191{bottom:184.170000px;}
.y166{bottom:184.530000px;}
.y49{bottom:189.375000px;}
.y37{bottom:189.570000px;}
.yd1{bottom:191.910000px;}
.y129{bottom:193.890000px;}
.y1bb{bottom:194.610000px;}
.yfe{bottom:194.970000px;}
.yab{bottom:202.890000px;}
.y190{bottom:204.150000px;}
.y165{bottom:204.330000px;}
.y48{bottom:207.405000px;}
.y36{bottom:209.370000px;}
.yd0{bottom:211.710000px;}
.y128{bottom:213.870000px;}
.y1ba{bottom:214.410000px;}
.yfd{bottom:214.770000px;}
.y47{bottom:220.725000px;}
.yaa{bottom:222.690000px;}
.y18f{bottom:223.950000px;}
.y164{bottom:224.130000px;}
.y35{bottom:229.350000px;}
.y46{bottom:229.545000px;}
.ycf{bottom:231.510000px;}
.y127{bottom:233.670000px;}
.y1b9{bottom:234.210000px;}
.yfc{bottom:234.570000px;}
.ya9{bottom:242.490000px;}
.y163{bottom:244.110000px;}
.y18e{bottom:244.650000px;}
.y45{bottom:247.365000px;}
.y34{bottom:249.150000px;}
.yce{bottom:251.490000px;}
.y126{bottom:253.470000px;}
.y1b8{bottom:254.190000px;}
.yfb{bottom:254.370000px;}
.ya8{bottom:262.290000px;}
.y162{bottom:263.910000px;}
.y44{bottom:265.185000px;}
.y33{bottom:268.950000px;}
.ycd{bottom:271.290000px;}
.y125{bottom:273.270000px;}
.y1b7{bottom:273.990000px;}
.yfa{bottom:274.170000px;}
.ya7{bottom:282.270000px;}
.y43{bottom:283.005000px;}
.y161{bottom:283.710000px;}
.y18d{bottom:285.510000px;}
.y32{bottom:288.750000px;}
.ycc{bottom:291.090000px;}
.y124{bottom:293.070000px;}
.y1b6{bottom:293.790000px;}
.yf9{bottom:294.150000px;}
.y42{bottom:296.325000px;}
.ya6{bottom:302.070000px;}
.y160{bottom:303.510000px;}
.y41{bottom:305.145000px;}
.y18c{bottom:305.310000px;}
.y31{bottom:308.550000px;}
.ycb{bottom:310.890000px;}
.y1b5{bottom:313.590000px;}
.yf8{bottom:313.950000px;}
.y123{bottom:321.510000px;}
.ya5{bottom:321.870000px;}
.y40{bottom:323.145000px;}
.y15f{bottom:323.310000px;}
.y18b{bottom:325.290000px;}
.y30{bottom:328.530000px;}
.yca{bottom:330.690000px;}
.y122{bottom:333.390000px;}
.yf7{bottom:333.750000px;}
.y3f{bottom:340.965000px;}
.ya4{bottom:341.670000px;}
.y15e{bottom:344.190000px;}
.y121{bottom:345.285000px;}
.y18a{bottom:345.990000px;}
.y2f{bottom:348.330000px;}
.yc9{bottom:350.670000px;}
.y1b4{bottom:353.370000px;}
.yf6{bottom:353.550000px;}
.ya3{bottom:361.470000px;}
.y11e{bottom:361.845000px;}
.y2e{bottom:368.130000px;}
.yc8{bottom:370.470000px;}
.y1b3{bottom:373.170000px;}
.yf5{bottom:373.350000px;}
.y15b{bottom:380.190000px;}
.ya2{bottom:381.450000px;}
.y15a{bottom:385.410000px;}
.y189{bottom:386.850000px;}
.y2d{bottom:387.930000px;}
.yc7{bottom:390.270000px;}
.y1b2{bottom:393.015000px;}
.yf4{bottom:393.375000px;}
.y11d{bottom:394.275000px;}
.y159{bottom:397.515000px;}
.ya1{bottom:401.295000px;}
.y188{bottom:406.695000px;}
.y2c{bottom:408.855000px;}
.y158{bottom:409.215000px;}
.yc6{bottom:410.115000px;}
.y11c{bottom:411.015000px;}
.y1b1{bottom:412.815000px;}
.yf3{bottom:413.175000px;}
.ya0{bottom:421.095000px;}
.y155{bottom:425.955000px;}
.y187{bottom:426.675000px;}
.y11b{bottom:427.575000px;}
.y2b{bottom:430.275000px;}
.yc5{bottom:430.815000px;}
.y3e{bottom:431.340000px;}
.y1b0{bottom:432.615000px;}
.yf2{bottom:432.975000px;}
.y9f{bottom:440.895000px;}
.y11a{bottom:444.135000px;}
.y2a{bottom:445.035000px;}
.y186{bottom:446.475000px;}
.yc4{bottom:450.615000px;}
.y1af{bottom:452.595000px;}
.yf1{bottom:452.775000px;}
.y29{bottom:454.935000px;}
.y154{bottom:455.655000px;}
.y6e{bottom:457.980000px;}
.y9e{bottom:460.695000px;}
.y119{bottom:460.875000px;}
.yc3{bottom:463.755000px;}
.y185{bottom:466.275000px;}
.y28{bottom:470.235000px;}
.y1ae{bottom:472.395000px;}
.yf0{bottom:472.575000px;}
.y152{bottom:473.655000px;}
.y118{bottom:477.435000px;}
.y9d{bottom:480.675000px;}
.yc2{bottom:483.555000px;}
.y184{bottom:486.975000px;}
.y1ad{bottom:492.195000px;}
.yef{bottom:492.555000px;}
.y27{bottom:493.635000px;}
.y117{bottom:493.995000px;}
.y151{bottom:497.415000px;}
.y9c{bottom:500.475000px;}
.yc1{bottom:503.355000px;}
.y116{bottom:510.735000px;}
.y1ac{bottom:511.995000px;}
.yee{bottom:512.355000px;}
.y150{bottom:515.415000px;}
.y26{bottom:516.855000px;}
.y9b{bottom:520.275000px;}
.yc0{bottom:523.155000px;}
.y114{bottom:527.295000px;}
.y183{bottom:527.835000px;}
.y1ab{bottom:531.795000px;}
.y14f{bottom:531.975000px;}
.yed{bottom:532.155000px;}
.y25{bottom:540.075000px;}
.ybf{bottom:543.135000px;}
.y14e{bottom:544.035000px;}
.y112{bottom:545.475000px;}
.y182{bottom:548.715000px;}
.y1aa{bottom:551.775000px;}
.yec{bottom:551.955000px;}
.y14d{bottom:556.275000px;}
.y9a{bottom:559.875000px;}
.y54{bottom:562.920000px;}
.ybe{bottom:562.935000px;}
.y13a{bottom:567.960000px;}
.y137{bottom:567.975000px;}
.y111{bottom:569.235000px;}
.y1a9{bottom:571.575000px;}
.yeb{bottom:571.755000px;}
.y181{bottom:572.475000px;}
.y24{bottom:573.375000px;}
.y99{bottom:579.855000px;}
.ybd{bottom:582.735000px;}
.y110{bottom:586.335000px;}
.y1a8{bottom:591.375000px;}
.yea{bottom:591.735000px;}
.y98{bottom:599.655000px;}
.ybc{bottom:602.535000px;}
.y10f{bottom:603.435000px;}
.y1a7{bottom:611.175000px;}
.ye9{bottom:611.535000px;}
.y23{bottom:612.615000px;}
.y180{bottom:613.335000px;}
.y97{bottom:619.455000px;}
.ybb{bottom:622.335000px;}
.y10e{bottom:623.265000px;}
.y22{bottom:628.125000px;}
.y1a6{bottom:631.005000px;}
.ye8{bottom:631.365000px;}
.y148{bottom:632.265000px;}
.y17f{bottom:633.165000px;}
.y96{bottom:639.285000px;}
.yba{bottom:642.345000px;}
.y10d{bottom:643.065000px;}
.y21{bottom:643.605000px;}
.y1a5{bottom:650.985000px;}
.ye7{bottom:651.165000px;}
.y17e{bottom:652.965000px;}
.y20{bottom:659.085000px;}
.yb9{bottom:662.145000px;}
.y10c{bottom:663.045000px;}
.y1a4{bottom:670.785000px;}
.ye6{bottom:670.965000px;}
.y17d{bottom:672.945000px;}
.y145{bottom:674.385000px;}
.y1f{bottom:674.745000px;}
.y95{bottom:679.065000px;}
.yb8{bottom:681.945000px;}
.y10b{bottom:682.845000px;}
.y1e{bottom:685.725000px;}
.y1a3{bottom:690.585000px;}
.ye5{bottom:691.845000px;}
.y17c{bottom:692.745000px;}
.y61{bottom:697.605000px;}
.y94{bottom:698.865000px;}
.y1d{bottom:699.405000px;}
.yb7{bottom:702.645000px;}
.y10a{bottom:703.545000px;}
.y1a2{bottom:710.385000px;}
.ye4{bottom:711.645000px;}
.y1c{bottom:712.005000px;}
.y17b{bottom:712.545000px;}
.y93{bottom:718.665000px;}
.yb6{bottom:722.265000px;}
.y1b{bottom:724.425000px;}
.ye3{bottom:724.605000px;}
.y1a1{bottom:730.185000px;}
.y143{bottom:730.380000px;}
.y17a{bottom:732.345000px;}
.yb5{bottom:735.405000px;}
.y1a{bottom:737.385000px;}
.y92{bottom:738.465000px;}
.ye2{bottom:744.405000px;}
.y1a0{bottom:750.165000px;}
.y19{bottom:751.245000px;}
.y179{bottom:752.145000px;}
.yb4{bottom:755.385000px;}
.y91{bottom:758.265000px;}
.y18{bottom:764.025000px;}
.ye1{bottom:764.205000px;}
.y19f{bottom:769.965000px;}
.y178{bottom:772.125000px;}
.y13e{bottom:772.500000px;}
.yb3{bottom:775.185000px;}
.y90{bottom:778.245000px;}
.ye0{bottom:784.185000px;}
.y19e{bottom:789.765000px;}
.y17{bottom:790.845000px;}
.y177{bottom:792.825000px;}
.yb2{bottom:795.885000px;}
.y8f{bottom:798.045000px;}
.y16{bottom:802.005000px;}
.ydf{bottom:803.985000px;}
.y19d{bottom:809.565000px;}
.y132{bottom:814.605000px;}
.yb1{bottom:816.765000px;}
.y8e{bottom:817.845000px;}
.y15{bottom:821.625000px;}
.yde{bottom:823.785000px;}
.y19c{bottom:829.365000px;}
.y176{bottom:833.685000px;}
.y8d{bottom:837.645000px;}
.y14{bottom:839.805000px;}
.ydd{bottom:843.585000px;}
.y19b{bottom:849.345000px;}
.y175{bottom:853.530000px;}
.y13{bottom:853.710000px;}
.y8c{bottom:857.490000px;}
.y12f{bottom:858.390000px;}
.ydc{bottom:863.430000px;}
.y12{bottom:867.570000px;}
.y19a{bottom:870.090000px;}
.y174{bottom:873.330000px;}
.y131{bottom:874.950000px;}
.y11{bottom:876.750000px;}
.y8b{bottom:877.470000px;}
.ydb{bottom:883.410000px;}
.y173{bottom:893.310000px;}
.y10{bottom:895.110000px;}
.y8a{bottom:897.270000px;}
.y12e{bottom:898.710000px;}
.y109{bottom:903.210000px;}
.yda{bottom:904.110000px;}
.yf{bottom:908.790000px;}
.y199{bottom:910.950000px;}
.y172{bottom:913.110000px;}
.y89{bottom:917.070000px;}
.ye{bottom:922.650000px;}
.y108{bottom:923.010000px;}
.yd9{bottom:923.730000px;}
.y198{bottom:930.750000px;}
.y171{bottom:932.910000px;}
.yd{bottom:935.790000px;}
.y88{bottom:936.870000px;}
.y107{bottom:942.810000px;}
.y197{bottom:950.550000px;}
.y170{bottom:952.710000px;}
.y87{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.y106{bottom:962.610000px;}
.y196{bottom:970.530000px;}
.y16f{bottom:972.510000px;}
.y86{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.y105{bottom:982.590000px;}
.y195{bottom:991.230000px;}
.y16e{bottom:992.490000px;}
.y85{bottom:996.450000px;}
.y104{bottom:1002.390000px;}
.ya{bottom:1004.550000px;}
.y16d{bottom:1012.290000px;}
.y84{bottom:1016.250000px;}
.y103{bottom:1023.450000px;}
.y16c{bottom:1032.090000px;}
.y83{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y102{bottom:1042.890000px;}
.y16b{bottom:1051.890000px;}
.y82{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.y16a{bottom:1072.590000px;}
.y81{bottom:1075.650000px;}
.y5e{bottom:1096.200000px;}
.y7f{bottom:1105.920000px;}
.y7e{bottom:1123.200000px;}
.y3b{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h3e{height:6.257812px;}
.h3d{height:12.012891px;}
.h2{height:13.500000px;}
.h30{height:15.825000px;}
.h31{height:16.005000px;}
.h18{height:16.920000px;}
.h15{height:18.140625px;}
.h1f{height:22.140000px;}
.h3c{height:28.785000px;}
.h29{height:29.664141px;}
.hb{height:29.678906px;}
.h1c{height:30.476250px;}
.he{height:30.963516px;}
.h2f{height:31.081955px;}
.h32{height:31.701000px;}
.h33{height:32.385000px;}
.h2a{height:33.182831px;}
.h35{height:34.036523px;}
.h16{height:36.281250px;}
.h12{height:39.503370px;}
.h5{height:40.985156px;}
.h38{height:41.385000px;}
.h3a{height:41.400000px;}
.h34{height:41.422500px;}
.h2e{height:41.535703px;}
.h24{height:41.972344px;}
.h1e{height:42.086250px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h17{height:48.616875px;}
.h13{height:50.364141px;}
.h21{height:52.020000px;}
.h14{height:52.998047px;}
.h1b{height:53.332031px;}
.h2c{height:53.573906px;}
.h19{height:54.421875px;}
.h39{height:55.260000px;}
.hf{height:55.291992px;}
.h3{height:58.651172px;}
.h2d{height:59.038594px;}
.h9{height:60.226875px;}
.h27{height:61.423863px;}
.h26{height:62.211094px;}
.h3b{height:63.570000px;}
.ha{height:65.010937px;}
.h22{height:65.884219px;}
.h28{height:70.628906px;}
.hd{height:72.562500px;}
.h20{height:74.953125px;}
.h25{height:75.093750px;}
.h2b{height:79.006741px;}
.h7{height:86.585445px;}
.h23{height:90.000000px;}
.h8{height:96.508125px;}
.h1d{height:118.485000px;}
.h36{height:288.060000px;}
.h37{height:288.075000px;}
.h1a{height:353.205000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w11{width:45.561000px;}
.w13{width:45.900000px;}
.w17{width:46.965000px;}
.w16{width:47.181000px;}
.w1e{width:47.325000px;}
.w20{width:53.985000px;}
.w1f{width:54.021000px;}
.w14{width:60.876000px;}
.w12{width:64.260000px;}
.w1d{width:66.585000px;}
.w21{width:74.145000px;}
.w22{width:81.030000px;}
.w3{width:82.071000px;}
.w18{width:87.645000px;}
.w15{width:94.485000px;}
.w10{width:94.530000px;}
.w19{width:94.536000px;}
.w1a{width:94.545000px;}
.w1c{width:95.436000px;}
.wd{width:128.151000px;}
.wc{width:128.190000px;}
.w9{width:154.470000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.wb{width:208.995000px;}
.we{width:216.600000px;}
.w1b{width:236.181000px;}
.wf{width:276.315000px;}
.w6{width:508.260000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:4.252500px;}
.x2{left:8.091000px;}
.x32{left:9.180000px;}
.x14{left:10.791000px;}
.x37{left:12.270000px;}
.x3c{left:14.025000px;}
.x42{left:15.300000px;}
.x3f{left:16.590000px;}
.x28{left:18.720000px;}
.x29{left:20.160000px;}
.x1a{left:21.255000px;}
.x46{left:23.580000px;}
.x45{left:25.020000px;}
.x47{left:27.930000px;}
.x44{left:31.305000px;}
.x39{left:32.760000px;}
.x38{left:36.705000px;}
.x26{left:39.060000px;}
.x27{left:42.120000px;}
.x24{left:49.170000px;}
.x25{left:64.110000px;}
.x3{left:73.965000px;}
.x2c{left:79.230000px;}
.x13{left:81.765000px;}
.x19{left:93.105000px;}
.x16{left:94.545000px;}
.x6{left:106.776000px;}
.x1{left:108.045000px;}
.x2a{left:110.925000px;}
.x3a{left:114.345000px;}
.x48{left:121.536000px;}
.x2e{left:126.210000px;}
.x4a{left:128.376000px;}
.x1c{left:131.436000px;}
.x11{left:132.696000px;}
.x1e{left:135.036000px;}
.x9{left:149.976000px;}
.xc{left:152.490000px;}
.xb{left:165.090000px;}
.x10{left:181.110000px;}
.x4{left:190.125000px;}
.xf{left:196.230000px;}
.x22{left:220.530000px;}
.xe{left:224.310000px;}
.x7{left:229.170000px;}
.x2b{left:239.085000px;}
.xa{left:244.695000px;}
.x30{left:284.655000px;}
.x15{left:302.655000px;}
.x17{left:310.350000px;}
.x31{left:348.915000px;}
.x3b{left:350.535000px;}
.x18{left:371.580000px;}
.x33{left:394.815000px;}
.x1d{left:419.685000px;}
.xd{left:439.305000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.x2d{left:455.700000px;}
.x49{left:475.665000px;}
.x12{left:490.785000px;}
.x3d{left:512.580000px;}
.x34{left:550.200000px;}
.x3e{left:559.920000px;}
.x35{left:597.390000px;}
.x40{left:613.950000px;}
.x1b{left:620.253000px;}
.x1f{left:631.410000px;}
.x36{left:644.370000px;}
.x21{left:645.450000px;}
.x41{left:667.950000px;}
.x23{left:699.810000px;}
.x2f{left:732.030000px;}
.x43{left:742.110000px;}
.x20{left:799.200000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.236267pt;}
.lsa{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.133867pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls1e{letter-spacing:-0.005760pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.029440pt;}
.ls19{letter-spacing:0.065920pt;}
.lse{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.120320pt;}
.ls4{letter-spacing:0.128640pt;}
.ls1b{letter-spacing:0.158720pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.280320pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.439040pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls6{letter-spacing:2.858667pt;}
.ls22{letter-spacing:5.280000pt;}
.ls11{letter-spacing:7.200000pt;}
.lsf{letter-spacing:7.360000pt;}
.ls12{letter-spacing:9.760000pt;}
.ls13{letter-spacing:17.440000pt;}
.ls14{letter-spacing:27.040000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.466667pt;}
.ls1{letter-spacing:64.106667pt;}
.ws10{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.240000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.043733pt;}
.ws12{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.714240pt;}
.ws15{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.733760pt;}
.ws0{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws14{word-spacing:-6.080000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1{word-spacing:54.080000pt;}
.ws2{word-spacing:54.240000pt;}
._6{margin-left:-52.960000pt;}
._13{margin-left:-3.443200pt;}
._3{margin-left:-2.119680pt;}
._2{margin-left:-0.928000pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._a{width:3.078827pt;}
._9{width:4.090240pt;}
._e{width:5.637547pt;}
._14{width:6.693973pt;}
._17{width:8.154667pt;}
._1d{width:9.160533pt;}
._16{width:10.092800pt;}
._15{width:11.048960pt;}
._f{width:12.217600pt;}
._20{width:14.176640pt;}
._10{width:15.167360pt;}
._d{width:16.120320pt;}
._c{width:17.051520pt;}
._b{width:18.485760pt;}
._22{width:19.813760pt;}
._2d{width:21.301120pt;}
._23{width:22.363520pt;}
._2e{width:23.319680pt;}
._29{width:24.275840pt;}
._1c{width:25.184640pt;}
._1a{width:26.081280pt;}
._2c{width:26.983040pt;}
._1f{width:28.206720pt;}
._19{width:29.733120pt;}
._2a{width:30.745600pt;}
._30{width:31.720320pt;}
._8{width:32.828160pt;}
._36{width:34.184320pt;}
._24{width:35.324800pt;}
._33{width:36.549760pt;}
._37{width:37.477760pt;}
._21{width:38.565120pt;}
._12{width:39.468160pt;}
._11{width:40.743040pt;}
._1e{width:41.646080pt;}
._28{width:42.977280pt;}
._32{width:44.114560pt;}
._2b{width:45.392640pt;}
._26{width:46.292480pt;}
._25{width:47.542400pt;}
._3c{width:48.558080pt;}
._35{width:49.571627pt;}
._34{width:50.623360pt;}
._38{width:52.000000pt;}
._41{width:53.078400pt;}
._3d{width:56.494720pt;}
._4{width:58.218667pt;}
._31{width:59.335040pt;}
._3a{width:60.822400pt;}
._18{width:62.287360pt;}
._27{width:64.434560pt;}
._39{width:70.649600pt;}
._3f{width:83.770240pt;}
._3e{width:84.779520pt;}
._3b{width:86.160640pt;}
._5{width:177.440000pt;}
._2f{width:186.621867pt;}
._1b{width:254.106667pt;}
._40{width:863.314773pt;}
._7{width:996.405333pt;}
.fs2{font-size:5.120000pt;}
.fs14{font-size:5.333333pt;}
.fs13{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fse{font-size:24.320000pt;}
.fs6{font-size:26.880000pt;}
.fsf{font-size:28.333725pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs11{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs12{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs10{font-size:67.461249pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y6d{bottom:-223.546667pt;}
.y6c{bottom:-193.626667pt;}
.y7b{bottom:-176.026667pt;}
.y6b{bottom:-163.546667pt;}
.y7a{bottom:-146.106667pt;}
.y6a{bottom:-133.626667pt;}
.y79{bottom:-116.186667pt;}
.y69{bottom:-103.546667pt;}
.y78{bottom:-86.106667pt;}
.y68{bottom:-73.626667pt;}
.y77{bottom:-56.146667pt;}
.y67{bottom:-43.680000pt;}
.y76{bottom:-26.066667pt;}
.y60{bottom:-25.466667pt;}
.y3d{bottom:-24.160000pt;}
.y7d{bottom:-15.931333pt;}
.y66{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:1.453333pt;}
.y1c0{bottom:1.633333pt;}
.y144{bottom:2.386667pt;}
.y65{bottom:2.400000pt;}
.y141{bottom:2.546667pt;}
.y135{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y153{bottom:4.000000pt;}
.y113{bottom:4.160000pt;}
.y120{bottom:4.306667pt;}
.y115{bottom:4.320000pt;}
.y3c{bottom:4.480000pt;}
.y5f{bottom:4.960000pt;}
.y5d{bottom:7.373333pt;}
.y156{bottom:9.920000pt;}
.y157{bottom:10.080000pt;}
.y7{bottom:11.040000pt;}
.y130{bottom:11.520000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y74{bottom:12.973333pt;}
.y64{bottom:13.920000pt;}
.y140{bottom:14.706667pt;}
.y134{bottom:14.720000pt;}
.y142{bottom:15.666667pt;}
.y136{bottom:15.680000pt;}
.y14b{bottom:18.240000pt;}
.y11f{bottom:18.386667pt;}
.y5c{bottom:18.573333pt;}
.y147{bottom:21.760000pt;}
.y6{bottom:22.400000pt;}
.y73{bottom:24.653333pt;}
.y14c{bottom:25.440000pt;}
.y63{bottom:25.600000pt;}
.y13f{bottom:27.026667pt;}
.y133{bottom:27.040000pt;}
.y53{bottom:28.333333pt;}
.y5b{bottom:29.293333pt;}
.y14a{bottom:32.320000pt;}
.y5{bottom:33.920000pt;}
.y72{bottom:36.173333pt;}
.y62{bottom:36.480000pt;}
.y146{bottom:39.360000pt;}
.y5a{bottom:40.013333pt;}
.y52{bottom:40.653333pt;}
.yd8{bottom:41.120000pt;}
.y149{bottom:46.560000pt;}
.y71{bottom:47.693333pt;}
.y51{bottom:48.493333pt;}
.y59{bottom:50.733333pt;}
.y80{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.yd7{bottom:55.680000pt;}
.y7c{bottom:56.693333pt;}
.y70{bottom:59.373333pt;}
.y58{bottom:61.480000pt;}
.y50{bottom:64.333333pt;}
.y6f{bottom:70.253333pt;}
.yd6{bottom:71.520000pt;}
.y57{bottom:72.360000pt;}
.y4f{bottom:80.173333pt;}
.y56{bottom:83.080000pt;}
.yb0{bottom:92.160000pt;}
.y4e{bottom:93.613333pt;}
.y55{bottom:98.120000pt;}
.yd5{bottom:100.000000pt;}
.y12d{bottom:101.920000pt;}
.y1bf{bottom:102.400000pt;}
.y4d{bottom:104.973333pt;}
.y13d{bottom:106.920000pt;}
.y15d{bottom:107.200000pt;}
.yaf{bottom:109.760000pt;}
.y194{bottom:110.880000pt;}
.y169{bottom:111.040000pt;}
.y3a{bottom:115.680000pt;}
.yd4{bottom:117.600000pt;}
.y13c{bottom:119.400000pt;}
.y12c{bottom:119.520000pt;}
.y1be{bottom:120.000000pt;}
.y101{bottom:120.320000pt;}
.y4c{bottom:120.813333pt;}
.y15c{bottom:120.960000pt;}
.y138{bottom:125.306667pt;}
.yae{bottom:127.360000pt;}
.y193{bottom:128.480000pt;}
.y168{bottom:128.800000pt;}
.y13b{bottom:131.560000pt;}
.y39{bottom:133.280000pt;}
.yd3{bottom:135.360000pt;}
.y4b{bottom:136.653333pt;}
.y12b{bottom:137.120000pt;}
.y1bd{bottom:137.760000pt;}
.y100{bottom:137.920000pt;}
.y139{bottom:143.866667pt;}
.yad{bottom:144.986667pt;}
.y192{bottom:146.106667pt;}
.y167{bottom:146.426667pt;}
.y38{bottom:150.906667pt;}
.y4a{bottom:152.493333pt;}
.yd2{bottom:152.986667pt;}
.y12a{bottom:154.746667pt;}
.y1bc{bottom:155.386667pt;}
.yff{bottom:155.546667pt;}
.yac{bottom:162.746667pt;}
.y191{bottom:163.706667pt;}
.y166{bottom:164.026667pt;}
.y49{bottom:168.333333pt;}
.y37{bottom:168.506667pt;}
.yd1{bottom:170.586667pt;}
.y129{bottom:172.346667pt;}
.y1bb{bottom:172.986667pt;}
.yfe{bottom:173.306667pt;}
.yab{bottom:180.346667pt;}
.y190{bottom:181.466667pt;}
.y165{bottom:181.626667pt;}
.y48{bottom:184.360000pt;}
.y36{bottom:186.106667pt;}
.yd0{bottom:188.186667pt;}
.y128{bottom:190.106667pt;}
.y1ba{bottom:190.586667pt;}
.yfd{bottom:190.906667pt;}
.y47{bottom:196.200000pt;}
.yaa{bottom:197.946667pt;}
.y18f{bottom:199.066667pt;}
.y164{bottom:199.226667pt;}
.y35{bottom:203.866667pt;}
.y46{bottom:204.040000pt;}
.ycf{bottom:205.786667pt;}
.y127{bottom:207.706667pt;}
.y1b9{bottom:208.186667pt;}
.yfc{bottom:208.506667pt;}
.ya9{bottom:215.546667pt;}
.y163{bottom:216.986667pt;}
.y18e{bottom:217.466667pt;}
.y45{bottom:219.880000pt;}
.y34{bottom:221.466667pt;}
.yce{bottom:223.546667pt;}
.y126{bottom:225.306667pt;}
.y1b8{bottom:225.946667pt;}
.yfb{bottom:226.106667pt;}
.ya8{bottom:233.146667pt;}
.y162{bottom:234.586667pt;}
.y44{bottom:235.720000pt;}
.y33{bottom:239.066667pt;}
.ycd{bottom:241.146667pt;}
.y125{bottom:242.906667pt;}
.y1b7{bottom:243.546667pt;}
.yfa{bottom:243.706667pt;}
.ya7{bottom:250.906667pt;}
.y43{bottom:251.560000pt;}
.y161{bottom:252.186667pt;}
.y18d{bottom:253.786667pt;}
.y32{bottom:256.666667pt;}
.ycc{bottom:258.746667pt;}
.y124{bottom:260.506667pt;}
.y1b6{bottom:261.146667pt;}
.yf9{bottom:261.466667pt;}
.y42{bottom:263.400000pt;}
.ya6{bottom:268.506667pt;}
.y160{bottom:269.786667pt;}
.y41{bottom:271.240000pt;}
.y18c{bottom:271.386667pt;}
.y31{bottom:274.266667pt;}
.ycb{bottom:276.346667pt;}
.y1b5{bottom:278.746667pt;}
.yf8{bottom:279.066667pt;}
.y123{bottom:285.786667pt;}
.ya5{bottom:286.106667pt;}
.y40{bottom:287.240000pt;}
.y15f{bottom:287.386667pt;}
.y18b{bottom:289.146667pt;}
.y30{bottom:292.026667pt;}
.yca{bottom:293.946667pt;}
.y122{bottom:296.346667pt;}
.yf7{bottom:296.666667pt;}
.y3f{bottom:303.080000pt;}
.ya4{bottom:303.706667pt;}
.y15e{bottom:305.946667pt;}
.y121{bottom:306.920000pt;}
.y18a{bottom:307.546667pt;}
.y2f{bottom:309.626667pt;}
.yc9{bottom:311.706667pt;}
.y1b4{bottom:314.106667pt;}
.yf6{bottom:314.266667pt;}
.ya3{bottom:321.306667pt;}
.y11e{bottom:321.640000pt;}
.y2e{bottom:327.226667pt;}
.yc8{bottom:329.306667pt;}
.y1b3{bottom:331.706667pt;}
.yf5{bottom:331.866667pt;}
.y15b{bottom:337.946667pt;}
.ya2{bottom:339.066667pt;}
.y15a{bottom:342.586667pt;}
.y189{bottom:343.866667pt;}
.y2d{bottom:344.826667pt;}
.yc7{bottom:346.906667pt;}
.y1b2{bottom:349.346667pt;}
.yf4{bottom:349.666667pt;}
.y11d{bottom:350.466667pt;}
.y159{bottom:353.346667pt;}
.ya1{bottom:356.706667pt;}
.y188{bottom:361.506667pt;}
.y2c{bottom:363.426667pt;}
.y158{bottom:363.746667pt;}
.yc6{bottom:364.546667pt;}
.y11c{bottom:365.346667pt;}
.y1b1{bottom:366.946667pt;}
.yf3{bottom:367.266667pt;}
.ya0{bottom:374.306667pt;}
.y155{bottom:378.626667pt;}
.y187{bottom:379.266667pt;}
.y11b{bottom:380.066667pt;}
.y2b{bottom:382.466667pt;}
.yc5{bottom:382.946667pt;}
.y3e{bottom:383.413333pt;}
.y1b0{bottom:384.546667pt;}
.yf2{bottom:384.866667pt;}
.y9f{bottom:391.906667pt;}
.y11a{bottom:394.786667pt;}
.y2a{bottom:395.586667pt;}
.y186{bottom:396.866667pt;}
.yc4{bottom:400.546667pt;}
.y1af{bottom:402.306667pt;}
.yf1{bottom:402.466667pt;}
.y29{bottom:404.386667pt;}
.y154{bottom:405.026667pt;}
.y6e{bottom:407.093333pt;}
.y9e{bottom:409.506667pt;}
.y119{bottom:409.666667pt;}
.yc3{bottom:412.226667pt;}
.y185{bottom:414.466667pt;}
.y28{bottom:417.986667pt;}
.y1ae{bottom:419.906667pt;}
.yf0{bottom:420.066667pt;}
.y152{bottom:421.026667pt;}
.y118{bottom:424.386667pt;}
.y9d{bottom:427.266667pt;}
.yc2{bottom:429.826667pt;}
.y184{bottom:432.866667pt;}
.y1ad{bottom:437.506667pt;}
.yef{bottom:437.826667pt;}
.y27{bottom:438.786667pt;}
.y117{bottom:439.106667pt;}
.y151{bottom:442.146667pt;}
.y9c{bottom:444.866667pt;}
.yc1{bottom:447.426667pt;}
.y116{bottom:453.986667pt;}
.y1ac{bottom:455.106667pt;}
.yee{bottom:455.426667pt;}
.y150{bottom:458.146667pt;}
.y26{bottom:459.426667pt;}
.y9b{bottom:462.466667pt;}
.yc0{bottom:465.026667pt;}
.y114{bottom:468.706667pt;}
.y183{bottom:469.186667pt;}
.y1ab{bottom:472.706667pt;}
.y14f{bottom:472.866667pt;}
.yed{bottom:473.026667pt;}
.y25{bottom:480.066667pt;}
.ybf{bottom:482.786667pt;}
.y14e{bottom:483.586667pt;}
.y112{bottom:484.866667pt;}
.y182{bottom:487.746667pt;}
.y1aa{bottom:490.466667pt;}
.yec{bottom:490.626667pt;}
.y14d{bottom:494.466667pt;}
.y9a{bottom:497.666667pt;}
.y54{bottom:500.373333pt;}
.ybe{bottom:500.386667pt;}
.y13a{bottom:504.853333pt;}
.y137{bottom:504.866667pt;}
.y111{bottom:505.986667pt;}
.y1a9{bottom:508.066667pt;}
.yeb{bottom:508.226667pt;}
.y181{bottom:508.866667pt;}
.y24{bottom:509.666667pt;}
.y99{bottom:515.426667pt;}
.ybd{bottom:517.986667pt;}
.y110{bottom:521.186667pt;}
.y1a8{bottom:525.666667pt;}
.yea{bottom:525.986667pt;}
.y98{bottom:533.026667pt;}
.ybc{bottom:535.586667pt;}
.y10f{bottom:536.386667pt;}
.y1a7{bottom:543.266667pt;}
.ye9{bottom:543.586667pt;}
.y23{bottom:544.546667pt;}
.y180{bottom:545.186667pt;}
.y97{bottom:550.626667pt;}
.ybb{bottom:553.186667pt;}
.y10e{bottom:554.013333pt;}
.y22{bottom:558.333333pt;}
.y1a6{bottom:560.893333pt;}
.ye8{bottom:561.213333pt;}
.y148{bottom:562.013333pt;}
.y17f{bottom:562.813333pt;}
.y96{bottom:568.253333pt;}
.yba{bottom:570.973333pt;}
.y10d{bottom:571.613333pt;}
.y21{bottom:572.093333pt;}
.y1a5{bottom:578.653333pt;}
.ye7{bottom:578.813333pt;}
.y17e{bottom:580.413333pt;}
.y20{bottom:585.853333pt;}
.yb9{bottom:588.573333pt;}
.y10c{bottom:589.373333pt;}
.y1a4{bottom:596.253333pt;}
.ye6{bottom:596.413333pt;}
.y17d{bottom:598.173333pt;}
.y145{bottom:599.453333pt;}
.y1f{bottom:599.773333pt;}
.y95{bottom:603.613333pt;}
.yb8{bottom:606.173333pt;}
.y10b{bottom:606.973333pt;}
.y1e{bottom:609.533333pt;}
.y1a3{bottom:613.853333pt;}
.ye5{bottom:614.973333pt;}
.y17c{bottom:615.773333pt;}
.y61{bottom:620.093333pt;}
.y94{bottom:621.213333pt;}
.y1d{bottom:621.693333pt;}
.yb7{bottom:624.573333pt;}
.y10a{bottom:625.373333pt;}
.y1a2{bottom:631.453333pt;}
.ye4{bottom:632.573333pt;}
.y1c{bottom:632.893333pt;}
.y17b{bottom:633.373333pt;}
.y93{bottom:638.813333pt;}
.yb6{bottom:642.013333pt;}
.y1b{bottom:643.933333pt;}
.ye3{bottom:644.093333pt;}
.y1a1{bottom:649.053333pt;}
.y143{bottom:649.226667pt;}
.y17a{bottom:650.973333pt;}
.yb5{bottom:653.693333pt;}
.y1a{bottom:655.453333pt;}
.y92{bottom:656.413333pt;}
.ye2{bottom:661.693333pt;}
.y1a0{bottom:666.813333pt;}
.y19{bottom:667.773333pt;}
.y179{bottom:668.573333pt;}
.yb4{bottom:671.453333pt;}
.y91{bottom:674.013333pt;}
.y18{bottom:679.133333pt;}
.ye1{bottom:679.293333pt;}
.y19f{bottom:684.413333pt;}
.y178{bottom:686.333333pt;}
.y13e{bottom:686.666667pt;}
.yb3{bottom:689.053333pt;}
.y90{bottom:691.773333pt;}
.ye0{bottom:697.053333pt;}
.y19e{bottom:702.013333pt;}
.y17{bottom:702.973333pt;}
.y177{bottom:704.733333pt;}
.yb2{bottom:707.453333pt;}
.y8f{bottom:709.373333pt;}
.y16{bottom:712.893333pt;}
.ydf{bottom:714.653333pt;}
.y19d{bottom:719.613333pt;}
.y132{bottom:724.093333pt;}
.yb1{bottom:726.013333pt;}
.y8e{bottom:726.973333pt;}
.y15{bottom:730.333333pt;}
.yde{bottom:732.253333pt;}
.y19c{bottom:737.213333pt;}
.y176{bottom:741.053333pt;}
.y8d{bottom:744.573333pt;}
.y14{bottom:746.493333pt;}
.ydd{bottom:749.853333pt;}
.y19b{bottom:754.973333pt;}
.y175{bottom:758.693333pt;}
.y13{bottom:758.853333pt;}
.y8c{bottom:762.213333pt;}
.y12f{bottom:763.013333pt;}
.ydc{bottom:767.493333pt;}
.y12{bottom:771.173333pt;}
.y19a{bottom:773.413333pt;}
.y174{bottom:776.293333pt;}
.y131{bottom:777.733333pt;}
.y11{bottom:779.333333pt;}
.y8b{bottom:779.973333pt;}
.ydb{bottom:785.253333pt;}
.y173{bottom:794.053333pt;}
.y10{bottom:795.653333pt;}
.y8a{bottom:797.573333pt;}
.y12e{bottom:798.853333pt;}
.y109{bottom:802.853333pt;}
.yda{bottom:803.653333pt;}
.yf{bottom:807.813333pt;}
.y199{bottom:809.733333pt;}
.y172{bottom:811.653333pt;}
.y89{bottom:815.173333pt;}
.ye{bottom:820.133333pt;}
.y108{bottom:820.453333pt;}
.yd9{bottom:821.093333pt;}
.y198{bottom:827.333333pt;}
.y171{bottom:829.253333pt;}
.yd{bottom:831.813333pt;}
.y88{bottom:832.773333pt;}
.y107{bottom:838.053333pt;}
.y197{bottom:844.933333pt;}
.y170{bottom:846.853333pt;}
.y87{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.y106{bottom:855.653333pt;}
.y196{bottom:862.693333pt;}
.y16f{bottom:864.453333pt;}
.y86{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.y105{bottom:873.413333pt;}
.y195{bottom:881.093333pt;}
.y16e{bottom:882.213333pt;}
.y85{bottom:885.733333pt;}
.y104{bottom:891.013333pt;}
.ya{bottom:892.933333pt;}
.y16d{bottom:899.813333pt;}
.y84{bottom:903.333333pt;}
.y103{bottom:909.733333pt;}
.y16c{bottom:917.413333pt;}
.y83{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y102{bottom:927.013333pt;}
.y16b{bottom:935.013333pt;}
.y82{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.y16a{bottom:953.413333pt;}
.y81{bottom:956.133333pt;}
.y5e{bottom:974.400000pt;}
.y7f{bottom:983.040000pt;}
.y7e{bottom:998.400000pt;}
.y3b{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h3e{height:5.562500pt;}
.h3d{height:10.678125pt;}
.h2{height:12.000000pt;}
.h30{height:14.066667pt;}
.h31{height:14.226667pt;}
.h18{height:15.040000pt;}
.h15{height:16.125000pt;}
.h1f{height:19.680000pt;}
.h3c{height:25.586667pt;}
.h29{height:26.368125pt;}
.hb{height:26.381250pt;}
.h1c{height:27.090000pt;}
.he{height:27.523125pt;}
.h2f{height:27.628404pt;}
.h32{height:28.178667pt;}
.h33{height:28.786667pt;}
.h2a{height:29.495850pt;}
.h35{height:30.254687pt;}
.h16{height:32.250000pt;}
.h12{height:35.114107pt;}
.h5{height:36.431250pt;}
.h38{height:36.786667pt;}
.h3a{height:36.800000pt;}
.h34{height:36.820000pt;}
.h2e{height:36.920625pt;}
.h24{height:37.308750pt;}
.h1e{height:37.410000pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h17{height:43.215000pt;}
.h13{height:44.768125pt;}
.h21{height:46.240000pt;}
.h14{height:47.109375pt;}
.h1b{height:47.406250pt;}
.h2c{height:47.621250pt;}
.h19{height:48.375000pt;}
.h39{height:49.120000pt;}
.hf{height:49.148438pt;}
.h3{height:52.134375pt;}
.h2d{height:52.478750pt;}
.h9{height:53.535000pt;}
.h27{height:54.598989pt;}
.h26{height:55.298750pt;}
.h3b{height:56.506667pt;}
.ha{height:57.787500pt;}
.h22{height:58.563750pt;}
.h28{height:62.781250pt;}
.hd{height:64.500000pt;}
.h20{height:66.625000pt;}
.h25{height:66.750000pt;}
.h2b{height:70.228214pt;}
.h7{height:76.964840pt;}
.h23{height:80.000000pt;}
.h8{height:85.785000pt;}
.h1d{height:105.320000pt;}
.h36{height:256.053333pt;}
.h37{height:256.066667pt;}
.h1a{height:313.960000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w11{width:40.498667pt;}
.w13{width:40.800000pt;}
.w17{width:41.746667pt;}
.w16{width:41.938667pt;}
.w1e{width:42.066667pt;}
.w20{width:47.986667pt;}
.w1f{width:48.018667pt;}
.w14{width:54.112000pt;}
.w12{width:57.120000pt;}
.w1d{width:59.186667pt;}
.w21{width:65.906667pt;}
.w22{width:72.026667pt;}
.w3{width:72.952000pt;}
.w18{width:77.906667pt;}
.w15{width:83.986667pt;}
.w10{width:84.026667pt;}
.w19{width:84.032000pt;}
.w1a{width:84.040000pt;}
.w1c{width:84.832000pt;}
.wd{width:113.912000pt;}
.wc{width:113.946667pt;}
.w9{width:137.306667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.wb{width:185.773333pt;}
.we{width:192.533333pt;}
.w1b{width:209.938667pt;}
.wf{width:245.613333pt;}
.w6{width:451.786667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:3.780000pt;}
.x2{left:7.192000pt;}
.x32{left:8.160000pt;}
.x14{left:9.592000pt;}
.x37{left:10.906667pt;}
.x3c{left:12.466667pt;}
.x42{left:13.600000pt;}
.x3f{left:14.746667pt;}
.x28{left:16.640000pt;}
.x29{left:17.920000pt;}
.x1a{left:18.893333pt;}
.x46{left:20.960000pt;}
.x45{left:22.240000pt;}
.x47{left:24.826667pt;}
.x44{left:27.826667pt;}
.x39{left:29.120000pt;}
.x38{left:32.626667pt;}
.x26{left:34.720000pt;}
.x27{left:37.440000pt;}
.x24{left:43.706667pt;}
.x25{left:56.986667pt;}
.x3{left:65.746667pt;}
.x2c{left:70.426667pt;}
.x13{left:72.680000pt;}
.x19{left:82.760000pt;}
.x16{left:84.040000pt;}
.x6{left:94.912000pt;}
.x1{left:96.040000pt;}
.x2a{left:98.600000pt;}
.x3a{left:101.640000pt;}
.x48{left:108.032000pt;}
.x2e{left:112.186667pt;}
.x4a{left:114.112000pt;}
.x1c{left:116.832000pt;}
.x11{left:117.952000pt;}
.x1e{left:120.032000pt;}
.x9{left:133.312000pt;}
.xc{left:135.546667pt;}
.xb{left:146.746667pt;}
.x10{left:160.986667pt;}
.x4{left:169.000000pt;}
.xf{left:174.426667pt;}
.x22{left:196.026667pt;}
.xe{left:199.386667pt;}
.x7{left:203.706667pt;}
.x2b{left:212.520000pt;}
.xa{left:217.506667pt;}
.x30{left:253.026667pt;}
.x15{left:269.026667pt;}
.x17{left:275.866667pt;}
.x31{left:310.146667pt;}
.x3b{left:311.586667pt;}
.x18{left:330.293333pt;}
.x33{left:350.946667pt;}
.x1d{left:373.053333pt;}
.xd{left:390.493333pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.x2d{left:405.066667pt;}
.x49{left:422.813333pt;}
.x12{left:436.253333pt;}
.x3d{left:455.626667pt;}
.x34{left:489.066667pt;}
.x3e{left:497.706667pt;}
.x35{left:531.013333pt;}
.x40{left:545.733333pt;}
.x1b{left:551.336000pt;}
.x1f{left:561.253333pt;}
.x36{left:572.773333pt;}
.x21{left:573.733333pt;}
.x41{left:593.733333pt;}
.x23{left:622.053333pt;}
.x2f{left:650.693333pt;}
.x43{left:659.653333pt;}
.x20{left:710.400000pt;}
}




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