
    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_f296df58ab61c3c0b40cbaed.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_9ea90cfbb766b9218574fc08.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_abcbd50d6e88642aa5c4baf7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_8638b298ca7c7a7324f077fb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6daaa9965a1136881648485c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_667a94c5a6bcd56ec88e14d2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_23f573baf3d82675959cdb5e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.898438;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_2cee9cf9d834319c5a69344e.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_01cc51e2a29e09455c8f1b31.woff')format("woff");}.ff9{font-family:ff9;line-height:0.859375;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_d421b428a5fd9b4e50f6ed6c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.888672;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_f970cb8d82fd8d967b466907.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a05ae235b3a29fbd8f871d8.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m2{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:-30.240000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.108000px;}
.lse{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls3{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.440000px;}
.ls8{letter-spacing:25.308000px;}
.ls7{letter-spacing:28.062720px;}
.ls12{letter-spacing:52.668000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.760000px;}
.wsb{word-spacing:-54.000000px;}
.ws5{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.004000px;}
.wsc{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.284000px;}
.ws10{word-spacing:-12.672000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._26{margin-left:-2.772000px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._6{width:2.980560px;}
._23{width:3.994560px;}
._7{width:4.994880px;}
._3{width:6.858960px;}
._2{width:8.007840px;}
._8{width:9.681120px;}
._a{width:10.803120px;}
._b{width:12.011760px;}
._c{width:13.027680px;}
._10{width:14.765520px;}
._9{width:15.942480px;}
._14{width:17.442000px;}
._4{width:18.691440px;}
._5{width:19.900080px;}
._1c{width:21.600000px;}
._13{width:22.950000px;}
._1b{width:24.948000px;}
._21{width:25.998000px;}
._e{width:27.054000px;}
._d{width:28.134000px;}
._1f{width:29.322000px;}
._1a{width:30.888000px;}
._11{width:31.914000px;}
._f{width:33.534000px;}
._1e{width:35.070000px;}
._1d{width:36.342000px;}
._15{width:38.178000px;}
._12{width:39.636000px;}
._18{width:40.770000px;}
._17{width:42.498000px;}
._16{width:43.740000px;}
._19{width:44.928000px;}
._20{width:46.974000px;}
._28{width:48.114000px;}
._27{width:49.410000px;}
._2c{width:51.462000px;}
._2d{width:52.488000px;}
._2a{width:56.646000px;}
._29{width:57.726000px;}
._25{width:60.048000px;}
._24{width:61.290000px;}
._2e{width:66.906000px;}
._30{width:85.698000px;}
._2f{width:86.832000px;}
._2b{width:137.388000px;}
._22{width:985.338000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fsb{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y11a{bottom:9.000000px;}
.y123{bottom:9.180000px;}
.y12c{bottom:9.345000px;}
.y11f{bottom:9.360000px;}
.y11e{bottom:9.390000px;}
.ye8{bottom:10.065000px;}
.yec{bottom:10.080000px;}
.ye3{bottom:10.245000px;}
.y155{bottom:11.160000px;}
.ye6{bottom:11.325000px;}
.yee{bottom:11.340000px;}
.y157{bottom:11.520000px;}
.y175{bottom:11.685000px;}
.y13d{bottom:11.700000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yea{bottom:20.160000px;}
.y11c{bottom:23.400000px;}
.yf0{bottom:28.980000px;}
.ye5{bottom:29.145000px;}
.yed{bottom:29.160000px;}
.ye7{bottom:29.505000px;}
.yeb{bottom:29.520000px;}
.y129{bottom:37.605000px;}
.y121{bottom:37.620000px;}
.yf2{bottom:37.980000px;}
.y5{bottom:39.780000px;}
.y43{bottom:42.120000px;}
.yf1{bottom:48.060000px;}
.y1{bottom:60.660000px;}
.y40{bottom:92.190000px;}
.y13a{bottom:105.660000px;}
.y17f{bottom:107.460000px;}
.y1d5{bottom:108.000000px;}
.y9b{bottom:108.180000px;}
.yef{bottom:109.260000px;}
.y187{bottom:109.980000px;}
.y3f{bottom:111.990000px;}
.y2d{bottom:120.600000px;}
.y34{bottom:123.480000px;}
.y1f3{bottom:123.660000px;}
.y17e{bottom:125.280000px;}
.y1d4{bottom:125.820000px;}
.y7f{bottom:126.000000px;}
.y186{bottom:127.800000px;}
.y3e{bottom:131.790000px;}
.y136{bottom:132.840000px;}
.y35{bottom:134.820000px;}
.y1f2{bottom:141.480000px;}
.y17d{bottom:143.100000px;}
.y1d3{bottom:143.640000px;}
.y1b0{bottom:143.820000px;}
.y9a{bottom:144.000000px;}
.y185{bottom:145.620000px;}
.y2c{bottom:147.420000px;}
.y135{bottom:150.840000px;}
.y3d{bottom:151.770000px;}
.y7e{bottom:153.000000px;}
.y21c{bottom:153.540000px;}
.y44{bottom:155.520000px;}
.y33{bottom:156.060000px;}
.y1f1{bottom:159.300000px;}
.y1d2{bottom:161.460000px;}
.y1af{bottom:161.640000px;}
.y99{bottom:161.820000px;}
.y184{bottom:163.440000px;}
.y134{bottom:168.660000px;}
.y17c{bottom:170.100000px;}
.y7d{bottom:170.820000px;}
.y3c{bottom:171.570000px;}
.y32{bottom:173.880000px;}
.y2b{bottom:174.240000px;}
.ye9{bottom:174.780000px;}
.y42{bottom:176.940000px;}
.y1f0{bottom:177.300000px;}
.y1ae{bottom:179.460000px;}
.y98{bottom:179.640000px;}
.y21b{bottom:180.360000px;}
.y183{bottom:181.260000px;}
.y133{bottom:186.480000px;}
.y17b{bottom:187.920000px;}
.y7c{bottom:188.640000px;}
.y139{bottom:188.820000px;}
.y3b{bottom:191.370000px;}
.y1ef{bottom:195.120000px;}
.y1ad{bottom:197.280000px;}
.y97{bottom:197.460000px;}
.y182{bottom:199.080000px;}
.y2a{bottom:201.060000px;}
.y132{bottom:205.590000px;}
.y17a{bottom:205.770000px;}
.y7b{bottom:206.490000px;}
.y138{bottom:206.670000px;}
.y41{bottom:207.180000px;}
.y21a{bottom:207.390000px;}
.y3a{bottom:211.170000px;}
.y1d1{bottom:214.230000px;}
.y96{bottom:215.310000px;}
.y181{bottom:217.110000px;}
.y31{bottom:218.730000px;}
.ye4{bottom:222.525000px;}
.y7a{bottom:224.310000px;}
.y131{bottom:224.490000px;}
.y179{bottom:224.850000px;}
.y29{bottom:228.090000px;}
.y39{bottom:230.970000px;}
.y1d0{bottom:232.050000px;}
.y1ac{bottom:233.130000px;}
.y95{bottom:233.310000px;}
.y219{bottom:234.210000px;}
.y180{bottom:234.930000px;}
.y79{bottom:242.310000px;}
.y178{bottom:247.905000px;}
.y1cf{bottom:249.870000px;}
.y1ab{bottom:250.590000px;}
.y38{bottom:250.950000px;}
.y94{bottom:251.130000px;}
.y28{bottom:254.910000px;}
.y78{bottom:260.130000px;}
.y218{bottom:261.030000px;}
.y30{bottom:263.550000px;}
.y1ce{bottom:267.690000px;}
.y1ee{bottom:268.770000px;}
.y93{bottom:268.950000px;}
.ye2{bottom:270.225000px;}
.y37{bottom:270.750000px;}
.y130{bottom:277.770000px;}
.y77{bottom:277.950000px;}
.y137{bottom:278.130000px;}
.y177{bottom:278.505000px;}
.y27{bottom:281.730000px;}
.y1cd{bottom:285.510000px;}
.y1ed{bottom:286.590000px;}
.y92{bottom:286.770000px;}
.y217{bottom:287.850000px;}
.y1aa{bottom:295.590000px;}
.y76{bottom:295.770000px;}
.y12d{bottom:300.105000px;}
.y36{bottom:300.990000px;}
.y1cc{bottom:303.510000px;}
.y91{bottom:304.590000px;}
.ye1{bottom:304.770000px;}
.y1ec{bottom:306.570000px;}
.y26{bottom:308.550000px;}
.y176{bottom:309.105000px;}
.y1a9{bottom:313.410000px;}
.y75{bottom:313.590000px;}
.y216{bottom:314.670000px;}
.y2f{bottom:317.370000px;}
.y1cb{bottom:321.330000px;}
.y90{bottom:322.410000px;}
.y12f{bottom:328.365000px;}
.ybc{bottom:329.430000px;}
.y74{bottom:331.410000px;}
.y25{bottom:335.730000px;}
.y1ca{bottom:339.150000px;}
.y1eb{bottom:339.330000px;}
.y174{bottom:339.705000px;}
.y8f{bottom:340.410000px;}
.y215{bottom:341.670000px;}
.y2e{bottom:344.190000px;}
.y1a8{bottom:349.230000px;}
.y73{bottom:349.410000px;}
.y24{bottom:353.550000px;}
.y12e{bottom:356.625000px;}
.y1ea{bottom:357.150000px;}
.y8e{bottom:358.230000px;}
.y1c9{bottom:365.970000px;}
.y1a7{bottom:367.050000px;}
.y72{bottom:367.230000px;}
.y214{bottom:368.490000px;}
.y173{bottom:370.305000px;}
.y23{bottom:371.190000px;}
.y1e9{bottom:374.970000px;}
.y8d{bottom:376.050000px;}
.y1c8{bottom:383.790000px;}
.y1a6{bottom:384.870000px;}
.y128{bottom:384.885000px;}
.y71{bottom:385.050000px;}
.y213{bottom:386.310000px;}
.y1e8{bottom:392.790000px;}
.y1c7{bottom:401.610000px;}
.y1a5{bottom:402.690000px;}
.y70{bottom:402.870000px;}
.y212{bottom:404.130000px;}
.y172{bottom:406.110000px;}
.y22{bottom:406.830000px;}
.y1e7{bottom:410.610000px;}
.y12b{bottom:413.145000px;}
.y1c6{bottom:419.610000px;}
.y6f{bottom:420.690000px;}
.y211{bottom:421.950000px;}
.y21{bottom:424.650000px;}
.y1e6{bottom:428.610000px;}
.y167{bottom:433.290000px;}
.y1c5{bottom:437.430000px;}
.y1a4{bottom:438.510000px;}
.y6e{bottom:438.690000px;}
.y210{bottom:439.770000px;}
.y12a{bottom:441.435000px;}
.y171{bottom:442.335000px;}
.y20{bottom:444.315000px;}
.y1e5{bottom:446.475000px;}
.y166{bottom:451.335000px;}
.y1c4{bottom:455.295000px;}
.y1a3{bottom:456.375000px;}
.y8c{bottom:456.555000px;}
.y20f{bottom:457.815000px;}
.y170{bottom:460.335000px;}
.y1e4{bottom:464.295000px;}
.y6d{bottom:465.555000px;}
.y1f{bottom:468.255000px;}
.y165{bottom:469.155000px;}
.y125{bottom:469.695000px;}
.y1c3{bottom:473.115000px;}
.y8b{bottom:474.375000px;}
.y20e{bottom:475.635000px;}
.y16f{bottom:478.155000px;}
.y1a2{bottom:483.195000px;}
.y6c{bottom:483.375000px;}
.y164{bottom:486.975000px;}
.y1c2{bottom:490.935000px;}
.y1e3{bottom:491.115000px;}
.y1e{bottom:491.835000px;}
.y8a{bottom:492.195000px;}
.y20d{bottom:493.455000px;}
.y16e{bottom:495.975000px;}
.y127{bottom:497.955000px;}
.y1a1{bottom:501.015000px;}
.y6b{bottom:501.195000px;}
.y163{bottom:504.795000px;}
.y1c1{bottom:508.575000px;}
.y1e2{bottom:508.935000px;}
.y89{bottom:510.015000px;}
.y20c{bottom:511.275000px;}
.y16d{bottom:513.795000px;}
.ye0{bottom:516.495000px;}
.y1d{bottom:518.115000px;}
.y1a0{bottom:518.835000px;}
.y6a{bottom:519.015000px;}
.y162{bottom:522.615000px;}
.y126{bottom:526.215000px;}
.y1e1{bottom:526.935000px;}
.y88{bottom:527.835000px;}
.y20b{bottom:529.095000px;}
.y16c{bottom:531.615000px;}
.ydf{bottom:534.315000px;}
.y1c0{bottom:535.755000px;}
.y69{bottom:536.835000px;}
.y161{bottom:540.435000px;}
.y1e0{bottom:544.755000px;}
.y87{bottom:545.835000px;}
.y20a{bottom:546.915000px;}
.y1c{bottom:548.895000px;}
.y16b{bottom:549.435000px;}
.yde{bottom:552.135000px;}
.y1bf{bottom:553.575000px;}
.y120{bottom:554.475000px;}
.y19f{bottom:554.655000px;}
.y68{bottom:554.835000px;}
.y1df{bottom:562.575000px;}
.y86{bottom:563.655000px;}
.y209{bottom:564.915000px;}
.y160{bottom:567.435000px;}
.ydd{bottom:569.955000px;}
.ybb{bottom:570.855000px;}
.y1be{bottom:571.395000px;}
.y19e{bottom:572.475000px;}
.y67{bottom:572.655000px;}
.y1de{bottom:580.395000px;}
.y85{bottom:581.115000px;}
.y124{bottom:582.735000px;}
.y15f{bottom:585.255000px;}
.ydc{bottom:587.955000px;}
.y1bd{bottom:589.215000px;}
.y19d{bottom:590.295000px;}
.y66{bottom:590.475000px;}
.y1b{bottom:597.855000px;}
.yba{bottom:598.035000px;}
.y1dd{bottom:598.215000px;}
.y84{bottom:598.935000px;}
.y208{bottom:600.555000px;}
.y15e{bottom:603.075000px;}
.ydb{bottom:605.775000px;}
.y1bc{bottom:607.035000px;}
.y65{bottom:608.295000px;}
.y122{bottom:611.175000px;}
.y16a{bottom:612.075000px;}
.yb9{bottom:616.035000px;}
.y19c{bottom:617.115000px;}
.y207{bottom:618.375000px;}
.y15d{bottom:620.895000px;}
.yda{bottom:623.595000px;}
.y1bb{bottom:625.035000px;}
.y64{bottom:626.115000px;}
.y169{bottom:629.895000px;}
.yb8{bottom:633.855000px;}
.y1dc{bottom:634.035000px;}
.y19b{bottom:635.115000px;}
.y1a{bottom:636.195000px;}
.y15c{bottom:638.715000px;}
.y11b{bottom:639.435000px;}
.yd9{bottom:641.415000px;}
.y63{bottom:644.115000px;}
.y168{bottom:647.715000px;}
.y1ba{bottom:651.855000px;}
.y19a{bottom:652.935000px;}
.y206{bottom:654.195000px;}
.yd8{bottom:659.235000px;}
.yb7{bottom:660.675000px;}
.y15b{bottom:660.855000px;}
.y62{bottom:661.935000px;}
.y11d{bottom:667.695000px;}
.y1b9{bottom:669.675000px;}
.y199{bottom:670.755000px;}
.y205{bottom:672.015000px;}
.yd7{bottom:676.905000px;}
.y19{bottom:677.085000px;}
.yb6{bottom:678.525000px;}
.y1db{bottom:678.705000px;}
.y61{bottom:679.785000px;}
.y1b8{bottom:687.525000px;}
.y198{bottom:688.605000px;}
.y204{bottom:689.865000px;}
.y15a{bottom:691.485000px;}
.y119{bottom:695.985000px;}
.yb5{bottom:696.345000px;}
.y1da{bottom:696.525000px;}
.y60{bottom:697.605000px;}
.yd6{bottom:704.085000px;}
.y1b7{bottom:705.345000px;}
.y197{bottom:706.425000px;}
.y203{bottom:707.685000px;}
.y1d9{bottom:714.345000px;}
.y5f{bottom:715.425000px;}
.yd5{bottom:721.905000px;}
.y159{bottom:722.085000px;}
.y18{bottom:723.165000px;}
.y196{bottom:724.245000px;}
.y202{bottom:725.505000px;}
.y118{bottom:731.085000px;}
.y1d8{bottom:732.165000px;}
.y5e{bottom:733.245000px;}
.yd4{bottom:739.725000px;}
.yb4{bottom:741.165000px;}
.y195{bottom:742.245000px;}
.y201{bottom:743.325000px;}
.y1d7{bottom:750.165000px;}
.y17{bottom:751.065000px;}
.y5d{bottom:751.245000px;}
.y158{bottom:752.685000px;}
.yd3{bottom:757.545000px;}
.yb3{bottom:758.985000px;}
.y194{bottom:760.065000px;}
.y200{bottom:761.325000px;}
.y1d6{bottom:767.985000px;}
.y5c{bottom:769.065000px;}
.yd2{bottom:775.365000px;}
.y117{bottom:775.545000px;}
.yb2{bottom:776.805000px;}
.y193{bottom:777.885000px;}
.y16{bottom:778.785000px;}
.y1ff{bottom:779.145000px;}
.y156{bottom:783.285000px;}
.y1b6{bottom:785.805000px;}
.y5b{bottom:786.885000px;}
.y116{bottom:793.365000px;}
.y106{bottom:794.625000px;}
.y192{bottom:795.705000px;}
.y1fe{bottom:798.225000px;}
.yd1{bottom:802.365000px;}
.yb1{bottom:803.265000px;}
.y1b5{bottom:803.625000px;}
.y5a{bottom:804.705000px;}
.y115{bottom:811.365000px;}
.y105{bottom:812.445000px;}
.y191{bottom:813.525000px;}
.y154{bottom:813.885000px;}
.y1fd{bottom:817.125000px;}
.yd0{bottom:820.185000px;}
.y1b4{bottom:821.445000px;}
.y59{bottom:822.525000px;}
.y15{bottom:824.865000px;}
.y114{bottom:829.185000px;}
.yb0{bottom:830.445000px;}
.y190{bottom:831.345000px;}
.y1fc{bottom:834.945000px;}
.ycf{bottom:838.005000px;}
.y1b3{bottom:839.445000px;}
.y58{bottom:840.345000px;}
.y113{bottom:847.005000px;}
.y14{bottom:847.725000px;}
.y104{bottom:848.265000px;}
.yaf{bottom:848.445000px;}
.y18f{bottom:848.985000px;}
.y153{bottom:849.705000px;}
.y1fb{bottom:852.765000px;}
.y1b2{bottom:857.265000px;}
.y83{bottom:858.345000px;}
.yce{bottom:864.825000px;}
.y112{bottom:866.085000px;}
.yae{bottom:866.265000px;}
.y57{bottom:867.345000px;}
.y18e{bottom:869.145000px;}
.y13{bottom:869.505000px;}
.y1fa{bottom:870.585000px;}
.y103{bottom:875.085000px;}
.y82{bottom:876.165000px;}
.y149{bottom:876.885000px;}
.ycd{bottom:882.645000px;}
.yad{bottom:884.085000px;}
.y111{bottom:884.985000px;}
.y56{bottom:885.165000px;}
.y1f9{bottom:889.665000px;}
.y12{bottom:891.465000px;}
.y102{bottom:892.905000px;}
.y81{bottom:893.985000px;}
.y148{bottom:894.705000px;}
.ycc{bottom:900.645000px;}
.yac{bottom:901.905000px;}
.y55{bottom:902.985000px;}
.y1f8{bottom:908.565000px;}
.y1b1{bottom:910.410000px;}
.y101{bottom:910.770000px;}
.y110{bottom:911.850000px;}
.y152{bottom:912.750000px;}
.y11{bottom:914.370000px;}
.ycb{bottom:918.510000px;}
.yab{bottom:919.770000px;}
.y54{bottom:920.850000px;}
.y147{bottom:921.570000px;}
.y1f7{bottom:926.610000px;}
.y100{bottom:928.590000px;}
.y10f{bottom:929.670000px;}
.y151{bottom:930.570000px;}
.yca{bottom:935.970000px;}
.y10{bottom:936.510000px;}
.yaa{bottom:937.590000px;}
.y53{bottom:938.670000px;}
.y146{bottom:939.570000px;}
.y1f6{bottom:944.430000px;}
.yff{bottom:946.590000px;}
.y10e{bottom:947.670000px;}
.y150{bottom:948.570000px;}
.ya9{bottom:955.590000px;}
.y52{bottom:956.670000px;}
.y145{bottom:957.390000px;}
.yf{bottom:959.190000px;}
.yc9{bottom:963.150000px;}
.y1f5{bottom:963.510000px;}
.yfe{bottom:964.410000px;}
.y10d{bottom:965.490000px;}
.y14f{bottom:966.390000px;}
.ya8{bottom:973.410000px;}
.y51{bottom:974.490000px;}
.y144{bottom:975.210000px;}
.yc8{bottom:980.970000px;}
.yfd{bottom:982.230000px;}
.y1f4{bottom:982.410000px;}
.y10c{bottom:983.310000px;}
.y14e{bottom:984.210000px;}
.ye{bottom:985.650000px;}
.y18d{bottom:991.230000px;}
.y50{bottom:992.310000px;}
.y143{bottom:993.030000px;}
.yd{bottom:997.710000px;}
.yc7{bottom:998.790000px;}
.yfc{bottom:1000.050000px;}
.ya7{bottom:1000.230000px;}
.y10b{bottom:1001.130000px;}
.y14d{bottom:1002.030000px;}
.y18c{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.y4f{bottom:1010.130000px;}
.y142{bottom:1010.850000px;}
.yc6{bottom:1016.790000px;}
.yfb{bottom:1017.870000px;}
.ya6{bottom:1018.050000px;}
.y10a{bottom:1018.950000px;}
.y14c{bottom:1019.850000px;}
.yb{bottom:1021.830000px;}
.y18b{bottom:1026.870000px;}
.y4e{bottom:1027.950000px;}
.y141{bottom:1028.670000px;}
.yc5{bottom:1034.610000px;}
.ya5{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y109{bottom:1036.770000px;}
.y14b{bottom:1037.670000px;}
.y18a{bottom:1044.870000px;}
.y4d{bottom:1045.770000px;}
.y140{bottom:1046.310000px;}
.yc4{bottom:1052.430000px;}
.ya4{bottom:1053.870000px;}
.y108{bottom:1054.770000px;}
.y14a{bottom:1055.670000px;}
.y9{bottom:1061.970000px;}
.yfa{bottom:1062.690000px;}
.y4c{bottom:1063.770000px;}
.y13f{bottom:1068.630000px;}
.yc3{bottom:1070.250000px;}
.ya3{bottom:1071.690000px;}
.y107{bottom:1072.590000px;}
.yf9{bottom:1080.510000px;}
.y4b{bottom:1081.590000px;}
.y8{bottom:1087.170000px;}
.yc2{bottom:1088.070000px;}
.ya2{bottom:1089.510000px;}
.yf8{bottom:1098.330000px;}
.y13e{bottom:1099.230000px;}
.y4a{bottom:1099.410000px;}
.yc1{bottom:1106.070000px;}
.ya1{bottom:1107.330000px;}
.yf7{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y49{bottom:1117.230000px;}
.yc0{bottom:1123.890000px;}
.ya0{bottom:1125.150000px;}
.y13c{bottom:1129.830000px;}
.yf6{bottom:1133.970000px;}
.y48{bottom:1135.050000px;}
.ybf{bottom:1141.350000px;}
.y9f{bottom:1142.970000px;}
.y189{bottom:1151.640000px;}
.yf5{bottom:1152.000000px;}
.y47{bottom:1153.080000px;}
.y13b{bottom:1160.460000px;}
.y9e{bottom:1161.000000px;}
.ybe{bottom:1161.540000px;}
.y6{bottom:1165.860000px;}
.yf4{bottom:1169.820000px;}
.y80{bottom:1170.540000px;}
.y46{bottom:1170.900000px;}
.y9d{bottom:1178.820000px;}
.yf3{bottom:1187.280000px;}
.y45{bottom:1190.700000px;}
.ybd{bottom:1195.560000px;}
.y9c{bottom:1196.280000px;}
.y188{bottom:1196.640000px;}
.h1a{height:26.985000px;}
.h23{height:27.345000px;}
.h21{height:27.525000px;}
.h1e{height:27.540000px;}
.h25{height:27.561000px;}
.h20{height:27.570000px;}
.h28{height:29.700000px;}
.h29{height:29.730000px;}
.h2a{height:29.865000px;}
.h26{height:29.880000px;}
.h27{height:29.902500px;}
.h2{height:31.135500px;}
.h19{height:39.049805px;}
.h9{height:40.985156px;}
.h1b{height:46.965000px;}
.h1c{height:47.016000px;}
.h16{height:50.934890px;}
.h3{height:52.998047px;}
.h11{height:54.421875px;}
.h2b{height:55.503491px;}
.h1f{height:55.830000px;}
.h18{height:56.214844px;}
.h14{height:58.621992px;}
.ha{height:58.651172px;}
.h15{height:58.763250px;}
.hb{height:60.226875px;}
.h1d{height:64.795500px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hf{height:66.757500px;}
.he{height:72.326250px;}
.h10{height:72.562500px;}
.h12{height:78.367500px;}
.h17{height:80.949375px;}
.hd{height:82.676953px;}
.h22{height:84.045000px;}
.h24{height:84.081000px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h13{height:328.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w18{width:89.481000px;}
.wf{width:106.185000px;}
.we{width:109.116000px;}
.w11{width:130.702500px;}
.wa{width:149.961000px;}
.w17{width:154.470000px;}
.w8{width:155.545500px;}
.wd{width:156.810000px;}
.w15{width:157.165500px;}
.wc{width:164.545500px;}
.w19{width:169.230000px;}
.wb{width:186.690000px;}
.w13{width:187.410000px;}
.w16{width:214.230000px;}
.w14{width:225.390000px;}
.w6{width:227.910000px;}
.w12{width:244.110000px;}
.w10{width:249.360000px;}
.w5{width:261.250500px;}
.w9{width:288.075000px;}
.w7{width:296.340000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x18{left:10.800000px;}
.x59{left:12.420000px;}
.x37{left:22.675500px;}
.x57{left:23.925000px;}
.x58{left:29.505000px;}
.x53{left:33.150000px;}
.x17{left:39.240000px;}
.x46{left:41.025000px;}
.x45{left:42.660000px;}
.x2d{left:44.085000px;}
.x1{left:45.364500px;}
.x4b{left:47.370000px;}
.x2f{left:48.420000px;}
.x19{left:50.040000px;}
.x2a{left:52.591500px;}
.x7{left:54.000000px;}
.x29{left:55.084500px;}
.x30{left:57.811500px;}
.x42{left:59.790000px;}
.x4d{left:61.020000px;}
.x43{left:62.851500px;}
.x32{left:64.605000px;}
.x44{left:66.645000px;}
.x36{left:68.025000px;}
.x56{left:70.231500px;}
.x47{left:73.471500px;}
.x4f{left:74.520000px;}
.xe{left:77.400000px;}
.x50{left:78.510000px;}
.x20{left:81.000000px;}
.x25{left:83.160000px;}
.x3b{left:84.780000px;}
.x35{left:86.805000px;}
.x4e{left:90.000000px;}
.x34{left:92.925000px;}
.xf{left:97.416000px;}
.x3a{left:99.045000px;}
.x24{left:104.245500px;}
.x3c{left:105.885000px;}
.x5a{left:108.036000px;}
.x39{left:114.525000px;}
.x27{left:115.950000px;}
.x2c{left:117.225000px;}
.x38{left:119.025000px;}
.x33{left:124.065000px;}
.x31{left:130.005000px;}
.x49{left:183.270000px;}
.x23{left:198.030000px;}
.x2b{left:211.530000px;}
.x3e{left:217.290000px;}
.x2{left:222.370500px;}
.x3d{left:246.990000px;}
.x51{left:248.610000px;}
.x12{left:257.790000px;}
.xb{left:268.815000px;}
.x3{left:271.330500px;}
.x28{left:283.935000px;}
.xc{left:295.995000px;}
.x48{left:301.215000px;}
.x9{left:305.175000px;}
.x14{left:314.355000px;}
.x13{left:316.335000px;}
.x11{left:333.435000px;}
.x10{left:346.395000px;}
.x8{left:351.615000px;}
.xa{left:364.395000px;}
.x3f{left:374.835000px;}
.xd{left:378.795000px;}
.x1a{left:414.975000px;}
.x52{left:425.775000px;}
.x4a{left:428.115000px;}
.x1b{left:430.095000px;}
.x22{left:432.075000px;}
.x6{left:446.505000px;}
.x15{left:473.505000px;}
.x40{left:484.860000px;}
.x16{left:500.505000px;}
.x21{left:527.505000px;}
.x26{left:543.720000px;}
.x54{left:580.980000px;}
.x41{left:591.780000px;}
.x4c{left:616.290000px;}
.x1c{left:619.350000px;}
.x1d{left:634.470000px;}
.x2e{left:651.390000px;}
.x55{left:671.190000px;}
.x1f{left:737.430000px;}
.x1e{left:761.550000px;}
.x4{left:767.490000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.800000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls8{letter-spacing:22.496000pt;}
.ls7{letter-spacing:24.944640pt;}
.ls12{letter-spacing:46.816000pt;}
.ws6{word-spacing:-53.120000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.448000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.264000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._26{margin-left:-2.464000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._6{width:2.649387pt;}
._23{width:3.550720pt;}
._7{width:4.439893pt;}
._3{width:6.096853pt;}
._2{width:7.118080pt;}
._8{width:8.605440pt;}
._a{width:9.602773pt;}
._b{width:10.677120pt;}
._c{width:11.580160pt;}
._10{width:13.124907pt;}
._9{width:14.171093pt;}
._14{width:15.504000pt;}
._4{width:16.614613pt;}
._5{width:17.688960pt;}
._1c{width:19.200000pt;}
._13{width:20.400000pt;}
._1b{width:22.176000pt;}
._21{width:23.109333pt;}
._e{width:24.048000pt;}
._d{width:25.008000pt;}
._1f{width:26.064000pt;}
._1a{width:27.456000pt;}
._11{width:28.368000pt;}
._f{width:29.808000pt;}
._1e{width:31.173333pt;}
._1d{width:32.304000pt;}
._15{width:33.936000pt;}
._12{width:35.232000pt;}
._18{width:36.240000pt;}
._17{width:37.776000pt;}
._16{width:38.880000pt;}
._19{width:39.936000pt;}
._20{width:41.754667pt;}
._28{width:42.768000pt;}
._27{width:43.920000pt;}
._2c{width:45.744000pt;}
._2d{width:46.656000pt;}
._2a{width:50.352000pt;}
._29{width:51.312000pt;}
._25{width:53.376000pt;}
._24{width:54.480000pt;}
._2e{width:59.472000pt;}
._30{width:76.176000pt;}
._2f{width:77.184000pt;}
._2b{width:122.122667pt;}
._22{width:875.856000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fsb{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y11a{bottom:8.000000pt;}
.y123{bottom:8.160000pt;}
.y12c{bottom:8.306667pt;}
.y11f{bottom:8.320000pt;}
.y11e{bottom:8.346667pt;}
.ye8{bottom:8.946667pt;}
.yec{bottom:8.960000pt;}
.ye3{bottom:9.106667pt;}
.y155{bottom:9.920000pt;}
.ye6{bottom:10.066667pt;}
.yee{bottom:10.080000pt;}
.y157{bottom:10.240000pt;}
.y175{bottom:10.386667pt;}
.y13d{bottom:10.400000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yea{bottom:17.920000pt;}
.y11c{bottom:20.800000pt;}
.yf0{bottom:25.760000pt;}
.ye5{bottom:25.906667pt;}
.yed{bottom:25.920000pt;}
.ye7{bottom:26.226667pt;}
.yeb{bottom:26.240000pt;}
.y129{bottom:33.426667pt;}
.y121{bottom:33.440000pt;}
.yf2{bottom:33.760000pt;}
.y5{bottom:35.360000pt;}
.y43{bottom:37.440000pt;}
.yf1{bottom:42.720000pt;}
.y1{bottom:53.920000pt;}
.y40{bottom:81.946667pt;}
.y13a{bottom:93.920000pt;}
.y17f{bottom:95.520000pt;}
.y1d5{bottom:96.000000pt;}
.y9b{bottom:96.160000pt;}
.yef{bottom:97.120000pt;}
.y187{bottom:97.760000pt;}
.y3f{bottom:99.546667pt;}
.y2d{bottom:107.200000pt;}
.y34{bottom:109.760000pt;}
.y1f3{bottom:109.920000pt;}
.y17e{bottom:111.360000pt;}
.y1d4{bottom:111.840000pt;}
.y7f{bottom:112.000000pt;}
.y186{bottom:113.600000pt;}
.y3e{bottom:117.146667pt;}
.y136{bottom:118.080000pt;}
.y35{bottom:119.840000pt;}
.y1f2{bottom:125.760000pt;}
.y17d{bottom:127.200000pt;}
.y1d3{bottom:127.680000pt;}
.y1b0{bottom:127.840000pt;}
.y9a{bottom:128.000000pt;}
.y185{bottom:129.440000pt;}
.y2c{bottom:131.040000pt;}
.y135{bottom:134.080000pt;}
.y3d{bottom:134.906667pt;}
.y7e{bottom:136.000000pt;}
.y21c{bottom:136.480000pt;}
.y44{bottom:138.240000pt;}
.y33{bottom:138.720000pt;}
.y1f1{bottom:141.600000pt;}
.y1d2{bottom:143.520000pt;}
.y1af{bottom:143.680000pt;}
.y99{bottom:143.840000pt;}
.y184{bottom:145.280000pt;}
.y134{bottom:149.920000pt;}
.y17c{bottom:151.200000pt;}
.y7d{bottom:151.840000pt;}
.y3c{bottom:152.506667pt;}
.y32{bottom:154.560000pt;}
.y2b{bottom:154.880000pt;}
.ye9{bottom:155.360000pt;}
.y42{bottom:157.280000pt;}
.y1f0{bottom:157.600000pt;}
.y1ae{bottom:159.520000pt;}
.y98{bottom:159.680000pt;}
.y21b{bottom:160.320000pt;}
.y183{bottom:161.120000pt;}
.y133{bottom:165.760000pt;}
.y17b{bottom:167.040000pt;}
.y7c{bottom:167.680000pt;}
.y139{bottom:167.840000pt;}
.y3b{bottom:170.106667pt;}
.y1ef{bottom:173.440000pt;}
.y1ad{bottom:175.360000pt;}
.y97{bottom:175.520000pt;}
.y182{bottom:176.960000pt;}
.y2a{bottom:178.720000pt;}
.y132{bottom:182.746667pt;}
.y17a{bottom:182.906667pt;}
.y7b{bottom:183.546667pt;}
.y138{bottom:183.706667pt;}
.y41{bottom:184.160000pt;}
.y21a{bottom:184.346667pt;}
.y3a{bottom:187.706667pt;}
.y1d1{bottom:190.426667pt;}
.y96{bottom:191.386667pt;}
.y181{bottom:192.986667pt;}
.y31{bottom:194.426667pt;}
.ye4{bottom:197.800000pt;}
.y7a{bottom:199.386667pt;}
.y131{bottom:199.546667pt;}
.y179{bottom:199.866667pt;}
.y29{bottom:202.746667pt;}
.y39{bottom:205.306667pt;}
.y1d0{bottom:206.266667pt;}
.y1ac{bottom:207.226667pt;}
.y95{bottom:207.386667pt;}
.y219{bottom:208.186667pt;}
.y180{bottom:208.826667pt;}
.y79{bottom:215.386667pt;}
.y178{bottom:220.360000pt;}
.y1cf{bottom:222.106667pt;}
.y1ab{bottom:222.746667pt;}
.y38{bottom:223.066667pt;}
.y94{bottom:223.226667pt;}
.y28{bottom:226.586667pt;}
.y78{bottom:231.226667pt;}
.y218{bottom:232.026667pt;}
.y30{bottom:234.266667pt;}
.y1ce{bottom:237.946667pt;}
.y1ee{bottom:238.906667pt;}
.y93{bottom:239.066667pt;}
.ye2{bottom:240.200000pt;}
.y37{bottom:240.666667pt;}
.y130{bottom:246.906667pt;}
.y77{bottom:247.066667pt;}
.y137{bottom:247.226667pt;}
.y177{bottom:247.560000pt;}
.y27{bottom:250.426667pt;}
.y1cd{bottom:253.786667pt;}
.y1ed{bottom:254.746667pt;}
.y92{bottom:254.906667pt;}
.y217{bottom:255.866667pt;}
.y1aa{bottom:262.746667pt;}
.y76{bottom:262.906667pt;}
.y12d{bottom:266.760000pt;}
.y36{bottom:267.546667pt;}
.y1cc{bottom:269.786667pt;}
.y91{bottom:270.746667pt;}
.ye1{bottom:270.906667pt;}
.y1ec{bottom:272.506667pt;}
.y26{bottom:274.266667pt;}
.y176{bottom:274.760000pt;}
.y1a9{bottom:278.586667pt;}
.y75{bottom:278.746667pt;}
.y216{bottom:279.706667pt;}
.y2f{bottom:282.106667pt;}
.y1cb{bottom:285.626667pt;}
.y90{bottom:286.586667pt;}
.y12f{bottom:291.880000pt;}
.ybc{bottom:292.826667pt;}
.y74{bottom:294.586667pt;}
.y25{bottom:298.426667pt;}
.y1ca{bottom:301.466667pt;}
.y1eb{bottom:301.626667pt;}
.y174{bottom:301.960000pt;}
.y8f{bottom:302.586667pt;}
.y215{bottom:303.706667pt;}
.y2e{bottom:305.946667pt;}
.y1a8{bottom:310.426667pt;}
.y73{bottom:310.586667pt;}
.y24{bottom:314.266667pt;}
.y12e{bottom:317.000000pt;}
.y1ea{bottom:317.466667pt;}
.y8e{bottom:318.426667pt;}
.y1c9{bottom:325.306667pt;}
.y1a7{bottom:326.266667pt;}
.y72{bottom:326.426667pt;}
.y214{bottom:327.546667pt;}
.y173{bottom:329.160000pt;}
.y23{bottom:329.946667pt;}
.y1e9{bottom:333.306667pt;}
.y8d{bottom:334.266667pt;}
.y1c8{bottom:341.146667pt;}
.y1a6{bottom:342.106667pt;}
.y128{bottom:342.120000pt;}
.y71{bottom:342.266667pt;}
.y213{bottom:343.386667pt;}
.y1e8{bottom:349.146667pt;}
.y1c7{bottom:356.986667pt;}
.y1a5{bottom:357.946667pt;}
.y70{bottom:358.106667pt;}
.y212{bottom:359.226667pt;}
.y172{bottom:360.986667pt;}
.y22{bottom:361.626667pt;}
.y1e7{bottom:364.986667pt;}
.y12b{bottom:367.240000pt;}
.y1c6{bottom:372.986667pt;}
.y6f{bottom:373.946667pt;}
.y211{bottom:375.066667pt;}
.y21{bottom:377.466667pt;}
.y1e6{bottom:380.986667pt;}
.y167{bottom:385.146667pt;}
.y1c5{bottom:388.826667pt;}
.y1a4{bottom:389.786667pt;}
.y6e{bottom:389.946667pt;}
.y210{bottom:390.906667pt;}
.y12a{bottom:392.386667pt;}
.y171{bottom:393.186667pt;}
.y20{bottom:394.946667pt;}
.y1e5{bottom:396.866667pt;}
.y166{bottom:401.186667pt;}
.y1c4{bottom:404.706667pt;}
.y1a3{bottom:405.666667pt;}
.y8c{bottom:405.826667pt;}
.y20f{bottom:406.946667pt;}
.y170{bottom:409.186667pt;}
.y1e4{bottom:412.706667pt;}
.y6d{bottom:413.826667pt;}
.y1f{bottom:416.226667pt;}
.y165{bottom:417.026667pt;}
.y125{bottom:417.506667pt;}
.y1c3{bottom:420.546667pt;}
.y8b{bottom:421.666667pt;}
.y20e{bottom:422.786667pt;}
.y16f{bottom:425.026667pt;}
.y1a2{bottom:429.506667pt;}
.y6c{bottom:429.666667pt;}
.y164{bottom:432.866667pt;}
.y1c2{bottom:436.386667pt;}
.y1e3{bottom:436.546667pt;}
.y1e{bottom:437.186667pt;}
.y8a{bottom:437.506667pt;}
.y20d{bottom:438.626667pt;}
.y16e{bottom:440.866667pt;}
.y127{bottom:442.626667pt;}
.y1a1{bottom:445.346667pt;}
.y6b{bottom:445.506667pt;}
.y163{bottom:448.706667pt;}
.y1c1{bottom:452.066667pt;}
.y1e2{bottom:452.386667pt;}
.y89{bottom:453.346667pt;}
.y20c{bottom:454.466667pt;}
.y16d{bottom:456.706667pt;}
.ye0{bottom:459.106667pt;}
.y1d{bottom:460.546667pt;}
.y1a0{bottom:461.186667pt;}
.y6a{bottom:461.346667pt;}
.y162{bottom:464.546667pt;}
.y126{bottom:467.746667pt;}
.y1e1{bottom:468.386667pt;}
.y88{bottom:469.186667pt;}
.y20b{bottom:470.306667pt;}
.y16c{bottom:472.546667pt;}
.ydf{bottom:474.946667pt;}
.y1c0{bottom:476.226667pt;}
.y69{bottom:477.186667pt;}
.y161{bottom:480.386667pt;}
.y1e0{bottom:484.226667pt;}
.y87{bottom:485.186667pt;}
.y20a{bottom:486.146667pt;}
.y1c{bottom:487.906667pt;}
.y16b{bottom:488.386667pt;}
.yde{bottom:490.786667pt;}
.y1bf{bottom:492.066667pt;}
.y120{bottom:492.866667pt;}
.y19f{bottom:493.026667pt;}
.y68{bottom:493.186667pt;}
.y1df{bottom:500.066667pt;}
.y86{bottom:501.026667pt;}
.y209{bottom:502.146667pt;}
.y160{bottom:504.386667pt;}
.ydd{bottom:506.626667pt;}
.ybb{bottom:507.426667pt;}
.y1be{bottom:507.906667pt;}
.y19e{bottom:508.866667pt;}
.y67{bottom:509.026667pt;}
.y1de{bottom:515.906667pt;}
.y85{bottom:516.546667pt;}
.y124{bottom:517.986667pt;}
.y15f{bottom:520.226667pt;}
.ydc{bottom:522.626667pt;}
.y1bd{bottom:523.746667pt;}
.y19d{bottom:524.706667pt;}
.y66{bottom:524.866667pt;}
.y1b{bottom:531.426667pt;}
.yba{bottom:531.586667pt;}
.y1dd{bottom:531.746667pt;}
.y84{bottom:532.386667pt;}
.y208{bottom:533.826667pt;}
.y15e{bottom:536.066667pt;}
.ydb{bottom:538.466667pt;}
.y1bc{bottom:539.586667pt;}
.y65{bottom:540.706667pt;}
.y122{bottom:543.266667pt;}
.y16a{bottom:544.066667pt;}
.yb9{bottom:547.586667pt;}
.y19c{bottom:548.546667pt;}
.y207{bottom:549.666667pt;}
.y15d{bottom:551.906667pt;}
.yda{bottom:554.306667pt;}
.y1bb{bottom:555.586667pt;}
.y64{bottom:556.546667pt;}
.y169{bottom:559.906667pt;}
.yb8{bottom:563.426667pt;}
.y1dc{bottom:563.586667pt;}
.y19b{bottom:564.546667pt;}
.y1a{bottom:565.506667pt;}
.y15c{bottom:567.746667pt;}
.y11b{bottom:568.386667pt;}
.yd9{bottom:570.146667pt;}
.y63{bottom:572.546667pt;}
.y168{bottom:575.746667pt;}
.y1ba{bottom:579.426667pt;}
.y19a{bottom:580.386667pt;}
.y206{bottom:581.506667pt;}
.yd8{bottom:585.986667pt;}
.yb7{bottom:587.266667pt;}
.y15b{bottom:587.426667pt;}
.y62{bottom:588.386667pt;}
.y11d{bottom:593.506667pt;}
.y1b9{bottom:595.266667pt;}
.y199{bottom:596.226667pt;}
.y205{bottom:597.346667pt;}
.yd7{bottom:601.693333pt;}
.y19{bottom:601.853333pt;}
.yb6{bottom:603.133333pt;}
.y1db{bottom:603.293333pt;}
.y61{bottom:604.253333pt;}
.y1b8{bottom:611.133333pt;}
.y198{bottom:612.093333pt;}
.y204{bottom:613.213333pt;}
.y15a{bottom:614.653333pt;}
.y119{bottom:618.653333pt;}
.yb5{bottom:618.973333pt;}
.y1da{bottom:619.133333pt;}
.y60{bottom:620.093333pt;}
.yd6{bottom:625.853333pt;}
.y1b7{bottom:626.973333pt;}
.y197{bottom:627.933333pt;}
.y203{bottom:629.053333pt;}
.y1d9{bottom:634.973333pt;}
.y5f{bottom:635.933333pt;}
.yd5{bottom:641.693333pt;}
.y159{bottom:641.853333pt;}
.y18{bottom:642.813333pt;}
.y196{bottom:643.773333pt;}
.y202{bottom:644.893333pt;}
.y118{bottom:649.853333pt;}
.y1d8{bottom:650.813333pt;}
.y5e{bottom:651.773333pt;}
.yd4{bottom:657.533333pt;}
.yb4{bottom:658.813333pt;}
.y195{bottom:659.773333pt;}
.y201{bottom:660.733333pt;}
.y1d7{bottom:666.813333pt;}
.y17{bottom:667.613333pt;}
.y5d{bottom:667.773333pt;}
.y158{bottom:669.053333pt;}
.yd3{bottom:673.373333pt;}
.yb3{bottom:674.653333pt;}
.y194{bottom:675.613333pt;}
.y200{bottom:676.733333pt;}
.y1d6{bottom:682.653333pt;}
.y5c{bottom:683.613333pt;}
.yd2{bottom:689.213333pt;}
.y117{bottom:689.373333pt;}
.yb2{bottom:690.493333pt;}
.y193{bottom:691.453333pt;}
.y16{bottom:692.253333pt;}
.y1ff{bottom:692.573333pt;}
.y156{bottom:696.253333pt;}
.y1b6{bottom:698.493333pt;}
.y5b{bottom:699.453333pt;}
.y116{bottom:705.213333pt;}
.y106{bottom:706.333333pt;}
.y192{bottom:707.293333pt;}
.y1fe{bottom:709.533333pt;}
.yd1{bottom:713.213333pt;}
.yb1{bottom:714.013333pt;}
.y1b5{bottom:714.333333pt;}
.y5a{bottom:715.293333pt;}
.y115{bottom:721.213333pt;}
.y105{bottom:722.173333pt;}
.y191{bottom:723.133333pt;}
.y154{bottom:723.453333pt;}
.y1fd{bottom:726.333333pt;}
.yd0{bottom:729.053333pt;}
.y1b4{bottom:730.173333pt;}
.y59{bottom:731.133333pt;}
.y15{bottom:733.213333pt;}
.y114{bottom:737.053333pt;}
.yb0{bottom:738.173333pt;}
.y190{bottom:738.973333pt;}
.y1fc{bottom:742.173333pt;}
.ycf{bottom:744.893333pt;}
.y1b3{bottom:746.173333pt;}
.y58{bottom:746.973333pt;}
.y113{bottom:752.893333pt;}
.y14{bottom:753.533333pt;}
.y104{bottom:754.013333pt;}
.yaf{bottom:754.173333pt;}
.y18f{bottom:754.653333pt;}
.y153{bottom:755.293333pt;}
.y1fb{bottom:758.013333pt;}
.y1b2{bottom:762.013333pt;}
.y83{bottom:762.973333pt;}
.yce{bottom:768.733333pt;}
.y112{bottom:769.853333pt;}
.yae{bottom:770.013333pt;}
.y57{bottom:770.973333pt;}
.y18e{bottom:772.573333pt;}
.y13{bottom:772.893333pt;}
.y1fa{bottom:773.853333pt;}
.y103{bottom:777.853333pt;}
.y82{bottom:778.813333pt;}
.y149{bottom:779.453333pt;}
.ycd{bottom:784.573333pt;}
.yad{bottom:785.853333pt;}
.y111{bottom:786.653333pt;}
.y56{bottom:786.813333pt;}
.y1f9{bottom:790.813333pt;}
.y12{bottom:792.413333pt;}
.y102{bottom:793.693333pt;}
.y81{bottom:794.653333pt;}
.y148{bottom:795.293333pt;}
.ycc{bottom:800.573333pt;}
.yac{bottom:801.693333pt;}
.y55{bottom:802.653333pt;}
.y1f8{bottom:807.613333pt;}
.y1b1{bottom:809.253333pt;}
.y101{bottom:809.573333pt;}
.y110{bottom:810.533333pt;}
.y152{bottom:811.333333pt;}
.y11{bottom:812.773333pt;}
.ycb{bottom:816.453333pt;}
.yab{bottom:817.573333pt;}
.y54{bottom:818.533333pt;}
.y147{bottom:819.173333pt;}
.y1f7{bottom:823.653333pt;}
.y100{bottom:825.413333pt;}
.y10f{bottom:826.373333pt;}
.y151{bottom:827.173333pt;}
.yca{bottom:831.973333pt;}
.y10{bottom:832.453333pt;}
.yaa{bottom:833.413333pt;}
.y53{bottom:834.373333pt;}
.y146{bottom:835.173333pt;}
.y1f6{bottom:839.493333pt;}
.yff{bottom:841.413333pt;}
.y10e{bottom:842.373333pt;}
.y150{bottom:843.173333pt;}
.ya9{bottom:849.413333pt;}
.y52{bottom:850.373333pt;}
.y145{bottom:851.013333pt;}
.yf{bottom:852.613333pt;}
.yc9{bottom:856.133333pt;}
.y1f5{bottom:856.453333pt;}
.yfe{bottom:857.253333pt;}
.y10d{bottom:858.213333pt;}
.y14f{bottom:859.013333pt;}
.ya8{bottom:865.253333pt;}
.y51{bottom:866.213333pt;}
.y144{bottom:866.853333pt;}
.yc8{bottom:871.973333pt;}
.yfd{bottom:873.093333pt;}
.y1f4{bottom:873.253333pt;}
.y10c{bottom:874.053333pt;}
.y14e{bottom:874.853333pt;}
.ye{bottom:876.133333pt;}
.y18d{bottom:881.093333pt;}
.y50{bottom:882.053333pt;}
.y143{bottom:882.693333pt;}
.yd{bottom:886.853333pt;}
.yc7{bottom:887.813333pt;}
.yfc{bottom:888.933333pt;}
.ya7{bottom:889.093333pt;}
.y10b{bottom:889.893333pt;}
.y14d{bottom:890.693333pt;}
.y18c{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.y4f{bottom:897.893333pt;}
.y142{bottom:898.533333pt;}
.yc6{bottom:903.813333pt;}
.yfb{bottom:904.773333pt;}
.ya6{bottom:904.933333pt;}
.y10a{bottom:905.733333pt;}
.y14c{bottom:906.533333pt;}
.yb{bottom:908.293333pt;}
.y18b{bottom:912.773333pt;}
.y4e{bottom:913.733333pt;}
.y141{bottom:914.373333pt;}
.yc5{bottom:919.653333pt;}
.ya5{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y109{bottom:921.573333pt;}
.y14b{bottom:922.373333pt;}
.y18a{bottom:928.773333pt;}
.y4d{bottom:929.573333pt;}
.y140{bottom:930.053333pt;}
.yc4{bottom:935.493333pt;}
.ya4{bottom:936.773333pt;}
.y108{bottom:937.573333pt;}
.y14a{bottom:938.373333pt;}
.y9{bottom:943.973333pt;}
.yfa{bottom:944.613333pt;}
.y4c{bottom:945.573333pt;}
.y13f{bottom:949.893333pt;}
.yc3{bottom:951.333333pt;}
.ya3{bottom:952.613333pt;}
.y107{bottom:953.413333pt;}
.yf9{bottom:960.453333pt;}
.y4b{bottom:961.413333pt;}
.y8{bottom:966.373333pt;}
.yc2{bottom:967.173333pt;}
.ya2{bottom:968.453333pt;}
.yf8{bottom:976.293333pt;}
.y13e{bottom:977.093333pt;}
.y4a{bottom:977.253333pt;}
.yc1{bottom:983.173333pt;}
.ya1{bottom:984.293333pt;}
.yf7{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y49{bottom:993.093333pt;}
.yc0{bottom:999.013333pt;}
.ya0{bottom:1000.133333pt;}
.y13c{bottom:1004.293333pt;}
.yf6{bottom:1007.973333pt;}
.y48{bottom:1008.933333pt;}
.ybf{bottom:1014.533333pt;}
.y9f{bottom:1015.973333pt;}
.y189{bottom:1023.680000pt;}
.yf5{bottom:1024.000000pt;}
.y47{bottom:1024.960000pt;}
.y13b{bottom:1031.520000pt;}
.y9e{bottom:1032.000000pt;}
.ybe{bottom:1032.480000pt;}
.y6{bottom:1036.320000pt;}
.yf4{bottom:1039.840000pt;}
.y80{bottom:1040.480000pt;}
.y46{bottom:1040.800000pt;}
.y9d{bottom:1047.840000pt;}
.yf3{bottom:1055.360000pt;}
.y45{bottom:1058.400000pt;}
.ybd{bottom:1062.720000pt;}
.y9c{bottom:1063.360000pt;}
.y188{bottom:1063.680000pt;}
.h1a{height:23.986667pt;}
.h23{height:24.306667pt;}
.h21{height:24.466667pt;}
.h1e{height:24.480000pt;}
.h25{height:24.498667pt;}
.h20{height:24.506667pt;}
.h28{height:26.400000pt;}
.h29{height:26.426667pt;}
.h2a{height:26.546667pt;}
.h26{height:26.560000pt;}
.h27{height:26.580000pt;}
.h2{height:27.676000pt;}
.h19{height:34.710938pt;}
.h9{height:36.431250pt;}
.h1b{height:41.746667pt;}
.h1c{height:41.792000pt;}
.h16{height:45.275458pt;}
.h3{height:47.109375pt;}
.h11{height:48.375000pt;}
.h2b{height:49.336436pt;}
.h1f{height:49.626667pt;}
.h18{height:49.968750pt;}
.h14{height:52.108438pt;}
.ha{height:52.134375pt;}
.h15{height:52.234000pt;}
.hb{height:53.535000pt;}
.h1d{height:57.596000pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hf{height:59.340000pt;}
.he{height:64.290000pt;}
.h10{height:64.500000pt;}
.h12{height:69.660000pt;}
.h17{height:71.955000pt;}
.hd{height:73.490625pt;}
.h22{height:74.706667pt;}
.h24{height:74.738667pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h13{height:291.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w18{width:79.538667pt;}
.wf{width:94.386667pt;}
.we{width:96.992000pt;}
.w11{width:116.180000pt;}
.wa{width:133.298667pt;}
.w17{width:137.306667pt;}
.w8{width:138.262667pt;}
.wd{width:139.386667pt;}
.w15{width:139.702667pt;}
.wc{width:146.262667pt;}
.w19{width:150.426667pt;}
.wb{width:165.946667pt;}
.w13{width:166.586667pt;}
.w16{width:190.426667pt;}
.w14{width:200.346667pt;}
.w6{width:202.586667pt;}
.w12{width:216.986667pt;}
.w10{width:221.653333pt;}
.w5{width:232.222667pt;}
.w9{width:256.066667pt;}
.w7{width:263.413333pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x18{left:9.600000pt;}
.x59{left:11.040000pt;}
.x37{left:20.156000pt;}
.x57{left:21.266667pt;}
.x58{left:26.226667pt;}
.x53{left:29.466667pt;}
.x17{left:34.880000pt;}
.x46{left:36.466667pt;}
.x45{left:37.920000pt;}
.x2d{left:39.186667pt;}
.x1{left:40.324000pt;}
.x4b{left:42.106667pt;}
.x2f{left:43.040000pt;}
.x19{left:44.480000pt;}
.x2a{left:46.748000pt;}
.x7{left:48.000000pt;}
.x29{left:48.964000pt;}
.x30{left:51.388000pt;}
.x42{left:53.146667pt;}
.x4d{left:54.240000pt;}
.x43{left:55.868000pt;}
.x32{left:57.426667pt;}
.x44{left:59.240000pt;}
.x36{left:60.466667pt;}
.x56{left:62.428000pt;}
.x47{left:65.308000pt;}
.x4f{left:66.240000pt;}
.xe{left:68.800000pt;}
.x50{left:69.786667pt;}
.x20{left:72.000000pt;}
.x25{left:73.920000pt;}
.x3b{left:75.360000pt;}
.x35{left:77.160000pt;}
.x4e{left:80.000000pt;}
.x34{left:82.600000pt;}
.xf{left:86.592000pt;}
.x3a{left:88.040000pt;}
.x24{left:92.662667pt;}
.x3c{left:94.120000pt;}
.x5a{left:96.032000pt;}
.x39{left:101.800000pt;}
.x27{left:103.066667pt;}
.x2c{left:104.200000pt;}
.x38{left:105.800000pt;}
.x33{left:110.280000pt;}
.x31{left:115.560000pt;}
.x49{left:162.906667pt;}
.x23{left:176.026667pt;}
.x2b{left:188.026667pt;}
.x3e{left:193.146667pt;}
.x2{left:197.662667pt;}
.x3d{left:219.546667pt;}
.x51{left:220.986667pt;}
.x12{left:229.146667pt;}
.xb{left:238.946667pt;}
.x3{left:241.182667pt;}
.x28{left:252.386667pt;}
.xc{left:263.106667pt;}
.x48{left:267.746667pt;}
.x9{left:271.266667pt;}
.x14{left:279.426667pt;}
.x13{left:281.186667pt;}
.x11{left:296.386667pt;}
.x10{left:307.906667pt;}
.x8{left:312.546667pt;}
.xa{left:323.906667pt;}
.x3f{left:333.186667pt;}
.xd{left:336.706667pt;}
.x1a{left:368.866667pt;}
.x52{left:378.466667pt;}
.x4a{left:380.546667pt;}
.x1b{left:382.306667pt;}
.x22{left:384.066667pt;}
.x6{left:396.893333pt;}
.x15{left:420.893333pt;}
.x40{left:430.986667pt;}
.x16{left:444.893333pt;}
.x21{left:468.893333pt;}
.x26{left:483.306667pt;}
.x54{left:516.426667pt;}
.x41{left:526.026667pt;}
.x4c{left:547.813333pt;}
.x1c{left:550.533333pt;}
.x1d{left:563.973333pt;}
.x2e{left:579.013333pt;}
.x55{left:596.613333pt;}
.x1f{left:655.493333pt;}
.x1e{left:676.933333pt;}
.x4{left:682.213333pt;}
}




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