
    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_959b9c3eb497fee4a2af4105.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_0b6a4ce23370cd609388b4a4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4acb1cefb960427bdd303968.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090820;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_f0381d9faa0716e5e4a785df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7329209c3f30b12baeec8f16.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_5af61b6c8796572950acfe5a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_309776e3b74efcbe8ea410d6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a3dee110c376080137c4a765.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.091309;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_62b6d8dcb320a0bd931aae6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_26d0287a47b8cf5ef0304042.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_222b08386fa614fae436d26a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.086426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8e580d33bda63fc76816e90e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:2.880000px;}
.ls12{letter-spacing:7.200000px;}
.lse{letter-spacing:10.080000px;}
.ls10{letter-spacing:21.600000px;}
.ls13{letter-spacing:26.640000px;}
.ls6{letter-spacing:36.720000px;}
.ls9{letter-spacing:54.840000px;}
.ls11{letter-spacing:66.240000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws6{word-spacing:-59.939280px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.568000px;}
.ws8{word-spacing:-15.876000px;}
.ws7{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.146400px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._2e{margin-left:-6.402240px;}
._30{margin-left:-5.196000px;}
._1c{margin-left:-4.176000px;}
._f{margin-left:-2.736000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._9{width:2.748000px;}
._7{width:3.816000px;}
._8{width:4.896000px;}
._c{width:6.096000px;}
._11{width:7.128000px;}
._3{width:8.352000px;}
._2{width:9.432000px;}
._17{width:10.512000px;}
._13{width:11.520000px;}
._14{width:12.960000px;}
._15{width:14.244000px;}
._b{width:15.336000px;}
._a{width:16.488000px;}
._16{width:19.152000px;}
._1e{width:20.328000px;}
._19{width:21.672000px;}
._10{width:23.400000px;}
._21{width:24.408000px;}
._12{width:25.452000px;}
._5{width:26.652000px;}
._4{width:28.008000px;}
._28{width:29.088000px;}
._6{width:30.168000px;}
._22{width:31.392000px;}
._1a{width:32.472000px;}
._1b{width:33.840000px;}
._2a{width:35.352000px;}
._1d{width:36.648000px;}
._29{width:38.088000px;}
._20{width:39.384000px;}
._31{width:46.152000px;}
._32{width:47.736000px;}
._18{width:48.888000px;}
._27{width:50.328000px;}
._d{width:51.480000px;}
._e{width:52.752000px;}
._24{width:56.088000px;}
._23{width:57.096000px;}
._25{width:58.152000px;}
._2f{width:59.856000px;}
._34{width:63.288000px;}
._2d{width:64.512000px;}
._1f{width:65.880000px;}
._33{width:67.536000px;}
._37{width:81.000000px;}
._38{width:82.584000px;}
._35{width:94.824000px;}
._2b{width:100.510560px;}
._2c{width:127.044960px;}
._36{width:177.984000px;}
._26{width:2292.192000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs9{font-size:63.504000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.y100{bottom:12.060000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y17a{bottom:12.810000px;}
.y12{bottom:12.960000px;}
.y187{bottom:13.470000px;}
.y1b9{bottom:16.740000px;}
.y197{bottom:17.820000px;}
.yb2{bottom:18.540000px;}
.yae{bottom:18.720000px;}
.y15a{bottom:18.900000px;}
.y151{bottom:20.985000px;}
.y3{bottom:21.960000px;}
.y7{bottom:24.300000px;}
.y1bb{bottom:25.200000px;}
.y1b7{bottom:25.380000px;}
.y5{bottom:26.100000px;}
.y192{bottom:27.360000px;}
.y191{bottom:28.845000px;}
.y176{bottom:30.165000px;}
.y198{bottom:32.040000px;}
.y1b8{bottom:34.020000px;}
.y180{bottom:36.390000px;}
.y14a{bottom:40.170000px;}
.y2{bottom:42.660000px;}
.y195{bottom:47.340000px;}
.y188{bottom:49.605000px;}
.y17b{bottom:52.950000px;}
.y17f{bottom:53.610000px;}
.y18f{bottom:53.820000px;}
.y181{bottom:56.265000px;}
.yc{bottom:56.700000px;}
.y14b{bottom:58.785000px;}
.y175{bottom:61.845000px;}
.y177{bottom:71.610000px;}
.y152{bottom:71.640000px;}
.yb{bottom:72.180000px;}
.y149{bottom:73.110000px;}
.y194{bottom:73.620000px;}
.y182{bottom:76.140000px;}
.y14c{bottom:77.430000px;}
.y18e{bottom:79.965000px;}
.y183{bottom:96.015000px;}
.y14d{bottom:96.045000px;}
.y201{bottom:111.960000px;}
.y178{bottom:113.070000px;}
.ydc{bottom:114.480000px;}
.y14e{bottom:114.690000px;}
.y184{bottom:115.890000px;}
.y131{bottom:116.460000px;}
.y116{bottom:118.800000px;}
.y1ed{bottom:119.700000px;}
.y3b{bottom:120.060000px;}
.y68{bottom:120.960000px;}
.y96{bottom:121.860000px;}
.yb3{bottom:123.480000px;}
.y146{bottom:129.060000px;}
.y1cd{bottom:129.240000px;}
.yfe{bottom:129.960000px;}
.y1b0{bottom:130.140000px;}
.y172{bottom:130.860000px;}
.y155{bottom:132.450000px;}
.y14f{bottom:133.305000px;}
.ydb{bottom:135.180000px;}
.y218{bottom:135.360000px;}
.y185{bottom:135.750000px;}
.y3a{bottom:140.760000px;}
.y67{bottom:141.660000px;}
.y95{bottom:142.560000px;}
.y130{bottom:147.420000px;}
.y1ec{bottom:149.400000px;}
.y1cc{bottom:149.940000px;}
.y1af{bottom:150.840000px;}
.y171{bottom:151.560000px;}
.y150{bottom:151.920000px;}
.y174{bottom:153.285000px;}
.y179{bottom:154.515000px;}
.y186{bottom:155.625000px;}
.yda{bottom:155.880000px;}
.y217{bottom:156.060000px;}
.y17e{bottom:156.570000px;}
.y148{bottom:158.400000px;}
.y145{bottom:158.760000px;}
.yfd{bottom:159.660000px;}
.y39{bottom:161.460000px;}
.y66{bottom:162.360000px;}
.y94{bottom:163.260000px;}
.yb1{bottom:165.960000px;}
.y1cb{bottom:170.640000px;}
.y200{bottom:171.360000px;}
.y1ae{bottom:171.540000px;}
.y170{bottom:172.260000px;}
.yd9{bottom:176.580000px;}
.y216{bottom:176.760000px;}
.y12f{bottom:178.380000px;}
.y1eb{bottom:179.100000px;}
.y144{bottom:179.460000px;}
.yfc{bottom:180.360000px;}
.y38{bottom:182.160000px;}
.y153{bottom:182.670000px;}
.y17c{bottom:182.700000px;}
.y189{bottom:182.730000px;}
.y65{bottom:183.060000px;}
.y93{bottom:183.960000px;}
.y1ca{bottom:191.340000px;}
.y1ad{bottom:192.240000px;}
.y16f{bottom:192.960000px;}
.y1ff{bottom:201.090000px;}
.y37{bottom:202.890000px;}
.y92{bottom:204.690000px;}
.yd8{bottom:206.310000px;}
.y215{bottom:206.490000px;}
.yb0{bottom:208.290000px;}
.y1ea{bottom:208.830000px;}
.y143{bottom:209.190000px;}
.y12e{bottom:209.550000px;}
.yfb{bottom:210.090000px;}
.y1c9{bottom:212.070000px;}
.y64{bottom:212.790000px;}
.y1ac{bottom:212.970000px;}
.y16e{bottom:213.690000px;}
.y36{bottom:223.590000px;}
.y91{bottom:225.390000px;}
.yd7{bottom:227.010000px;}
.y214{bottom:227.190000px;}
.y12d{bottom:230.250000px;}
.y1fe{bottom:230.790000px;}
.y1c8{bottom:232.770000px;}
.y63{bottom:233.490000px;}
.y1ab{bottom:233.670000px;}
.y16d{bottom:234.390000px;}
.y1e9{bottom:238.530000px;}
.y142{bottom:238.890000px;}
.yfa{bottom:239.790000px;}
.y35{bottom:244.290000px;}
.y90{bottom:246.090000px;}
.yd6{bottom:247.710000px;}
.y213{bottom:247.890000px;}
.yaf{bottom:250.770000px;}
.y12c{bottom:250.950000px;}
.y1c7{bottom:253.470000px;}
.y62{bottom:254.190000px;}
.yf9{bottom:260.490000px;}
.y1aa{bottom:263.370000px;}
.y16c{bottom:264.090000px;}
.y34{bottom:264.990000px;}
.y8f{bottom:266.790000px;}
.y1e8{bottom:268.230000px;}
.yd5{bottom:268.410000px;}
.y141{bottom:268.590000px;}
.y12b{bottom:271.650000px;}
.y1c6{bottom:274.170000px;}
.y61{bottom:274.890000px;}
.y212{bottom:277.590000px;}
.yf8{bottom:281.190000px;}
.y1a9{bottom:284.070000px;}
.y16b{bottom:284.790000px;}
.y33{bottom:285.690000px;}
.y8e{bottom:287.490000px;}
.yad{bottom:293.250000px;}
.y1c5{bottom:294.870000px;}
.y60{bottom:295.590000px;}
.y1e7{bottom:297.930000px;}
.yd4{bottom:298.110000px;}
.y140{bottom:298.290000px;}
.y12a{bottom:301.350000px;}
.yf7{bottom:301.890000px;}
.y16a{bottom:305.490000px;}
.y32{bottom:306.390000px;}
.y1a8{bottom:315.030000px;}
.y1c4{bottom:315.570000px;}
.y5f{bottom:316.290000px;}
.y8d{bottom:317.190000px;}
.y1e6{bottom:318.630000px;}
.y211{bottom:318.990000px;}
.yf6{bottom:322.590000px;}
.y169{bottom:326.190000px;}
.y31{bottom:327.090000px;}
.yd3{bottom:327.810000px;}
.y13f{bottom:327.990000px;}
.y1fd{bottom:331.590000px;}
.y1a7{bottom:335.730000px;}
.y1c3{bottom:336.270000px;}
.y8c{bottom:337.890000px;}
.y1e5{bottom:339.330000px;}
.yf5{bottom:343.290000px;}
.y5e{bottom:345.990000px;}
.y30{bottom:347.790000px;}
.yd2{bottom:348.510000px;}
.yac{bottom:348.690000px;}
.y1fc{bottom:352.290000px;}
.y13e{bottom:353.730000px;}
.y147{bottom:354.060000px;}
.y115{bottom:355.530000px;}
.y168{bottom:355.890000px;}
.y1a6{bottom:356.430000px;}
.y8b{bottom:358.590000px;}
.y1e4{bottom:360.030000px;}
.yf4{bottom:363.990000px;}
.y1c2{bottom:365.790000px;}
.y5d{bottom:366.690000px;}
.y2f{bottom:368.490000px;}
.yd1{bottom:369.210000px;}
.y210{bottom:369.390000px;}
.y1fb{bottom:372.990000px;}
.y114{bottom:376.230000px;}
.yab{bottom:378.390000px;}
.y8a{bottom:379.290000px;}
.y1e3{bottom:380.730000px;}
.yf3{bottom:384.690000px;}
.y167{bottom:385.590000px;}
.y1c1{bottom:386.490000px;}
.y5c{bottom:387.390000px;}
.yd0{bottom:389.910000px;}
.y20f{bottom:390.090000px;}
.y1fa{bottom:393.690000px;}
.y113{bottom:396.930000px;}
.y2e{bottom:398.190000px;}
.y89{bottom:399.990000px;}
.yf2{bottom:405.390000px;}
.y1c0{bottom:407.190000px;}
.y5b{bottom:408.090000px;}
.y1e2{bottom:410.430000px;}
.ycf{bottom:410.610000px;}
.y166{bottom:411.150000px;}
.y17d{bottom:411.480000px;}
.y1f9{bottom:414.390000px;}
.y1a5{bottom:417.090000px;}
.y112{bottom:417.630000px;}
.y20e{bottom:419.790000px;}
.y88{bottom:420.690000px;}
.yf1{bottom:426.090000px;}
.y2d{bottom:427.890000px;}
.y5a{bottom:428.790000px;}
.y1e1{bottom:431.130000px;}
.yce{bottom:431.310000px;}
.y1f8{bottom:435.090000px;}
.y1a4{bottom:437.835000px;}
.y20d{bottom:440.535000px;}
.y111{bottom:447.375000px;}
.y1bf{bottom:448.635000px;}
.y59{bottom:449.535000px;}
.y87{bottom:450.435000px;}
.y1e0{bottom:451.875000px;}
.yf0{bottom:455.835000px;}
.y2c{bottom:457.635000px;}
.ycd{bottom:461.055000px;}
.y1f7{bottom:464.835000px;}
.y129{bottom:468.435000px;}
.y1a3{bottom:468.795000px;}
.y1be{bottom:469.335000px;}
.y58{bottom:470.235000px;}
.y86{bottom:471.135000px;}
.y1df{bottom:472.575000px;}
.y110{bottom:473.115000px;}
.yef{bottom:485.535000px;}
.y2b{bottom:487.335000px;}
.y128{bottom:489.135000px;}
.y1a2{bottom:489.495000px;}
.y1bd{bottom:490.035000px;}
.ycc{bottom:490.755000px;}
.yaa{bottom:490.935000px;}
.y85{bottom:491.835000px;}
.y1de{bottom:493.275000px;}
.y57{bottom:499.935000px;}
.yee{bottom:506.235000px;}
.y2a{bottom:508.035000px;}
.y127{bottom:509.835000px;}
.ycb{bottom:511.455000px;}
.ya9{bottom:511.635000px;}
.y84{bottom:512.535000px;}
.y1bc{bottom:516.675000px;}
.y1a1{bottom:520.455000px;}
.y1dd{bottom:522.975000px;}
.yed{bottom:526.935000px;}
.y29{bottom:528.735000px;}
.y56{bottom:529.635000px;}
.y126{bottom:530.535000px;}
.yca{bottom:532.155000px;}
.y83{bottom:533.235000px;}
.ya8{bottom:541.335000px;}
.y1dc{bottom:543.675000px;}
.yec{bottom:547.635000px;}
.y28{bottom:549.435000px;}
.y1a0{bottom:550.155000px;}
.y125{bottom:551.235000px;}
.y1ba{bottom:552.675000px;}
.y82{bottom:553.935000px;}
.y1f6{bottom:556.635000px;}
.y55{bottom:559.335000px;}
.yc9{bottom:561.855000px;}
.ya7{bottom:562.035000px;}
.y1db{bottom:564.375000px;}
.yeb{bottom:568.335000px;}
.y27{bottom:570.135000px;}
.y19f{bottom:571.035000px;}
.y124{bottom:571.935000px;}
.y81{bottom:574.635000px;}
.y1f5{bottom:577.335000px;}
.y54{bottom:580.035000px;}
.y13d{bottom:580.575000px;}
.y20c{bottom:582.735000px;}
.y1da{bottom:585.075000px;}
.yea{bottom:589.035000px;}
.y26{bottom:590.835000px;}
.yc8{bottom:591.555000px;}
.ya6{bottom:591.735000px;}
.y80{bottom:595.335000px;}
.y1f4{bottom:598.035000px;}
.y53{bottom:600.735000px;}
.y123{bottom:601.635000px;}
.y19e{bottom:601.995000px;}
.y1d9{bottom:605.775000px;}
.y13c{bottom:610.275000px;}
.y25{bottom:611.535000px;}
.y20b{bottom:612.435000px;}
.y1b6{bottom:614.775000px;}
.y7f{bottom:616.035000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.ye9{bottom:618.735000px;}
.yc7{bottom:621.255000px;}
.ya5{bottom:621.435000px;}
.y19d{bottom:622.695000px;}
.y52{bottom:630.435000px;}
.y122{bottom:631.335000px;}
.y24{bottom:632.235000px;}
.y20a{bottom:633.135000px;}
.y1d8{bottom:635.475000px;}
.y7e{bottom:636.735000px;}
.y165{bottom:637.995000px;}
.y1f3{bottom:639.435000px;}
.y13b{bottom:639.975000px;}
.ye8{bottom:648.435000px;}
.yc6{bottom:650.955000px;}
.y51{bottom:651.135000px;}
.y121{bottom:652.035000px;}
.y23{bottom:652.935000px;}
.y19c{bottom:653.655000px;}
.y209{bottom:653.835000px;}
.y1d7{bottom:656.175000px;}
.y7d{bottom:657.435000px;}
.y164{bottom:667.695000px;}
.ye7{bottom:669.135000px;}
.y13a{bottom:669.675000px;}
.y50{bottom:671.835000px;}
.y120{bottom:672.735000px;}
.y22{bottom:673.635000px;}
.y19b{bottom:674.385000px;}
.y1d6{bottom:676.905000px;}
.y7c{bottom:678.165000px;}
.yc5{bottom:680.685000px;}
.ya4{bottom:680.865000px;}
.y208{bottom:683.565000px;}
.ye6{bottom:689.865000px;}
.y4f{bottom:692.565000px;}
.y11f{bottom:693.465000px;}
.y21{bottom:694.365000px;}
.y10f{bottom:695.445000px;}
.y163{bottom:697.425000px;}
.y1d5{bottom:697.605000px;}
.y7b{bottom:698.865000px;}
.y139{bottom:699.405000px;}
.y207{bottom:704.265000px;}
.y19a{bottom:705.345000px;}
.yc4{bottom:710.385000px;}
.ya3{bottom:710.565000px;}
.y4e{bottom:713.265000px;}
.y20{bottom:715.065000px;}
.y10e{bottom:716.145000px;}
.y162{bottom:718.125000px;}
.y1d4{bottom:718.305000px;}
.y7a{bottom:719.565000px;}
.y11e{bottom:723.165000px;}
.y206{bottom:724.965000px;}
.y199{bottom:726.045000px;}
.y138{bottom:729.105000px;}
.y1f2{bottom:731.265000px;}
.y4d{bottom:733.965000px;}
.y1f{bottom:735.765000px;}
.y10d{bottom:736.845000px;}
.y161{bottom:738.825000px;}
.y1d3{bottom:739.005000px;}
.yc3{bottom:740.085000px;}
.y79{bottom:740.265000px;}
.y21b{bottom:742.965000px;}
.y11d{bottom:743.865000px;}
.ye5{bottom:749.265000px;}
.y1f1{bottom:751.965000px;}
.y193{bottom:753.765000px;}
.y205{bottom:754.665000px;}
.y1e{bottom:756.465000px;}
.y10c{bottom:757.545000px;}
.y137{bottom:758.805000px;}
.y1d2{bottom:759.705000px;}
.y78{bottom:760.965000px;}
.y4c{bottom:763.665000px;}
.y11c{bottom:764.565000px;}
.y160{bottom:768.525000px;}
.yc2{bottom:769.785000px;}
.ye4{bottom:769.965000px;}
.y204{bottom:775.365000px;}
.y1d{bottom:777.165000px;}
.y10b{bottom:778.245000px;}
.y1d1{bottom:780.405000px;}
.ya2{bottom:781.665000px;}
.y4b{bottom:784.365000px;}
.y159{bottom:784.905000px;}
.y11b{bottom:785.265000px;}
.y136{bottom:788.505000px;}
.yc1{bottom:790.485000px;}
.y77{bottom:790.665000px;}
.y203{bottom:796.065000px;}
.y15f{bottom:798.225000px;}
.ya1{bottom:802.365000px;}
.y4a{bottom:805.065000px;}
.y11a{bottom:805.965000px;}
.y1c{bottom:806.865000px;}
.y10a{bottom:807.945000px;}
.y196{bottom:809.565000px;}
.y1d0{bottom:810.105000px;}
.yc0{bottom:811.185000px;}
.y76{bottom:811.365000px;}
.ya0{bottom:823.065000px;}
.y49{bottom:825.765000px;}
.y119{bottom:826.665000px;}
.y15e{bottom:827.925000px;}
.y109{bottom:828.645000px;}
.y1cf{bottom:830.805000px;}
.y154{bottom:831.060000px;}
.ybf{bottom:831.885000px;}
.y75{bottom:832.065000px;}
.y21a{bottom:834.765000px;}
.y1b{bottom:836.565000px;}
.ye3{bottom:841.065000px;}
.y9f{bottom:843.765000px;}
.y48{bottom:846.465000px;}
.y108{bottom:849.345000px;}
.y18d{bottom:851.145000px;}
.y1ce{bottom:851.505000px;}
.ybe{bottom:852.585000px;}
.y74{bottom:852.765000px;}
.y219{bottom:855.465000px;}
.y118{bottom:856.365000px;}
.y15d{bottom:857.625000px;}
.ye2{bottom:861.765000px;}
.y9e{bottom:864.465000px;}
.y47{bottom:867.165000px;}
.y107{bottom:869.865000px;}
.y1a{bottom:873.105000px;}
.y73{bottom:873.465000px;}
.y117{bottom:882.105000px;}
.ybd{bottom:882.285000px;}
.ye1{bottom:882.465000px;}
.y9d{bottom:885.165000px;}
.y15c{bottom:887.325000px;}
.y106{bottom:890.565000px;}
.y72{bottom:894.165000px;}
.y46{bottom:896.865000px;}
.y158{bottom:901.365000px;}
.y190{bottom:902.265000px;}
.y19{bottom:902.805000px;}
.ybc{bottom:902.985000px;}
.ye0{bottom:903.165000px;}
.y1b5{bottom:903.345000px;}
.y9c{bottom:905.865000px;}
.y15b{bottom:913.110000px;}
.y173{bottom:913.320000px;}
.y71{bottom:914.910000px;}
.y45{bottom:917.610000px;}
.y105{bottom:920.310000px;}
.y157{bottom:922.110000px;}
.ydf{bottom:923.910000px;}
.y18{bottom:925.710000px;}
.y9b{bottom:926.610000px;}
.ybb{bottom:932.730000px;}
.y1b4{bottom:934.170000px;}
.y1f0{bottom:935.610000px;}
.y44{bottom:938.310000px;}
.y156{bottom:942.810000px;}
.y70{bottom:944.610000px;}
.y104{bottom:946.950000px;}
.y9a{bottom:947.310000px;}
.y1b3{bottom:954.870000px;}
.y17{bottom:955.410000px;}
.y1ef{bottom:956.310000px;}
.y43{bottom:959.010000px;}
.yba{bottom:962.430000px;}
.y6f{bottom:965.310000px;}
.y99{bottom:968.010000px;}
.y1b2{bottom:975.570000px;}
.y1ee{bottom:977.010000px;}
.y42{bottom:979.710000px;}
.y103{bottom:982.950000px;}
.yb9{bottom:983.130000px;}
.y16{bottom:985.110000px;}
.y6e{bottom:986.010000px;}
.y98{bottom:988.710000px;}
.y1b1{bottom:996.450000px;}
.y18c{bottom:997.710000px;}
.y41{bottom:1000.410000px;}
.yb8{bottom:1003.830000px;}
.y6d{bottom:1006.710000px;}
.y97{bottom:1009.410000px;}
.y15{bottom:1014.810000px;}
.yde{bottom:1015.710000px;}
.y135{bottom:1018.410000px;}
.y102{bottom:1018.950000px;}
.yb7{bottom:1024.530000px;}
.y6c{bottom:1027.410000px;}
.y40{bottom:1030.110000px;}
.ydd{bottom:1036.410000px;}
.y202{bottom:1039.110000px;}
.y14{bottom:1040.550000px;}
.yb6{bottom:1045.230000px;}
.y134{bottom:1048.110000px;}
.y101{bottom:1054.950000px;}
.y6b{bottom:1057.110000px;}
.y3f{bottom:1059.810000px;}
.y18b{bottom:1068.810000px;}
.yb5{bottom:1071.690000px;}
.y6a{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.y3e{bottom:1089.510000px;}
.yff{bottom:1090.950000px;}
.y69{bottom:1098.510000px;}
.y133{bottom:1107.330000px;}
.y18a{bottom:1110.210000px;}
.yb4{bottom:1114.170000px;}
.y11{bottom:1117.950000px;}
.y3d{bottom:1119.210000px;}
.y132{bottom:1138.470000px;}
.y3c{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h6{height:19.620000px;}
.hb{height:28.080000px;}
.ha{height:28.260000px;}
.h13{height:35.100000px;}
.h1c{height:35.640000px;}
.hd{height:38.700000px;}
.hc{height:38.736000px;}
.hf{height:40.254961px;}
.h23{height:40.860000px;}
.h15{height:40.948242px;}
.h12{height:41.580000px;}
.h11{height:41.616000px;}
.h10{height:41.760000px;}
.h5{height:43.560000px;}
.h16{height:45.061523px;}
.h17{height:45.181687px;}
.h8{height:49.868086px;}
.h21{height:50.400000px;}
.h20{height:51.876000px;}
.h7{height:52.290000px;}
.h18{height:52.872188px;}
.h1e{height:52.992352px;}
.h24{height:55.080000px;}
.h9{height:55.275469px;}
.h4{height:60.082031px;}
.h2{height:60.120000px;}
.h1b{height:60.202195px;}
.h26{height:61.380000px;}
.h25{height:61.416000px;}
.h1d{height:62.683594px;}
.h3{height:63.000000px;}
.he{height:65.970000px;}
.h19{height:70.295977px;}
.h22{height:96.660000px;}
.h1f{height:102.996000px;}
.h1a{height:149.220000px;}
.h14{height:213.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:84.960000px;}
.w8{width:84.990000px;}
.w1b{width:85.176000px;}
.w1c{width:95.580000px;}
.w1e{width:95.796000px;}
.w3{width:101.376000px;}
.w1f{width:106.380000px;}
.w1a{width:117.000000px;}
.w6{width:124.416000px;}
.w19{width:136.656000px;}
.w18{width:139.500000px;}
.w10{width:181.470000px;}
.w17{width:182.190000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.w16{width:219.090000px;}
.w9{width:223.770000px;}
.wf{width:227.730000px;}
.we{width:271.290000px;}
.w14{width:276.870000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.wc{width:299.910000px;}
.w15{width:402.015000px;}
.wd{width:420.015000px;}
.w11{width:554.580000px;}
.w2{width:618.450000px;}
.w12{width:625.860000px;}
.w13{width:627.045000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x19{left:8.100000px;}
.xc{left:10.800000px;}
.xe{left:14.940000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x7{left:29.340000px;}
.x35{left:33.660000px;}
.x3a{left:35.640000px;}
.x33{left:41.505000px;}
.x38{left:44.100000px;}
.x37{left:50.940000px;}
.xd{left:52.200000px;}
.x28{left:59.610000px;}
.x32{left:65.160000px;}
.x1{left:67.500000px;}
.x27{left:69.735000px;}
.x11{left:90.900000px;}
.x39{left:93.060000px;}
.x29{left:101.490000px;}
.x34{left:103.140000px;}
.xa{left:106.235987px;}
.x17{left:108.935987px;}
.x2a{left:116.100000px;}
.x36{left:124.200000px;}
.x2b{left:126.935987px;}
.x30{left:129.210000px;}
.x25{left:131.190000px;}
.x20{left:133.235987px;}
.x18{left:137.195987px;}
.x13{left:145.115987px;}
.x14{left:147.275987px;}
.x3f{left:160.229987px;}
.x3b{left:161.850000px;}
.x24{left:168.480000px;}
.x2d{left:176.619000px;}
.x12{left:184.185000px;}
.x2c{left:214.049987px;}
.x40{left:223.230000px;}
.x26{left:241.770000px;}
.x31{left:245.625000px;}
.x3e{left:246.990000px;}
.x16{left:259.409987px;}
.x2{left:270.435000px;}
.xf{left:275.970000px;}
.x41{left:308.415000px;}
.x2e{left:325.694987px;}
.x23{left:338.294987px;}
.x2f{left:352.334987px;}
.x1b{left:377.535000px;}
.x3c{left:384.375000px;}
.x42{left:403.995000px;}
.x1a{left:406.155000px;}
.x15{left:446.474987px;}
.x8{left:451.155000px;}
.x43{left:489.165000px;}
.x10{left:562.065000px;}
.x44{left:574.125000px;}
.x3d{left:604.185000px;}
.x1c{left:605.265000px;}
.x45{left:669.930000px;}
.x22{left:724.289987px;}
.x9{left:737.610000px;}
.x21{left:747.149987px;}
.x4{left:761.010000px;}
.x1d{left:799.349987px;}
.x1f{left:806.009987px;}
.xb{left:807.990000px;}
.x1e{left:862.379987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:2.560000pt;}
.ls12{letter-spacing:6.400000pt;}
.lse{letter-spacing:8.960000pt;}
.ls10{letter-spacing:19.200000pt;}
.ls13{letter-spacing:23.680000pt;}
.ls6{letter-spacing:32.640000pt;}
.ls9{letter-spacing:48.746667pt;}
.ls11{letter-spacing:58.880000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws6{word-spacing:-53.279360pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.616000pt;}
.ws8{word-spacing:-14.112000pt;}
.ws7{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.463467pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._2e{margin-left:-5.690880pt;}
._30{margin-left:-4.618667pt;}
._1c{margin-left:-3.712000pt;}
._f{margin-left:-2.432000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._9{width:2.442667pt;}
._7{width:3.392000pt;}
._8{width:4.352000pt;}
._c{width:5.418667pt;}
._11{width:6.336000pt;}
._3{width:7.424000pt;}
._2{width:8.384000pt;}
._17{width:9.344000pt;}
._13{width:10.240000pt;}
._14{width:11.520000pt;}
._15{width:12.661333pt;}
._b{width:13.632000pt;}
._a{width:14.656000pt;}
._16{width:17.024000pt;}
._1e{width:18.069333pt;}
._19{width:19.264000pt;}
._10{width:20.800000pt;}
._21{width:21.696000pt;}
._12{width:22.624000pt;}
._5{width:23.690667pt;}
._4{width:24.896000pt;}
._28{width:25.856000pt;}
._6{width:26.816000pt;}
._22{width:27.904000pt;}
._1a{width:28.864000pt;}
._1b{width:30.080000pt;}
._2a{width:31.424000pt;}
._1d{width:32.576000pt;}
._29{width:33.856000pt;}
._20{width:35.008000pt;}
._31{width:41.024000pt;}
._32{width:42.432000pt;}
._18{width:43.456000pt;}
._27{width:44.736000pt;}
._d{width:45.760000pt;}
._e{width:46.890667pt;}
._24{width:49.856000pt;}
._23{width:50.752000pt;}
._25{width:51.690667pt;}
._2f{width:53.205333pt;}
._34{width:56.256000pt;}
._2d{width:57.344000pt;}
._1f{width:58.560000pt;}
._33{width:60.032000pt;}
._37{width:72.000000pt;}
._38{width:73.408000pt;}
._35{width:84.288000pt;}
._2b{width:89.342720pt;}
._2c{width:112.928853pt;}
._36{width:158.208000pt;}
._26{width:2037.504000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs9{font-size:56.448000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.y100{bottom:10.720000pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y17a{bottom:11.386667pt;}
.y12{bottom:11.520000pt;}
.y187{bottom:11.973333pt;}
.y1b9{bottom:14.880000pt;}
.y197{bottom:15.840000pt;}
.yb2{bottom:16.480000pt;}
.yae{bottom:16.640000pt;}
.y15a{bottom:16.800000pt;}
.y151{bottom:18.653333pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.600000pt;}
.y1bb{bottom:22.400000pt;}
.y1b7{bottom:22.560000pt;}
.y5{bottom:23.200000pt;}
.y192{bottom:24.320000pt;}
.y191{bottom:25.640000pt;}
.y176{bottom:26.813333pt;}
.y198{bottom:28.480000pt;}
.y1b8{bottom:30.240000pt;}
.y180{bottom:32.346667pt;}
.y14a{bottom:35.706667pt;}
.y2{bottom:37.920000pt;}
.y195{bottom:42.080000pt;}
.y188{bottom:44.093333pt;}
.y17b{bottom:47.066667pt;}
.y17f{bottom:47.653333pt;}
.y18f{bottom:47.840000pt;}
.y181{bottom:50.013333pt;}
.yc{bottom:50.400000pt;}
.y14b{bottom:52.253333pt;}
.y175{bottom:54.973333pt;}
.y177{bottom:63.653333pt;}
.y152{bottom:63.680000pt;}
.yb{bottom:64.160000pt;}
.y149{bottom:64.986667pt;}
.y194{bottom:65.440000pt;}
.y182{bottom:67.680000pt;}
.y14c{bottom:68.826667pt;}
.y18e{bottom:71.080000pt;}
.y183{bottom:85.346667pt;}
.y14d{bottom:85.373333pt;}
.y201{bottom:99.520000pt;}
.y178{bottom:100.506667pt;}
.ydc{bottom:101.760000pt;}
.y14e{bottom:101.946667pt;}
.y184{bottom:103.013333pt;}
.y131{bottom:103.520000pt;}
.y116{bottom:105.600000pt;}
.y1ed{bottom:106.400000pt;}
.y3b{bottom:106.720000pt;}
.y68{bottom:107.520000pt;}
.y96{bottom:108.320000pt;}
.yb3{bottom:109.760000pt;}
.y146{bottom:114.720000pt;}
.y1cd{bottom:114.880000pt;}
.yfe{bottom:115.520000pt;}
.y1b0{bottom:115.680000pt;}
.y172{bottom:116.320000pt;}
.y155{bottom:117.733333pt;}
.y14f{bottom:118.493333pt;}
.ydb{bottom:120.160000pt;}
.y218{bottom:120.320000pt;}
.y185{bottom:120.666667pt;}
.y3a{bottom:125.120000pt;}
.y67{bottom:125.920000pt;}
.y95{bottom:126.720000pt;}
.y130{bottom:131.040000pt;}
.y1ec{bottom:132.800000pt;}
.y1cc{bottom:133.280000pt;}
.y1af{bottom:134.080000pt;}
.y171{bottom:134.720000pt;}
.y150{bottom:135.040000pt;}
.y174{bottom:136.253333pt;}
.y179{bottom:137.346667pt;}
.y186{bottom:138.333333pt;}
.yda{bottom:138.560000pt;}
.y217{bottom:138.720000pt;}
.y17e{bottom:139.173333pt;}
.y148{bottom:140.800000pt;}
.y145{bottom:141.120000pt;}
.yfd{bottom:141.920000pt;}
.y39{bottom:143.520000pt;}
.y66{bottom:144.320000pt;}
.y94{bottom:145.120000pt;}
.yb1{bottom:147.520000pt;}
.y1cb{bottom:151.680000pt;}
.y200{bottom:152.320000pt;}
.y1ae{bottom:152.480000pt;}
.y170{bottom:153.120000pt;}
.yd9{bottom:156.960000pt;}
.y216{bottom:157.120000pt;}
.y12f{bottom:158.560000pt;}
.y1eb{bottom:159.200000pt;}
.y144{bottom:159.520000pt;}
.yfc{bottom:160.320000pt;}
.y38{bottom:161.920000pt;}
.y153{bottom:162.373333pt;}
.y17c{bottom:162.400000pt;}
.y189{bottom:162.426667pt;}
.y65{bottom:162.720000pt;}
.y93{bottom:163.520000pt;}
.y1ca{bottom:170.080000pt;}
.y1ad{bottom:170.880000pt;}
.y16f{bottom:171.520000pt;}
.y1ff{bottom:178.746667pt;}
.y37{bottom:180.346667pt;}
.y92{bottom:181.946667pt;}
.yd8{bottom:183.386667pt;}
.y215{bottom:183.546667pt;}
.yb0{bottom:185.146667pt;}
.y1ea{bottom:185.626667pt;}
.y143{bottom:185.946667pt;}
.y12e{bottom:186.266667pt;}
.yfb{bottom:186.746667pt;}
.y1c9{bottom:188.506667pt;}
.y64{bottom:189.146667pt;}
.y1ac{bottom:189.306667pt;}
.y16e{bottom:189.946667pt;}
.y36{bottom:198.746667pt;}
.y91{bottom:200.346667pt;}
.yd7{bottom:201.786667pt;}
.y214{bottom:201.946667pt;}
.y12d{bottom:204.666667pt;}
.y1fe{bottom:205.146667pt;}
.y1c8{bottom:206.906667pt;}
.y63{bottom:207.546667pt;}
.y1ab{bottom:207.706667pt;}
.y16d{bottom:208.346667pt;}
.y1e9{bottom:212.026667pt;}
.y142{bottom:212.346667pt;}
.yfa{bottom:213.146667pt;}
.y35{bottom:217.146667pt;}
.y90{bottom:218.746667pt;}
.yd6{bottom:220.186667pt;}
.y213{bottom:220.346667pt;}
.yaf{bottom:222.906667pt;}
.y12c{bottom:223.066667pt;}
.y1c7{bottom:225.306667pt;}
.y62{bottom:225.946667pt;}
.yf9{bottom:231.546667pt;}
.y1aa{bottom:234.106667pt;}
.y16c{bottom:234.746667pt;}
.y34{bottom:235.546667pt;}
.y8f{bottom:237.146667pt;}
.y1e8{bottom:238.426667pt;}
.yd5{bottom:238.586667pt;}
.y141{bottom:238.746667pt;}
.y12b{bottom:241.466667pt;}
.y1c6{bottom:243.706667pt;}
.y61{bottom:244.346667pt;}
.y212{bottom:246.746667pt;}
.yf8{bottom:249.946667pt;}
.y1a9{bottom:252.506667pt;}
.y16b{bottom:253.146667pt;}
.y33{bottom:253.946667pt;}
.y8e{bottom:255.546667pt;}
.yad{bottom:260.666667pt;}
.y1c5{bottom:262.106667pt;}
.y60{bottom:262.746667pt;}
.y1e7{bottom:264.826667pt;}
.yd4{bottom:264.986667pt;}
.y140{bottom:265.146667pt;}
.y12a{bottom:267.866667pt;}
.yf7{bottom:268.346667pt;}
.y16a{bottom:271.546667pt;}
.y32{bottom:272.346667pt;}
.y1a8{bottom:280.026667pt;}
.y1c4{bottom:280.506667pt;}
.y5f{bottom:281.146667pt;}
.y8d{bottom:281.946667pt;}
.y1e6{bottom:283.226667pt;}
.y211{bottom:283.546667pt;}
.yf6{bottom:286.746667pt;}
.y169{bottom:289.946667pt;}
.y31{bottom:290.746667pt;}
.yd3{bottom:291.386667pt;}
.y13f{bottom:291.546667pt;}
.y1fd{bottom:294.746667pt;}
.y1a7{bottom:298.426667pt;}
.y1c3{bottom:298.906667pt;}
.y8c{bottom:300.346667pt;}
.y1e5{bottom:301.626667pt;}
.yf5{bottom:305.146667pt;}
.y5e{bottom:307.546667pt;}
.y30{bottom:309.146667pt;}
.yd2{bottom:309.786667pt;}
.yac{bottom:309.946667pt;}
.y1fc{bottom:313.146667pt;}
.y13e{bottom:314.426667pt;}
.y147{bottom:314.720000pt;}
.y115{bottom:316.026667pt;}
.y168{bottom:316.346667pt;}
.y1a6{bottom:316.826667pt;}
.y8b{bottom:318.746667pt;}
.y1e4{bottom:320.026667pt;}
.yf4{bottom:323.546667pt;}
.y1c2{bottom:325.146667pt;}
.y5d{bottom:325.946667pt;}
.y2f{bottom:327.546667pt;}
.yd1{bottom:328.186667pt;}
.y210{bottom:328.346667pt;}
.y1fb{bottom:331.546667pt;}
.y114{bottom:334.426667pt;}
.yab{bottom:336.346667pt;}
.y8a{bottom:337.146667pt;}
.y1e3{bottom:338.426667pt;}
.yf3{bottom:341.946667pt;}
.y167{bottom:342.746667pt;}
.y1c1{bottom:343.546667pt;}
.y5c{bottom:344.346667pt;}
.yd0{bottom:346.586667pt;}
.y20f{bottom:346.746667pt;}
.y1fa{bottom:349.946667pt;}
.y113{bottom:352.826667pt;}
.y2e{bottom:353.946667pt;}
.y89{bottom:355.546667pt;}
.yf2{bottom:360.346667pt;}
.y1c0{bottom:361.946667pt;}
.y5b{bottom:362.746667pt;}
.y1e2{bottom:364.826667pt;}
.ycf{bottom:364.986667pt;}
.y166{bottom:365.466667pt;}
.y17d{bottom:365.760000pt;}
.y1f9{bottom:368.346667pt;}
.y1a5{bottom:370.746667pt;}
.y112{bottom:371.226667pt;}
.y20e{bottom:373.146667pt;}
.y88{bottom:373.946667pt;}
.yf1{bottom:378.746667pt;}
.y2d{bottom:380.346667pt;}
.y5a{bottom:381.146667pt;}
.y1e1{bottom:383.226667pt;}
.yce{bottom:383.386667pt;}
.y1f8{bottom:386.746667pt;}
.y1a4{bottom:389.186667pt;}
.y20d{bottom:391.586667pt;}
.y111{bottom:397.666667pt;}
.y1bf{bottom:398.786667pt;}
.y59{bottom:399.586667pt;}
.y87{bottom:400.386667pt;}
.y1e0{bottom:401.666667pt;}
.yf0{bottom:405.186667pt;}
.y2c{bottom:406.786667pt;}
.ycd{bottom:409.826667pt;}
.y1f7{bottom:413.186667pt;}
.y129{bottom:416.386667pt;}
.y1a3{bottom:416.706667pt;}
.y1be{bottom:417.186667pt;}
.y58{bottom:417.986667pt;}
.y86{bottom:418.786667pt;}
.y1df{bottom:420.066667pt;}
.y110{bottom:420.546667pt;}
.yef{bottom:431.586667pt;}
.y2b{bottom:433.186667pt;}
.y128{bottom:434.786667pt;}
.y1a2{bottom:435.106667pt;}
.y1bd{bottom:435.586667pt;}
.ycc{bottom:436.226667pt;}
.yaa{bottom:436.386667pt;}
.y85{bottom:437.186667pt;}
.y1de{bottom:438.466667pt;}
.y57{bottom:444.386667pt;}
.yee{bottom:449.986667pt;}
.y2a{bottom:451.586667pt;}
.y127{bottom:453.186667pt;}
.ycb{bottom:454.626667pt;}
.ya9{bottom:454.786667pt;}
.y84{bottom:455.586667pt;}
.y1bc{bottom:459.266667pt;}
.y1a1{bottom:462.626667pt;}
.y1dd{bottom:464.866667pt;}
.yed{bottom:468.386667pt;}
.y29{bottom:469.986667pt;}
.y56{bottom:470.786667pt;}
.y126{bottom:471.586667pt;}
.yca{bottom:473.026667pt;}
.y83{bottom:473.986667pt;}
.ya8{bottom:481.186667pt;}
.y1dc{bottom:483.266667pt;}
.yec{bottom:486.786667pt;}
.y28{bottom:488.386667pt;}
.y1a0{bottom:489.026667pt;}
.y125{bottom:489.986667pt;}
.y1ba{bottom:491.266667pt;}
.y82{bottom:492.386667pt;}
.y1f6{bottom:494.786667pt;}
.y55{bottom:497.186667pt;}
.yc9{bottom:499.426667pt;}
.ya7{bottom:499.586667pt;}
.y1db{bottom:501.666667pt;}
.yeb{bottom:505.186667pt;}
.y27{bottom:506.786667pt;}
.y19f{bottom:507.586667pt;}
.y124{bottom:508.386667pt;}
.y81{bottom:510.786667pt;}
.y1f5{bottom:513.186667pt;}
.y54{bottom:515.586667pt;}
.y13d{bottom:516.066667pt;}
.y20c{bottom:517.986667pt;}
.y1da{bottom:520.066667pt;}
.yea{bottom:523.586667pt;}
.y26{bottom:525.186667pt;}
.yc8{bottom:525.826667pt;}
.ya6{bottom:525.986667pt;}
.y80{bottom:529.186667pt;}
.y1f4{bottom:531.586667pt;}
.y53{bottom:533.986667pt;}
.y123{bottom:534.786667pt;}
.y19e{bottom:535.106667pt;}
.y1d9{bottom:538.466667pt;}
.y13c{bottom:542.466667pt;}
.y25{bottom:543.586667pt;}
.y20b{bottom:544.386667pt;}
.y1b6{bottom:546.466667pt;}
.y7f{bottom:547.586667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.ye9{bottom:549.986667pt;}
.yc7{bottom:552.226667pt;}
.ya5{bottom:552.386667pt;}
.y19d{bottom:553.506667pt;}
.y52{bottom:560.386667pt;}
.y122{bottom:561.186667pt;}
.y24{bottom:561.986667pt;}
.y20a{bottom:562.786667pt;}
.y1d8{bottom:564.866667pt;}
.y7e{bottom:565.986667pt;}
.y165{bottom:567.106667pt;}
.y1f3{bottom:568.386667pt;}
.y13b{bottom:568.866667pt;}
.ye8{bottom:576.386667pt;}
.yc6{bottom:578.626667pt;}
.y51{bottom:578.786667pt;}
.y121{bottom:579.586667pt;}
.y23{bottom:580.386667pt;}
.y19c{bottom:581.026667pt;}
.y209{bottom:581.186667pt;}
.y1d7{bottom:583.266667pt;}
.y7d{bottom:584.386667pt;}
.y164{bottom:593.506667pt;}
.ye7{bottom:594.786667pt;}
.y13a{bottom:595.266667pt;}
.y50{bottom:597.186667pt;}
.y120{bottom:597.986667pt;}
.y22{bottom:598.786667pt;}
.y19b{bottom:599.453333pt;}
.y1d6{bottom:601.693333pt;}
.y7c{bottom:602.813333pt;}
.yc5{bottom:605.053333pt;}
.ya4{bottom:605.213333pt;}
.y208{bottom:607.613333pt;}
.ye6{bottom:613.213333pt;}
.y4f{bottom:615.613333pt;}
.y11f{bottom:616.413333pt;}
.y21{bottom:617.213333pt;}
.y10f{bottom:618.173333pt;}
.y163{bottom:619.933333pt;}
.y1d5{bottom:620.093333pt;}
.y7b{bottom:621.213333pt;}
.y139{bottom:621.693333pt;}
.y207{bottom:626.013333pt;}
.y19a{bottom:626.973333pt;}
.yc4{bottom:631.453333pt;}
.ya3{bottom:631.613333pt;}
.y4e{bottom:634.013333pt;}
.y20{bottom:635.613333pt;}
.y10e{bottom:636.573333pt;}
.y162{bottom:638.333333pt;}
.y1d4{bottom:638.493333pt;}
.y7a{bottom:639.613333pt;}
.y11e{bottom:642.813333pt;}
.y206{bottom:644.413333pt;}
.y199{bottom:645.373333pt;}
.y138{bottom:648.093333pt;}
.y1f2{bottom:650.013333pt;}
.y4d{bottom:652.413333pt;}
.y1f{bottom:654.013333pt;}
.y10d{bottom:654.973333pt;}
.y161{bottom:656.733333pt;}
.y1d3{bottom:656.893333pt;}
.yc3{bottom:657.853333pt;}
.y79{bottom:658.013333pt;}
.y21b{bottom:660.413333pt;}
.y11d{bottom:661.213333pt;}
.ye5{bottom:666.013333pt;}
.y1f1{bottom:668.413333pt;}
.y193{bottom:670.013333pt;}
.y205{bottom:670.813333pt;}
.y1e{bottom:672.413333pt;}
.y10c{bottom:673.373333pt;}
.y137{bottom:674.493333pt;}
.y1d2{bottom:675.293333pt;}
.y78{bottom:676.413333pt;}
.y4c{bottom:678.813333pt;}
.y11c{bottom:679.613333pt;}
.y160{bottom:683.133333pt;}
.yc2{bottom:684.253333pt;}
.ye4{bottom:684.413333pt;}
.y204{bottom:689.213333pt;}
.y1d{bottom:690.813333pt;}
.y10b{bottom:691.773333pt;}
.y1d1{bottom:693.693333pt;}
.ya2{bottom:694.813333pt;}
.y4b{bottom:697.213333pt;}
.y159{bottom:697.693333pt;}
.y11b{bottom:698.013333pt;}
.y136{bottom:700.893333pt;}
.yc1{bottom:702.653333pt;}
.y77{bottom:702.813333pt;}
.y203{bottom:707.613333pt;}
.y15f{bottom:709.533333pt;}
.ya1{bottom:713.213333pt;}
.y4a{bottom:715.613333pt;}
.y11a{bottom:716.413333pt;}
.y1c{bottom:717.213333pt;}
.y10a{bottom:718.173333pt;}
.y196{bottom:719.613333pt;}
.y1d0{bottom:720.093333pt;}
.yc0{bottom:721.053333pt;}
.y76{bottom:721.213333pt;}
.ya0{bottom:731.613333pt;}
.y49{bottom:734.013333pt;}
.y119{bottom:734.813333pt;}
.y15e{bottom:735.933333pt;}
.y109{bottom:736.573333pt;}
.y1cf{bottom:738.493333pt;}
.y154{bottom:738.720000pt;}
.ybf{bottom:739.453333pt;}
.y75{bottom:739.613333pt;}
.y21a{bottom:742.013333pt;}
.y1b{bottom:743.613333pt;}
.ye3{bottom:747.613333pt;}
.y9f{bottom:750.013333pt;}
.y48{bottom:752.413333pt;}
.y108{bottom:754.973333pt;}
.y18d{bottom:756.573333pt;}
.y1ce{bottom:756.893333pt;}
.ybe{bottom:757.853333pt;}
.y74{bottom:758.013333pt;}
.y219{bottom:760.413333pt;}
.y118{bottom:761.213333pt;}
.y15d{bottom:762.333333pt;}
.ye2{bottom:766.013333pt;}
.y9e{bottom:768.413333pt;}
.y47{bottom:770.813333pt;}
.y107{bottom:773.213333pt;}
.y1a{bottom:776.093333pt;}
.y73{bottom:776.413333pt;}
.y117{bottom:784.093333pt;}
.ybd{bottom:784.253333pt;}
.ye1{bottom:784.413333pt;}
.y9d{bottom:786.813333pt;}
.y15c{bottom:788.733333pt;}
.y106{bottom:791.613333pt;}
.y72{bottom:794.813333pt;}
.y46{bottom:797.213333pt;}
.y158{bottom:801.213333pt;}
.y190{bottom:802.013333pt;}
.y19{bottom:802.493333pt;}
.ybc{bottom:802.653333pt;}
.ye0{bottom:802.813333pt;}
.y1b5{bottom:802.973333pt;}
.y9c{bottom:805.213333pt;}
.y15b{bottom:811.653333pt;}
.y173{bottom:811.840000pt;}
.y71{bottom:813.253333pt;}
.y45{bottom:815.653333pt;}
.y105{bottom:818.053333pt;}
.y157{bottom:819.653333pt;}
.ydf{bottom:821.253333pt;}
.y18{bottom:822.853333pt;}
.y9b{bottom:823.653333pt;}
.ybb{bottom:829.093333pt;}
.y1b4{bottom:830.373333pt;}
.y1f0{bottom:831.653333pt;}
.y44{bottom:834.053333pt;}
.y156{bottom:838.053333pt;}
.y70{bottom:839.653333pt;}
.y104{bottom:841.733333pt;}
.y9a{bottom:842.053333pt;}
.y1b3{bottom:848.773333pt;}
.y17{bottom:849.253333pt;}
.y1ef{bottom:850.053333pt;}
.y43{bottom:852.453333pt;}
.yba{bottom:855.493333pt;}
.y6f{bottom:858.053333pt;}
.y99{bottom:860.453333pt;}
.y1b2{bottom:867.173333pt;}
.y1ee{bottom:868.453333pt;}
.y42{bottom:870.853333pt;}
.y103{bottom:873.733333pt;}
.yb9{bottom:873.893333pt;}
.y16{bottom:875.653333pt;}
.y6e{bottom:876.453333pt;}
.y98{bottom:878.853333pt;}
.y1b1{bottom:885.733333pt;}
.y18c{bottom:886.853333pt;}
.y41{bottom:889.253333pt;}
.yb8{bottom:892.293333pt;}
.y6d{bottom:894.853333pt;}
.y97{bottom:897.253333pt;}
.y15{bottom:902.053333pt;}
.yde{bottom:902.853333pt;}
.y135{bottom:905.253333pt;}
.y102{bottom:905.733333pt;}
.yb7{bottom:910.693333pt;}
.y6c{bottom:913.253333pt;}
.y40{bottom:915.653333pt;}
.ydd{bottom:921.253333pt;}
.y202{bottom:923.653333pt;}
.y14{bottom:924.933333pt;}
.yb6{bottom:929.093333pt;}
.y134{bottom:931.653333pt;}
.y101{bottom:937.733333pt;}
.y6b{bottom:939.653333pt;}
.y3f{bottom:942.053333pt;}
.y18b{bottom:950.053333pt;}
.yb5{bottom:952.613333pt;}
.y6a{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.y3e{bottom:968.453333pt;}
.yff{bottom:969.733333pt;}
.y69{bottom:976.453333pt;}
.y133{bottom:984.293333pt;}
.y18a{bottom:986.853333pt;}
.yb4{bottom:990.373333pt;}
.y11{bottom:993.733333pt;}
.y3d{bottom:994.853333pt;}
.y132{bottom:1011.973333pt;}
.y3c{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h6{height:17.440000pt;}
.hb{height:24.960000pt;}
.ha{height:25.120000pt;}
.h13{height:31.200000pt;}
.h1c{height:31.680000pt;}
.hd{height:34.400000pt;}
.hc{height:34.432000pt;}
.hf{height:35.782187pt;}
.h23{height:36.320000pt;}
.h15{height:36.398438pt;}
.h12{height:36.960000pt;}
.h11{height:36.992000pt;}
.h10{height:37.120000pt;}
.h5{height:38.720000pt;}
.h16{height:40.054688pt;}
.h17{height:40.161500pt;}
.h8{height:44.327188pt;}
.h21{height:44.800000pt;}
.h20{height:46.112000pt;}
.h7{height:46.480000pt;}
.h18{height:46.997500pt;}
.h1e{height:47.104312pt;}
.h24{height:48.960000pt;}
.h9{height:49.133750pt;}
.h4{height:53.406250pt;}
.h2{height:53.440000pt;}
.h1b{height:53.513062pt;}
.h26{height:54.560000pt;}
.h25{height:54.592000pt;}
.h1d{height:55.718750pt;}
.h3{height:56.000000pt;}
.he{height:58.640000pt;}
.h19{height:62.485312pt;}
.h22{height:85.920000pt;}
.h1f{height:91.552000pt;}
.h1a{height:132.640000pt;}
.h14{height:189.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:75.520000pt;}
.w8{width:75.546667pt;}
.w1b{width:75.712000pt;}
.w1c{width:84.960000pt;}
.w1e{width:85.152000pt;}
.w3{width:90.112000pt;}
.w1f{width:94.560000pt;}
.w1a{width:104.000000pt;}
.w6{width:110.592000pt;}
.w19{width:121.472000pt;}
.w18{width:124.000000pt;}
.w10{width:161.306667pt;}
.w17{width:161.946667pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.w16{width:194.746667pt;}
.w9{width:198.906667pt;}
.wf{width:202.426667pt;}
.we{width:241.146667pt;}
.w14{width:246.106667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.wc{width:266.586667pt;}
.w15{width:357.346667pt;}
.wd{width:373.346667pt;}
.w11{width:492.960000pt;}
.w2{width:549.733333pt;}
.w12{width:556.320000pt;}
.w13{width:557.373333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x19{left:7.200000pt;}
.xc{left:9.600000pt;}
.xe{left:13.280000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x7{left:26.080000pt;}
.x35{left:29.920000pt;}
.x3a{left:31.680000pt;}
.x33{left:36.893333pt;}
.x38{left:39.200000pt;}
.x37{left:45.280000pt;}
.xd{left:46.400000pt;}
.x28{left:52.986667pt;}
.x32{left:57.920000pt;}
.x1{left:60.000000pt;}
.x27{left:61.986667pt;}
.x11{left:80.800000pt;}
.x39{left:82.720000pt;}
.x29{left:90.213333pt;}
.x34{left:91.680000pt;}
.xa{left:94.431988pt;}
.x17{left:96.831988pt;}
.x2a{left:103.200000pt;}
.x36{left:110.400000pt;}
.x2b{left:112.831988pt;}
.x30{left:114.853333pt;}
.x25{left:116.613333pt;}
.x20{left:118.431988pt;}
.x18{left:121.951988pt;}
.x13{left:128.991988pt;}
.x14{left:130.911988pt;}
.x3f{left:142.426655pt;}
.x3b{left:143.866667pt;}
.x24{left:149.760000pt;}
.x2d{left:156.994667pt;}
.x12{left:163.720000pt;}
.x2c{left:190.266655pt;}
.x40{left:198.426667pt;}
.x26{left:214.906667pt;}
.x31{left:218.333333pt;}
.x3e{left:219.546667pt;}
.x16{left:230.586655pt;}
.x2{left:240.386667pt;}
.xf{left:245.306667pt;}
.x41{left:274.146667pt;}
.x2e{left:289.506655pt;}
.x23{left:300.706655pt;}
.x2f{left:313.186655pt;}
.x1b{left:335.586667pt;}
.x3c{left:341.666667pt;}
.x42{left:359.106667pt;}
.x1a{left:361.026667pt;}
.x15{left:396.866655pt;}
.x8{left:401.026667pt;}
.x43{left:434.813333pt;}
.x10{left:499.613333pt;}
.x44{left:510.333333pt;}
.x3d{left:537.053333pt;}
.x1c{left:538.013333pt;}
.x45{left:595.493333pt;}
.x22{left:643.813322pt;}
.x9{left:655.653333pt;}
.x21{left:664.133322pt;}
.x4{left:676.453333pt;}
.x1d{left:710.533322pt;}
.x1f{left:716.453322pt;}
.xb{left:718.213333pt;}
.x1e{left:766.559988pt;}
}




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