
    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_f753bd0f4edabcbec1695302.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b30a5df06ee71f61939d070.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1a23bbdcf1ba12f403e672cc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a8cc0600d1c51d17f580e0ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a729f0e980877e052758fc24.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_0512a95e250c4e3eb27635f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_943f0e2aa41436ed8d851060.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cadab9dc83a2c9e5f29f3cb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005859;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_80131c7e4ecfad58598e16cd.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.ls15{letter-spacing:-2.520000px;}
.ls1a{letter-spacing:-1.800000px;}
.ls14{letter-spacing:-1.656000px;}
.ls13{letter-spacing:-1.566000px;}
.ls19{letter-spacing:-1.548000px;}
.ls11{letter-spacing:-1.224000px;}
.ls18{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.828000px;}
.ls1b{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.594000px;}
.ls25{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.126000px;}
.ls10{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.018000px;}
.ls2{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.126000px;}
.ls20{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.234000px;}
.ls4{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.900000px;}
.ls23{letter-spacing:1.080000px;}
.ls6{letter-spacing:3.780000px;}
.ls7{letter-spacing:4.500000px;}
.ls16{letter-spacing:12.420000px;}
.ls1d{letter-spacing:13.140000px;}
.ls1c{letter-spacing:16.740000px;}
.ls1f{letter-spacing:25.308000px;}
.ls28{letter-spacing:36.900000px;}
.ls9{letter-spacing:52.668000px;}
.lsb{letter-spacing:53.388000px;}
.lsa{letter-spacing:56.268000px;}
.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:-40.338000px;}
.ws1{word-spacing:-19.431360px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.734000px;}
.ws18{word-spacing:-13.716000px;}
.ws1b{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.ws1f{word-spacing:-13.374000px;}
.ws9{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.140000px;}
.ws1e{word-spacing:-12.906000px;}
.ws8{word-spacing:-12.888000px;}
.ws7{word-spacing:-12.672000px;}
.ws14{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.276000px;}
.ws15{word-spacing:-11.952000px;}
.ws11{word-spacing:-11.934000px;}
.ws12{word-spacing:-11.844000px;}
.ws16{word-spacing:-11.700000px;}
.ws13{word-spacing:-10.980000px;}
.ws2{word-spacing:-10.440000px;}
.ws17{word-spacing:-8.280000px;}
.ws20{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.066240px;}
.ws19{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
._29{margin-left:-37.806000px;}
._25{margin-left:-4.848480px;}
._21{margin-left:-3.611520px;}
._1c{margin-left:-2.112480px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._7{width:3.456000px;}
._6{width:5.292000px;}
._5{width:6.696000px;}
._b{width:7.776000px;}
._c{width:8.831520px;}
._d{width:10.119840px;}
._9{width:11.448000px;}
._a{width:12.463680px;}
._e{width:13.726320px;}
._f{width:15.195840px;}
._8{width:17.147520px;}
._3{width:18.360000px;}
._4{width:19.378320px;}
._13{width:21.438000px;}
._1a{width:22.572000px;}
._14{width:23.652000px;}
._12{width:24.732000px;}
._11{width:26.489520px;}
._10{width:27.756000px;}
._15{width:29.127840px;}
._1e{width:30.701520px;}
._1d{width:31.884480px;}
._19{width:33.239520px;}
._17{width:34.938000px;}
._16{width:36.234000px;}
._1b{width:38.286000px;}
._18{width:39.312000px;}
._2f{width:40.384800px;}
._22{width:41.796000px;}
._23{width:42.876000px;}
._26{width:44.118000px;}
._31{width:45.267840px;}
._32{width:48.918000px;}
._1f{width:50.490000px;}
._20{width:51.584160px;}
._2d{width:54.018000px;}
._2c{width:55.026000px;}
._2b{width:56.136000px;}
._27{width:58.878000px;}
._2a{width:62.022000px;}
._28{width:63.126000px;}
._24{width:157.356000px;}
._2e{width:772.698000px;}
._30{width:836.040000px;}
._2{width:2903.467200px;}
.fc7{color:rgb(32,36,41);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc6{color:rgb(33,33,33);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y43{bottom:7.350000px;}
.y11a{bottom:8.460000px;}
.y150{bottom:8.820000px;}
.y2e{bottom:9.435000px;}
.y109{bottom:9.705000px;}
.yf6{bottom:9.720000px;}
.y134{bottom:9.900000px;}
.yf1{bottom:9.945000px;}
.yb6{bottom:10.080000px;}
.y13b{bottom:10.110000px;}
.yc2{bottom:10.260000px;}
.yf0{bottom:10.305000px;}
.yb5{bottom:10.440000px;}
.yb0{bottom:10.980000px;}
.yc7{bottom:11.160000px;}
.yc0{bottom:11.340000px;}
.ybb{bottom:11.520000px;}
.y115{bottom:11.880000px;}
.yf2{bottom:12.465000px;}
.y104{bottom:12.600000px;}
.y116{bottom:13.500000px;}
.y27{bottom:14.685000px;}
.yb3{bottom:15.660000px;}
.yb9{bottom:16.560000px;}
.y11d{bottom:16.740000px;}
.y8{bottom:22.500000px;}
.y121{bottom:23.580000px;}
.y14f{bottom:24.300000px;}
.y120{bottom:26.100000px;}
.y119{bottom:26.280000px;}
.y155{bottom:26.460000px;}
.y108{bottom:27.570000px;}
.y133{bottom:27.720000px;}
.y141{bottom:27.900000px;}
.y13a{bottom:27.930000px;}
.y132{bottom:28.080000px;}
.y174{bottom:29.190000px;}
.y16e{bottom:29.340000px;}
.y154{bottom:31.320000px;}
.y13f{bottom:37.440000px;}
.y138{bottom:37.470000px;}
.yb2{bottom:37.980000px;}
.yc4{bottom:39.060000px;}
.yb8{bottom:39.105000px;}
.y7{bottom:41.040000px;}
.y118{bottom:44.100000px;}
.ybe{bottom:44.280000px;}
.y11c{bottom:44.460000px;}
.y16a{bottom:45.570000px;}
.y169{bottom:45.930000px;}
.y173{bottom:47.010000px;}
.y16d{bottom:47.160000px;}
.y13e{bottom:55.260000px;}
.y137{bottom:55.290000px;}
.y6{bottom:56.880000px;}
.y3b{bottom:64.650000px;}
.y16c{bottom:64.980000px;}
.y172{bottom:65.010000px;}
.ybd{bottom:66.600000px;}
.y13d{bottom:73.080000px;}
.y142{bottom:73.440000px;}
.y22{bottom:81.000000px;}
.ye8{bottom:81.180000px;}
.y188{bottom:82.080000px;}
.y16b{bottom:84.420000px;}
.y3a{bottom:84.450000px;}
.y80{bottom:89.280000px;}
.yab{bottom:90.000000px;}
.y11e{bottom:90.720000px;}
.y18{bottom:90.900000px;}
.y21{bottom:98.820000px;}
.ye7{bottom:99.000000px;}
.y187{bottom:100.080000px;}
.y1ce{bottom:100.440000px;}
.y39{bottom:104.250000px;}
.y7f{bottom:107.100000px;}
.yaa{bottom:108.000000px;}
.y17{bottom:108.720000px;}
.y170{bottom:112.140000px;}
.y20{bottom:116.820000px;}
.y186{bottom:117.900000px;}
.y1cd{bottom:118.260000px;}
.y117{bottom:118.440000px;}
.y38{bottom:124.050000px;}
.y7e{bottom:125.100000px;}
.ya9{bottom:125.460000px;}
.y16{bottom:126.720000px;}
.y1f{bottom:134.640000px;}
.y185{bottom:135.720000px;}
.y1cc{bottom:136.080000px;}
.y16f{bottom:139.680000px;}
.y7d{bottom:142.920000px;}
.ye6{bottom:143.640000px;}
.y37{bottom:143.850000px;}
.y15{bottom:144.540000px;}
.y24{bottom:145.230000px;}
.y11b{bottom:151.020000px;}
.y1e{bottom:152.460000px;}
.ya8{bottom:152.640000px;}
.y184{bottom:153.540000px;}
.y1cb{bottom:154.080000px;}
.y7c{bottom:160.740000px;}
.ye5{bottom:161.640000px;}
.y14{bottom:162.360000px;}
.y36{bottom:163.830000px;}
.y168{bottom:167.220000px;}
.y1d{bottom:170.280000px;}
.y183{bottom:171.360000px;}
.y1ca{bottom:171.900000px;}
.ya7{bottom:172.440000px;}
.y7b{bottom:178.560000px;}
.y114{bottom:178.920000px;}
.ye4{bottom:179.460000px;}
.y13{bottom:180.180000px;}
.y35{bottom:183.675000px;}
.y1c{bottom:188.100000px;}
.y182{bottom:189.180000px;}
.y1c9{bottom:189.720000px;}
.y7a{bottom:196.020000px;}
.y192{bottom:196.380000px;}
.ye3{bottom:197.280000px;}
.y12{bottom:198.000000px;}
.y34{bottom:203.475000px;}
.ya6{bottom:205.200000px;}
.y1b{bottom:205.950000px;}
.y181{bottom:207.210000px;}
.y1c8{bottom:207.570000px;}
.y113{bottom:212.250000px;}
.y191{bottom:214.230000px;}
.ye2{bottom:215.130000px;}
.y11{bottom:216.030000px;}
.y79{bottom:223.230000px;}
.y33{bottom:223.275000px;}
.y1a{bottom:223.950000px;}
.y180{bottom:225.030000px;}
.y1c7{bottom:225.390000px;}
.y112{bottom:230.070000px;}
.y190{bottom:232.230000px;}
.ye1{bottom:232.950000px;}
.y10{bottom:235.830000px;}
.y167{bottom:236.190000px;}
.ya5{bottom:241.050000px;}
.y78{bottom:241.230000px;}
.y19{bottom:241.770000px;}
.y17f{bottom:242.850000px;}
.y32{bottom:243.075000px;}
.y1c6{bottom:243.210000px;}
.y18f{bottom:250.050000px;}
.ye0{bottom:250.950000px;}
.y166{bottom:254.010000px;}
.y111{bottom:256.890000px;}
.ya4{bottom:258.870000px;}
.y77{bottom:259.050000px;}
.y17e{bottom:260.670000px;}
.y1c5{bottom:261.210000px;}
.y31{bottom:263.055000px;}
.y18e{bottom:267.870000px;}
.ydf{bottom:268.770000px;}
.y165{bottom:272.010000px;}
.y2f{bottom:274.680000px;}
.y110{bottom:274.710000px;}
.ya3{bottom:276.690000px;}
.y76{bottom:276.870000px;}
.y17d{bottom:278.490000px;}
.y1c4{bottom:279.030000px;}
.y30{bottom:282.855000px;}
.y18d{bottom:285.690000px;}
.yde{bottom:286.590000px;}
.y3d{bottom:290.010000px;}
.y10f{bottom:292.710000px;}
.ya2{bottom:294.510000px;}
.y75{bottom:294.690000px;}
.y17c{bottom:296.490000px;}
.y1c3{bottom:296.850000px;}
.y164{bottom:298.830000px;}
.y18c{bottom:303.510000px;}
.ydd{bottom:304.410000px;}
.y10e{bottom:310.530000px;}
.y74{bottom:312.510000px;}
.y1c2{bottom:314.670000px;}
.y17b{bottom:316.290000px;}
.y163{bottom:316.650000px;}
.y3c{bottom:319.350000px;}
.ydc{bottom:322.230000px;}
.y10d{bottom:327.990000px;}
.ya1{bottom:330.330000px;}
.y73{bottom:330.510000px;}
.y1c1{bottom:332.490000px;}
.y162{bottom:334.470000px;}
.ydb{bottom:340.050000px;}
.y10c{bottom:345.810000px;}
.ya0{bottom:348.150000px;}
.y72{bottom:348.330000px;}
.y1f3{bottom:348.510000px;}
.y17a{bottom:349.050000px;}
.y1c0{bottom:350.490000px;}
.y161{bottom:351.930000px;}
.yda{bottom:358.050000px;}
.y9f{bottom:365.970000px;}
.y71{bottom:366.150000px;}
.y179{bottom:366.870000px;}
.y1bf{bottom:368.310000px;}
.y160{bottom:369.930000px;}
.y10b{bottom:372.990000px;}
.y1f2{bottom:375.330000px;}
.yd9{bottom:375.510000px;}
.y9e{bottom:383.790000px;}
.y70{bottom:383.970000px;}
.y178{bottom:384.690000px;}
.y1be{bottom:386.130000px;}
.y10a{bottom:391.170000px;}
.y1f1{bottom:393.150000px;}
.y15f{bottom:397.110000px;}
.y6f{bottom:401.790000px;}
.yd8{bottom:402.690000px;}
.y1bd{bottom:403.950000px;}
.y9d{bottom:410.610000px;}
.y1f0{bottom:410.970000px;}
.y177{bottom:411.690000px;}
.y107{bottom:413.325000px;}
.y15e{bottom:414.930000px;}
.y6e{bottom:419.610000px;}
.yd7{bottom:420.510000px;}
.y1bc{bottom:421.770000px;}
.y9c{bottom:428.610000px;}
.y1ef{bottom:428.790000px;}
.y15d{bottom:432.750000px;}
.y171{bottom:433.665000px;}
.y6d{bottom:437.610000px;}
.yd6{bottom:438.330000px;}
.y1bb{bottom:439.590000px;}
.y9b{bottom:446.475000px;}
.y1ee{bottom:446.655000px;}
.y15c{bottom:450.615000px;}
.y6c{bottom:455.475000px;}
.yd5{bottom:456.375000px;}
.y1ba{bottom:457.635000px;}
.y106{bottom:458.715000px;}
.y176{bottom:461.235000px;}
.y9a{bottom:464.295000px;}
.y1ed{bottom:464.655000px;}
.y15b{bottom:468.435000px;}
.y6b{bottom:473.295000px;}
.yd4{bottom:474.195000px;}
.y1b9{bottom:475.455000px;}
.y99{bottom:481.755000px;}
.y1ec{bottom:482.475000px;}
.y105{bottom:486.255000px;}
.y15a{bottom:486.435000px;}
.y175{bottom:488.775000px;}
.y6a{bottom:491.115000px;}
.yd3{bottom:492.015000px;}
.y1b8{bottom:493.275000px;}
.y1eb{bottom:500.295000px;}
.y159{bottom:504.255000px;}
.y69{bottom:508.575000px;}
.y98{bottom:508.935000px;}
.yd2{bottom:509.835000px;}
.y1b7{bottom:511.095000px;}
.y103{bottom:513.975000px;}
.y1ea{bottom:518.115000px;}
.y97{bottom:526.935000px;}
.yd1{bottom:527.295000px;}
.y1b6{bottom:528.915000px;}
.y158{bottom:531.075000px;}
.y68{bottom:535.935000px;}
.y96{bottom:544.755000px;}
.y1b5{bottom:546.915000px;}
.y102{bottom:547.815000px;}
.y153{bottom:553.035000px;}
.y67{bottom:553.755000px;}
.y1e9{bottom:553.935000px;}
.yd0{bottom:554.475000px;}
.y95{bottom:562.575000px;}
.y1b4{bottom:564.735000px;}
.y66{bottom:571.575000px;}
.y1e8{bottom:571.755000px;}
.ycf{bottom:572.475000px;}
.y101{bottom:574.635000px;}
.y94{bottom:580.395000px;}
.y157{bottom:580.575000px;}
.y1b3{bottom:582.555000px;}
.y65{bottom:589.395000px;}
.y1e7{bottom:589.575000px;}
.yce{bottom:590.295000px;}
.y100{bottom:592.455000px;}
.y93{bottom:598.215000px;}
.y1b2{bottom:600.375000px;}
.y64{bottom:607.215000px;}
.y1e6{bottom:607.395000px;}
.ycd{bottom:608.115000px;}
.y156{bottom:608.295000px;}
.yff{bottom:610.455000px;}
.y92{bottom:616.035000px;}
.y1b1{bottom:618.195000px;}
.y63{bottom:625.035000px;}
.y1e5{bottom:625.215000px;}
.ycc{bottom:625.935000px;}
.y91{bottom:634.035000px;}
.y14e{bottom:635.835000px;}
.y1b0{bottom:636.015000px;}
.yfe{bottom:636.915000px;}
.yf{bottom:639.615000px;}
.y62{bottom:643.035000px;}
.ycb{bottom:643.755000px;}
.y90{bottom:651.855000px;}
.y1af{bottom:654.015000px;}
.ye{bottom:658.515000px;}
.y61{bottom:660.855000px;}
.y1e4{bottom:661.035000px;}
.yca{bottom:661.755000px;}
.y152{bottom:663.375000px;}
.yfd{bottom:664.095000px;}
.y2d{bottom:664.560000px;}
.y8f{bottom:669.675000px;}
.y1ae{bottom:671.835000px;}
.y60{bottom:678.705000px;}
.y1e3{bottom:678.885000px;}
.yc9{bottom:679.605000px;}
.yfc{bottom:681.945000px;}
.y8e{bottom:687.525000px;}
.y1ad{bottom:689.685000px;}
.y151{bottom:691.125000px;}
.y5f{bottom:696.525000px;}
.y1e2{bottom:696.705000px;}
.yc8{bottom:697.425000px;}
.yfb{bottom:699.765000px;}
.y2c{bottom:700.665000px;}
.y8d{bottom:705.345000px;}
.y1ac{bottom:707.505000px;}
.y5e{bottom:714.345000px;}
.y1e1{bottom:714.525000px;}
.yfa{bottom:717.585000px;}
.y14d{bottom:718.665000px;}
.yc6{bottom:719.385000px;}
.y8c{bottom:723.165000px;}
.y1ab{bottom:725.325000px;}
.yd{bottom:728.745000px;}
.y5d{bottom:732.165000px;}
.y1e0{bottom:732.345000px;}
.yf9{bottom:735.585000px;}
.y8b{bottom:741.165000px;}
.y1aa{bottom:743.325000px;}
.yc3{bottom:748.365000px;}
.y5c{bottom:750.165000px;}
.yf8{bottom:753.405000px;}
.y2b{bottom:757.365000px;}
.y8a{bottom:758.625000px;}
.y1a9{bottom:761.145000px;}
.y5b{bottom:767.985000px;}
.y1df{bottom:768.165000px;}
.y14c{bottom:769.785000px;}
.yf7{bottom:771.225000px;}
.yc5{bottom:775.905000px;}
.y1a8{bottom:778.965000px;}
.y2a{bottom:779.685000px;}
.y5a{bottom:785.805000px;}
.y1de{bottom:785.985000px;}
.yf5{bottom:793.185000px;}
.y1a7{bottom:796.785000px;}
.y135{bottom:800.745000px;}
.yc{bottom:801.645000px;}
.y59{bottom:803.625000px;}
.y1dd{bottom:803.805000px;}
.ybc{bottom:804.885000px;}
.y1a6{bottom:814.605000px;}
.yf4{bottom:820.725000px;}
.y89{bottom:821.445000px;}
.y1dc{bottom:821.625000px;}
.y29{bottom:821.985000px;}
.y131{bottom:828.285000px;}
.y58{bottom:830.445000px;}
.y14b{bottom:830.805000px;}
.yc1{bottom:832.425000px;}
.y88{bottom:839.445000px;}
.y57{bottom:848.445000px;}
.y14a{bottom:848.625000px;}
.y1a5{bottom:850.425000px;}
.y87{bottom:857.265000px;}
.y1db{bottom:857.445000px;}
.ybf{bottom:860.145000px;}
.y26{bottom:861.660000px;}
.y56{bottom:866.265000px;}
.y149{bottom:866.445000px;}
.y1a4{bottom:868.245000px;}
.y86{bottom:875.085000px;}
.y1da{bottom:875.265000px;}
.yf3{bottom:875.985000px;}
.y28{bottom:876.345000px;}
.y130{bottom:879.405000px;}
.y55{bottom:884.085000px;}
.y148{bottom:884.445000px;}
.y1a3{bottom:886.065000px;}
.yb7{bottom:889.125000px;}
.y85{bottom:892.905000px;}
.y1d9{bottom:893.085000px;}
.y12f{bottom:897.225000px;}
.y54{bottom:901.905000px;}
.yef{bottom:903.705000px;}
.y1a2{bottom:903.885000px;}
.y25{bottom:904.605000px;}
.y84{bottom:910.770000px;}
.y1d8{bottom:910.950000px;}
.y12e{bottom:915.090000px;}
.yba{bottom:916.710000px;}
.y53{bottom:919.770000px;}
.y1a1{bottom:921.750000px;}
.y83{bottom:928.590000px;}
.y1d7{bottom:928.770000px;}
.yb{bottom:936.870000px;}
.y52{bottom:937.590000px;}
.y1a0{bottom:939.570000px;}
.y12d{bottom:942.090000px;}
.y23{bottom:943.740000px;}
.yb1{bottom:945.690000px;}
.y18b{bottom:946.590000px;}
.y147{bottom:946.950000px;}
.yee{bottom:955.410000px;}
.y51{bottom:955.590000px;}
.y19f{bottom:957.570000px;}
.y42{bottom:958.140000px;}
.y12c{bottom:959.910000px;}
.y18a{bottom:964.410000px;}
.y1d6{bottom:964.590000px;}
.y146{bottom:964.770000px;}
.yb4{bottom:973.230000px;}
.y50{bottom:973.410000px;}
.y19e{bottom:975.390000px;}
.y12b{bottom:977.730000px;}
.yed{bottom:982.230000px;}
.y1d5{bottom:982.410000px;}
.y145{bottom:982.770000px;}
.y4f{bottom:991.230000px;}
.y41{bottom:992.130000px;}
.y19d{bottom:993.210000px;}
.y12a{bottom:995.550000px;}
.yec{bottom:1000.050000px;}
.y1d4{bottom:1000.230000px;}
.y144{bottom:1000.590000px;}
.yaf{bottom:1001.310000px;}
.y4e{bottom:1009.050000px;}
.y19c{bottom:1011.030000px;}
.y129{bottom:1013.010000px;}
.yeb{bottom:1017.870000px;}
.y1d3{bottom:1018.050000px;}
.y40{bottom:1018.410000px;}
.y4d{bottom:1026.870000px;}
.y143{bottom:1027.410000px;}
.y19b{bottom:1028.850000px;}
.y128{bottom:1031.010000px;}
.yae{bottom:1035.870000px;}
.y3f{bottom:1044.510000px;}
.y4c{bottom:1044.870000px;}
.y19a{bottom:1046.850000px;}
.y127{bottom:1048.830000px;}
.y13c{bottom:1049.370000px;}
.yea{bottom:1053.330000px;}
.y1d2{bottom:1053.870000px;}
.y4b{bottom:1062.690000px;}
.y199{bottom:1064.670000px;}
.y3e{bottom:1071.150000px;}
.y1d1{bottom:1071.690000px;}
.y126{bottom:1076.010000px;}
.y4a{bottom:1080.510000px;}
.y198{bottom:1082.490000px;}
.y1d0{bottom:1089.510000px;}
.y125{bottom:1093.830000px;}
.y140{bottom:1094.910000px;}
.yad{bottom:1097.970000px;}
.y49{bottom:1098.330000px;}
.y197{bottom:1100.310000px;}
.y1cf{bottom:1107.330000px;}
.ya{bottom:1110.030000px;}
.y124{bottom:1111.650000px;}
.ye9{bottom:1115.790000px;}
.y48{bottom:1116.150000px;}
.y196{bottom:1118.130000px;}
.yac{bottom:1125.150000px;}
.y123{bottom:1129.470000px;}
.y47{bottom:1133.970000px;}
.y195{bottom:1135.950000px;}
.y136{bottom:1140.270000px;}
.y82{bottom:1142.970000px;}
.y46{bottom:1151.640000px;}
.y189{bottom:1152.000000px;}
.y194{bottom:1155.960000px;}
.y122{bottom:1156.500000px;}
.y81{bottom:1161.000000px;}
.y11f{bottom:1169.460000px;}
.y45{bottom:1178.820000px;}
.y139{bottom:1185.840000px;}
.y193{bottom:1190.700000px;}
.y1{bottom:1195.560000px;}
.y44{bottom:1196.640000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h31{height:22.320000px;}
.h28{height:26.805000px;}
.h3a{height:26.815500px;}
.h1d{height:26.820000px;}
.h3d{height:26.841000px;}
.h20{height:26.856000px;}
.h27{height:26.985000px;}
.h2d{height:26.995500px;}
.h22{height:27.000000px;}
.h36{height:27.030000px;}
.h2a{height:27.036000px;}
.h1c{height:27.180000px;}
.h24{height:27.396000px;}
.h26{height:27.525000px;}
.h1a{height:28.080000px;}
.h1f{height:28.260000px;}
.h2c{height:31.855500px;}
.h2e{height:38.700000px;}
.h10{height:40.985156px;}
.h34{height:44.640000px;}
.h29{height:44.661000px;}
.h32{height:44.662500px;}
.h2f{height:44.820000px;}
.hb{height:45.061523px;}
.h25{height:45.509766px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h19{height:54.421875px;}
.h1b{height:54.720000px;}
.h18{height:55.503491px;}
.h23{height:55.800000px;}
.h8{height:55.825312px;}
.h1e{height:55.836000px;}
.h12{height:58.500000px;}
.h14{height:58.621992px;}
.h15{height:58.763250px;}
.h3b{height:59.092031px;}
.h2b{height:59.575500px;}
.h16{height:60.226875px;}
.h38{height:62.676000px;}
.h6{height:65.010937px;}
.h11{height:66.757500px;}
.h30{height:67.882500px;}
.he{height:69.300000px;}
.hf{height:72.326250px;}
.h9{height:78.367500px;}
.h37{height:82.065000px;}
.h39{height:82.075500px;}
.h3c{height:82.101000px;}
.h35{height:82.110000px;}
.h21{height:83.340000px;}
.hd{height:84.898125px;}
.h33{height:90.180000px;}
.h17{height:132.480000px;}
.hc{height:160.560000px;}
.h13{height:306.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:32.940000px;}
.w2a{width:32.961000px;}
.w1a{width:39.765000px;}
.w1f{width:39.780000px;}
.w18{width:39.801000px;}
.w27{width:43.740000px;}
.w37{width:46.065000px;}
.w1b{width:46.425000px;}
.w20{width:46.476000px;}
.w19{width:46.605000px;}
.w24{width:47.196000px;}
.w2b{width:47.325000px;}
.w30{width:47.556000px;}
.w31{width:47.700000px;}
.w26{width:50.580000px;}
.w2d{width:50.790000px;}
.w1c{width:53.310000px;}
.w32{width:54.360000px;}
.w36{width:55.605000px;}
.w14{width:55.785000px;}
.w10{width:57.585000px;}
.wc{width:57.600000px;}
.wf{width:59.565000px;}
.w17{width:59.925000px;}
.w1e{width:60.111000px;}
.w25{width:60.840000px;}
.w2c{width:61.005000px;}
.w35{width:61.941000px;}
.w22{width:62.991000px;}
.w29{width:63.165000px;}
.wb{width:64.800000px;}
.w34{width:68.205000px;}
.w13{width:69.825000px;}
.w38{width:74.730000px;}
.w3d{width:79.725000px;}
.w16{width:79.905000px;}
.w1d{width:79.942500px;}
.w3f{width:80.085000px;}
.w40{width:80.130000px;}
.w3b{width:80.280000px;}
.w3a{width:80.316000px;}
.w28{width:81.885000px;}
.w21{width:81.922500px;}
.w15{width:83.910000px;}
.w2{width:85.320000px;}
.w2e{width:88.402500px;}
.w2f{width:95.931000px;}
.w11{width:101.010000px;}
.w33{width:109.656000px;}
.w9{width:115.582500px;}
.w3e{width:120.621000px;}
.w3c{width:120.771000px;}
.wa{width:130.176000px;}
.we{width:154.275000px;}
.w12{width:154.455000px;}
.w39{width:201.445500px;}
.wd{width:246.490500px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:777.420000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x46{left:4.495500px;}
.x65{left:6.480000px;}
.x25{left:7.735500px;}
.x39{left:8.985000px;}
.xb{left:10.800000px;}
.x41{left:12.060000px;}
.x40{left:13.890000px;}
.x3b{left:15.330000px;}
.x27{left:16.920000px;}
.x2a{left:18.540000px;}
.x29{left:20.340000px;}
.x24{left:21.960000px;}
.x2f{left:23.940000px;}
.x26{left:25.560000px;}
.x2d{left:26.820000px;}
.x5f{left:27.885000px;}
.x28{left:28.980000px;}
.x23{left:30.060000px;}
.x33{left:31.500000px;}
.x1f{left:32.611500px;}
.x60{left:35.310000px;}
.x61{left:37.290000px;}
.x37{left:39.945000px;}
.x30{left:42.840000px;}
.x67{left:44.100000px;}
.x21{left:45.540000px;}
.x45{left:48.064500px;}
.x5{left:54.000000px;}
.x1e{left:55.444500px;}
.x69{left:56.745000px;}
.x62{left:58.864500px;}
.x13{left:61.200000px;}
.x12{left:65.160000px;}
.x6e{left:69.690000px;}
.x54{left:70.740000px;}
.x14{left:72.000000px;}
.x68{left:75.825000px;}
.x70{left:81.000000px;}
.x1{left:100.080000px;}
.xc{left:105.336000px;}
.x6f{left:108.036000px;}
.x11{left:110.736000px;}
.x47{left:130.716000px;}
.x42{left:136.116000px;}
.x66{left:139.536000px;}
.x6{left:161.670000px;}
.x20{left:171.750000px;}
.x1a{left:175.935000px;}
.x10{left:183.630000px;}
.x48{left:194.430000px;}
.x43{left:196.950000px;}
.x19{left:198.360000px;}
.x49{left:228.270000px;}
.x55{left:232.050000px;}
.xd{left:236.595000px;}
.x63{left:261.030000px;}
.x4a{left:276.375000px;}
.x56{left:280.335000px;}
.x44{left:284.655000px;}
.x18{left:286.455000px;}
.x17{left:291.495000px;}
.x15{left:301.035000px;}
.x22{left:302.655000px;}
.xf{left:303.735000px;}
.x57{left:328.755000px;}
.x4b{left:338.115000px;}
.x64{left:342.075000px;}
.x7{left:356.655000px;}
.x16{left:358.635000px;}
.x3{left:367.920000px;}
.x58{left:383.835000px;}
.x4c{left:389.415000px;}
.x4d{left:459.840000px;}
.x4{left:463.140000px;}
.xa{left:465.945000px;}
.x36{left:467.400000px;}
.x31{left:469.380000px;}
.x6a{left:470.820000px;}
.x1b{left:492.945000px;}
.x59{left:494.220000px;}
.x1c{left:519.945000px;}
.x4e{left:542.460000px;}
.x1d{left:546.945000px;}
.x38{left:548.040000px;}
.x6b{left:551.460000px;}
.x5a{left:563.160000px;}
.xe{left:602.025000px;}
.x4f{left:606.360000px;}
.x3a{left:608.700000px;}
.x2b{left:620.250000px;}
.x32{left:624.570000px;}
.x5b{left:625.830000px;}
.x50{left:640.050000px;}
.x3c{left:649.230000px;}
.x6c{left:672.990000px;}
.x2c{left:680.550000px;}
.x5c{left:682.170000px;}
.x51{left:688.110000px;}
.x34{left:695.130000px;}
.x3d{left:696.570000px;}
.x5d{left:728.970000px;}
.x3e{left:737.070000px;}
.x2e{left:738.870000px;}
.x52{left:749.850000px;}
.x35{left:751.650000px;}
.x6d{left:753.990000px;}
.x5e{left:775.950000px;}
.x3f{left:784.230000px;}
.x53{left:801.360000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls15{letter-spacing:-2.240000pt;}
.ls1a{letter-spacing:-1.600000pt;}
.ls14{letter-spacing:-1.472000pt;}
.ls13{letter-spacing:-1.392000pt;}
.ls19{letter-spacing:-1.376000pt;}
.ls11{letter-spacing:-1.088000pt;}
.ls18{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.528000pt;}
.ls25{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.112000pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.112000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.208000pt;}
.ls4{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls6{letter-spacing:3.360000pt;}
.ls7{letter-spacing:4.000000pt;}
.ls16{letter-spacing:11.040000pt;}
.ls1d{letter-spacing:11.680000pt;}
.ls1c{letter-spacing:14.880000pt;}
.ls1f{letter-spacing:22.496000pt;}
.ls28{letter-spacing:32.800000pt;}
.ls9{letter-spacing:46.816000pt;}
.lsb{letter-spacing:47.456000pt;}
.lsa{letter-spacing:50.016000pt;}
.wsf{word-spacing:-35.856000pt;}
.ws1{word-spacing:-17.272320pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.208000pt;}
.ws18{word-spacing:-12.192000pt;}
.ws1b{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.ws1f{word-spacing:-11.888000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws1e{word-spacing:-11.472000pt;}
.ws8{word-spacing:-11.456000pt;}
.ws7{word-spacing:-11.264000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.912000pt;}
.ws15{word-spacing:-10.624000pt;}
.ws11{word-spacing:-10.608000pt;}
.ws12{word-spacing:-10.528000pt;}
.ws16{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.760000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws17{word-spacing:-7.360000pt;}
.ws20{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.058880pt;}
.ws19{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
._29{margin-left:-33.605333pt;}
._25{margin-left:-4.309760pt;}
._21{margin-left:-3.210240pt;}
._1c{margin-left:-1.877760pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._7{width:3.072000pt;}
._6{width:4.704000pt;}
._5{width:5.952000pt;}
._b{width:6.912000pt;}
._c{width:7.850240pt;}
._d{width:8.995413pt;}
._9{width:10.176000pt;}
._a{width:11.078827pt;}
._e{width:12.201173pt;}
._f{width:13.507413pt;}
._8{width:15.242240pt;}
._3{width:16.320000pt;}
._4{width:17.225173pt;}
._13{width:19.056000pt;}
._1a{width:20.064000pt;}
._14{width:21.024000pt;}
._12{width:21.984000pt;}
._11{width:23.546240pt;}
._10{width:24.672000pt;}
._15{width:25.891413pt;}
._1e{width:27.290240pt;}
._1d{width:28.341760pt;}
._19{width:29.546240pt;}
._17{width:31.056000pt;}
._16{width:32.208000pt;}
._1b{width:34.032000pt;}
._18{width:34.944000pt;}
._2f{width:35.897600pt;}
._22{width:37.152000pt;}
._23{width:38.112000pt;}
._26{width:39.216000pt;}
._31{width:40.238080pt;}
._32{width:43.482667pt;}
._1f{width:44.880000pt;}
._20{width:45.852587pt;}
._2d{width:48.016000pt;}
._2c{width:48.912000pt;}
._2b{width:49.898667pt;}
._27{width:52.336000pt;}
._2a{width:55.130667pt;}
._28{width:56.112000pt;}
._24{width:139.872000pt;}
._2e{width:686.842667pt;}
._30{width:743.146667pt;}
._2{width:2580.859733pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y43{bottom:6.533333pt;}
.y11a{bottom:7.520000pt;}
.y150{bottom:7.840000pt;}
.y2e{bottom:8.386667pt;}
.y109{bottom:8.626667pt;}
.yf6{bottom:8.640000pt;}
.y134{bottom:8.800000pt;}
.yf1{bottom:8.840000pt;}
.yb6{bottom:8.960000pt;}
.y13b{bottom:8.986667pt;}
.yc2{bottom:9.120000pt;}
.yf0{bottom:9.160000pt;}
.yb5{bottom:9.280000pt;}
.yb0{bottom:9.760000pt;}
.yc7{bottom:9.920000pt;}
.yc0{bottom:10.080000pt;}
.ybb{bottom:10.240000pt;}
.y115{bottom:10.560000pt;}
.yf2{bottom:11.080000pt;}
.y104{bottom:11.200000pt;}
.y116{bottom:12.000000pt;}
.y27{bottom:13.053333pt;}
.yb3{bottom:13.920000pt;}
.yb9{bottom:14.720000pt;}
.y11d{bottom:14.880000pt;}
.y8{bottom:20.000000pt;}
.y121{bottom:20.960000pt;}
.y14f{bottom:21.600000pt;}
.y120{bottom:23.200000pt;}
.y119{bottom:23.360000pt;}
.y155{bottom:23.520000pt;}
.y108{bottom:24.506667pt;}
.y133{bottom:24.640000pt;}
.y141{bottom:24.800000pt;}
.y13a{bottom:24.826667pt;}
.y132{bottom:24.960000pt;}
.y174{bottom:25.946667pt;}
.y16e{bottom:26.080000pt;}
.y154{bottom:27.840000pt;}
.y13f{bottom:33.280000pt;}
.y138{bottom:33.306667pt;}
.yb2{bottom:33.760000pt;}
.yc4{bottom:34.720000pt;}
.yb8{bottom:34.760000pt;}
.y7{bottom:36.480000pt;}
.y118{bottom:39.200000pt;}
.ybe{bottom:39.360000pt;}
.y11c{bottom:39.520000pt;}
.y16a{bottom:40.506667pt;}
.y169{bottom:40.826667pt;}
.y173{bottom:41.786667pt;}
.y16d{bottom:41.920000pt;}
.y13e{bottom:49.120000pt;}
.y137{bottom:49.146667pt;}
.y6{bottom:50.560000pt;}
.y3b{bottom:57.466667pt;}
.y16c{bottom:57.760000pt;}
.y172{bottom:57.786667pt;}
.ybd{bottom:59.200000pt;}
.y13d{bottom:64.960000pt;}
.y142{bottom:65.280000pt;}
.y22{bottom:72.000000pt;}
.ye8{bottom:72.160000pt;}
.y188{bottom:72.960000pt;}
.y16b{bottom:75.040000pt;}
.y3a{bottom:75.066667pt;}
.y80{bottom:79.360000pt;}
.yab{bottom:80.000000pt;}
.y11e{bottom:80.640000pt;}
.y18{bottom:80.800000pt;}
.y21{bottom:87.840000pt;}
.ye7{bottom:88.000000pt;}
.y187{bottom:88.960000pt;}
.y1ce{bottom:89.280000pt;}
.y39{bottom:92.666667pt;}
.y7f{bottom:95.200000pt;}
.yaa{bottom:96.000000pt;}
.y17{bottom:96.640000pt;}
.y170{bottom:99.680000pt;}
.y20{bottom:103.840000pt;}
.y186{bottom:104.800000pt;}
.y1cd{bottom:105.120000pt;}
.y117{bottom:105.280000pt;}
.y38{bottom:110.266667pt;}
.y7e{bottom:111.200000pt;}
.ya9{bottom:111.520000pt;}
.y16{bottom:112.640000pt;}
.y1f{bottom:119.680000pt;}
.y185{bottom:120.640000pt;}
.y1cc{bottom:120.960000pt;}
.y16f{bottom:124.160000pt;}
.y7d{bottom:127.040000pt;}
.ye6{bottom:127.680000pt;}
.y37{bottom:127.866667pt;}
.y15{bottom:128.480000pt;}
.y24{bottom:129.093333pt;}
.y11b{bottom:134.240000pt;}
.y1e{bottom:135.520000pt;}
.ya8{bottom:135.680000pt;}
.y184{bottom:136.480000pt;}
.y1cb{bottom:136.960000pt;}
.y7c{bottom:142.880000pt;}
.ye5{bottom:143.680000pt;}
.y14{bottom:144.320000pt;}
.y36{bottom:145.626667pt;}
.y168{bottom:148.640000pt;}
.y1d{bottom:151.360000pt;}
.y183{bottom:152.320000pt;}
.y1ca{bottom:152.800000pt;}
.ya7{bottom:153.280000pt;}
.y7b{bottom:158.720000pt;}
.y114{bottom:159.040000pt;}
.ye4{bottom:159.520000pt;}
.y13{bottom:160.160000pt;}
.y35{bottom:163.266667pt;}
.y1c{bottom:167.200000pt;}
.y182{bottom:168.160000pt;}
.y1c9{bottom:168.640000pt;}
.y7a{bottom:174.240000pt;}
.y192{bottom:174.560000pt;}
.ye3{bottom:175.360000pt;}
.y12{bottom:176.000000pt;}
.y34{bottom:180.866667pt;}
.ya6{bottom:182.400000pt;}
.y1b{bottom:183.066667pt;}
.y181{bottom:184.186667pt;}
.y1c8{bottom:184.506667pt;}
.y113{bottom:188.666667pt;}
.y191{bottom:190.426667pt;}
.ye2{bottom:191.226667pt;}
.y11{bottom:192.026667pt;}
.y79{bottom:198.426667pt;}
.y33{bottom:198.466667pt;}
.y1a{bottom:199.066667pt;}
.y180{bottom:200.026667pt;}
.y1c7{bottom:200.346667pt;}
.y112{bottom:204.506667pt;}
.y190{bottom:206.426667pt;}
.ye1{bottom:207.066667pt;}
.y10{bottom:209.626667pt;}
.y167{bottom:209.946667pt;}
.ya5{bottom:214.266667pt;}
.y78{bottom:214.426667pt;}
.y19{bottom:214.906667pt;}
.y17f{bottom:215.866667pt;}
.y32{bottom:216.066667pt;}
.y1c6{bottom:216.186667pt;}
.y18f{bottom:222.266667pt;}
.ye0{bottom:223.066667pt;}
.y166{bottom:225.786667pt;}
.y111{bottom:228.346667pt;}
.ya4{bottom:230.106667pt;}
.y77{bottom:230.266667pt;}
.y17e{bottom:231.706667pt;}
.y1c5{bottom:232.186667pt;}
.y31{bottom:233.826667pt;}
.y18e{bottom:238.106667pt;}
.ydf{bottom:238.906667pt;}
.y165{bottom:241.786667pt;}
.y2f{bottom:244.160000pt;}
.y110{bottom:244.186667pt;}
.ya3{bottom:245.946667pt;}
.y76{bottom:246.106667pt;}
.y17d{bottom:247.546667pt;}
.y1c4{bottom:248.026667pt;}
.y30{bottom:251.426667pt;}
.y18d{bottom:253.946667pt;}
.yde{bottom:254.746667pt;}
.y3d{bottom:257.786667pt;}
.y10f{bottom:260.186667pt;}
.ya2{bottom:261.786667pt;}
.y75{bottom:261.946667pt;}
.y17c{bottom:263.546667pt;}
.y1c3{bottom:263.866667pt;}
.y164{bottom:265.626667pt;}
.y18c{bottom:269.786667pt;}
.ydd{bottom:270.586667pt;}
.y10e{bottom:276.026667pt;}
.y74{bottom:277.786667pt;}
.y1c2{bottom:279.706667pt;}
.y17b{bottom:281.146667pt;}
.y163{bottom:281.466667pt;}
.y3c{bottom:283.866667pt;}
.ydc{bottom:286.426667pt;}
.y10d{bottom:291.546667pt;}
.ya1{bottom:293.626667pt;}
.y73{bottom:293.786667pt;}
.y1c1{bottom:295.546667pt;}
.y162{bottom:297.306667pt;}
.ydb{bottom:302.266667pt;}
.y10c{bottom:307.386667pt;}
.ya0{bottom:309.466667pt;}
.y72{bottom:309.626667pt;}
.y1f3{bottom:309.786667pt;}
.y17a{bottom:310.266667pt;}
.y1c0{bottom:311.546667pt;}
.y161{bottom:312.826667pt;}
.yda{bottom:318.266667pt;}
.y9f{bottom:325.306667pt;}
.y71{bottom:325.466667pt;}
.y179{bottom:326.106667pt;}
.y1bf{bottom:327.386667pt;}
.y160{bottom:328.826667pt;}
.y10b{bottom:331.546667pt;}
.y1f2{bottom:333.626667pt;}
.yd9{bottom:333.786667pt;}
.y9e{bottom:341.146667pt;}
.y70{bottom:341.306667pt;}
.y178{bottom:341.946667pt;}
.y1be{bottom:343.226667pt;}
.y10a{bottom:347.706667pt;}
.y1f1{bottom:349.466667pt;}
.y15f{bottom:352.986667pt;}
.y6f{bottom:357.146667pt;}
.yd8{bottom:357.946667pt;}
.y1bd{bottom:359.066667pt;}
.y9d{bottom:364.986667pt;}
.y1f0{bottom:365.306667pt;}
.y177{bottom:365.946667pt;}
.y107{bottom:367.400000pt;}
.y15e{bottom:368.826667pt;}
.y6e{bottom:372.986667pt;}
.yd7{bottom:373.786667pt;}
.y1bc{bottom:374.906667pt;}
.y9c{bottom:380.986667pt;}
.y1ef{bottom:381.146667pt;}
.y15d{bottom:384.666667pt;}
.y171{bottom:385.480000pt;}
.y6d{bottom:388.986667pt;}
.yd6{bottom:389.626667pt;}
.y1bb{bottom:390.746667pt;}
.y9b{bottom:396.866667pt;}
.y1ee{bottom:397.026667pt;}
.y15c{bottom:400.546667pt;}
.y6c{bottom:404.866667pt;}
.yd5{bottom:405.666667pt;}
.y1ba{bottom:406.786667pt;}
.y106{bottom:407.746667pt;}
.y176{bottom:409.986667pt;}
.y9a{bottom:412.706667pt;}
.y1ed{bottom:413.026667pt;}
.y15b{bottom:416.386667pt;}
.y6b{bottom:420.706667pt;}
.yd4{bottom:421.506667pt;}
.y1b9{bottom:422.626667pt;}
.y99{bottom:428.226667pt;}
.y1ec{bottom:428.866667pt;}
.y105{bottom:432.226667pt;}
.y15a{bottom:432.386667pt;}
.y175{bottom:434.466667pt;}
.y6a{bottom:436.546667pt;}
.yd3{bottom:437.346667pt;}
.y1b8{bottom:438.466667pt;}
.y1eb{bottom:444.706667pt;}
.y159{bottom:448.226667pt;}
.y69{bottom:452.066667pt;}
.y98{bottom:452.386667pt;}
.yd2{bottom:453.186667pt;}
.y1b7{bottom:454.306667pt;}
.y103{bottom:456.866667pt;}
.y1ea{bottom:460.546667pt;}
.y97{bottom:468.386667pt;}
.yd1{bottom:468.706667pt;}
.y1b6{bottom:470.146667pt;}
.y158{bottom:472.066667pt;}
.y68{bottom:476.386667pt;}
.y96{bottom:484.226667pt;}
.y1b5{bottom:486.146667pt;}
.y102{bottom:486.946667pt;}
.y153{bottom:491.586667pt;}
.y67{bottom:492.226667pt;}
.y1e9{bottom:492.386667pt;}
.yd0{bottom:492.866667pt;}
.y95{bottom:500.066667pt;}
.y1b4{bottom:501.986667pt;}
.y66{bottom:508.066667pt;}
.y1e8{bottom:508.226667pt;}
.ycf{bottom:508.866667pt;}
.y101{bottom:510.786667pt;}
.y94{bottom:515.906667pt;}
.y157{bottom:516.066667pt;}
.y1b3{bottom:517.826667pt;}
.y65{bottom:523.906667pt;}
.y1e7{bottom:524.066667pt;}
.yce{bottom:524.706667pt;}
.y100{bottom:526.626667pt;}
.y93{bottom:531.746667pt;}
.y1b2{bottom:533.666667pt;}
.y64{bottom:539.746667pt;}
.y1e6{bottom:539.906667pt;}
.ycd{bottom:540.546667pt;}
.y156{bottom:540.706667pt;}
.yff{bottom:542.626667pt;}
.y92{bottom:547.586667pt;}
.y1b1{bottom:549.506667pt;}
.y63{bottom:555.586667pt;}
.y1e5{bottom:555.746667pt;}
.ycc{bottom:556.386667pt;}
.y91{bottom:563.586667pt;}
.y14e{bottom:565.186667pt;}
.y1b0{bottom:565.346667pt;}
.yfe{bottom:566.146667pt;}
.yf{bottom:568.546667pt;}
.y62{bottom:571.586667pt;}
.ycb{bottom:572.226667pt;}
.y90{bottom:579.426667pt;}
.y1af{bottom:581.346667pt;}
.ye{bottom:585.346667pt;}
.y61{bottom:587.426667pt;}
.y1e4{bottom:587.586667pt;}
.yca{bottom:588.226667pt;}
.y152{bottom:589.666667pt;}
.yfd{bottom:590.306667pt;}
.y2d{bottom:590.720000pt;}
.y8f{bottom:595.266667pt;}
.y1ae{bottom:597.186667pt;}
.y60{bottom:603.293333pt;}
.y1e3{bottom:603.453333pt;}
.yc9{bottom:604.093333pt;}
.yfc{bottom:606.173333pt;}
.y8e{bottom:611.133333pt;}
.y1ad{bottom:613.053333pt;}
.y151{bottom:614.333333pt;}
.y5f{bottom:619.133333pt;}
.y1e2{bottom:619.293333pt;}
.yc8{bottom:619.933333pt;}
.yfb{bottom:622.013333pt;}
.y2c{bottom:622.813333pt;}
.y8d{bottom:626.973333pt;}
.y1ac{bottom:628.893333pt;}
.y5e{bottom:634.973333pt;}
.y1e1{bottom:635.133333pt;}
.yfa{bottom:637.853333pt;}
.y14d{bottom:638.813333pt;}
.yc6{bottom:639.453333pt;}
.y8c{bottom:642.813333pt;}
.y1ab{bottom:644.733333pt;}
.yd{bottom:647.773333pt;}
.y5d{bottom:650.813333pt;}
.y1e0{bottom:650.973333pt;}
.yf9{bottom:653.853333pt;}
.y8b{bottom:658.813333pt;}
.y1aa{bottom:660.733333pt;}
.yc3{bottom:665.213333pt;}
.y5c{bottom:666.813333pt;}
.yf8{bottom:669.693333pt;}
.y2b{bottom:673.213333pt;}
.y8a{bottom:674.333333pt;}
.y1a9{bottom:676.573333pt;}
.y5b{bottom:682.653333pt;}
.y1df{bottom:682.813333pt;}
.y14c{bottom:684.253333pt;}
.yf7{bottom:685.533333pt;}
.yc5{bottom:689.693333pt;}
.y1a8{bottom:692.413333pt;}
.y2a{bottom:693.053333pt;}
.y5a{bottom:698.493333pt;}
.y1de{bottom:698.653333pt;}
.yf5{bottom:705.053333pt;}
.y1a7{bottom:708.253333pt;}
.y135{bottom:711.773333pt;}
.yc{bottom:712.573333pt;}
.y59{bottom:714.333333pt;}
.y1dd{bottom:714.493333pt;}
.ybc{bottom:715.453333pt;}
.y1a6{bottom:724.093333pt;}
.yf4{bottom:729.533333pt;}
.y89{bottom:730.173333pt;}
.y1dc{bottom:730.333333pt;}
.y29{bottom:730.653333pt;}
.y131{bottom:736.253333pt;}
.y58{bottom:738.173333pt;}
.y14b{bottom:738.493333pt;}
.yc1{bottom:739.933333pt;}
.y88{bottom:746.173333pt;}
.y57{bottom:754.173333pt;}
.y14a{bottom:754.333333pt;}
.y1a5{bottom:755.933333pt;}
.y87{bottom:762.013333pt;}
.y1db{bottom:762.173333pt;}
.ybf{bottom:764.573333pt;}
.y26{bottom:765.920000pt;}
.y56{bottom:770.013333pt;}
.y149{bottom:770.173333pt;}
.y1a4{bottom:771.773333pt;}
.y86{bottom:777.853333pt;}
.y1da{bottom:778.013333pt;}
.yf3{bottom:778.653333pt;}
.y28{bottom:778.973333pt;}
.y130{bottom:781.693333pt;}
.y55{bottom:785.853333pt;}
.y148{bottom:786.173333pt;}
.y1a3{bottom:787.613333pt;}
.yb7{bottom:790.333333pt;}
.y85{bottom:793.693333pt;}
.y1d9{bottom:793.853333pt;}
.y12f{bottom:797.533333pt;}
.y54{bottom:801.693333pt;}
.yef{bottom:803.293333pt;}
.y1a2{bottom:803.453333pt;}
.y25{bottom:804.093333pt;}
.y84{bottom:809.573333pt;}
.y1d8{bottom:809.733333pt;}
.y12e{bottom:813.413333pt;}
.yba{bottom:814.853333pt;}
.y53{bottom:817.573333pt;}
.y1a1{bottom:819.333333pt;}
.y83{bottom:825.413333pt;}
.y1d7{bottom:825.573333pt;}
.yb{bottom:832.773333pt;}
.y52{bottom:833.413333pt;}
.y1a0{bottom:835.173333pt;}
.y12d{bottom:837.413333pt;}
.y23{bottom:838.880000pt;}
.yb1{bottom:840.613333pt;}
.y18b{bottom:841.413333pt;}
.y147{bottom:841.733333pt;}
.yee{bottom:849.253333pt;}
.y51{bottom:849.413333pt;}
.y19f{bottom:851.173333pt;}
.y42{bottom:851.680000pt;}
.y12c{bottom:853.253333pt;}
.y18a{bottom:857.253333pt;}
.y1d6{bottom:857.413333pt;}
.y146{bottom:857.573333pt;}
.yb4{bottom:865.093333pt;}
.y50{bottom:865.253333pt;}
.y19e{bottom:867.013333pt;}
.y12b{bottom:869.093333pt;}
.yed{bottom:873.093333pt;}
.y1d5{bottom:873.253333pt;}
.y145{bottom:873.573333pt;}
.y4f{bottom:881.093333pt;}
.y41{bottom:881.893333pt;}
.y19d{bottom:882.853333pt;}
.y12a{bottom:884.933333pt;}
.yec{bottom:888.933333pt;}
.y1d4{bottom:889.093333pt;}
.y144{bottom:889.413333pt;}
.yaf{bottom:890.053333pt;}
.y4e{bottom:896.933333pt;}
.y19c{bottom:898.693333pt;}
.y129{bottom:900.453333pt;}
.yeb{bottom:904.773333pt;}
.y1d3{bottom:904.933333pt;}
.y40{bottom:905.253333pt;}
.y4d{bottom:912.773333pt;}
.y143{bottom:913.253333pt;}
.y19b{bottom:914.533333pt;}
.y128{bottom:916.453333pt;}
.yae{bottom:920.773333pt;}
.y3f{bottom:928.453333pt;}
.y4c{bottom:928.773333pt;}
.y19a{bottom:930.533333pt;}
.y127{bottom:932.293333pt;}
.y13c{bottom:932.773333pt;}
.yea{bottom:936.293333pt;}
.y1d2{bottom:936.773333pt;}
.y4b{bottom:944.613333pt;}
.y199{bottom:946.373333pt;}
.y3e{bottom:952.133333pt;}
.y1d1{bottom:952.613333pt;}
.y126{bottom:956.453333pt;}
.y4a{bottom:960.453333pt;}
.y198{bottom:962.213333pt;}
.y1d0{bottom:968.453333pt;}
.y125{bottom:972.293333pt;}
.y140{bottom:973.253333pt;}
.yad{bottom:975.973333pt;}
.y49{bottom:976.293333pt;}
.y197{bottom:978.053333pt;}
.y1cf{bottom:984.293333pt;}
.ya{bottom:986.693333pt;}
.y124{bottom:988.133333pt;}
.ye9{bottom:991.813333pt;}
.y48{bottom:992.133333pt;}
.y196{bottom:993.893333pt;}
.yac{bottom:1000.133333pt;}
.y123{bottom:1003.973333pt;}
.y47{bottom:1007.973333pt;}
.y195{bottom:1009.733333pt;}
.y136{bottom:1013.573333pt;}
.y82{bottom:1015.973333pt;}
.y46{bottom:1023.680000pt;}
.y189{bottom:1024.000000pt;}
.y194{bottom:1027.520000pt;}
.y122{bottom:1028.000000pt;}
.y81{bottom:1032.000000pt;}
.y11f{bottom:1039.520000pt;}
.y45{bottom:1047.840000pt;}
.y139{bottom:1054.080000pt;}
.y193{bottom:1058.400000pt;}
.y1{bottom:1062.720000pt;}
.y44{bottom:1063.680000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h31{height:19.840000pt;}
.h28{height:23.826667pt;}
.h3a{height:23.836000pt;}
.h1d{height:23.840000pt;}
.h3d{height:23.858667pt;}
.h20{height:23.872000pt;}
.h27{height:23.986667pt;}
.h2d{height:23.996000pt;}
.h22{height:24.000000pt;}
.h36{height:24.026667pt;}
.h2a{height:24.032000pt;}
.h1c{height:24.160000pt;}
.h24{height:24.352000pt;}
.h26{height:24.466667pt;}
.h1a{height:24.960000pt;}
.h1f{height:25.120000pt;}
.h2c{height:28.316000pt;}
.h2e{height:34.400000pt;}
.h10{height:36.431250pt;}
.h34{height:39.680000pt;}
.h29{height:39.698667pt;}
.h32{height:39.700000pt;}
.h2f{height:39.840000pt;}
.hb{height:40.054688pt;}
.h25{height:40.453125pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h19{height:48.375000pt;}
.h1b{height:48.640000pt;}
.h18{height:49.336436pt;}
.h23{height:49.600000pt;}
.h8{height:49.622500pt;}
.h1e{height:49.632000pt;}
.h12{height:52.000000pt;}
.h14{height:52.108438pt;}
.h15{height:52.234000pt;}
.h3b{height:52.526250pt;}
.h2b{height:52.956000pt;}
.h16{height:53.535000pt;}
.h38{height:55.712000pt;}
.h6{height:57.787500pt;}
.h11{height:59.340000pt;}
.h30{height:60.340000pt;}
.he{height:61.600000pt;}
.hf{height:64.290000pt;}
.h9{height:69.660000pt;}
.h37{height:72.946667pt;}
.h39{height:72.956000pt;}
.h3c{height:72.978667pt;}
.h35{height:72.986667pt;}
.h21{height:74.080000pt;}
.hd{height:75.465000pt;}
.h33{height:80.160000pt;}
.h17{height:117.760000pt;}
.hc{height:142.720000pt;}
.h13{height:272.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:29.280000pt;}
.w2a{width:29.298667pt;}
.w1a{width:35.346667pt;}
.w1f{width:35.360000pt;}
.w18{width:35.378667pt;}
.w27{width:38.880000pt;}
.w37{width:40.946667pt;}
.w1b{width:41.266667pt;}
.w20{width:41.312000pt;}
.w19{width:41.426667pt;}
.w24{width:41.952000pt;}
.w2b{width:42.066667pt;}
.w30{width:42.272000pt;}
.w31{width:42.400000pt;}
.w26{width:44.960000pt;}
.w2d{width:45.146667pt;}
.w1c{width:47.386667pt;}
.w32{width:48.320000pt;}
.w36{width:49.426667pt;}
.w14{width:49.586667pt;}
.w10{width:51.186667pt;}
.wc{width:51.200000pt;}
.wf{width:52.946667pt;}
.w17{width:53.266667pt;}
.w1e{width:53.432000pt;}
.w25{width:54.080000pt;}
.w2c{width:54.226667pt;}
.w35{width:55.058667pt;}
.w22{width:55.992000pt;}
.w29{width:56.146667pt;}
.wb{width:57.600000pt;}
.w34{width:60.626667pt;}
.w13{width:62.066667pt;}
.w38{width:66.426667pt;}
.w3d{width:70.866667pt;}
.w16{width:71.026667pt;}
.w1d{width:71.060000pt;}
.w3f{width:71.186667pt;}
.w40{width:71.226667pt;}
.w3b{width:71.360000pt;}
.w3a{width:71.392000pt;}
.w28{width:72.786667pt;}
.w21{width:72.820000pt;}
.w15{width:74.586667pt;}
.w2{width:75.840000pt;}
.w2e{width:78.580000pt;}
.w2f{width:85.272000pt;}
.w11{width:89.786667pt;}
.w33{width:97.472000pt;}
.w9{width:102.740000pt;}
.w3e{width:107.218667pt;}
.w3c{width:107.352000pt;}
.wa{width:115.712000pt;}
.we{width:137.133333pt;}
.w12{width:137.293333pt;}
.w39{width:179.062667pt;}
.wd{width:219.102667pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:691.040000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x46{left:3.996000pt;}
.x65{left:5.760000pt;}
.x25{left:6.876000pt;}
.x39{left:7.986667pt;}
.xb{left:9.600000pt;}
.x41{left:10.720000pt;}
.x40{left:12.346667pt;}
.x3b{left:13.626667pt;}
.x27{left:15.040000pt;}
.x2a{left:16.480000pt;}
.x29{left:18.080000pt;}
.x24{left:19.520000pt;}
.x2f{left:21.280000pt;}
.x26{left:22.720000pt;}
.x2d{left:23.840000pt;}
.x5f{left:24.786667pt;}
.x28{left:25.760000pt;}
.x23{left:26.720000pt;}
.x33{left:28.000000pt;}
.x1f{left:28.988000pt;}
.x60{left:31.386667pt;}
.x61{left:33.146667pt;}
.x37{left:35.506667pt;}
.x30{left:38.080000pt;}
.x67{left:39.200000pt;}
.x21{left:40.480000pt;}
.x45{left:42.724000pt;}
.x5{left:48.000000pt;}
.x1e{left:49.284000pt;}
.x69{left:50.440000pt;}
.x62{left:52.324000pt;}
.x13{left:54.400000pt;}
.x12{left:57.920000pt;}
.x6e{left:61.946667pt;}
.x54{left:62.880000pt;}
.x14{left:64.000000pt;}
.x68{left:67.400000pt;}
.x70{left:72.000000pt;}
.x1{left:88.960000pt;}
.xc{left:93.632000pt;}
.x6f{left:96.032000pt;}
.x11{left:98.432000pt;}
.x47{left:116.192000pt;}
.x42{left:120.992000pt;}
.x66{left:124.032000pt;}
.x6{left:143.706667pt;}
.x20{left:152.666667pt;}
.x1a{left:156.386667pt;}
.x10{left:163.226667pt;}
.x48{left:172.826667pt;}
.x43{left:175.066667pt;}
.x19{left:176.320000pt;}
.x49{left:202.906667pt;}
.x55{left:206.266667pt;}
.xd{left:210.306667pt;}
.x63{left:232.026667pt;}
.x4a{left:245.666667pt;}
.x56{left:249.186667pt;}
.x44{left:253.026667pt;}
.x18{left:254.626667pt;}
.x17{left:259.106667pt;}
.x15{left:267.586667pt;}
.x22{left:269.026667pt;}
.xf{left:269.986667pt;}
.x57{left:292.226667pt;}
.x4b{left:300.546667pt;}
.x64{left:304.066667pt;}
.x7{left:317.026667pt;}
.x16{left:318.786667pt;}
.x3{left:327.040000pt;}
.x58{left:341.186667pt;}
.x4c{left:346.146667pt;}
.x4d{left:408.746667pt;}
.x4{left:411.680000pt;}
.xa{left:414.173333pt;}
.x36{left:415.466667pt;}
.x31{left:417.226667pt;}
.x6a{left:418.506667pt;}
.x1b{left:438.173333pt;}
.x59{left:439.306667pt;}
.x1c{left:462.173333pt;}
.x4e{left:482.186667pt;}
.x1d{left:486.173333pt;}
.x38{left:487.146667pt;}
.x6b{left:490.186667pt;}
.x5a{left:500.586667pt;}
.xe{left:535.133333pt;}
.x4f{left:538.986667pt;}
.x3a{left:541.066667pt;}
.x2b{left:551.333333pt;}
.x32{left:555.173333pt;}
.x5b{left:556.293333pt;}
.x50{left:568.933333pt;}
.x3c{left:577.093333pt;}
.x6c{left:598.213333pt;}
.x2c{left:604.933333pt;}
.x5c{left:606.373333pt;}
.x51{left:611.653333pt;}
.x34{left:617.893333pt;}
.x3d{left:619.173333pt;}
.x5d{left:647.973333pt;}
.x3e{left:655.173333pt;}
.x2e{left:656.773333pt;}
.x52{left:666.533333pt;}
.x35{left:668.133333pt;}
.x6d{left:670.213333pt;}
.x5e{left:689.733333pt;}
.x3f{left:697.093333pt;}
.x53{left:712.320000pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
}




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