
    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_9349811bc52c778bc1b95cdb.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_20ef937109e56b74b7b9feec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_417a9393e3397552e7f091fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8030ee21f830baaf6284bf43.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0b5c17ee9f2d2663d5350625.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.711914;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_439b5ca2691e3d1f24624f9b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_d0a34dd4a5c2c9dea9073d98.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_8e44899b92451ff45edc2c75.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.711914;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_1c4ee6fcaed4c017cb46fa4d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9c7730460fa5339b018c0409.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_be6d31e5128d3a4e68686150.woff2')format("woff");}.ff11{font-family:ff11;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-12.780000px;}
.lsc{letter-spacing:-9.720000px;}
.lsf{letter-spacing:-0.584400px;}
.ls8{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.364800px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.089400px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.089400px;}
.lsd{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls10{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.900000px;}
.ls2{letter-spacing:48.420000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws15{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.220000px;}
.ws6{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws5{word-spacing:-10.975200px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.350600px;}
.wsa{word-spacing:-10.213800px;}
.ws10{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
._1e{margin-left:-2764.495680px;}
._1f{margin-left:-2204.744160px;}
._1c{margin-left:-629.220000px;}
._1b{margin-left:-105.840000px;}
._6{margin-left:-60.300000px;}
._1d{margin-left:-15.776640px;}
._2d{margin-left:-12.656160px;}
._2c{margin-left:-5.076000px;}
._8{margin-left:-2.868480px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._e{width:2.237760px;}
._2{width:3.332640px;}
._14{width:4.428000px;}
._10{width:5.910720px;}
._16{width:6.912960px;}
._b{width:8.121840px;}
._c{width:9.751920px;}
._15{width:10.799040px;}
._19{width:12.420000px;}
._2a{width:13.772400px;}
._18{width:16.398000px;}
._17{width:17.892000px;}
._23{width:19.422000px;}
._11{width:20.497680px;}
._28{width:21.672960px;}
._27{width:22.708800px;}
._24{width:23.778960px;}
._d{width:24.794880px;}
._20{width:25.895760px;}
._f{width:27.057120px;}
._a{width:28.266480px;}
._9{width:29.401920px;}
._26{width:30.477600px;}
._21{width:32.384400px;}
._22{width:33.764400px;}
._29{width:35.247360px;}
._12{width:36.687120px;}
._13{width:37.784880px;}
._3a{width:38.838240px;}
._2b{width:39.979440px;}
._25{width:41.706960px;}
._32{width:43.744320px;}
._31{width:44.760240px;}
._41{width:45.830400px;}
._2f{width:47.141520px;}
._2e{width:48.286080px;}
._3d{width:51.871680px;}
._3e{width:52.955280px;}
._33{width:54.097920px;}
._3c{width:55.875600px;}
._30{width:57.244560px;}
._35{width:59.040000px;}
._42{width:60.357600px;}
._3f{width:64.330800px;}
._4{width:65.496000px;}
._40{width:69.978960px;}
._3{width:71.006880px;}
._39{width:74.819520px;}
._38{width:75.954960px;}
._3b{width:77.802000px;}
._43{width:84.793920px;}
._34{width:96.503280px;}
._37{width:158.543280px;}
._36{width:159.858000px;}
._5{width:199.620000px;}
._1a{width:285.870000px;}
._7{width:755.976000px;}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs13{font-size:6.000000px;}
.fsf{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs11{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs12{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4e{bottom:-246.810000px;}
.y4d{bottom:-212.970000px;}
.y80{bottom:-182.565000px;}
.y4c{bottom:-179.310000px;}
.y7f{bottom:-148.725000px;}
.y4b{bottom:-145.470000px;}
.y7e{bottom:-115.065000px;}
.y4a{bottom:-111.810000px;}
.y7d{bottom:-81.405000px;}
.y49{bottom:-78.120000px;}
.y7c{bottom:-47.520000px;}
.y48{bottom:-44.280000px;}
.y82{bottom:-17.922750px;}
.y7b{bottom:-13.860000px;}
.y47{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y1c6{bottom:1.837500px;}
.y104{bottom:2.520000px;}
.y6{bottom:3.780000px;}
.y14d{bottom:3.960000px;}
.y121{bottom:4.500000px;}
.y117{bottom:4.680000px;}
.y67{bottom:4.860000px;}
.y6f{bottom:5.370000px;}
.y124{bottom:5.400000px;}
.y119{bottom:5.760000px;}
.y141{bottom:6.480000px;}
.y46{bottom:7.560000px;}
.y10f{bottom:8.100000px;}
.y148{bottom:8.280000px;}
.y102{bottom:9.360000px;}
.y126{bottom:9.750000px;}
.y10b{bottom:10.080000px;}
.y140{bottom:10.440000px;}
.y12a{bottom:10.620000px;}
.y113{bottom:10.800000px;}
.y12e{bottom:11.160000px;}
.y9{bottom:12.420000px;}
.y11b{bottom:13.500000px;}
.y103{bottom:16.200000px;}
.y106{bottom:16.380000px;}
.y7a{bottom:17.100000px;}
.y66{bottom:20.385000px;}
.y45{bottom:21.600000px;}
.ya{bottom:21.780000px;}
.y7{bottom:23.220000px;}
.y6d{bottom:23.250000px;}
.y8{bottom:24.480000px;}
.y79{bottom:30.240000px;}
.y11f{bottom:31.320000px;}
.y65{bottom:32.625000px;}
.y144{bottom:32.970000px;}
.y13c{bottom:34.020000px;}
.yc{bottom:35.100000px;}
.y44{bottom:35.460000px;}
.y6c{bottom:36.570000px;}
.y78{bottom:43.200000px;}
.y11e{bottom:45.000000px;}
.y86{bottom:47.520000px;}
.y43{bottom:49.500000px;}
.y6b{bottom:49.530000px;}
.y64{bottom:50.445000px;}
.y77{bottom:56.160000px;}
.y5{bottom:57.420000px;}
.y42{bottom:62.460000px;}
.y6a{bottom:62.670000px;}
.y81{bottom:63.780000px;}
.y85{bottom:66.420000px;}
.y63{bottom:68.445000px;}
.y76{bottom:69.300000px;}
.y69{bottom:79.770000px;}
.y75{bottom:82.260000px;}
.y62{bottom:83.925000px;}
.y74{bottom:95.400000px;}
.y61{bottom:96.165000px;}
.y1a4{bottom:101.160000px;}
.y1c5{bottom:102.060000px;}
.yb7{bottom:103.320000px;}
.ye0{bottom:104.220000px;}
.yff{bottom:105.120000px;}
.y73{bottom:108.360000px;}
.y14b{bottom:109.620000px;}
.y40{bottom:113.940000px;}
.y60{bottom:113.985000px;}
.y180{bottom:115.560000px;}
.y19d{bottom:117.540000px;}
.y1a3{bottom:120.960000px;}
.y72{bottom:121.320000px;}
.y14a{bottom:121.680000px;}
.y1c4{bottom:121.860000px;}
.yb6{bottom:123.120000px;}
.ydf{bottom:124.020000px;}
.yfe{bottom:124.920000px;}
.y5f{bottom:131.805000px;}
.y71{bottom:133.560000px;}
.y3f{bottom:133.740000px;}
.y17f{bottom:135.540000px;}
.y19c{bottom:137.520000px;}
.y1a2{bottom:140.760000px;}
.y1c3{bottom:141.840000px;}
.yb5{bottom:142.920000px;}
.yde{bottom:144.000000px;}
.yfd{bottom:144.720000px;}
.y143{bottom:145.800000px;}
.y5e{bottom:149.625000px;}
.y3e{bottom:153.720000px;}
.y17e{bottom:155.340000px;}
.y19b{bottom:157.320000px;}
.y149{bottom:159.480000px;}
.y1a1{bottom:160.740000px;}
.y1c2{bottom:161.640000px;}
.yb4{bottom:162.750000px;}
.ydd{bottom:163.830000px;}
.yfc{bottom:164.730000px;}
.y5d{bottom:167.625000px;}
.y147{bottom:173.370000px;}
.y3d{bottom:173.550000px;}
.y17d{bottom:175.170000px;}
.y19a{bottom:177.150000px;}
.y1a0{bottom:180.570000px;}
.y1c1{bottom:181.470000px;}
.yb3{bottom:182.730000px;}
.y5c{bottom:183.105000px;}
.ydc{bottom:183.630000px;}
.yfb{bottom:184.530000px;}
.y146{bottom:192.990000px;}
.y3c{bottom:193.350000px;}
.y17c{bottom:194.970000px;}
.y5b{bottom:195.345000px;}
.y199{bottom:196.950000px;}
.y19f{bottom:200.370000px;}
.y1c0{bottom:201.270000px;}
.yb2{bottom:202.530000px;}
.ydb{bottom:203.430000px;}
.yfa{bottom:205.590000px;}
.y145{bottom:206.670000px;}
.y3b{bottom:213.150000px;}
.y5a{bottom:213.165000px;}
.y17b{bottom:214.770000px;}
.y198{bottom:216.750000px;}
.y13b{bottom:220.530000px;}
.y1bf{bottom:221.070000px;}
.y19e{bottom:221.430000px;}
.yb1{bottom:222.330000px;}
.yda{bottom:223.230000px;}
.y59{bottom:230.985000px;}
.y3a{bottom:232.950000px;}
.y142{bottom:234.390000px;}
.y17a{bottom:234.750000px;}
.y197{bottom:236.730000px;}
.yb0{bottom:242.130000px;}
.y1be{bottom:242.310000px;}
.yd9{bottom:243.210000px;}
.yf9{bottom:246.090000px;}
.y13f{bottom:248.070000px;}
.y58{bottom:248.835000px;}
.y39{bottom:252.930000px;}
.y179{bottom:254.550000px;}
.y196{bottom:256.530000px;}
.yaf{bottom:261.930000px;}
.yd8{bottom:263.010000px;}
.yf8{bottom:265.890000px;}
.y57{bottom:266.835000px;}
.y13e{bottom:269.670000px;}
.y38{bottom:272.730000px;}
.y178{bottom:274.350000px;}
.y195{bottom:276.330000px;}
.yae{bottom:281.910000px;}
.yd7{bottom:282.810000px;}
.y13d{bottom:283.530000px;}
.y56{bottom:284.655000px;}
.yf7{bottom:285.870000px;}
.y37{bottom:292.530000px;}
.y177{bottom:294.150000px;}
.y194{bottom:296.130000px;}
.y13a{bottom:299.550000px;}
.y55{bottom:300.135000px;}
.yad{bottom:301.710000px;}
.yd6{bottom:302.610000px;}
.yf6{bottom:305.670000px;}
.y36{bottom:312.330000px;}
.y54{bottom:312.375000px;}
.y176{bottom:313.950000px;}
.y193{bottom:315.930000px;}
.yac{bottom:321.510000px;}
.yd5{bottom:322.410000px;}
.yf5{bottom:325.470000px;}
.y139{bottom:326.370000px;}
.y53{bottom:330.195000px;}
.y35{bottom:332.130000px;}
.y175{bottom:333.930000px;}
.y192{bottom:335.910000px;}
.yab{bottom:341.310000px;}
.y138{bottom:341.850000px;}
.yd4{bottom:342.390000px;}
.y1bd{bottom:343.470000px;}
.yf4{bottom:345.270000px;}
.y52{bottom:348.015000px;}
.y34{bottom:353.370000px;}
.y174{bottom:353.730000px;}
.y191{bottom:355.710000px;}
.yaa{bottom:361.110000px;}
.yd3{bottom:362.190000px;}
.y137{bottom:363.270000px;}
.yf3{bottom:365.070000px;}
.y51{bottom:366.015000px;}
.y33{bottom:370.650000px;}
.y173{bottom:373.530000px;}
.y136{bottom:375.330000px;}
.y190{bottom:375.510000px;}
.y32{bottom:380.190000px;}
.ya9{bottom:381.090000px;}
.yd2{bottom:381.990000px;}
.y4f{bottom:383.070000px;}
.y50{bottom:383.835000px;}
.y1bc{bottom:384.150000px;}
.yf2{bottom:385.050000px;}
.y135{bottom:387.390000px;}
.y172{bottom:393.375000px;}
.y18f{bottom:395.355000px;}
.y133{bottom:399.495000px;}
.ya8{bottom:400.935000px;}
.yd1{bottom:401.835000px;}
.y31{bottom:403.275000px;}
.y1bb{bottom:403.995000px;}
.yf1{bottom:404.895000px;}
.y134{bottom:413.175000px;}
.y18e{bottom:415.155000px;}
.y30{bottom:417.495000px;}
.ya7{bottom:420.735000px;}
.yd0{bottom:421.635000px;}
.yf0{bottom:424.695000px;}
.y1ba{bottom:425.055000px;}
.y132{bottom:427.035000px;}
.y171{bottom:433.155000px;}
.y18d{bottom:435.135000px;}
.y2f{bottom:438.735000px;}
.ya6{bottom:440.535000px;}
.y131{bottom:440.895000px;}
.ycf{bottom:441.615000px;}
.yef{bottom:444.495000px;}
.y70{bottom:446.655000px;}
.y170{bottom:452.955000px;}
.y18c{bottom:454.935000px;}
.y2e{bottom:459.435000px;}
.ya5{bottom:460.335000px;}
.yce{bottom:461.415000px;}
.yee{bottom:464.295000px;}
.y1b9{bottom:465.555000px;}
.y130{bottom:471.855000px;}
.y16f{bottom:472.755000px;}
.y18b{bottom:474.735000px;}
.y2d{bottom:479.055000px;}
.ya4{bottom:480.315000px;}
.ycd{bottom:481.215000px;}
.yed{bottom:484.275000px;}
.y1b8{bottom:485.355000px;}
.y12f{bottom:485.715000px;}
.y16e{bottom:492.555000px;}
.y2c{bottom:492.915000px;}
.y18a{bottom:494.535000px;}
.y12d{bottom:499.395000px;}
.ya3{bottom:500.115000px;}
.ycc{bottom:501.015000px;}
.y2b{bottom:501.375000px;}
.yec{bottom:504.075000px;}
.y1b7{bottom:505.335000px;}
.y16d{bottom:512.355000px;}
.y189{bottom:514.335000px;}
.ya2{bottom:519.915000px;}
.ycb{bottom:522.075000px;}
.y2a{bottom:524.775000px;}
.yeb{bottom:525.135000px;}
.y12c{bottom:530.355000px;}
.y16c{bottom:532.335000px;}
.y188{bottom:534.315000px;}
.ya1{bottom:539.715000px;}
.yca{bottom:543.135000px;}
.y12b{bottom:544.215000px;}
.yea{bottom:546.015000px;}
.y1b6{bottom:546.195000px;}
.y29{bottom:547.995000px;}
.y16b{bottom:552.135000px;}
.y187{bottom:554.115000px;}
.y129{bottom:558.075000px;}
.yc9{bottom:558.615000px;}
.ya0{bottom:559.515000px;}
.ye9{bottom:561.495000px;}
.y28{bottom:571.215000px;}
.y16a{bottom:571.935000px;}
.y186{bottom:573.915000px;}
.yc8{bottom:578.415000px;}
.y9f{bottom:579.495000px;}
.ye8{bottom:581.475000px;}
.y1b5{bottom:586.695000px;}
.y128{bottom:588.315000px;}
.y169{bottom:591.735000px;}
.y185{bottom:593.715000px;}
.yc7{bottom:598.215000px;}
.y9e{bottom:599.295000px;}
.y68{bottom:601.275000px;}
.y127{bottom:602.175000px;}
.y1b4{bottom:607.935000px;}
.y168{bottom:611.535000px;}
.y184{bottom:613.515000px;}
.y125{bottom:615.855000px;}
.yc6{bottom:618.015000px;}
.y9d{bottom:619.095000px;}
.ye7{bottom:621.075000px;}
.y27{bottom:626.505000px;}
.y167{bottom:631.545000px;}
.y183{bottom:633.525000px;}
.yc5{bottom:638.025000px;}
.y9c{bottom:638.925000px;}
.ye6{bottom:640.905000px;}
.y26{bottom:641.985000px;}
.y11d{bottom:644.145000px;}
.y1b3{bottom:648.465000px;}
.y166{bottom:651.345000px;}
.y182{bottom:653.325000px;}
.y25{bottom:657.645000px;}
.yc4{bottom:657.825000px;}
.y123{bottom:658.005000px;}
.y9b{bottom:658.725000px;}
.ye5{bottom:660.705000px;}
.y1b2{bottom:668.265000px;}
.y165{bottom:671.145000px;}
.y24{bottom:673.125000px;}
.y122{bottom:677.625000px;}
.y9a{bottom:678.705000px;}
.yc3{bottom:678.885000px;}
.ye4{bottom:680.685000px;}
.y1b1{bottom:688.065000px;}
.y23{bottom:688.605000px;}
.y164{bottom:692.205000px;}
.y181{bottom:693.465000px;}
.y120{bottom:697.785000px;}
.y99{bottom:698.505000px;}
.y22{bottom:699.225000px;}
.yc2{bottom:699.765000px;}
.ye3{bottom:700.485000px;}
.y1b0{bottom:707.865000px;}
.y41{bottom:708.945000px;}
.y21{bottom:714.165000px;}
.yc1{bottom:715.245000px;}
.y11c{bottom:715.425000px;}
.y98{bottom:718.305000px;}
.ye2{bottom:721.545000px;}
.y163{bottom:724.245000px;}
.y11a{bottom:729.105000px;}
.y20{bottom:731.985000px;}
.yc0{bottom:735.045000px;}
.y162{bottom:737.385000px;}
.y97{bottom:738.105000px;}
.ye1{bottom:742.425000px;}
.y1f{bottom:744.945000px;}
.y161{bottom:750.345000px;}
.ybf{bottom:755.025000px;}
.y1e{bottom:757.905000px;}
.y160{bottom:763.305000px;}
.y115{bottom:764.925000px;}
.y1af{bottom:769.605000px;}
.y1d{bottom:771.945000px;}
.ybe{bottom:774.825000px;}
.y15f{bottom:775.365000px;}
.y96{bottom:777.885000px;}
.y118{bottom:778.605000px;}
.y1c{bottom:786.705000px;}
.y15e{bottom:789.225000px;}
.y1ae{bottom:789.405000px;}
.ybd{bottom:794.625000px;}
.y95{bottom:797.685000px;}
.y1b{bottom:797.865000px;}
.y116{bottom:798.945000px;}
.y15d{bottom:802.905000px;}
.y1ad{bottom:809.205000px;}
.ybc{bottom:814.425000px;}
.y15c{bottom:816.765000px;}
.y114{bottom:817.125000px;}
.y94{bottom:817.485000px;}
.y1a{bottom:820.725000px;}
.y1ac{bottom:829.005000px;}
.y15b{bottom:830.625000px;}
.y112{bottom:830.985000px;}
.ybb{bottom:834.225000px;}
.y93{bottom:837.285000px;}
.y15a{bottom:844.305000px;}
.y19{bottom:844.485000px;}
.y1ab{bottom:848.985000px;}
.yba{bottom:854.250000px;}
.y92{bottom:857.130000px;}
.y159{bottom:858.210000px;}
.y18{bottom:859.290000px;}
.y111{bottom:861.270000px;}
.y17{bottom:869.730000px;}
.y1aa{bottom:870.090000px;}
.y158{bottom:872.070000px;}
.y110{bottom:875.130000px;}
.yb9{bottom:875.310000px;}
.y91{bottom:877.110000px;}
.y157{bottom:885.750000px;}
.y10e{bottom:888.810000px;}
.y16{bottom:889.170000px;}
.y1a9{bottom:893.850000px;}
.yb8{bottom:896.010000px;}
.y90{bottom:896.910000px;}
.y15{bottom:899.610000px;}
.y156{bottom:913.290000px;}
.y10d{bottom:913.830000px;}
.y14{bottom:914.010000px;}
.y8f{bottom:916.710000px;}
.y155{bottom:927.150000px;}
.y10c{bottom:927.510000px;}
.y1a8{bottom:934.350000px;}
.y13{bottom:935.250000px;}
.y8e{bottom:936.510000px;}
.y154{bottom:941.010000px;}
.y10a{bottom:941.370000px;}
.y1a7{bottom:954.150000px;}
.y12{bottom:954.510000px;}
.y153{bottom:954.690000px;}
.y8d{bottom:956.310000px;}
.y152{bottom:968.550000px;}
.y108{bottom:970.350000px;}
.y1a6{bottom:974.130000px;}
.y8c{bottom:976.290000px;}
.y11{bottom:982.050000px;}
.y151{bottom:982.410000px;}
.y109{bottom:984.210000px;}
.y1a5{bottom:995.190000px;}
.y8b{bottom:996.090000px;}
.y107{bottom:997.890000px;}
.y10{bottom:1006.890000px;}
.y150{bottom:1009.950000px;}
.y105{bottom:1011.750000px;}
.y8a{bottom:1015.890000px;}
.yf{bottom:1021.110000px;}
.y14f{bottom:1023.810000px;}
.y6e{bottom:1031.760000px;}
.y89{bottom:1035.690000px;}
.ye{bottom:1036.590000px;}
.y14e{bottom:1037.490000px;}
.y101{bottom:1041.630000px;}
.yd{bottom:1052.250000px;}
.y14c{bottom:1053.690000px;}
.y88{bottom:1055.490000px;}
.y4{bottom:1069.350000px;}
.y87{bottom:1075.290000px;}
.y100{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.yb{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y84{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y83{bottom:1122.660000px;}
.h9{height:4.021875px;}
.h1e{height:4.064063px;}
.h49{height:6.257812px;}
.h5{height:13.500000px;}
.h32{height:13.680000px;}
.h30{height:13.860000px;}
.h47{height:13.896000px;}
.h1c{height:16.590234px;}
.h48{height:16.740000px;}
.h3b{height:17.640000px;}
.h37{height:18.180000px;}
.h43{height:19.440000px;}
.h3d{height:19.620000px;}
.h3c{height:20.160000px;}
.h38{height:20.340000px;}
.h42{height:20.479922px;}
.h12{height:21.114844px;}
.h45{height:21.600000px;}
.h26{height:22.140000px;}
.h34{height:25.020000px;}
.h1d{height:25.400391px;}
.h1a{height:25.699425px;}
.h2f{height:27.540000px;}
.h40{height:27.720000px;}
.h3e{height:28.296000px;}
.h33{height:28.980000px;}
.h8{height:29.158594px;}
.h25{height:29.464453px;}
.h3f{height:30.240000px;}
.h35{height:30.276000px;}
.h41{height:30.960000px;}
.h16{height:30.963516px;}
.h18{height:31.672266px;}
.h21{height:32.004492px;}
.h20{height:32.868281px;}
.h11{height:32.942109px;}
.h13{height:33.683203px;}
.h28{height:34.036523px;}
.h7{height:34.200000px;}
.h29{height:34.419375px;}
.hd{height:35.120039px;}
.h3{height:35.694141px;}
.h39{height:35.820000px;}
.h1b{height:37.705078px;}
.h23{height:38.100586px;}
.hc{height:39.313477px;}
.h31{height:41.400000px;}
.h6{height:41.726953px;}
.hf{height:42.164648px;}
.h19{height:46.251562px;}
.h2e{height:48.027656px;}
.hb{height:48.224531px;}
.h2c{height:49.255313px;}
.h15{height:50.800781px;}
.h2d{height:52.171875px;}
.h10{height:52.918594px;}
.h2a{height:52.998047px;}
.h17{height:55.291992px;}
.h2{height:59.436914px;}
.h4{height:65.884219px;}
.h36{height:66.060000px;}
.he{height:67.565039px;}
.h14{height:67.824844px;}
.ha{height:68.400000px;}
.h1f{height:72.900000px;}
.h46{height:74.736000px;}
.h2b{height:75.093750px;}
.h44{height:76.860000px;}
.h3a{height:84.960000px;}
.h24{height:87.876000px;}
.h27{height:144.900000px;}
.h22{height:396.435000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w1c{width:43.200000px;}
.w1b{width:47.340000px;}
.w1e{width:57.600000px;}
.w16{width:68.400000px;}
.w1d{width:69.156000px;}
.wf{width:76.176000px;}
.w4{width:82.080000px;}
.w1f{width:90.216000px;}
.w11{width:97.416000px;}
.w15{width:100.476000px;}
.w6{width:101.160000px;}
.w17{width:101.196000px;}
.wd{width:110.880000px;}
.we{width:130.716000px;}
.w10{width:150.120000px;}
.w7{width:154.470000px;}
.wc{width:155.370000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.w18{width:208.830000px;}
.w19{width:243.030000px;}
.w1a{width:357.915000px;}
.w14{width:451.875000px;}
.w12{width:454.425000px;}
.w8{width:532.905000px;}
.w5{width:639.870000px;}
.w13{width:720.690000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:4.252500px;}
.x8{left:8.100000px;}
.x17{left:10.800000px;}
.x40{left:12.990000px;}
.x21{left:14.760000px;}
.x2f{left:16.200000px;}
.x41{left:17.490000px;}
.x37{left:19.845000px;}
.x1c{left:21.255000px;}
.x38{left:22.905000px;}
.x34{left:23.970000px;}
.x2c{left:25.920000px;}
.x30{left:27.210000px;}
.x24{left:28.260000px;}
.x28{left:30.780000px;}
.x2e{left:32.580000px;}
.xe{left:33.659987px;}
.x25{left:36.750000px;}
.x2b{left:39.090000px;}
.x36{left:41.610000px;}
.x22{left:45.360000px;}
.x29{left:46.440000px;}
.x39{left:47.550000px;}
.xa{left:50.580000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x19{left:80.460000px;}
.x5{left:87.654000px;}
.x16{left:93.456000px;}
.x1b{left:94.896000px;}
.x4{left:108.035987px;}
.x3a{left:112.356000px;}
.xb{left:113.975987px;}
.xd{left:148.715987px;}
.xf{left:152.129987px;}
.xc{left:182.729987px;}
.x7{left:190.110000px;}
.x1{left:239.969987px;}
.x12{left:259.634987px;}
.x20{left:263.775000px;}
.x11{left:276.734987px;}
.x18{left:303.195000px;}
.x1a{left:310.395000px;}
.x35{left:316.875000px;}
.x10{left:329.654987px;}
.x3{left:354.494987px;}
.x23{left:374.655000px;}
.x2{left:401.654987px;}
.x2d{left:440.385000px;}
.x13{left:460.004987px;}
.x3b{left:470.265000px;}
.x14{left:489.164987px;}
.x15{left:490.784987px;}
.x26{left:505.365000px;}
.x3c{left:517.605000px;}
.x31{left:559.905000px;}
.x27{left:581.550000px;}
.x1d{left:620.253000px;}
.x3d{left:629.970000px;}
.x32{left:660.390000px;}
.x3e{left:687.570000px;}
.x33{left:728.790000px;}
.x2a{left:731.670000px;}
.x3f{left:734.910000px;}
.x1f{left:799.199987px;}
.x1e{left:805.319987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-11.360000pt;}
.lsc{letter-spacing:-8.640000pt;}
.lsf{letter-spacing:-0.519467pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.324267pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.079467pt;}
.lsd{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls10{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls2{letter-spacing:43.040000pt;}
.wsf{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws5{word-spacing:-9.755733pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.200533pt;}
.wsa{word-spacing:-9.078933pt;}
.ws10{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
._1e{margin-left:-2457.329493pt;}
._1f{margin-left:-1959.772587pt;}
._1c{margin-left:-559.306667pt;}
._1b{margin-left:-94.080000pt;}
._6{margin-left:-53.600000pt;}
._1d{margin-left:-14.023680pt;}
._2d{margin-left:-11.249920pt;}
._2c{margin-left:-4.512000pt;}
._8{margin-left:-2.549760pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._e{width:1.989120pt;}
._2{width:2.962347pt;}
._14{width:3.936000pt;}
._10{width:5.253973pt;}
._16{width:6.144853pt;}
._b{width:7.219413pt;}
._c{width:8.668373pt;}
._15{width:9.599147pt;}
._19{width:11.040000pt;}
._2a{width:12.242133pt;}
._18{width:14.576000pt;}
._17{width:15.904000pt;}
._23{width:17.264000pt;}
._11{width:18.220160pt;}
._28{width:19.264853pt;}
._27{width:20.185600pt;}
._24{width:21.136853pt;}
._d{width:22.039893pt;}
._20{width:23.018453pt;}
._f{width:24.050773pt;}
._a{width:25.125760pt;}
._9{width:26.135040pt;}
._26{width:27.091200pt;}
._21{width:28.786133pt;}
._22{width:30.012800pt;}
._29{width:31.330987pt;}
._12{width:32.610773pt;}
._13{width:33.586560pt;}
._3a{width:34.522880pt;}
._2b{width:35.537280pt;}
._25{width:37.072853pt;}
._32{width:38.883840pt;}
._31{width:39.786880pt;}
._41{width:40.738133pt;}
._2f{width:41.903573pt;}
._2e{width:42.920960pt;}
._3d{width:46.108160pt;}
._3e{width:47.071360pt;}
._33{width:48.087040pt;}
._3c{width:49.667200pt;}
._30{width:50.884053pt;}
._35{width:52.480000pt;}
._42{width:53.651200pt;}
._3f{width:57.182933pt;}
._4{width:58.218667pt;}
._40{width:62.203520pt;}
._3{width:63.117227pt;}
._39{width:66.506240pt;}
._38{width:67.515520pt;}
._3b{width:69.157333pt;}
._43{width:75.372373pt;}
._34{width:85.780693pt;}
._37{width:140.927360pt;}
._36{width:142.096000pt;}
._5{width:177.440000pt;}
._1a{width:254.106667pt;}
._7{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs13{font-size:5.333333pt;}
.fsf{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs11{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs12{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4e{bottom:-219.386667pt;}
.y4d{bottom:-189.306667pt;}
.y80{bottom:-162.280000pt;}
.y4c{bottom:-159.386667pt;}
.y7f{bottom:-132.200000pt;}
.y4b{bottom:-129.306667pt;}
.y7e{bottom:-102.280000pt;}
.y4a{bottom:-99.386667pt;}
.y7d{bottom:-72.360000pt;}
.y49{bottom:-69.440000pt;}
.y7c{bottom:-42.240000pt;}
.y48{bottom:-39.360000pt;}
.y82{bottom:-15.931333pt;}
.y7b{bottom:-12.320000pt;}
.y47{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y1c6{bottom:1.633333pt;}
.y104{bottom:2.240000pt;}
.y6{bottom:3.360000pt;}
.y14d{bottom:3.520000pt;}
.y121{bottom:4.000000pt;}
.y117{bottom:4.160000pt;}
.y67{bottom:4.320000pt;}
.y6f{bottom:4.773333pt;}
.y124{bottom:4.800000pt;}
.y119{bottom:5.120000pt;}
.y141{bottom:5.760000pt;}
.y46{bottom:6.720000pt;}
.y10f{bottom:7.200000pt;}
.y148{bottom:7.360000pt;}
.y102{bottom:8.320000pt;}
.y126{bottom:8.666667pt;}
.y10b{bottom:8.960000pt;}
.y140{bottom:9.280000pt;}
.y12a{bottom:9.440000pt;}
.y113{bottom:9.600000pt;}
.y12e{bottom:9.920000pt;}
.y9{bottom:11.040000pt;}
.y11b{bottom:12.000000pt;}
.y103{bottom:14.400000pt;}
.y106{bottom:14.560000pt;}
.y7a{bottom:15.200000pt;}
.y66{bottom:18.120000pt;}
.y45{bottom:19.200000pt;}
.ya{bottom:19.360000pt;}
.y7{bottom:20.640000pt;}
.y6d{bottom:20.666667pt;}
.y8{bottom:21.760000pt;}
.y79{bottom:26.880000pt;}
.y11f{bottom:27.840000pt;}
.y65{bottom:29.000000pt;}
.y144{bottom:29.306667pt;}
.y13c{bottom:30.240000pt;}
.yc{bottom:31.200000pt;}
.y44{bottom:31.520000pt;}
.y6c{bottom:32.506667pt;}
.y78{bottom:38.400000pt;}
.y11e{bottom:40.000000pt;}
.y86{bottom:42.240000pt;}
.y43{bottom:44.000000pt;}
.y6b{bottom:44.026667pt;}
.y64{bottom:44.840000pt;}
.y77{bottom:49.920000pt;}
.y5{bottom:51.040000pt;}
.y42{bottom:55.520000pt;}
.y6a{bottom:55.706667pt;}
.y81{bottom:56.693333pt;}
.y85{bottom:59.040000pt;}
.y63{bottom:60.840000pt;}
.y76{bottom:61.600000pt;}
.y69{bottom:70.906667pt;}
.y75{bottom:73.120000pt;}
.y62{bottom:74.600000pt;}
.y74{bottom:84.800000pt;}
.y61{bottom:85.480000pt;}
.y1a4{bottom:89.920000pt;}
.y1c5{bottom:90.720000pt;}
.yb7{bottom:91.840000pt;}
.ye0{bottom:92.640000pt;}
.yff{bottom:93.440000pt;}
.y73{bottom:96.320000pt;}
.y14b{bottom:97.440000pt;}
.y40{bottom:101.280000pt;}
.y60{bottom:101.320000pt;}
.y180{bottom:102.720000pt;}
.y19d{bottom:104.480000pt;}
.y1a3{bottom:107.520000pt;}
.y72{bottom:107.840000pt;}
.y14a{bottom:108.160000pt;}
.y1c4{bottom:108.320000pt;}
.yb6{bottom:109.440000pt;}
.ydf{bottom:110.240000pt;}
.yfe{bottom:111.040000pt;}
.y5f{bottom:117.160000pt;}
.y71{bottom:118.720000pt;}
.y3f{bottom:118.880000pt;}
.y17f{bottom:120.480000pt;}
.y19c{bottom:122.240000pt;}
.y1a2{bottom:125.120000pt;}
.y1c3{bottom:126.080000pt;}
.yb5{bottom:127.040000pt;}
.yde{bottom:128.000000pt;}
.yfd{bottom:128.640000pt;}
.y143{bottom:129.600000pt;}
.y5e{bottom:133.000000pt;}
.y3e{bottom:136.640000pt;}
.y17e{bottom:138.080000pt;}
.y19b{bottom:139.840000pt;}
.y149{bottom:141.760000pt;}
.y1a1{bottom:142.880000pt;}
.y1c2{bottom:143.680000pt;}
.yb4{bottom:144.666667pt;}
.ydd{bottom:145.626667pt;}
.yfc{bottom:146.426667pt;}
.y5d{bottom:149.000000pt;}
.y147{bottom:154.106667pt;}
.y3d{bottom:154.266667pt;}
.y17d{bottom:155.706667pt;}
.y19a{bottom:157.466667pt;}
.y1a0{bottom:160.506667pt;}
.y1c1{bottom:161.306667pt;}
.yb3{bottom:162.426667pt;}
.y5c{bottom:162.760000pt;}
.ydc{bottom:163.226667pt;}
.yfb{bottom:164.026667pt;}
.y146{bottom:171.546667pt;}
.y3c{bottom:171.866667pt;}
.y17c{bottom:173.306667pt;}
.y5b{bottom:173.640000pt;}
.y199{bottom:175.066667pt;}
.y19f{bottom:178.106667pt;}
.y1c0{bottom:178.906667pt;}
.yb2{bottom:180.026667pt;}
.ydb{bottom:180.826667pt;}
.yfa{bottom:182.746667pt;}
.y145{bottom:183.706667pt;}
.y3b{bottom:189.466667pt;}
.y5a{bottom:189.480000pt;}
.y17b{bottom:190.906667pt;}
.y198{bottom:192.666667pt;}
.y13b{bottom:196.026667pt;}
.y1bf{bottom:196.506667pt;}
.y19e{bottom:196.826667pt;}
.yb1{bottom:197.626667pt;}
.yda{bottom:198.426667pt;}
.y59{bottom:205.320000pt;}
.y3a{bottom:207.066667pt;}
.y142{bottom:208.346667pt;}
.y17a{bottom:208.666667pt;}
.y197{bottom:210.426667pt;}
.yb0{bottom:215.226667pt;}
.y1be{bottom:215.386667pt;}
.yd9{bottom:216.186667pt;}
.yf9{bottom:218.746667pt;}
.y13f{bottom:220.506667pt;}
.y58{bottom:221.186667pt;}
.y39{bottom:224.826667pt;}
.y179{bottom:226.266667pt;}
.y196{bottom:228.026667pt;}
.yaf{bottom:232.826667pt;}
.yd8{bottom:233.786667pt;}
.yf8{bottom:236.346667pt;}
.y57{bottom:237.186667pt;}
.y13e{bottom:239.706667pt;}
.y38{bottom:242.426667pt;}
.y178{bottom:243.866667pt;}
.y195{bottom:245.626667pt;}
.yae{bottom:250.586667pt;}
.yd7{bottom:251.386667pt;}
.y13d{bottom:252.026667pt;}
.y56{bottom:253.026667pt;}
.yf7{bottom:254.106667pt;}
.y37{bottom:260.026667pt;}
.y177{bottom:261.466667pt;}
.y194{bottom:263.226667pt;}
.y13a{bottom:266.266667pt;}
.y55{bottom:266.786667pt;}
.yad{bottom:268.186667pt;}
.yd6{bottom:268.986667pt;}
.yf6{bottom:271.706667pt;}
.y36{bottom:277.626667pt;}
.y54{bottom:277.666667pt;}
.y176{bottom:279.066667pt;}
.y193{bottom:280.826667pt;}
.yac{bottom:285.786667pt;}
.yd5{bottom:286.586667pt;}
.yf5{bottom:289.306667pt;}
.y139{bottom:290.106667pt;}
.y53{bottom:293.506667pt;}
.y35{bottom:295.226667pt;}
.y175{bottom:296.826667pt;}
.y192{bottom:298.586667pt;}
.yab{bottom:303.386667pt;}
.y138{bottom:303.866667pt;}
.yd4{bottom:304.346667pt;}
.y1bd{bottom:305.306667pt;}
.yf4{bottom:306.906667pt;}
.y52{bottom:309.346667pt;}
.y34{bottom:314.106667pt;}
.y174{bottom:314.426667pt;}
.y191{bottom:316.186667pt;}
.yaa{bottom:320.986667pt;}
.yd3{bottom:321.946667pt;}
.y137{bottom:322.906667pt;}
.yf3{bottom:324.506667pt;}
.y51{bottom:325.346667pt;}
.y33{bottom:329.466667pt;}
.y173{bottom:332.026667pt;}
.y136{bottom:333.626667pt;}
.y190{bottom:333.786667pt;}
.y32{bottom:337.946667pt;}
.ya9{bottom:338.746667pt;}
.yd2{bottom:339.546667pt;}
.y4f{bottom:340.506667pt;}
.y50{bottom:341.186667pt;}
.y1bc{bottom:341.466667pt;}
.yf2{bottom:342.266667pt;}
.y135{bottom:344.346667pt;}
.y172{bottom:349.666667pt;}
.y18f{bottom:351.426667pt;}
.y133{bottom:355.106667pt;}
.ya8{bottom:356.386667pt;}
.yd1{bottom:357.186667pt;}
.y31{bottom:358.466667pt;}
.y1bb{bottom:359.106667pt;}
.yf1{bottom:359.906667pt;}
.y134{bottom:367.266667pt;}
.y18e{bottom:369.026667pt;}
.y30{bottom:371.106667pt;}
.ya7{bottom:373.986667pt;}
.yd0{bottom:374.786667pt;}
.yf0{bottom:377.506667pt;}
.y1ba{bottom:377.826667pt;}
.y132{bottom:379.586667pt;}
.y171{bottom:385.026667pt;}
.y18d{bottom:386.786667pt;}
.y2f{bottom:389.986667pt;}
.ya6{bottom:391.586667pt;}
.y131{bottom:391.906667pt;}
.ycf{bottom:392.546667pt;}
.yef{bottom:395.106667pt;}
.y70{bottom:397.026667pt;}
.y170{bottom:402.626667pt;}
.y18c{bottom:404.386667pt;}
.y2e{bottom:408.386667pt;}
.ya5{bottom:409.186667pt;}
.yce{bottom:410.146667pt;}
.yee{bottom:412.706667pt;}
.y1b9{bottom:413.826667pt;}
.y130{bottom:419.426667pt;}
.y16f{bottom:420.226667pt;}
.y18b{bottom:421.986667pt;}
.y2d{bottom:425.826667pt;}
.ya4{bottom:426.946667pt;}
.ycd{bottom:427.746667pt;}
.yed{bottom:430.466667pt;}
.y1b8{bottom:431.426667pt;}
.y12f{bottom:431.746667pt;}
.y16e{bottom:437.826667pt;}
.y2c{bottom:438.146667pt;}
.y18a{bottom:439.586667pt;}
.y12d{bottom:443.906667pt;}
.ya3{bottom:444.546667pt;}
.ycc{bottom:445.346667pt;}
.y2b{bottom:445.666667pt;}
.yec{bottom:448.066667pt;}
.y1b7{bottom:449.186667pt;}
.y16d{bottom:455.426667pt;}
.y189{bottom:457.186667pt;}
.ya2{bottom:462.146667pt;}
.ycb{bottom:464.066667pt;}
.y2a{bottom:466.466667pt;}
.yeb{bottom:466.786667pt;}
.y12c{bottom:471.426667pt;}
.y16c{bottom:473.186667pt;}
.y188{bottom:474.946667pt;}
.ya1{bottom:479.746667pt;}
.yca{bottom:482.786667pt;}
.y12b{bottom:483.746667pt;}
.yea{bottom:485.346667pt;}
.y1b6{bottom:485.506667pt;}
.y29{bottom:487.106667pt;}
.y16b{bottom:490.786667pt;}
.y187{bottom:492.546667pt;}
.y129{bottom:496.066667pt;}
.yc9{bottom:496.546667pt;}
.ya0{bottom:497.346667pt;}
.ye9{bottom:499.106667pt;}
.y28{bottom:507.746667pt;}
.y16a{bottom:508.386667pt;}
.y186{bottom:510.146667pt;}
.yc8{bottom:514.146667pt;}
.y9f{bottom:515.106667pt;}
.ye8{bottom:516.866667pt;}
.y1b5{bottom:521.506667pt;}
.y128{bottom:522.946667pt;}
.y169{bottom:525.986667pt;}
.y185{bottom:527.746667pt;}
.yc7{bottom:531.746667pt;}
.y9e{bottom:532.706667pt;}
.y68{bottom:534.466667pt;}
.y127{bottom:535.266667pt;}
.y1b4{bottom:540.386667pt;}
.y168{bottom:543.586667pt;}
.y184{bottom:545.346667pt;}
.y125{bottom:547.426667pt;}
.yc6{bottom:549.346667pt;}
.y9d{bottom:550.306667pt;}
.ye7{bottom:552.066667pt;}
.y27{bottom:556.893333pt;}
.y167{bottom:561.373333pt;}
.y183{bottom:563.133333pt;}
.yc5{bottom:567.133333pt;}
.y9c{bottom:567.933333pt;}
.ye6{bottom:569.693333pt;}
.y26{bottom:570.653333pt;}
.y11d{bottom:572.573333pt;}
.y1b3{bottom:576.413333pt;}
.y166{bottom:578.973333pt;}
.y182{bottom:580.733333pt;}
.y25{bottom:584.573333pt;}
.yc4{bottom:584.733333pt;}
.y123{bottom:584.893333pt;}
.y9b{bottom:585.533333pt;}
.ye5{bottom:587.293333pt;}
.y1b2{bottom:594.013333pt;}
.y165{bottom:596.573333pt;}
.y24{bottom:598.333333pt;}
.y122{bottom:602.333333pt;}
.y9a{bottom:603.293333pt;}
.yc3{bottom:603.453333pt;}
.ye4{bottom:605.053333pt;}
.y1b1{bottom:611.613333pt;}
.y23{bottom:612.093333pt;}
.y164{bottom:615.293333pt;}
.y181{bottom:616.413333pt;}
.y120{bottom:620.253333pt;}
.y99{bottom:620.893333pt;}
.y22{bottom:621.533333pt;}
.yc2{bottom:622.013333pt;}
.ye3{bottom:622.653333pt;}
.y1b0{bottom:629.213333pt;}
.y41{bottom:630.173333pt;}
.y21{bottom:634.813333pt;}
.yc1{bottom:635.773333pt;}
.y11c{bottom:635.933333pt;}
.y98{bottom:638.493333pt;}
.ye2{bottom:641.373333pt;}
.y163{bottom:643.773333pt;}
.y11a{bottom:648.093333pt;}
.y20{bottom:650.653333pt;}
.yc0{bottom:653.373333pt;}
.y162{bottom:655.453333pt;}
.y97{bottom:656.093333pt;}
.ye1{bottom:659.933333pt;}
.y1f{bottom:662.173333pt;}
.y161{bottom:666.973333pt;}
.ybf{bottom:671.133333pt;}
.y1e{bottom:673.693333pt;}
.y160{bottom:678.493333pt;}
.y115{bottom:679.933333pt;}
.y1af{bottom:684.093333pt;}
.y1d{bottom:686.173333pt;}
.ybe{bottom:688.733333pt;}
.y15f{bottom:689.213333pt;}
.y96{bottom:691.453333pt;}
.y118{bottom:692.093333pt;}
.y1c{bottom:699.293333pt;}
.y15e{bottom:701.533333pt;}
.y1ae{bottom:701.693333pt;}
.ybd{bottom:706.333333pt;}
.y95{bottom:709.053333pt;}
.y1b{bottom:709.213333pt;}
.y116{bottom:710.173333pt;}
.y15d{bottom:713.693333pt;}
.y1ad{bottom:719.293333pt;}
.ybc{bottom:723.933333pt;}
.y15c{bottom:726.013333pt;}
.y114{bottom:726.333333pt;}
.y94{bottom:726.653333pt;}
.y1a{bottom:729.533333pt;}
.y1ac{bottom:736.893333pt;}
.y15b{bottom:738.333333pt;}
.y112{bottom:738.653333pt;}
.ybb{bottom:741.533333pt;}
.y93{bottom:744.253333pt;}
.y15a{bottom:750.493333pt;}
.y19{bottom:750.653333pt;}
.y1ab{bottom:754.653333pt;}
.yba{bottom:759.333333pt;}
.y92{bottom:761.893333pt;}
.y159{bottom:762.853333pt;}
.y18{bottom:763.813333pt;}
.y111{bottom:765.573333pt;}
.y17{bottom:773.093333pt;}
.y1aa{bottom:773.413333pt;}
.y158{bottom:775.173333pt;}
.y110{bottom:777.893333pt;}
.yb9{bottom:778.053333pt;}
.y91{bottom:779.653333pt;}
.y157{bottom:787.333333pt;}
.y10e{bottom:790.053333pt;}
.y16{bottom:790.373333pt;}
.y1a9{bottom:794.533333pt;}
.yb8{bottom:796.453333pt;}
.y90{bottom:797.253333pt;}
.y15{bottom:799.653333pt;}
.y156{bottom:811.813333pt;}
.y10d{bottom:812.293333pt;}
.y14{bottom:812.453333pt;}
.y8f{bottom:814.853333pt;}
.y155{bottom:824.133333pt;}
.y10c{bottom:824.453333pt;}
.y1a8{bottom:830.533333pt;}
.y13{bottom:831.333333pt;}
.y8e{bottom:832.453333pt;}
.y154{bottom:836.453333pt;}
.y10a{bottom:836.773333pt;}
.y1a7{bottom:848.133333pt;}
.y12{bottom:848.453333pt;}
.y153{bottom:848.613333pt;}
.y8d{bottom:850.053333pt;}
.y152{bottom:860.933333pt;}
.y108{bottom:862.533333pt;}
.y1a6{bottom:865.893333pt;}
.y8c{bottom:867.813333pt;}
.y11{bottom:872.933333pt;}
.y151{bottom:873.253333pt;}
.y109{bottom:874.853333pt;}
.y1a5{bottom:884.613333pt;}
.y8b{bottom:885.413333pt;}
.y107{bottom:887.013333pt;}
.y10{bottom:895.013333pt;}
.y150{bottom:897.733333pt;}
.y105{bottom:899.333333pt;}
.y8a{bottom:903.013333pt;}
.yf{bottom:907.653333pt;}
.y14f{bottom:910.053333pt;}
.y6e{bottom:917.120000pt;}
.y89{bottom:920.613333pt;}
.ye{bottom:921.413333pt;}
.y14e{bottom:922.213333pt;}
.y101{bottom:925.893333pt;}
.yd{bottom:935.333333pt;}
.y14c{bottom:936.613333pt;}
.y88{bottom:938.213333pt;}
.y4{bottom:950.533333pt;}
.y87{bottom:955.813333pt;}
.y100{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.yb{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y84{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y83{bottom:997.920000pt;}
.h9{height:3.575000pt;}
.h1e{height:3.612500pt;}
.h49{height:5.562500pt;}
.h5{height:12.000000pt;}
.h32{height:12.160000pt;}
.h30{height:12.320000pt;}
.h47{height:12.352000pt;}
.h1c{height:14.746875pt;}
.h48{height:14.880000pt;}
.h3b{height:15.680000pt;}
.h37{height:16.160000pt;}
.h43{height:17.280000pt;}
.h3d{height:17.440000pt;}
.h3c{height:17.920000pt;}
.h38{height:18.080000pt;}
.h42{height:18.204375pt;}
.h12{height:18.768750pt;}
.h45{height:19.200000pt;}
.h26{height:19.680000pt;}
.h34{height:22.240000pt;}
.h1d{height:22.578125pt;}
.h1a{height:22.843934pt;}
.h2f{height:24.480000pt;}
.h40{height:24.640000pt;}
.h3e{height:25.152000pt;}
.h33{height:25.760000pt;}
.h8{height:25.918750pt;}
.h25{height:26.190625pt;}
.h3f{height:26.880000pt;}
.h35{height:26.912000pt;}
.h41{height:27.520000pt;}
.h16{height:27.523125pt;}
.h18{height:28.153125pt;}
.h21{height:28.448437pt;}
.h20{height:29.216250pt;}
.h11{height:29.281875pt;}
.h13{height:29.940625pt;}
.h28{height:30.254687pt;}
.h7{height:30.400000pt;}
.h29{height:30.595000pt;}
.hd{height:31.217812pt;}
.h3{height:31.728125pt;}
.h39{height:31.840000pt;}
.h1b{height:33.515625pt;}
.h23{height:33.867188pt;}
.hc{height:34.945312pt;}
.h31{height:36.800000pt;}
.h6{height:37.090625pt;}
.hf{height:37.479688pt;}
.h19{height:41.112500pt;}
.h2e{height:42.691250pt;}
.hb{height:42.866250pt;}
.h2c{height:43.782500pt;}
.h15{height:45.156250pt;}
.h2d{height:46.375000pt;}
.h10{height:47.038750pt;}
.h2a{height:47.109375pt;}
.h17{height:49.148438pt;}
.h2{height:52.832812pt;}
.h4{height:58.563750pt;}
.h36{height:58.720000pt;}
.he{height:60.057813pt;}
.h14{height:60.288750pt;}
.ha{height:60.800000pt;}
.h1f{height:64.800000pt;}
.h46{height:66.432000pt;}
.h2b{height:66.750000pt;}
.h44{height:68.320000pt;}
.h3a{height:75.520000pt;}
.h24{height:78.112000pt;}
.h27{height:128.800000pt;}
.h22{height:352.386667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w1c{width:38.400000pt;}
.w1b{width:42.080000pt;}
.w1e{width:51.200000pt;}
.w16{width:60.800000pt;}
.w1d{width:61.472000pt;}
.wf{width:67.712000pt;}
.w4{width:72.960000pt;}
.w1f{width:80.192000pt;}
.w11{width:86.592000pt;}
.w15{width:89.312000pt;}
.w6{width:89.920000pt;}
.w17{width:89.952000pt;}
.wd{width:98.560000pt;}
.we{width:116.192000pt;}
.w10{width:133.440000pt;}
.w7{width:137.306667pt;}
.wc{width:138.106667pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.w18{width:185.626667pt;}
.w19{width:216.026667pt;}
.w1a{width:318.146667pt;}
.w14{width:401.666667pt;}
.w12{width:403.933333pt;}
.w8{width:473.693333pt;}
.w5{width:568.773333pt;}
.w13{width:640.613333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:3.780000pt;}
.x8{left:7.200000pt;}
.x17{left:9.600000pt;}
.x40{left:11.546667pt;}
.x21{left:13.120000pt;}
.x2f{left:14.400000pt;}
.x41{left:15.546667pt;}
.x37{left:17.640000pt;}
.x1c{left:18.893333pt;}
.x38{left:20.360000pt;}
.x34{left:21.306667pt;}
.x2c{left:23.040000pt;}
.x30{left:24.186667pt;}
.x24{left:25.120000pt;}
.x28{left:27.360000pt;}
.x2e{left:28.960000pt;}
.xe{left:29.919988pt;}
.x25{left:32.666667pt;}
.x2b{left:34.746667pt;}
.x36{left:36.986667pt;}
.x22{left:40.320000pt;}
.x29{left:41.280000pt;}
.x39{left:42.266667pt;}
.xa{left:44.960000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x19{left:71.520000pt;}
.x5{left:77.914667pt;}
.x16{left:83.072000pt;}
.x1b{left:84.352000pt;}
.x4{left:96.031988pt;}
.x3a{left:99.872000pt;}
.xb{left:101.311988pt;}
.xd{left:132.191988pt;}
.xf{left:135.226655pt;}
.xc{left:162.426655pt;}
.x7{left:168.986667pt;}
.x1{left:213.306655pt;}
.x12{left:230.786655pt;}
.x20{left:234.466667pt;}
.x11{left:245.986655pt;}
.x18{left:269.506667pt;}
.x1a{left:275.906667pt;}
.x35{left:281.666667pt;}
.x10{left:293.026655pt;}
.x3{left:315.106655pt;}
.x23{left:333.026667pt;}
.x2{left:357.026655pt;}
.x2d{left:391.453333pt;}
.x13{left:408.893322pt;}
.x3b{left:418.013333pt;}
.x14{left:434.813322pt;}
.x15{left:436.253322pt;}
.x26{left:449.213333pt;}
.x3c{left:460.093333pt;}
.x31{left:497.693333pt;}
.x27{left:516.933333pt;}
.x1d{left:551.336000pt;}
.x3d{left:559.973333pt;}
.x32{left:587.013333pt;}
.x3e{left:611.173333pt;}
.x33{left:647.813333pt;}
.x2a{left:650.373333pt;}
.x3f{left:653.253333pt;}
.x1f{left:710.399988pt;}
.x1e{left:715.839988pt;}
}




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