
    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_5463eda917af28e137b66eb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a1e20f5a7addbde5896dc8bf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e8c78e9d92afd888c1104dcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a9472a1b4a17f46a8d5813fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_a0b648f17067bfd81c09db48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6f2a352bcd1d71e3e909e078.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_df4e6c9dddec987f33d5fe91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m3{transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253316,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-62.760003px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v7{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.990000px;}
.ls10{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.450600px;}
.lsf{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.269400px;}
.ls1f{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls1a{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.178800px;}
.ls4{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.493800px;}
.lse{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.900000px;}
.ls17{letter-spacing:0.924000px;}
.ls1{letter-spacing:2.520000px;}
.ls20{letter-spacing:3.060000px;}
.ls1d{letter-spacing:7.380000px;}
.lsa{letter-spacing:9.720000px;}
.ls1b{letter-spacing:11.700000px;}
.ls8{letter-spacing:61.920000px;}
.ls7{letter-spacing:62.640000px;}
.ls5{letter-spacing:63.000000px;}
.ls6{letter-spacing:63.360000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.wse{word-spacing:-16.865400px;}
.ws14{word-spacing:-15.864000px;}
.ws17{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.ws18{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.284000px;}
.wsf{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.836200px;}
.ws1c{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.160000px;}
.ws1b{word-spacing:-11.070000px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.720000px;}
.ws19{word-spacing:-9.000000px;}
.wsa{word-spacing:-7.560000px;}
.ws11{word-spacing:0.000000px;}
._3{margin-left:-1.345200px;}
._1{width:1.010880px;}
._0{width:2.204640px;}
._2{width:3.375840px;}
._f{width:4.536000px;}
._e{width:6.150000px;}
._d{width:7.560000px;}
._12{width:8.605440px;}
._b{width:10.044000px;}
._c{width:11.488560px;}
._14{width:12.569520px;}
._13{width:13.919760px;}
._20{width:15.195360px;}
._7{width:16.232400px;}
._8{width:17.337120px;}
._15{width:18.414480px;}
._a{width:19.768800px;}
._9{width:21.217200px;}
._16{width:22.350240px;}
._1d{width:23.409600px;}
._17{width:24.494400px;}
._1b{width:25.524000px;}
._1a{width:26.857440px;}
._26{width:27.973680px;}
._21{width:29.908800px;}
._22{width:31.061040px;}
._1f{width:36.367440px;}
._18{width:38.425680px;}
._19{width:39.511440px;}
._10{width:46.979997px;}
._23{width:54.189600px;}
._1e{width:55.668960px;}
._1c{width:57.062400px;}
._5{width:69.378480px;}
._6{width:70.701120px;}
._25{width:75.495600px;}
._24{width:76.556880px;}
._11{width:1834.296000px;}
._4{width:2055.717120px;}
.fca{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc9{color:rgb(238,0,0);}
.fc7{color:rgb(3,50,255);}
.fc4{color:rgb(25,24,24);}
.fc3{color:rgb(255,0,0);}
.fc6{color:rgb(166,166,166);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsb{font-size:18.000000px;}
.fs2{font-size:27.360000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fse{font-size:69.320961px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs9{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:4.320000px;}
.y13b{bottom:4.680000px;}
.ybb{bottom:4.722583px;}
.yfe{bottom:5.040000px;}
.y2c{bottom:5.580000px;}
.yfa{bottom:5.760000px;}
.y147{bottom:6.480000px;}
.y100{bottom:6.510000px;}
.y138{bottom:6.660000px;}
.yf8{bottom:7.380000px;}
.y141{bottom:7.740000px;}
.yf7{bottom:7.920000px;}
.y135{bottom:8.280000px;}
.y13a{bottom:8.460000px;}
.y145{bottom:9.540000px;}
.y143{bottom:10.260000px;}
.y13d{bottom:12.780000px;}
.y136{bottom:16.200000px;}
.y3{bottom:18.000000px;}
.y44{bottom:18.180000px;}
.y48{bottom:18.900000px;}
.y2b{bottom:19.440000px;}
.y13e{bottom:20.700000px;}
.yf6{bottom:23.400000px;}
.y139{bottom:23.940000px;}
.yf4{bottom:28.440000px;}
.y2a{bottom:29.340000px;}
.y2{bottom:30.060000px;}
.y1{bottom:43.020000px;}
.y29{bottom:47.160000px;}
.y28{bottom:64.980000px;}
.y235{bottom:71.100000px;}
.y1f9{bottom:71.640000px;}
.yb9{bottom:73.080000px;}
.y42{bottom:73.980000px;}
.y11e{bottom:74.700000px;}
.y18c{bottom:75.780000px;}
.yf2{bottom:76.140000px;}
.y9d{bottom:77.580000px;}
.y132{bottom:79.560000px;}
.y27{bottom:82.980000px;}
.y1f8{bottom:85.500000px;}
.y234{bottom:86.580000px;}
.y1bc{bottom:87.660000px;}
.yb8{bottom:92.880000px;}
.y41{bottom:93.780000px;}
.y11d{bottom:94.500000px;}
.y18b{bottom:95.580000px;}
.yf1{bottom:95.940000px;}
.y9c{bottom:97.380000px;}
.y131{bottom:99.360000px;}
.y26{bottom:100.800000px;}
.y1bb{bottom:101.520000px;}
.y233{bottom:102.060000px;}
.y1f7{bottom:105.300000px;}
.y167{bottom:110.700000px;}
.yb7{bottom:112.680000px;}
.y7e{bottom:113.220000px;}
.y40{bottom:113.580000px;}
.y11c{bottom:114.300000px;}
.y18a{bottom:115.380000px;}
.yf0{bottom:115.740000px;}
.y9b{bottom:117.180000px;}
.y232{bottom:117.720000px;}
.y25{bottom:118.620000px;}
.y130{bottom:119.160000px;}
.y166{bottom:130.500000px;}
.yb6{bottom:132.480000px;}
.y7d{bottom:133.020000px;}
.y231{bottom:133.200000px;}
.y3f{bottom:133.380000px;}
.y11b{bottom:134.280000px;}
.yef{bottom:135.180000px;}
.y189{bottom:135.360000px;}
.y24{bottom:136.440000px;}
.y9a{bottom:137.160000px;}
.y12f{bottom:138.960000px;}
.y230{bottom:148.680000px;}
.y1ba{bottom:148.860000px;}
.y165{bottom:150.330000px;}
.yb5{bottom:152.490000px;}
.y1f6{bottom:152.670000px;}
.y7c{bottom:152.850000px;}
.y3e{bottom:153.390000px;}
.y11a{bottom:154.110000px;}
.y23{bottom:154.260000px;}
.y188{bottom:154.830000px;}
.yee{bottom:155.010000px;}
.y99{bottom:156.990000px;}
.y12e{bottom:158.790000px;}
.y22f{bottom:164.190000px;}
.y1b9{bottom:168.690000px;}
.y164{bottom:170.130000px;}
.y22{bottom:172.260000px;}
.yb4{bottom:172.290000px;}
.y1f5{bottom:172.470000px;}
.y7b{bottom:172.650000px;}
.y3d{bottom:173.190000px;}
.y119{bottom:173.910000px;}
.y187{bottom:174.630000px;}
.yed{bottom:174.990000px;}
.y98{bottom:176.790000px;}
.y12d{bottom:178.770000px;}
.y22e{bottom:179.850000px;}
.y1b8{bottom:182.550000px;}
.y2e{bottom:183.630000px;}
.y1f4{bottom:186.330000px;}
.y21{bottom:190.110000px;}
.yb3{bottom:192.090000px;}
.y7a{bottom:192.630000px;}
.y3c{bottom:192.990000px;}
.y118{bottom:193.710000px;}
.y186{bottom:194.790000px;}
.y22d{bottom:195.330000px;}
.yec{bottom:196.410000px;}
.y97{bottom:196.590000px;}
.y12c{bottom:198.570000px;}
.y1f3{bottom:200.190000px;}
.y20{bottom:207.930000px;}
.y163{bottom:209.910000px;}
.yb2{bottom:211.890000px;}
.y79{bottom:212.430000px;}
.y3b{bottom:212.790000px;}
.y117{bottom:213.510000px;}
.y185{bottom:214.230000px;}
.y1b7{bottom:216.210000px;}
.y96{bottom:216.390000px;}
.y12b{bottom:218.370000px;}
.yeb{bottom:218.910000px;}
.y1f2{bottom:219.990000px;}
.y1f{bottom:225.750000px;}
.y22c{bottom:226.290000px;}
.y162{bottom:229.710000px;}
.y1b6{bottom:229.890000px;}
.yb1{bottom:231.690000px;}
.y78{bottom:232.230000px;}
.y3a{bottom:232.590000px;}
.y116{bottom:233.490000px;}
.y1f1{bottom:233.670000px;}
.y184{bottom:234.210000px;}
.y95{bottom:236.370000px;}
.y12a{bottom:238.170000px;}
.yea{bottom:238.710000px;}
.y22b{bottom:241.950000px;}
.y1e{bottom:243.570000px;}
.y1b5{bottom:243.750000px;}
.y161{bottom:249.510000px;}
.yb0{bottom:251.670000px;}
.y77{bottom:252.030000px;}
.y39{bottom:252.570000px;}
.y115{bottom:253.290000px;}
.y1f0{bottom:253.470000px;}
.y183{bottom:254.370000px;}
.y94{bottom:256.170000px;}
.y1b4{bottom:257.610000px;}
.y129{bottom:257.970000px;}
.ye9{bottom:258.510000px;}
.y1d{bottom:261.390000px;}
.y22a{bottom:263.370000px;}
.y1ef{bottom:267.330000px;}
.y160{bottom:269.310000px;}
.y76{bottom:271.470000px;}
.y38{bottom:272.370000px;}
.y114{bottom:273.090000px;}
.y182{bottom:274.170000px;}
.y93{bottom:275.970000px;}
.y1b3{bottom:277.410000px;}
.y128{bottom:277.950000px;}
.ye8{bottom:278.490000px;}
.y1c{bottom:279.390000px;}
.y1ee{bottom:281.190000px;}
.y229{bottom:284.970000px;}
.y15f{bottom:289.290000px;}
.y1b2{bottom:291.090000px;}
.yaf{bottom:291.270000px;}
.y75{bottom:291.810000px;}
.y37{bottom:292.170000px;}
.y113{bottom:292.890000px;}
.y181{bottom:293.610000px;}
.y92{bottom:295.770000px;}
.y1b{bottom:297.210000px;}
.y127{bottom:297.750000px;}
.ye7{bottom:298.290000px;}
.y1ed{bottom:300.990000px;}
.y1b1{bottom:304.950000px;}
.y228{bottom:306.390000px;}
.y15e{bottom:309.090000px;}
.yae{bottom:311.070000px;}
.y74{bottom:311.610000px;}
.y36{bottom:311.970000px;}
.y112{bottom:312.690000px;}
.y180{bottom:313.770000px;}
.y1ec{bottom:314.670000px;}
.y1a{bottom:315.030000px;}
.y91{bottom:315.570000px;}
.y126{bottom:317.550000px;}
.ye6{bottom:317.730000px;}
.y1b0{bottom:318.810000px;}
.y227{bottom:327.990000px;}
.y15d{bottom:328.890000px;}
.yad{bottom:330.870000px;}
.y73{bottom:331.410000px;}
.y35{bottom:331.770000px;}
.y111{bottom:332.670000px;}
.y19{bottom:332.850000px;}
.y17f{bottom:333.390000px;}
.y1eb{bottom:334.470000px;}
.y90{bottom:335.550000px;}
.y125{bottom:337.350000px;}
.ye5{bottom:337.890000px;}
.y1af{bottom:338.610000px;}
.y226{bottom:346.350000px;}
.y1ea{bottom:348.330000px;}
.y15c{bottom:348.690000px;}
.yac{bottom:350.850000px;}
.y72{bottom:351.210000px;}
.y34{bottom:351.750000px;}
.y1ae{bottom:352.290000px;}
.y110{bottom:352.470000px;}
.y18{bottom:354.810000px;}
.y8f{bottom:355.350000px;}
.y124{bottom:357.150000px;}
.ye4{bottom:357.690000px;}
.y1e9{bottom:362.190000px;}
.y225{bottom:366.150000px;}
.y2d{bottom:367.410000px;}
.y15b{bottom:368.490000px;}
.yab{bottom:370.650000px;}
.y71{bottom:371.010000px;}
.y33{bottom:371.550000px;}
.y1ad{bottom:372.090000px;}
.y10f{bottom:372.270000px;}
.y8e{bottom:375.150000px;}
.y123{bottom:376.770000px;}
.y17e{bottom:377.310000px;}
.ye3{bottom:377.670000px;}
.y1e8{bottom:381.990000px;}
.y1ac{bottom:385.950000px;}
.y15a{bottom:388.470000px;}
.yaa{bottom:390.450000px;}
.y70{bottom:390.630000px;}
.y32{bottom:391.350000px;}
.y10e{bottom:392.070000px;}
.y8d{bottom:394.950000px;}
.y1e7{bottom:395.670000px;}
.y17d{bottom:397.110000px;}
.ye2{bottom:397.470000px;}
.y122{bottom:399.495000px;}
.y1ab{bottom:399.855000px;}
.y224{bottom:405.975000px;}
.y6f{bottom:407.955000px;}
.y159{bottom:408.315000px;}
.y1e6{bottom:409.575000px;}
.ya9{bottom:410.295000px;}
.y31{bottom:411.195000px;}
.y10d{bottom:411.915000px;}
.y8c{bottom:414.795000px;}
.y17c{bottom:416.955000px;}
.ye1{bottom:417.315000px;}
.y1aa{bottom:419.655000px;}
.y121{bottom:424.155000px;}
.y6e{bottom:425.235000px;}
.y223{bottom:425.775000px;}
.y158{bottom:428.115000px;}
.y1e5{bottom:429.375000px;}
.ya8{bottom:430.095000px;}
.y30{bottom:430.635000px;}
.y10c{bottom:431.895000px;}
.y1a9{bottom:433.335000px;}
.y8b{bottom:434.775000px;}
.y17b{bottom:436.935000px;}
.ye0{bottom:437.115000px;}
.y120{bottom:441.975000px;}
.y1e4{bottom:443.235000px;}
.y6d{bottom:443.595000px;}
.y222{bottom:445.575000px;}
.y1a8{bottom:447.195000px;}
.y157{bottom:447.915000px;}
.ya7{bottom:450.075000px;}
.y2f{bottom:450.975000px;}
.y10b{bottom:451.695000px;}
.y8a{bottom:454.575000px;}
.y17a{bottom:456.735000px;}
.ydf{bottom:456.915000px;}
.y17{bottom:464.655000px;}
.y221{bottom:465.375000px;}
.y6c{bottom:465.915000px;}
.y1a7{bottom:466.995000px;}
.y156{bottom:467.715000px;}
.ya6{bottom:469.875000px;}
.y10a{bottom:471.495000px;}
.y89{bottom:474.375000px;}
.y179{bottom:476.535000px;}
.y1e3{bottom:476.715000px;}
.yde{bottom:476.895000px;}
.y1a6{bottom:480.855000px;}
.y220{bottom:485.175000px;}
.y6b{bottom:485.895000px;}
.y155{bottom:487.695000px;}
.ya5{bottom:489.675000px;}
.y1e2{bottom:490.575000px;}
.y109{bottom:491.295000px;}
.y88{bottom:494.175000px;}
.y178{bottom:496.335000px;}
.ydd{bottom:496.695000px;}
.y1a5{bottom:500.655000px;}
.y1e1{bottom:504.435000px;}
.y21f{bottom:505.155000px;}
.y6a{bottom:505.695000px;}
.y154{bottom:507.495000px;}
.ya4{bottom:509.475000px;}
.y108{bottom:511.095000px;}
.y87{bottom:513.975000px;}
.y1a4{bottom:514.335000px;}
.y177{bottom:516.135000px;}
.ydc{bottom:516.495000px;}
.y1e0{bottom:518.115000px;}
.y21e{bottom:524.955000px;}
.y69{bottom:525.495000px;}
.y153{bottom:527.295000px;}
.y1a3{bottom:528.195000px;}
.ya3{bottom:528.915000px;}
.y107{bottom:531.075000px;}
.y86{bottom:533.955000px;}
.y176{bottom:536.115000px;}
.ydb{bottom:536.295000px;}
.y1df{bottom:537.915000px;}
.y21d{bottom:544.755000px;}
.y68{bottom:545.295000px;}
.y152{bottom:547.095000px;}
.y1a2{bottom:547.995000px;}
.y106{bottom:550.875000px;}
.ya2{bottom:551.775000px;}
.y85{bottom:553.395000px;}
.yda{bottom:555.735000px;}
.y175{bottom:555.915000px;}
.y1a1{bottom:561.855000px;}
.y21c{bottom:564.555000px;}
.y67{bottom:565.095000px;}
.y151{bottom:566.895000px;}
.y105{bottom:570.675000px;}
.y1de{bottom:571.575000px;}
.y1a0{bottom:575.535000px;}
.y84{bottom:575.715000px;}
.yd9{bottom:576.075000px;}
.ya1{bottom:576.435000px;}
.y21b{bottom:584.355000px;}
.y66{bottom:585.075000px;}
.y1dd{bottom:585.435000px;}
.y150{bottom:586.875000px;}
.y104{bottom:590.475000px;}
.ya0{bottom:594.255000px;}
.y19f{bottom:595.335000px;}
.y174{bottom:595.515000px;}
.yd8{bottom:595.875000px;}
.y1dc{bottom:599.115000px;}
.y83{bottom:600.735000px;}
.y21a{bottom:604.335000px;}
.y65{bottom:604.875000px;}
.y14f{bottom:606.675000px;}
.y103{bottom:607.215000px;}
.y19e{bottom:609.195000px;}
.yba{bottom:612.450000px;}
.y9f{bottom:612.795000px;}
.y1db{bottom:612.975000px;}
.y173{bottom:615.315000px;}
.yd7{bottom:615.675000px;}
.y82{bottom:618.555000px;}
.y102{bottom:620.895000px;}
.y19d{bottom:623.055000px;}
.y219{bottom:624.135000px;}
.y64{bottom:624.675000px;}
.y14e{bottom:626.475000px;}
.y1da{bottom:632.775000px;}
.y81{bottom:633.495000px;}
.y101{bottom:634.755000px;}
.y172{bottom:635.295000px;}
.yd6{bottom:635.475000px;}
.y19c{bottom:642.855000px;}
.y218{bottom:643.935000px;}
.y63{bottom:644.475000px;}
.yff{bottom:646.275000px;}
.y1d9{bottom:646.635000px;}
.y171{bottom:655.125000px;}
.yd5{bottom:655.305000px;}
.y19b{bottom:656.565000px;}
.y217{bottom:663.765000px;}
.y62{bottom:664.305000px;}
.y14d{bottom:666.105000px;}
.y1d8{bottom:666.465000px;}
.yfd{bottom:668.265000px;}
.y170{bottom:674.925000px;}
.yd4{bottom:675.285000px;}
.y19a{bottom:676.365000px;}
.y1d7{bottom:680.145000px;}
.y216{bottom:683.565000px;}
.y61{bottom:684.285000px;}
.y14c{bottom:686.085000px;}
.yfc{bottom:687.345000px;}
.y199{bottom:690.225000px;}
.y1d6{bottom:694.005000px;}
.yd3{bottom:694.725000px;}
.y215{bottom:703.545000px;}
.y60{bottom:704.085000px;}
.y14b{bottom:705.885000px;}
.yfb{bottom:707.865000px;}
.y16f{bottom:714.525000px;}
.yd2{bottom:714.885000px;}
.y214{bottom:723.345000px;}
.y5f{bottom:723.885000px;}
.y14a{bottom:725.685000px;}
.y1d5{bottom:727.665000px;}
.yf9{bottom:728.385000px;}
.y16e{bottom:734.505000px;}
.yd1{bottom:734.685000px;}
.y198{bottom:737.565000px;}
.y1d4{bottom:741.345000px;}
.y213{bottom:743.145000px;}
.y5e{bottom:743.685000px;}
.y149{bottom:744.225000px;}
.yf3{bottom:749.625000px;}
.y16d{bottom:754.305000px;}
.yd0{bottom:754.485000px;}
.y1d3{bottom:755.205000px;}
.y197{bottom:757.365000px;}
.y212{bottom:762.945000px;}
.y5d{bottom:763.485000px;}
.y148{bottom:765.285000px;}
.y196{bottom:771.225000px;}
.y146{bottom:771.765000px;}
.y16c{bottom:773.745000px;}
.ycf{bottom:774.465000px;}
.y1d2{bottom:775.005000px;}
.yf5{bottom:775.185000px;}
.y211{bottom:782.745000px;}
.y5c{bottom:783.465000px;}
.y195{bottom:785.085000px;}
.y1d1{bottom:788.685000px;}
.yce{bottom:794.265000px;}
.y16b{bottom:796.065000px;}
.y210{bottom:802.725000px;}
.y5b{bottom:803.265000px;}
.y194{bottom:804.885000px;}
.y1d0{bottom:808.485000px;}
.ycd{bottom:814.065000px;}
.y193{bottom:818.565000px;}
.y16a{bottom:821.085000px;}
.y1cf{bottom:822.345000px;}
.y20f{bottom:822.525000px;}
.y5a{bottom:823.065000px;}
.y144{bottom:823.245000px;}
.y11f{bottom:828.465000px;}
.ycc{bottom:833.865000px;}
.y1ce{bottom:836.205000px;}
.y16{bottom:838.005000px;}
.y192{bottom:838.365000px;}
.y169{bottom:839.085000px;}
.y59{bottom:842.865000px;}
.y20e{bottom:845.205000px;}
.y142{bottom:847.545000px;}
.y1cd{bottom:849.885000px;}
.ycb{bottom:853.665000px;}
.y168{bottom:853.845000px;}
.y15{bottom:856.905000px;}
.y191{bottom:858.345000px;}
.y20d{bottom:858.885000px;}
.y58{bottom:862.665000px;}
.y14{bottom:869.685000px;}
.y20c{bottom:872.745000px;}
.yca{bottom:873.645000px;}
.y140{bottom:877.785000px;}
.y190{bottom:879.945000px;}
.y13{bottom:881.925000px;}
.y57{bottom:882.645000px;}
.y1cc{bottom:883.545000px;}
.y20b{bottom:886.605000px;}
.yc9{bottom:893.445000px;}
.y12{bottom:895.785000px;}
.y56{bottom:902.490000px;}
.y13f{bottom:902.850000px;}
.y1cb{bottom:903.390000px;}
.y20a{bottom:906.450000px;}
.y11{bottom:909.690000px;}
.yc8{bottom:913.290000px;}
.y1ca{bottom:917.250000px;}
.y10{bottom:917.790000px;}
.y209{bottom:920.130000px;}
.y55{bottom:922.290000px;}
.y13c{bottom:929.310000px;}
.y1c9{bottom:930.930000px;}
.yc7{bottom:933.090000px;}
.yf{bottom:933.270000px;}
.y208{bottom:939.930000px;}
.y54{bottom:942.090000px;}
.y1c8{bottom:950.730000px;}
.yc6{bottom:952.890000px;}
.y207{bottom:953.790000px;}
.ye{bottom:954.870000px;}
.y18f{bottom:961.530000px;}
.y53{bottom:961.890000px;}
.y1c7{bottom:964.590000px;}
.y133{bottom:964.770000px;}
.y206{bottom:967.650000px;}
.yc5{bottom:972.870000px;}
.yd{bottom:977.550000px;}
.y1c6{bottom:978.450000px;}
.y52{bottom:981.870000px;}
.y137{bottom:983.670000px;}
.y205{bottom:987.450000px;}
.y1c5{bottom:992.130000px;}
.yc4{bottom:992.670000px;}
.yc{bottom:1000.770000px;}
.y204{bottom:1001.130000px;}
.y51{bottom:1001.670000px;}
.y134{bottom:1007.970000px;}
.y1c4{bottom:1011.930000px;}
.yc3{bottom:1012.470000px;}
.y203{bottom:1014.990000px;}
.y9e{bottom:1016.070000px;}
.y50{bottom:1021.470000px;}
.y1c3{bottom:1025.790000px;}
.yc2{bottom:1032.270000px;}
.y202{bottom:1034.790000px;}
.yb{bottom:1035.330000px;}
.y1c2{bottom:1039.650000px;}
.y4f{bottom:1041.270000px;}
.y201{bottom:1048.650000px;}
.yc1{bottom:1052.070000px;}
.y1c1{bottom:1059.450000px;}
.y4e{bottom:1061.070000px;}
.y200{bottom:1062.330000px;}
.ya{bottom:1069.890000px;}
.yc0{bottom:1072.050000px;}
.y1c0{bottom:1073.130000px;}
.y18e{bottom:1080.690000px;}
.y4d{bottom:1081.050000px;}
.y1ff{bottom:1082.130000px;}
.ybf{bottom:1091.850000px;}
.y1bf{bottom:1092.930000px;}
.y1fe{bottom:1095.990000px;}
.y4c{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y1be{bottom:1106.790000px;}
.ybe{bottom:1111.650000px;}
.y43{bottom:1112.730000px;}
.y1fd{bottom:1115.790000px;}
.y8{bottom:1117.950000px;}
.y4b{bottom:1120.650000px;}
.y1fc{bottom:1129.650000px;}
.ybd{bottom:1131.450000px;}
.y18d{bottom:1140.090000px;}
.y4a{bottom:1140.450000px;}
.y1fb{bottom:1149.480000px;}
.ybc{bottom:1151.280000px;}
.y1bd{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y49{bottom:1160.280000px;}
.y1fa{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y80{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y47{bottom:1178.460000px;}
.y7f{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y46{bottom:1197.720000px;}
.h7{height:5.650313px;}
.he{height:17.666016px;}
.h10{height:18.140625px;}
.h27{height:18.885000px;}
.h21{height:19.080000px;}
.h1f{height:20.340000px;}
.h20{height:20.520000px;}
.h2f{height:21.780000px;}
.h22{height:21.990000px;}
.h26{height:23.025000px;}
.h2d{height:23.580000px;}
.h2b{height:24.322500px;}
.h1e{height:24.480000px;}
.h2a{height:25.545000px;}
.h24{height:26.445000px;}
.h14{height:27.705000px;}
.h2e{height:28.260000px;}
.h2c{height:29.520000px;}
.hd{height:29.664141px;}
.h30{height:29.678906px;}
.h28{height:34.725000px;}
.h4{height:40.985156px;}
.h1d{height:41.040000px;}
.h25{height:41.925000px;}
.h15{height:42.922699px;}
.h3{height:44.852344px;}
.h8{height:47.344922px;}
.h5{height:48.616875px;}
.h31{height:50.558906px;}
.h2{height:52.998047px;}
.h9{height:54.421875px;}
.h12{height:55.503473px;}
.h13{height:58.651172px;}
.h29{height:59.092031px;}
.ha{height:60.226875px;}
.h19{height:65.518594px;}
.hc{height:66.543750px;}
.h1c{height:66.600000px;}
.h11{height:66.757500px;}
.h1b{height:68.948631px;}
.h23{height:69.645000px;}
.h16{height:70.664062px;}
.h6{height:72.562500px;}
.h18{height:82.676953px;}
.h17{height:84.898125px;}
.hb{height:121.179375px;}
.hf{height:367.410000px;}
.h1a{height:394.950966px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:45.345000px;}
.we{width:46.101000px;}
.w12{width:46.461000px;}
.wa{width:52.740000px;}
.w10{width:52.770000px;}
.w1d{width:59.220000px;}
.wd{width:63.525000px;}
.w17{width:63.720000px;}
.wc{width:63.885000px;}
.w11{width:63.900000px;}
.wb{width:63.936000px;}
.w18{width:64.080000px;}
.w1a{width:66.981000px;}
.w1f{width:67.341000px;}
.w9{width:72.381000px;}
.w1b{width:74.325000px;}
.w14{width:74.361000px;}
.w3{width:101.730000px;}
.w1c{width:106.230000px;}
.w19{width:107.676000px;}
.w1e{width:108.036000px;}
.w13{width:114.649500px;}
.w6{width:140.749500px;}
.w4{width:232.050000px;}
.w15{width:235.470000px;}
.w8{width:272.040000px;}
.w16{width:306.780000px;}
.w7{width:316.500000px;}
.w2{width:640.890000px;}
.w5{width:737.919593px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x13{left:2.149500px;}
.x28{left:3.960000px;}
.x1e{left:5.040000px;}
.x26{left:7.740000px;}
.x27{left:9.165000px;}
.x9{left:10.650000px;}
.x2b{left:12.585000px;}
.x22{left:13.860000px;}
.x2c{left:16.020000px;}
.x1c{left:17.640000px;}
.x29{left:19.440000px;}
.x2a{left:21.420000px;}
.x1a{left:23.610000px;}
.x2e{left:24.645000px;}
.x8{left:26.850000px;}
.x38{left:29.910000px;}
.x34{left:35.310000px;}
.x7{left:42.510000px;}
.x18{left:49.170000px;}
.x15{left:56.550000px;}
.x6{left:58.710000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.xc{left:108.036000px;}
.x3a{left:113.076000px;}
.x31{left:120.450000px;}
.x19{left:135.930000px;}
.x16{left:158.250000px;}
.x2d{left:193.545000px;}
.x14{left:219.645000px;}
.x2f{left:267.915000px;}
.x1b{left:292.035000px;}
.x32{left:331.635000px;}
.x1d{left:344.775000px;}
.xe{left:359.715000px;}
.xf{left:369.435000px;}
.x33{left:395.715000px;}
.x1f{left:408.720000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x20{left:472.620000px;}
.x30{left:504.120000px;}
.x17{left:536.880000px;}
.x35{left:571.110000px;}
.x21{left:582.990000px;}
.xd{left:590.370000px;}
.x23{left:628.350000px;}
.x36{left:645.450000px;}
.x24{left:692.250000px;}
.x4{left:721.950000px;}
.x12{left:738.469131px;}
.x25{left:745.020000px;}
.x37{left:751.680000px;}
.x39{left:809.100000px;}
.x10{left:810.180000px;}
.x11{left:819.180000px;}
@media print{
.v5{vertical-align:-55.786669pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v7{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.880000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.400533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.239467pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.158933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.438933pt;}
.lse{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.821333pt;}
.ls1{letter-spacing:2.240000pt;}
.ls20{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:6.560000pt;}
.lsa{letter-spacing:8.640000pt;}
.ls1b{letter-spacing:10.400000pt;}
.ls8{letter-spacing:55.040000pt;}
.ls7{letter-spacing:55.680000pt;}
.ls5{letter-spacing:56.000000pt;}
.ls6{letter-spacing:56.320000pt;}
.ws5{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.991467pt;}
.ws14{word-spacing:-14.101333pt;}
.ws17{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.ws18{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.808000pt;}
.wsf{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.521067pt;}
.ws1c{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws1b{word-spacing:-9.840000pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws19{word-spacing:-8.000000pt;}
.wsa{word-spacing:-6.720000pt;}
.ws11{word-spacing:0.000000pt;}
._3{margin-left:-1.195733pt;}
._1{width:0.898560pt;}
._0{width:1.959680pt;}
._2{width:3.000747pt;}
._f{width:4.032000pt;}
._e{width:5.466667pt;}
._d{width:6.720000pt;}
._12{width:7.649280pt;}
._b{width:8.928000pt;}
._c{width:10.212053pt;}
._14{width:11.172907pt;}
._13{width:12.373120pt;}
._20{width:13.506987pt;}
._7{width:14.428800pt;}
._8{width:15.410773pt;}
._15{width:16.368427pt;}
._a{width:17.572267pt;}
._9{width:18.859733pt;}
._16{width:19.866880pt;}
._1d{width:20.808533pt;}
._17{width:21.772800pt;}
._1b{width:22.688000pt;}
._1a{width:23.873280pt;}
._26{width:24.865493pt;}
._21{width:26.585600pt;}
._22{width:27.609813pt;}
._1f{width:32.326613pt;}
._18{width:34.156160pt;}
._19{width:35.121280pt;}
._10{width:41.759997pt;}
._23{width:48.168533pt;}
._1e{width:49.483520pt;}
._1c{width:50.722133pt;}
._5{width:61.669760pt;}
._6{width:62.845440pt;}
._25{width:67.107200pt;}
._24{width:68.050560pt;}
._11{width:1630.485333pt;}
._4{width:1827.304107pt;}
.fs7{font-size:5.120000pt;}
.fsb{font-size:16.000000pt;}
.fs2{font-size:24.320000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fse{font-size:61.618632pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs9{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.840000pt;}
.y13b{bottom:4.160000pt;}
.ybb{bottom:4.197852pt;}
.yfe{bottom:4.480000pt;}
.y2c{bottom:4.960000pt;}
.yfa{bottom:5.120000pt;}
.y147{bottom:5.760000pt;}
.y100{bottom:5.786667pt;}
.y138{bottom:5.920000pt;}
.yf8{bottom:6.560000pt;}
.y141{bottom:6.880000pt;}
.yf7{bottom:7.040000pt;}
.y135{bottom:7.360000pt;}
.y13a{bottom:7.520000pt;}
.y145{bottom:8.480000pt;}
.y143{bottom:9.120000pt;}
.y13d{bottom:11.360000pt;}
.y136{bottom:14.400000pt;}
.y3{bottom:16.000000pt;}
.y44{bottom:16.160000pt;}
.y48{bottom:16.800000pt;}
.y2b{bottom:17.280000pt;}
.y13e{bottom:18.400000pt;}
.yf6{bottom:20.800000pt;}
.y139{bottom:21.280000pt;}
.yf4{bottom:25.280000pt;}
.y2a{bottom:26.080000pt;}
.y2{bottom:26.720000pt;}
.y1{bottom:38.240000pt;}
.y29{bottom:41.920000pt;}
.y28{bottom:57.760000pt;}
.y235{bottom:63.200000pt;}
.y1f9{bottom:63.680000pt;}
.yb9{bottom:64.960000pt;}
.y42{bottom:65.760000pt;}
.y11e{bottom:66.400000pt;}
.y18c{bottom:67.360000pt;}
.yf2{bottom:67.680000pt;}
.y9d{bottom:68.960000pt;}
.y132{bottom:70.720000pt;}
.y27{bottom:73.760000pt;}
.y1f8{bottom:76.000000pt;}
.y234{bottom:76.960000pt;}
.y1bc{bottom:77.920000pt;}
.yb8{bottom:82.560000pt;}
.y41{bottom:83.360000pt;}
.y11d{bottom:84.000000pt;}
.y18b{bottom:84.960000pt;}
.yf1{bottom:85.280000pt;}
.y9c{bottom:86.560000pt;}
.y131{bottom:88.320000pt;}
.y26{bottom:89.600000pt;}
.y1bb{bottom:90.240000pt;}
.y233{bottom:90.720000pt;}
.y1f7{bottom:93.600000pt;}
.y167{bottom:98.400000pt;}
.yb7{bottom:100.160000pt;}
.y7e{bottom:100.640000pt;}
.y40{bottom:100.960000pt;}
.y11c{bottom:101.600000pt;}
.y18a{bottom:102.560000pt;}
.yf0{bottom:102.880000pt;}
.y9b{bottom:104.160000pt;}
.y232{bottom:104.640000pt;}
.y25{bottom:105.440000pt;}
.y130{bottom:105.920000pt;}
.y166{bottom:116.000000pt;}
.yb6{bottom:117.760000pt;}
.y7d{bottom:118.240000pt;}
.y231{bottom:118.400000pt;}
.y3f{bottom:118.560000pt;}
.y11b{bottom:119.360000pt;}
.yef{bottom:120.160000pt;}
.y189{bottom:120.320000pt;}
.y24{bottom:121.280000pt;}
.y9a{bottom:121.920000pt;}
.y12f{bottom:123.520000pt;}
.y230{bottom:132.160000pt;}
.y1ba{bottom:132.320000pt;}
.y165{bottom:133.626667pt;}
.yb5{bottom:135.546667pt;}
.y1f6{bottom:135.706667pt;}
.y7c{bottom:135.866667pt;}
.y3e{bottom:136.346667pt;}
.y11a{bottom:136.986667pt;}
.y23{bottom:137.120000pt;}
.y188{bottom:137.626667pt;}
.yee{bottom:137.786667pt;}
.y99{bottom:139.546667pt;}
.y12e{bottom:141.146667pt;}
.y22f{bottom:145.946667pt;}
.y1b9{bottom:149.946667pt;}
.y164{bottom:151.226667pt;}
.y22{bottom:153.120000pt;}
.yb4{bottom:153.146667pt;}
.y1f5{bottom:153.306667pt;}
.y7b{bottom:153.466667pt;}
.y3d{bottom:153.946667pt;}
.y119{bottom:154.586667pt;}
.y187{bottom:155.226667pt;}
.yed{bottom:155.546667pt;}
.y98{bottom:157.146667pt;}
.y12d{bottom:158.906667pt;}
.y22e{bottom:159.866667pt;}
.y1b8{bottom:162.266667pt;}
.y2e{bottom:163.226667pt;}
.y1f4{bottom:165.626667pt;}
.y21{bottom:168.986667pt;}
.yb3{bottom:170.746667pt;}
.y7a{bottom:171.226667pt;}
.y3c{bottom:171.546667pt;}
.y118{bottom:172.186667pt;}
.y186{bottom:173.146667pt;}
.y22d{bottom:173.626667pt;}
.yec{bottom:174.586667pt;}
.y97{bottom:174.746667pt;}
.y12c{bottom:176.506667pt;}
.y1f3{bottom:177.946667pt;}
.y20{bottom:184.826667pt;}
.y163{bottom:186.586667pt;}
.yb2{bottom:188.346667pt;}
.y79{bottom:188.826667pt;}
.y3b{bottom:189.146667pt;}
.y117{bottom:189.786667pt;}
.y185{bottom:190.426667pt;}
.y1b7{bottom:192.186667pt;}
.y96{bottom:192.346667pt;}
.y12b{bottom:194.106667pt;}
.yeb{bottom:194.586667pt;}
.y1f2{bottom:195.546667pt;}
.y1f{bottom:200.666667pt;}
.y22c{bottom:201.146667pt;}
.y162{bottom:204.186667pt;}
.y1b6{bottom:204.346667pt;}
.yb1{bottom:205.946667pt;}
.y78{bottom:206.426667pt;}
.y3a{bottom:206.746667pt;}
.y116{bottom:207.546667pt;}
.y1f1{bottom:207.706667pt;}
.y184{bottom:208.186667pt;}
.y95{bottom:210.106667pt;}
.y12a{bottom:211.706667pt;}
.yea{bottom:212.186667pt;}
.y22b{bottom:215.066667pt;}
.y1e{bottom:216.506667pt;}
.y1b5{bottom:216.666667pt;}
.y161{bottom:221.786667pt;}
.yb0{bottom:223.706667pt;}
.y77{bottom:224.026667pt;}
.y39{bottom:224.506667pt;}
.y115{bottom:225.146667pt;}
.y1f0{bottom:225.306667pt;}
.y183{bottom:226.106667pt;}
.y94{bottom:227.706667pt;}
.y1b4{bottom:228.986667pt;}
.y129{bottom:229.306667pt;}
.ye9{bottom:229.786667pt;}
.y1d{bottom:232.346667pt;}
.y22a{bottom:234.106667pt;}
.y1ef{bottom:237.626667pt;}
.y160{bottom:239.386667pt;}
.y76{bottom:241.306667pt;}
.y38{bottom:242.106667pt;}
.y114{bottom:242.746667pt;}
.y182{bottom:243.706667pt;}
.y93{bottom:245.306667pt;}
.y1b3{bottom:246.586667pt;}
.y128{bottom:247.066667pt;}
.ye8{bottom:247.546667pt;}
.y1c{bottom:248.346667pt;}
.y1ee{bottom:249.946667pt;}
.y229{bottom:253.306667pt;}
.y15f{bottom:257.146667pt;}
.y1b2{bottom:258.746667pt;}
.yaf{bottom:258.906667pt;}
.y75{bottom:259.386667pt;}
.y37{bottom:259.706667pt;}
.y113{bottom:260.346667pt;}
.y181{bottom:260.986667pt;}
.y92{bottom:262.906667pt;}
.y1b{bottom:264.186667pt;}
.y127{bottom:264.666667pt;}
.ye7{bottom:265.146667pt;}
.y1ed{bottom:267.546667pt;}
.y1b1{bottom:271.066667pt;}
.y228{bottom:272.346667pt;}
.y15e{bottom:274.746667pt;}
.yae{bottom:276.506667pt;}
.y74{bottom:276.986667pt;}
.y36{bottom:277.306667pt;}
.y112{bottom:277.946667pt;}
.y180{bottom:278.906667pt;}
.y1ec{bottom:279.706667pt;}
.y1a{bottom:280.026667pt;}
.y91{bottom:280.506667pt;}
.y126{bottom:282.266667pt;}
.ye6{bottom:282.426667pt;}
.y1b0{bottom:283.386667pt;}
.y227{bottom:291.546667pt;}
.y15d{bottom:292.346667pt;}
.yad{bottom:294.106667pt;}
.y73{bottom:294.586667pt;}
.y35{bottom:294.906667pt;}
.y111{bottom:295.706667pt;}
.y19{bottom:295.866667pt;}
.y17f{bottom:296.346667pt;}
.y1eb{bottom:297.306667pt;}
.y90{bottom:298.266667pt;}
.y125{bottom:299.866667pt;}
.ye5{bottom:300.346667pt;}
.y1af{bottom:300.986667pt;}
.y226{bottom:307.866667pt;}
.y1ea{bottom:309.626667pt;}
.y15c{bottom:309.946667pt;}
.yac{bottom:311.866667pt;}
.y72{bottom:312.186667pt;}
.y34{bottom:312.666667pt;}
.y1ae{bottom:313.146667pt;}
.y110{bottom:313.306667pt;}
.y18{bottom:315.386667pt;}
.y8f{bottom:315.866667pt;}
.y124{bottom:317.466667pt;}
.ye4{bottom:317.946667pt;}
.y1e9{bottom:321.946667pt;}
.y225{bottom:325.466667pt;}
.y2d{bottom:326.586667pt;}
.y15b{bottom:327.546667pt;}
.yab{bottom:329.466667pt;}
.y71{bottom:329.786667pt;}
.y33{bottom:330.266667pt;}
.y1ad{bottom:330.746667pt;}
.y10f{bottom:330.906667pt;}
.y8e{bottom:333.466667pt;}
.y123{bottom:334.906667pt;}
.y17e{bottom:335.386667pt;}
.ye3{bottom:335.706667pt;}
.y1e8{bottom:339.546667pt;}
.y1ac{bottom:343.066667pt;}
.y15a{bottom:345.306667pt;}
.yaa{bottom:347.066667pt;}
.y70{bottom:347.226667pt;}
.y32{bottom:347.866667pt;}
.y10e{bottom:348.506667pt;}
.y8d{bottom:351.066667pt;}
.y1e7{bottom:351.706667pt;}
.y17d{bottom:352.986667pt;}
.ye2{bottom:353.306667pt;}
.y122{bottom:355.106667pt;}
.y1ab{bottom:355.426667pt;}
.y224{bottom:360.866667pt;}
.y6f{bottom:362.626667pt;}
.y159{bottom:362.946667pt;}
.y1e6{bottom:364.066667pt;}
.ya9{bottom:364.706667pt;}
.y31{bottom:365.506667pt;}
.y10d{bottom:366.146667pt;}
.y8c{bottom:368.706667pt;}
.y17c{bottom:370.626667pt;}
.ye1{bottom:370.946667pt;}
.y1aa{bottom:373.026667pt;}
.y121{bottom:377.026667pt;}
.y6e{bottom:377.986667pt;}
.y223{bottom:378.466667pt;}
.y158{bottom:380.546667pt;}
.y1e5{bottom:381.666667pt;}
.ya8{bottom:382.306667pt;}
.y30{bottom:382.786667pt;}
.y10c{bottom:383.906667pt;}
.y1a9{bottom:385.186667pt;}
.y8b{bottom:386.466667pt;}
.y17b{bottom:388.386667pt;}
.ye0{bottom:388.546667pt;}
.y120{bottom:392.866667pt;}
.y1e4{bottom:393.986667pt;}
.y6d{bottom:394.306667pt;}
.y222{bottom:396.066667pt;}
.y1a8{bottom:397.506667pt;}
.y157{bottom:398.146667pt;}
.ya7{bottom:400.066667pt;}
.y2f{bottom:400.866667pt;}
.y10b{bottom:401.506667pt;}
.y8a{bottom:404.066667pt;}
.y17a{bottom:405.986667pt;}
.ydf{bottom:406.146667pt;}
.y17{bottom:413.026667pt;}
.y221{bottom:413.666667pt;}
.y6c{bottom:414.146667pt;}
.y1a7{bottom:415.106667pt;}
.y156{bottom:415.746667pt;}
.ya6{bottom:417.666667pt;}
.y10a{bottom:419.106667pt;}
.y89{bottom:421.666667pt;}
.y179{bottom:423.586667pt;}
.y1e3{bottom:423.746667pt;}
.yde{bottom:423.906667pt;}
.y1a6{bottom:427.426667pt;}
.y220{bottom:431.266667pt;}
.y6b{bottom:431.906667pt;}
.y155{bottom:433.506667pt;}
.ya5{bottom:435.266667pt;}
.y1e2{bottom:436.066667pt;}
.y109{bottom:436.706667pt;}
.y88{bottom:439.266667pt;}
.y178{bottom:441.186667pt;}
.ydd{bottom:441.506667pt;}
.y1a5{bottom:445.026667pt;}
.y1e1{bottom:448.386667pt;}
.y21f{bottom:449.026667pt;}
.y6a{bottom:449.506667pt;}
.y154{bottom:451.106667pt;}
.ya4{bottom:452.866667pt;}
.y108{bottom:454.306667pt;}
.y87{bottom:456.866667pt;}
.y1a4{bottom:457.186667pt;}
.y177{bottom:458.786667pt;}
.ydc{bottom:459.106667pt;}
.y1e0{bottom:460.546667pt;}
.y21e{bottom:466.626667pt;}
.y69{bottom:467.106667pt;}
.y153{bottom:468.706667pt;}
.y1a3{bottom:469.506667pt;}
.ya3{bottom:470.146667pt;}
.y107{bottom:472.066667pt;}
.y86{bottom:474.626667pt;}
.y176{bottom:476.546667pt;}
.ydb{bottom:476.706667pt;}
.y1df{bottom:478.146667pt;}
.y21d{bottom:484.226667pt;}
.y68{bottom:484.706667pt;}
.y152{bottom:486.306667pt;}
.y1a2{bottom:487.106667pt;}
.y106{bottom:489.666667pt;}
.ya2{bottom:490.466667pt;}
.y85{bottom:491.906667pt;}
.yda{bottom:493.986667pt;}
.y175{bottom:494.146667pt;}
.y1a1{bottom:499.426667pt;}
.y21c{bottom:501.826667pt;}
.y67{bottom:502.306667pt;}
.y151{bottom:503.906667pt;}
.y105{bottom:507.266667pt;}
.y1de{bottom:508.066667pt;}
.y1a0{bottom:511.586667pt;}
.y84{bottom:511.746667pt;}
.yd9{bottom:512.066667pt;}
.ya1{bottom:512.386667pt;}
.y21b{bottom:519.426667pt;}
.y66{bottom:520.066667pt;}
.y1dd{bottom:520.386667pt;}
.y150{bottom:521.666667pt;}
.y104{bottom:524.866667pt;}
.ya0{bottom:528.226667pt;}
.y19f{bottom:529.186667pt;}
.y174{bottom:529.346667pt;}
.yd8{bottom:529.666667pt;}
.y1dc{bottom:532.546667pt;}
.y83{bottom:533.986667pt;}
.y21a{bottom:537.186667pt;}
.y65{bottom:537.666667pt;}
.y14f{bottom:539.266667pt;}
.y103{bottom:539.746667pt;}
.y19e{bottom:541.506667pt;}
.yba{bottom:544.400000pt;}
.y9f{bottom:544.706667pt;}
.y1db{bottom:544.866667pt;}
.y173{bottom:546.946667pt;}
.yd7{bottom:547.266667pt;}
.y82{bottom:549.826667pt;}
.y102{bottom:551.906667pt;}
.y19d{bottom:553.826667pt;}
.y219{bottom:554.786667pt;}
.y64{bottom:555.266667pt;}
.y14e{bottom:556.866667pt;}
.y1da{bottom:562.466667pt;}
.y81{bottom:563.106667pt;}
.y101{bottom:564.226667pt;}
.y172{bottom:564.706667pt;}
.yd6{bottom:564.866667pt;}
.y19c{bottom:571.426667pt;}
.y218{bottom:572.386667pt;}
.y63{bottom:572.866667pt;}
.yff{bottom:574.466667pt;}
.y1d9{bottom:574.786667pt;}
.y171{bottom:582.333333pt;}
.yd5{bottom:582.493333pt;}
.y19b{bottom:583.613333pt;}
.y217{bottom:590.013333pt;}
.y62{bottom:590.493333pt;}
.y14d{bottom:592.093333pt;}
.y1d8{bottom:592.413333pt;}
.yfd{bottom:594.013333pt;}
.y170{bottom:599.933333pt;}
.yd4{bottom:600.253333pt;}
.y19a{bottom:601.213333pt;}
.y1d7{bottom:604.573333pt;}
.y216{bottom:607.613333pt;}
.y61{bottom:608.253333pt;}
.y14c{bottom:609.853333pt;}
.yfc{bottom:610.973333pt;}
.y199{bottom:613.533333pt;}
.y1d6{bottom:616.893333pt;}
.yd3{bottom:617.533333pt;}
.y215{bottom:625.373333pt;}
.y60{bottom:625.853333pt;}
.y14b{bottom:627.453333pt;}
.yfb{bottom:629.213333pt;}
.y16f{bottom:635.133333pt;}
.yd2{bottom:635.453333pt;}
.y214{bottom:642.973333pt;}
.y5f{bottom:643.453333pt;}
.y14a{bottom:645.053333pt;}
.y1d5{bottom:646.813333pt;}
.yf9{bottom:647.453333pt;}
.y16e{bottom:652.893333pt;}
.yd1{bottom:653.053333pt;}
.y198{bottom:655.613333pt;}
.y1d4{bottom:658.973333pt;}
.y213{bottom:660.573333pt;}
.y5e{bottom:661.053333pt;}
.y149{bottom:661.533333pt;}
.yf3{bottom:666.333333pt;}
.y16d{bottom:670.493333pt;}
.yd0{bottom:670.653333pt;}
.y1d3{bottom:671.293333pt;}
.y197{bottom:673.213333pt;}
.y212{bottom:678.173333pt;}
.y5d{bottom:678.653333pt;}
.y148{bottom:680.253333pt;}
.y196{bottom:685.533333pt;}
.y146{bottom:686.013333pt;}
.y16c{bottom:687.773333pt;}
.ycf{bottom:688.413333pt;}
.y1d2{bottom:688.893333pt;}
.yf5{bottom:689.053333pt;}
.y211{bottom:695.773333pt;}
.y5c{bottom:696.413333pt;}
.y195{bottom:697.853333pt;}
.y1d1{bottom:701.053333pt;}
.yce{bottom:706.013333pt;}
.y16b{bottom:707.613333pt;}
.y210{bottom:713.533333pt;}
.y5b{bottom:714.013333pt;}
.y194{bottom:715.453333pt;}
.y1d0{bottom:718.653333pt;}
.ycd{bottom:723.613333pt;}
.y193{bottom:727.613333pt;}
.y16a{bottom:729.853333pt;}
.y1cf{bottom:730.973333pt;}
.y20f{bottom:731.133333pt;}
.y5a{bottom:731.613333pt;}
.y144{bottom:731.773333pt;}
.y11f{bottom:736.413333pt;}
.ycc{bottom:741.213333pt;}
.y1ce{bottom:743.293333pt;}
.y16{bottom:744.893333pt;}
.y192{bottom:745.213333pt;}
.y169{bottom:745.853333pt;}
.y59{bottom:749.213333pt;}
.y20e{bottom:751.293333pt;}
.y142{bottom:753.373333pt;}
.y1cd{bottom:755.453333pt;}
.ycb{bottom:758.813333pt;}
.y168{bottom:758.973333pt;}
.y15{bottom:761.693333pt;}
.y191{bottom:762.973333pt;}
.y20d{bottom:763.453333pt;}
.y58{bottom:766.813333pt;}
.y14{bottom:773.053333pt;}
.y20c{bottom:775.773333pt;}
.yca{bottom:776.573333pt;}
.y140{bottom:780.253333pt;}
.y190{bottom:782.173333pt;}
.y13{bottom:783.933333pt;}
.y57{bottom:784.573333pt;}
.y1cc{bottom:785.373333pt;}
.y20b{bottom:788.093333pt;}
.yc9{bottom:794.173333pt;}
.y12{bottom:796.253333pt;}
.y56{bottom:802.213333pt;}
.y13f{bottom:802.533333pt;}
.y1cb{bottom:803.013333pt;}
.y20a{bottom:805.733333pt;}
.y11{bottom:808.613333pt;}
.yc8{bottom:811.813333pt;}
.y1ca{bottom:815.333333pt;}
.y10{bottom:815.813333pt;}
.y209{bottom:817.893333pt;}
.y55{bottom:819.813333pt;}
.y13c{bottom:826.053333pt;}
.y1c9{bottom:827.493333pt;}
.yc7{bottom:829.413333pt;}
.yf{bottom:829.573333pt;}
.y208{bottom:835.493333pt;}
.y54{bottom:837.413333pt;}
.y1c8{bottom:845.093333pt;}
.yc6{bottom:847.013333pt;}
.y207{bottom:847.813333pt;}
.ye{bottom:848.773333pt;}
.y18f{bottom:854.693333pt;}
.y53{bottom:855.013333pt;}
.y1c7{bottom:857.413333pt;}
.y133{bottom:857.573333pt;}
.y206{bottom:860.133333pt;}
.yc5{bottom:864.773333pt;}
.yd{bottom:868.933333pt;}
.y1c6{bottom:869.733333pt;}
.y52{bottom:872.773333pt;}
.y137{bottom:874.373333pt;}
.y205{bottom:877.733333pt;}
.y1c5{bottom:881.893333pt;}
.yc4{bottom:882.373333pt;}
.yc{bottom:889.573333pt;}
.y204{bottom:889.893333pt;}
.y51{bottom:890.373333pt;}
.y134{bottom:895.973333pt;}
.y1c4{bottom:899.493333pt;}
.yc3{bottom:899.973333pt;}
.y203{bottom:902.213333pt;}
.y9e{bottom:903.173333pt;}
.y50{bottom:907.973333pt;}
.y1c3{bottom:911.813333pt;}
.yc2{bottom:917.573333pt;}
.y202{bottom:919.813333pt;}
.yb{bottom:920.293333pt;}
.y1c2{bottom:924.133333pt;}
.y4f{bottom:925.573333pt;}
.y201{bottom:932.133333pt;}
.yc1{bottom:935.173333pt;}
.y1c1{bottom:941.733333pt;}
.y4e{bottom:943.173333pt;}
.y200{bottom:944.293333pt;}
.ya{bottom:951.013333pt;}
.yc0{bottom:952.933333pt;}
.y1c0{bottom:953.893333pt;}
.y18e{bottom:960.613333pt;}
.y4d{bottom:960.933333pt;}
.y1ff{bottom:961.893333pt;}
.ybf{bottom:970.533333pt;}
.y1bf{bottom:971.493333pt;}
.y1fe{bottom:974.213333pt;}
.y4c{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y1be{bottom:983.813333pt;}
.ybe{bottom:988.133333pt;}
.y43{bottom:989.093333pt;}
.y1fd{bottom:991.813333pt;}
.y8{bottom:993.733333pt;}
.y4b{bottom:996.133333pt;}
.y1fc{bottom:1004.133333pt;}
.ybd{bottom:1005.733333pt;}
.y18d{bottom:1013.413333pt;}
.y4a{bottom:1013.733333pt;}
.y1fb{bottom:1021.760000pt;}
.ybc{bottom:1023.360000pt;}
.y1bd{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y49{bottom:1031.360000pt;}
.y1fa{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y80{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y47{bottom:1047.520000pt;}
.y7f{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y46{bottom:1064.640000pt;}
.h7{height:5.022500pt;}
.he{height:15.703125pt;}
.h10{height:16.125000pt;}
.h27{height:16.786667pt;}
.h21{height:16.960000pt;}
.h1f{height:18.080000pt;}
.h20{height:18.240000pt;}
.h2f{height:19.360000pt;}
.h22{height:19.546667pt;}
.h26{height:20.466667pt;}
.h2d{height:20.960000pt;}
.h2b{height:21.620000pt;}
.h1e{height:21.760000pt;}
.h2a{height:22.706667pt;}
.h24{height:23.506667pt;}
.h14{height:24.626667pt;}
.h2e{height:25.120000pt;}
.h2c{height:26.240000pt;}
.hd{height:26.368125pt;}
.h30{height:26.381250pt;}
.h28{height:30.866667pt;}
.h4{height:36.431250pt;}
.h1d{height:36.480000pt;}
.h25{height:37.266667pt;}
.h15{height:38.153511pt;}
.h3{height:39.868750pt;}
.h8{height:42.084375pt;}
.h5{height:43.215000pt;}
.h31{height:44.941250pt;}
.h2{height:47.109375pt;}
.h9{height:48.375000pt;}
.h12{height:49.336420pt;}
.h13{height:52.134375pt;}
.h29{height:52.526250pt;}
.ha{height:53.535000pt;}
.h19{height:58.238750pt;}
.hc{height:59.150000pt;}
.h1c{height:59.200000pt;}
.h11{height:59.340000pt;}
.h1b{height:61.287672pt;}
.h23{height:61.906667pt;}
.h16{height:62.812500pt;}
.h6{height:64.500000pt;}
.h18{height:73.490625pt;}
.h17{height:75.465000pt;}
.hb{height:107.715000pt;}
.hf{height:326.586667pt;}
.h1a{height:351.067526pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:40.306667pt;}
.we{width:40.978667pt;}
.w12{width:41.298667pt;}
.wa{width:46.880000pt;}
.w10{width:46.906667pt;}
.w1d{width:52.640000pt;}
.wd{width:56.466667pt;}
.w17{width:56.640000pt;}
.wc{width:56.786667pt;}
.w11{width:56.800000pt;}
.wb{width:56.832000pt;}
.w18{width:56.960000pt;}
.w1a{width:59.538667pt;}
.w1f{width:59.858667pt;}
.w9{width:64.338667pt;}
.w1b{width:66.066667pt;}
.w14{width:66.098667pt;}
.w3{width:90.426667pt;}
.w1c{width:94.426667pt;}
.w19{width:95.712000pt;}
.w1e{width:96.032000pt;}
.w13{width:101.910667pt;}
.w6{width:125.110667pt;}
.w4{width:206.266667pt;}
.w15{width:209.306667pt;}
.w8{width:241.813333pt;}
.w16{width:272.693333pt;}
.w7{width:281.333333pt;}
.w2{width:569.680000pt;}
.w5{width:655.928527pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x13{left:1.910667pt;}
.x28{left:3.520000pt;}
.x1e{left:4.480000pt;}
.x26{left:6.880000pt;}
.x27{left:8.146667pt;}
.x9{left:9.466667pt;}
.x2b{left:11.186667pt;}
.x22{left:12.320000pt;}
.x2c{left:14.240000pt;}
.x1c{left:15.680000pt;}
.x29{left:17.280000pt;}
.x2a{left:19.040000pt;}
.x1a{left:20.986667pt;}
.x2e{left:21.906667pt;}
.x8{left:23.866667pt;}
.x38{left:26.586667pt;}
.x34{left:31.386667pt;}
.x7{left:37.786667pt;}
.x18{left:43.706667pt;}
.x15{left:50.266667pt;}
.x6{left:52.186667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.xc{left:96.032000pt;}
.x3a{left:100.512000pt;}
.x31{left:107.066667pt;}
.x19{left:120.826667pt;}
.x16{left:140.666667pt;}
.x2d{left:172.040000pt;}
.x14{left:195.240000pt;}
.x2f{left:238.146667pt;}
.x1b{left:259.586667pt;}
.x32{left:294.786667pt;}
.x1d{left:306.466667pt;}
.xe{left:319.746667pt;}
.xf{left:328.386667pt;}
.x33{left:351.746667pt;}
.x1f{left:363.306667pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x20{left:420.106667pt;}
.x30{left:448.106667pt;}
.x17{left:477.226667pt;}
.x35{left:507.653333pt;}
.x21{left:518.213333pt;}
.xd{left:524.773333pt;}
.x23{left:558.533333pt;}
.x36{left:573.733333pt;}
.x24{left:615.333333pt;}
.x4{left:641.733333pt;}
.x12{left:656.417006pt;}
.x25{left:662.240000pt;}
.x37{left:668.160000pt;}
.x39{left:719.200000pt;}
.x10{left:720.160000pt;}
.x11{left:728.160000pt;}
}




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