
    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_e133f6231049b81dd70e1550.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_2d4edbcd2ccf3e7505552cb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_64d7cd086c20e5cf7a8be2b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_7a74bb5073746a86033b9bfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_09ef08f685d1b12c33a421ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_cf3502a524b7b91d50cb71e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_59ac43cd392df886f6c79d1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.444336;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;}
.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);}
.v1{vertical-align:-14.400000px;}
.v9{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.000000px;}
.v2{vertical-align:14.400000px;}
.v8{vertical-align:16.800000px;}
.vd{vertical-align:24.000000px;}
.v7{vertical-align:26.400000px;}
.vb{vertical-align:40.200000px;}
.vc{vertical-align:45.600000px;}
.v4{vertical-align:48.000000px;}
.v5{vertical-align:54.720000px;}
.va{vertical-align:62.400000px;}
.v3{vertical-align:102.600000px;}
.ls45{letter-spacing:-3.024000px;}
.ls28{letter-spacing:-0.816000px;}
.ls33{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.264000px;}
.ls23{letter-spacing:-0.255000px;}
.ls4a{letter-spacing:-0.222000px;}
.ls6{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.150000px;}
.ls26{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.024000px;}
.ls3{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.024000px;}
.ls25{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.096000px;}
.ls13{letter-spacing:0.099000px;}
.ls46{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.126000px;}
.ls48{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.168000px;}
.ls21{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.204000px;}
.ls1{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls49{letter-spacing:0.252000px;}
.ls47{letter-spacing:0.276000px;}
.ls24{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.312000px;}
.ls20{letter-spacing:0.324000px;}
.ls29{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.384000px;}
.ls35{letter-spacing:0.624000px;}
.ls3f{letter-spacing:0.984000px;}
.ls19{letter-spacing:1.512000px;}
.ls2c{letter-spacing:1.680000px;}
.ls2f{letter-spacing:1.740000px;}
.ls30{letter-spacing:2.352000px;}
.ls40{letter-spacing:2.544000px;}
.ls3b{letter-spacing:2.664000px;}
.ls31{letter-spacing:3.180000px;}
.ls15{letter-spacing:3.216000px;}
.ls16{letter-spacing:3.276000px;}
.ls1b{letter-spacing:3.984000px;}
.ls44{letter-spacing:4.131000px;}
.ls22{letter-spacing:4.221000px;}
.ls2e{letter-spacing:5.784000px;}
.ls36{letter-spacing:5.871000px;}
.ls9{letter-spacing:11.184000px;}
.ls43{letter-spacing:15.792000px;}
.ls42{letter-spacing:15.972000px;}
.ls1d{letter-spacing:16.821000px;}
.ls17{letter-spacing:19.800000px;}
.ls18{letter-spacing:20.016000px;}
.ls38{letter-spacing:23.241000px;}
.ls37{letter-spacing:23.871000px;}
.ls2d{letter-spacing:23.991000px;}
.ls1e{letter-spacing:24.621000px;}
.ls2b{letter-spacing:33.021000px;}
.ls8{letter-spacing:55.584000px;}
.ls2{letter-spacing:56.154000px;}
.ls11{letter-spacing:87.840000px;}
.ls10{letter-spacing:97.440000px;}
.lsf{letter-spacing:110.400000px;}
.lsc{letter-spacing:111.000000px;}
.ls7{letter-spacing:115.584000px;}
.lsb{letter-spacing:117.000000px;}
.lsa{letter-spacing:117.120000px;}
.lsd{letter-spacing:143.520000px;}
.lse{letter-spacing:144.000000px;}
.ls41{letter-spacing:166.512000px;}
.ls39{letter-spacing:191.844000px;}
.ls3a{letter-spacing:192.444000px;}
.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;}
}
.ws2c{word-spacing:-191.712000px;}
.ws10{word-spacing:-25.488000px;}
.wsb{word-spacing:-25.440000px;}
.ws1a{word-spacing:-25.416000px;}
.ws17{word-spacing:-25.296000px;}
.ws13{word-spacing:-25.248000px;}
.ws6{word-spacing:-25.200000px;}
.ws15{word-spacing:-25.176000px;}
.ws16{word-spacing:-25.128000px;}
.ws19{word-spacing:-24.936000px;}
.ws26{word-spacing:-24.912000px;}
.ws4{word-spacing:-20.184000px;}
.wsa{word-spacing:-20.040000px;}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.992000px;}
.ws21{word-spacing:-19.800000px;}
.ws25{word-spacing:-18.474000px;}
.ws22{word-spacing:-18.348000px;}
.ws23{word-spacing:-18.198000px;}
.ws37{word-spacing:-18.126000px;}
.ws36{word-spacing:-17.949000px;}
.wsc{word-spacing:-17.850000px;}
.wse{word-spacing:-17.595000px;}
.ws1{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.988000px;}
.ws27{word-spacing:-11.988000px;}
.ws24{word-spacing:-11.676000px;}
.ws1d{word-spacing:-9.384000px;}
.ws18{word-spacing:-6.312000px;}
.ws1f{word-spacing:-5.244000px;}
.wsd{word-spacing:-5.184000px;}
.ws28{word-spacing:-3.228000px;}
.ws1b{word-spacing:-3.048000px;}
.ws33{word-spacing:-2.856000px;}
.ws1c{word-spacing:-1.980000px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:5.979000px;}
.ws1e{word-spacing:6.462000px;}
.ws14{word-spacing:6.555000px;}
.wsf{word-spacing:6.603000px;}
.ws7{word-spacing:6.633000px;}
.ws11{word-spacing:6.744000px;}
.ws35{word-spacing:7.377000px;}
.ws12{word-spacing:7.827000px;}
.ws2e{word-spacing:47.088000px;}
.ws2a{word-spacing:47.688000px;}
.ws8{word-spacing:63.912000px;}
.ws29{word-spacing:74.088000px;}
.ws2f{word-spacing:74.688000px;}
.ws2d{word-spacing:74.868000px;}
.ws2b{word-spacing:94.488000px;}
.ws30{word-spacing:121.488000px;}
.ws31{word-spacing:141.312000px;}
.ws9{word-spacing:362.640000px;}
.ws34{word-spacing:461.040000px;}
.ws32{word-spacing:540.840000px;}
._27{margin-left:-166.908000px;}
._2b{margin-left:-8.262000px;}
._1d{margin-left:-6.942000px;}
._4{margin-left:-5.400000px;}
._1{margin-left:-4.212000px;}
._6{margin-left:-3.132000px;}
._2{margin-left:-2.106000px;}
._5{margin-left:-1.044000px;}
._3{width:1.404000px;}
._c{width:3.240000px;}
._b{width:4.392000px;}
._8{width:5.400000px;}
._7{width:6.624000px;}
._e{width:7.776000px;}
._11{width:8.784000px;}
._a{width:10.152000px;}
._9{width:11.232000px;}
._15{width:12.888000px;}
._14{width:14.184000px;}
._1b{width:16.062000px;}
._1a{width:17.208000px;}
._d{width:18.792000px;}
._1f{width:20.010000px;}
._16{width:21.042000px;}
._18{width:22.536000px;}
._17{width:23.616000px;}
._19{width:24.990000px;}
._23{width:26.496000px;}
._22{width:27.792000px;}
._f{width:29.520000px;}
._10{width:30.588000px;}
._26{width:33.720000px;}
._24{width:35.886000px;}
._1c{width:37.122000px;}
._25{width:38.742000px;}
._28{width:39.894000px;}
._20{width:41.016000px;}
._29{width:43.884000px;}
._2a{width:48.528000px;}
._13{width:49.806000px;}
._12{width:50.838000px;}
._1e{width:98.112000px;}
._21{width:128.016000px;}
._0{width:844.014000px;}
.fc2{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y12c{bottom:-3.750000px;}
.y68{bottom:-3.300000px;}
.y66{bottom:-3.150000px;}
.y12a{bottom:-2.100000px;}
.y130{bottom:-1.950000px;}
.y64{bottom:-1.800000px;}
.y72{bottom:-1.650000px;}
.y0{bottom:0.000000px;}
.y112{bottom:3.600000px;}
.y14a{bottom:3.615000px;}
.y110{bottom:5.400000px;}
.y147{bottom:5.550000px;}
.y165{bottom:9.450000px;}
.y56{bottom:10.350000px;}
.yf3{bottom:10.365000px;}
.ya2{bottom:10.500000px;}
.ycd{bottom:10.650000px;}
.y7e{bottom:10.785000px;}
.ybb{bottom:13.800000px;}
.ye5{bottom:14.100000px;}
.y58{bottom:14.115000px;}
.y97{bottom:14.280000px;}
.y62{bottom:14.400000px;}
.yac{bottom:14.415000px;}
.yb5{bottom:14.550000px;}
.y171{bottom:15.000000px;}
.y89{bottom:15.450000px;}
.yb8{bottom:16.650000px;}
.y88{bottom:16.800000px;}
.ya1{bottom:22.500000px;}
.ycc{bottom:22.695000px;}
.yce{bottom:24.195000px;}
.y10f{bottom:24.450000px;}
.ya3{bottom:25.350000px;}
.ybc{bottom:25.500000px;}
.yba{bottom:25.800000px;}
.yd6{bottom:25.950000px;}
.yad{bottom:25.965000px;}
.y96{bottom:26.280000px;}
.yd5{bottom:26.400000px;}
.yab{bottom:26.415000px;}
.y98{bottom:27.180000px;}
.yb7{bottom:28.650000px;}
.y7d{bottom:36.450000px;}
.y7c{bottom:54.600000px;}
.y6{bottom:55.987500px;}
.y7b{bottom:66.600000px;}
.y5{bottom:71.437500px;}
.y4{bottom:87.037500px;}
.y7a{bottom:98.280000px;}
.y30{bottom:120.037500px;}
.y3e{bottom:122.887500px;}
.ye2{bottom:123.037500px;}
.y79{bottom:123.930000px;}
.y54{bottom:125.437500px;}
.y7f{bottom:133.230000px;}
.y61{bottom:133.530000px;}
.y190{bottom:133.687500px;}
.y2f{bottom:137.287500px;}
.y14c{bottom:137.437500px;}
.y78{bottom:141.780000px;}
.y2e{bottom:142.537500px;}
.yc6{bottom:146.737500px;}
.y108{bottom:147.637500px;}
.y16f{bottom:148.537500px;}
.y3d{bottom:153.930000px;}
.ye1{bottom:154.095000px;}
.y2d{bottom:155.130000px;}
.y53{bottom:156.495000px;}
.yf2{bottom:157.995000px;}
.y14b{bottom:160.680000px;}
.y164{bottom:162.795000px;}
.y18f{bottom:164.745000px;}
.y9f{bottom:164.880000px;}
.y77{bottom:167.430000px;}
.yc5{bottom:177.795000px;}
.y107{bottom:178.680000px;}
.y16e{bottom:179.580000px;}
.y149{bottom:183.930000px;}
.y3c{bottom:184.995000px;}
.ye0{bottom:185.130000px;}
.y76{bottom:185.280000px;}
.y11f{bottom:186.330000px;}
.y52{bottom:187.545000px;}
.yf1{bottom:189.045000px;}
.y163{bottom:193.845000px;}
.y18e{bottom:195.795000px;}
.y9e{bottom:196.395000px;}
.y83{bottom:197.895000px;}
.y148{bottom:207.195000px;}
.yc4{bottom:208.845000px;}
.y106{bottom:209.745000px;}
.y16d{bottom:210.645000px;}
.y162{bottom:210.795000px;}
.y75{bottom:210.930000px;}
.y3b{bottom:216.045000px;}
.ydf{bottom:216.195000px;}
.y11e{bottom:217.395000px;}
.y51{bottom:218.595000px;}
.yf0{bottom:220.080000px;}
.y18d{bottom:226.830000px;}
.y9d{bottom:227.595000px;}
.y74{bottom:228.930000px;}
.y82{bottom:229.545000px;}
.y105{bottom:230.445000px;}
.yc3{bottom:239.880000px;}
.y16c{bottom:241.695000px;}
.y161{bottom:241.845000px;}
.y2c{bottom:247.080000px;}
.yde{bottom:247.245000px;}
.y11d{bottom:248.895000px;}
.y50{bottom:249.630000px;}
.yef{bottom:251.145000px;}
.y146{bottom:254.445000px;}
.y73{bottom:254.580000px;}
.y18c{bottom:257.895000px;}
.y9c{bottom:259.095000px;}
.y81{bottom:261.195000px;}
.yc2{bottom:270.945000px;}
.y104{bottom:271.845000px;}
.y16b{bottom:272.745000px;}
.y2b{bottom:278.145000px;}
.ydd{bottom:278.295000px;}
.y11c{bottom:280.080000px;}
.y4f{bottom:280.695000px;}
.yee{bottom:282.195000px;}
.y18b{bottom:288.945000px;}
.y9b{bottom:290.745000px;}
.y80{bottom:292.395000px;}
.y103{bottom:292.545000px;}
.y2a{bottom:298.845000px;}
.y16a{bottom:303.795000px;}
.y3a{bottom:309.195000px;}
.y60{bottom:309.345000px;}
.y1a7{bottom:310.545000px;}
.y11b{bottom:311.145000px;}
.y4e{bottom:311.745000px;}
.yc1{bottom:312.345000px;}
.yed{bottom:313.245000px;}
.y18a{bottom:319.995000px;}
.y9a{bottom:322.395000px;}
.y102{bottom:323.595000px;}
.ydc{bottom:330.045000px;}
.yc0{bottom:333.045000px;}
.y169{bottom:334.830000px;}
.y29{bottom:340.245000px;}
.y11a{bottom:342.195000px;}
.y4d{bottom:342.795000px;}
.yec{bottom:344.295000px;}
.y63{bottom:345.495000px;}
.y1a6{bottom:349.245000px;}
.y189{bottom:351.045000px;}
.y99{bottom:353.595000px;}
.y101{bottom:354.630000px;}
.y28{bottom:360.945000px;}
.y65{bottom:365.595000px;}
.ybf{bottom:366.645000px;}
.y95{bottom:370.545000px;}
.y39{bottom:371.295000px;}
.ydb{bottom:371.445000px;}
.y119{bottom:373.245000px;}
.y4c{bottom:373.845000px;}
.yeb{bottom:375.330000px;}
.y168{bottom:376.245000px;}
.y27{bottom:381.675000px;}
.y188{bottom:382.125000px;}
.y67{bottom:384.375000px;}
.y100{bottom:385.725000px;}
.y1a5{bottom:387.975000px;}
.yda{bottom:392.175000px;}
.ybe{bottom:398.475000px;}
.y26{bottom:402.375000px;}
.y69{bottom:402.975000px;}
.y118{bottom:404.325000px;}
.y4b{bottom:404.925000px;}
.yea{bottom:406.425000px;}
.y167{bottom:407.325000px;}
.y187{bottom:413.175000px;}
.yff{bottom:416.775000px;}
.y145{bottom:421.275000px;}
.y6a{bottom:421.575000px;}
.y25{bottom:423.075000px;}
.yd9{bottom:423.675000px;}
.y166{bottom:424.275000px;}
.y117{bottom:426.225000px;}
.y1a4{bottom:426.675000px;}
.ybd{bottom:429.675000px;}
.y38{bottom:433.425000px;}
.y4a{bottom:435.975000px;}
.ye9{bottom:437.475000px;}
.y6b{bottom:440.325000px;}
.y94{bottom:441.825000px;}
.y24{bottom:443.775000px;}
.y186{bottom:444.225000px;}
.yb9{bottom:446.625000px;}
.y1a3{bottom:447.375000px;}
.yfe{bottom:447.825000px;}
.y116{bottom:449.475000px;}
.yd8{bottom:455.325000px;}
.y6c{bottom:458.925000px;}
.y23{bottom:464.475000px;}
.y49{bottom:467.025000px;}
.ye8{bottom:468.525000px;}
.y144{bottom:469.125000px;}
.y115{bottom:472.725000px;}
.y93{bottom:473.325000px;}
.y185{bottom:475.275000px;}
.y6d{bottom:477.525000px;}
.yfd{bottom:478.875000px;}
.y22{bottom:485.175000px;}
.y1a2{bottom:486.075000px;}
.yd7{bottom:486.525000px;}
.y37{bottom:495.525000px;}
.y114{bottom:495.975000px;}
.y6e{bottom:496.125000px;}
.y48{bottom:498.075000px;}
.ye7{bottom:499.575000px;}
.y143{bottom:500.175000px;}
.y160{bottom:500.325000px;}
.yb6{bottom:500.625000px;}
.yd4{bottom:503.475000px;}
.y92{bottom:504.525000px;}
.y21{bottom:505.875000px;}
.y184{bottom:506.325000px;}
.y1a1{bottom:506.775000px;}
.yfc{bottom:509.925000px;}
.y6f{bottom:514.875000px;}
.y113{bottom:519.225000px;}
.y20{bottom:526.575000px;}
.y1a0{bottom:527.475000px;}
.y47{bottom:529.125000px;}
.y142{bottom:530.175000px;}
.ye6{bottom:530.625000px;}
.y137{bottom:531.375000px;}
.y70{bottom:533.475000px;}
.y91{bottom:535.575000px;}
.y183{bottom:537.375000px;}
.yfb{bottom:540.975000px;}
.y111{bottom:542.475000px;}
.y1f{bottom:547.275000px;}
.ye4{bottom:547.575000px;}
.y71{bottom:552.075000px;}
.y141{bottom:552.225000px;}
.y138{bottom:553.125000px;}
.yb4{bottom:554.175000px;}
.y36{bottom:557.625000px;}
.y182{bottom:558.075000px;}
.y46{bottom:560.175000px;}
.y90{bottom:561.975000px;}
.y15f{bottom:562.425000px;}
.y19f{bottom:566.175000px;}
.y10e{bottom:566.475000px;}
.y1e{bottom:567.975000px;}
.yfa{bottom:572.025000px;}
.yd3{bottom:572.325000px;}
.y139{bottom:572.925000px;}
.y140{bottom:574.425000px;}
.ye3{bottom:578.625000px;}
.y136{bottom:584.175000px;}
.y19e{bottom:586.875000px;}
.y1d{bottom:588.675000px;}
.y13a{bottom:591.075000px;}
.y45{bottom:591.225000px;}
.y5f{bottom:592.725000px;}
.y15e{bottom:593.475000px;}
.y13f{bottom:596.625000px;}
.y181{bottom:599.475000px;}
.yb3{bottom:599.925000px;}
.yf9{bottom:603.075000px;}
.yd2{bottom:603.375000px;}
.y13b{bottom:609.225000px;}
.y1c{bottom:609.375000px;}
.y13e{bottom:617.775000px;}
.y35{bottom:619.725000px;}
.y180{bottom:620.175000px;}
.y10d{bottom:623.175000px;}
.y5e{bottom:623.775000px;}
.y15d{bottom:624.525000px;}
.y19d{bottom:625.575000px;}
.y13c{bottom:627.375000px;}
.y1b{bottom:630.075000px;}
.yb2{bottom:631.425000px;}
.y44{bottom:632.625000px;}
.yf8{bottom:634.125000px;}
.yd1{bottom:634.875000px;}
.y13d{bottom:638.775000px;}
.y19c{bottom:646.275000px;}
.y1a{bottom:650.775000px;}
.y17f{bottom:651.225000px;}
.y43{bottom:653.325000px;}
.y10c{bottom:654.225000px;}
.y5d{bottom:654.825000px;}
.y15c{bottom:655.575000px;}
.yb1{bottom:663.075000px;}
.yf7{bottom:665.175000px;}
.yd0{bottom:666.525000px;}
.y135{bottom:666.675000px;}
.y128{bottom:667.875000px;}
.y19{bottom:671.475000px;}
.y34{bottom:681.825000px;}
.y17e{bottom:682.275000px;}
.y19b{bottom:684.975000px;}
.y10b{bottom:685.725000px;}
.y5c{bottom:685.875000px;}
.y15b{bottom:686.625000px;}
.y134{bottom:688.725000px;}
.y129{bottom:689.625000px;}
.y18{bottom:692.175000px;}
.y42{bottom:694.725000px;}
.yf6{bottom:696.225000px;}
.ycf{bottom:697.725000px;}
.y19a{bottom:705.675000px;}
.y15a{bottom:708.525000px;}
.y12b{bottom:709.425000px;}
.y133{bottom:710.925000px;}
.y17{bottom:712.875000px;}
.y17d{bottom:713.325000px;}
.ycb{bottom:714.675000px;}
.y41{bottom:715.425000px;}
.yf5{bottom:716.925000px;}
.y127{bottom:720.675000px;}
.yb0{bottom:726.375000px;}
.y5b{bottom:727.275000px;}
.y12d{bottom:727.575000px;}
.y159{bottom:731.775000px;}
.y132{bottom:733.125000px;}
.y16{bottom:733.575000px;}
.y33{bottom:743.970000px;}
.y17c{bottom:744.420000px;}
.y12e{bottom:745.770000px;}
.y40{bottom:746.520000px;}
.y5a{bottom:748.020000px;}
.y15{bottom:754.320000px;}
.y158{bottom:755.070000px;}
.yaf{bottom:758.070000px;}
.y12f{bottom:763.920000px;}
.y8f{bottom:764.670000px;}
.yf4{bottom:764.970000px;}
.y199{bottom:765.120000px;}
.y3f{bottom:773.820000px;}
.y14{bottom:775.020000px;}
.y131{bottom:775.320000px;}
.y157{bottom:778.320000px;}
.y59{bottom:779.070000px;}
.yca{bottom:779.970000px;}
.y17b{bottom:785.820000px;}
.yae{bottom:789.270000px;}
.y13{bottom:795.705000px;}
.y57{bottom:796.005000px;}
.y156{bottom:801.570000px;}
.y126{bottom:804.720000px;}
.y32{bottom:806.070000px;}
.yaa{bottom:806.205000px;}
.y17a{bottom:806.520000px;}
.y10a{bottom:810.120000px;}
.yc9{bottom:811.020000px;}
.y12{bottom:816.420000px;}
.y198{bottom:824.520000px;}
.y155{bottom:824.820000px;}
.y8e{bottom:826.770000px;}
.y55{bottom:827.070000px;}
.y179{bottom:828.420000px;}
.y125{bottom:836.370000px;}
.y11{bottom:837.120000px;}
.y109{bottom:837.420000px;}
.yc8{bottom:842.070000px;}
.y197{bottom:845.220000px;}
.y154{bottom:848.820000px;}
.y178{bottom:851.670000px;}
.y10{bottom:857.820000px;}
.y8d{bottom:858.270000px;}
.y124{bottom:867.570000px;}
.y31{bottom:868.170000px;}
.yc7{bottom:869.370000px;}
.ya9{bottom:874.920000px;}
.yf{bottom:878.520000px;}
.y196{bottom:883.920000px;}
.y8c{bottom:892.170000px;}
.y123{bottom:898.620000px;}
.y177{bottom:898.920000px;}
.ye{bottom:899.220000px;}
.y195{bottom:904.620000px;}
.y153{bottom:905.520000px;}
.ya8{bottom:906.420000px;}
.y176{bottom:922.170000px;}
.y8b{bottom:925.920000px;}
.y122{bottom:929.670000px;}
.yc{bottom:930.270000px;}
.yd{bottom:936.270000px;}
.y152{bottom:936.570000px;}
.ya7{bottom:937.620000px;}
.y194{bottom:943.320000px;}
.y175{bottom:945.420000px;}
.y8a{bottom:957.120000px;}
.y121{bottom:960.720000px;}
.yb{bottom:961.320000px;}
.y193{bottom:964.020000px;}
.y151{bottom:967.620000px;}
.y174{bottom:968.670000px;}
.ya6{bottom:969.120000px;}
.y87{bottom:974.070000px;}
.y173{bottom:991.920000px;}
.y120{bottom:992.220000px;}
.ya{bottom:992.370000px;}
.y150{bottom:998.670000px;}
.ya5{bottom:1000.770000px;}
.y192{bottom:1002.720000px;}
.y172{bottom:1015.170000px;}
.y86{bottom:1022.070000px;}
.y9{bottom:1023.420000px;}
.y14f{bottom:1029.720000px;}
.ya4{bottom:1031.970000px;}
.y170{bottom:1039.170000px;}
.y191{bottom:1044.120000px;}
.ya0{bottom:1048.920000px;}
.y85{bottom:1053.420000px;}
.y8{bottom:1054.470000px;}
.y14e{bottom:1060.770000px;}
.y3{bottom:1064.820000px;}
.y14d{bottom:1082.670000px;}
.y84{bottom:1085.370000px;}
.y7{bottom:1085.520000px;}
.y2{bottom:1106.250000px;}
.y1{bottom:1126.950000px;}
.h2d{height:18.150000px;}
.h2e{height:18.187500px;}
.h10{height:18.600000px;}
.h11{height:18.750000px;}
.hf{height:18.787500px;}
.h37{height:19.035000px;}
.h29{height:19.050000px;}
.h34{height:19.087500px;}
.h2c{height:19.800000px;}
.he{height:20.100000px;}
.h12{height:26.550000px;}
.ha{height:31.050000px;}
.h20{height:31.650000px;}
.h33{height:33.750000px;}
.h17{height:33.900000px;}
.h6{height:34.962891px;}
.hd{height:36.150000px;}
.h36{height:41.835000px;}
.h27{height:41.850000px;}
.h5{height:43.031250px;}
.h4{height:48.410156px;}
.h23{height:51.187500px;}
.h21{height:53.550000px;}
.h1d{height:53.587500px;}
.h7{height:53.789062px;}
.h22{height:54.000000px;}
.h1e{height:54.600000px;}
.h25{height:54.750000px;}
.h1a{height:57.187500px;}
.h38{height:59.006836px;}
.h2a{height:59.167969px;}
.h18{height:59.715820px;}
.h28{height:62.000977px;}
.h8{height:64.371094px;}
.h2{height:64.546875px;}
.h3{height:65.144531px;}
.hc{height:87.890625px;}
.h30{height:88.655859px;}
.h19{height:90.290625px;}
.h16{height:90.890625px;}
.h1c{height:112.546875px;}
.h24{height:112.726875px;}
.h14{height:135.890625px;}
.h1f{height:142.490625px;}
.h15{height:142.610625px;}
.h1b{height:143.255859px;}
.h13{height:190.490625px;}
.h35{height:243.450000px;}
.h9{height:244.350000px;}
.h26{height:244.380000px;}
.hb{height:269.280000px;}
.h2f{height:498.930000px;}
.h31{height:553.125000px;}
.h32{height:635.475000px;}
.h2b{height:689.625000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w7{width:91.500000px;}
.wf{width:100.050000px;}
.w9{width:101.400000px;}
.wd{width:127.500000px;}
.wb{width:127.537500px;}
.wa{width:127.650000px;}
.wc{width:127.687500px;}
.w11{width:132.187500px;}
.w13{width:135.487500px;}
.w12{width:142.837500px;}
.w10{width:158.250000px;}
.w4{width:340.095000px;}
.w5{width:340.230000px;}
.w8{width:589.425000px;}
.we{width:590.775000px;}
.w6{width:599.325000px;}
.w3{width:892.949973px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:16.650000px;}
.x44{left:19.342500px;}
.x68{left:22.800000px;}
.x54{left:27.150000px;}
.x45{left:29.842500px;}
.x52{left:33.900000px;}
.x4f{left:36.285000px;}
.x53{left:38.550000px;}
.x47{left:40.200000px;}
.x6f{left:41.580000px;}
.x4d{left:43.650000px;}
.x6e{left:45.480000px;}
.x51{left:47.535000px;}
.x48{left:52.200000px;}
.x4c{left:55.800000px;}
.x69{left:57.150000px;}
.x50{left:59.257500px;}
.x28{left:61.185000px;}
.x6d{left:74.550000px;}
.x17{left:122.437500px;}
.x2{left:127.687487px;}
.xe{left:133.087487px;}
.x7{left:140.887487px;}
.x40{left:148.837487px;}
.x3f{left:153.779987px;}
.x9{left:157.979987px;}
.x3a{left:160.829987px;}
.x18{left:164.107500px;}
.x39{left:165.779987px;}
.x38{left:170.894987px;}
.x3e{left:174.179987px;}
.x1{left:178.679987px;}
.x4{left:180.779987px;}
.x3d{left:182.279987px;}
.x5{left:184.394987px;}
.x15{left:185.407500px;}
.x67{left:187.395000px;}
.x3b{left:199.529987px;}
.x8{left:203.444987px;}
.x19{left:208.057500px;}
.x1e{left:214.342500px;}
.x1b{left:219.907500px;}
.x1a{left:220.957500px;}
.xa{left:225.494987px;}
.x12{left:238.379987px;}
.x64{left:246.007500px;}
.x2d{left:248.707500px;}
.x29{left:249.757500px;}
.x21{left:255.457500px;}
.x2f{left:264.787500px;}
.x1c{left:265.987500px;}
.x73{left:267.644987px;}
.x36{left:271.087500px;}
.x31{left:272.437500px;}
.x46{left:276.495000px;}
.x56{left:283.244973px;}
.x33{left:284.437500px;}
.x58{left:289.529987px;}
.x57{left:296.144987px;}
.x32{left:297.487500px;}
.x30{left:303.487500px;}
.x2e{left:308.287500px;}
.x5d{left:309.644973px;}
.x1d{left:312.037500px;}
.xf{left:314.744987px;}
.x5e{left:315.944987px;}
.x3c{left:320.744987px;}
.x42{left:337.829987px;}
.x2c{left:340.844987px;}
.x70{left:343.995000px;}
.x6a{left:345.645000px;}
.x13{left:348.037500px;}
.x20{left:349.837500px;}
.x1f{left:350.887500px;}
.x11{left:354.194987px;}
.x5a{left:361.529987px;}
.x60{left:367.694987px;}
.x66{left:372.029987px;}
.x72{left:380.774987px;}
.x2a{left:382.574987px;}
.x22{left:384.487500px;}
.xd{left:394.724987px;}
.x55{left:396.074987px;}
.x16{left:400.424987px;}
.x49{left:404.025000px;}
.x24{left:416.737500px;}
.x23{left:417.787500px;}
.x25{left:428.887500px;}
.x26{left:435.187500px;}
.x34{left:437.324987px;}
.x14{left:467.775000px;}
.x5f{left:470.774987px;}
.x6b{left:477.825000px;}
.x71{left:479.475000px;}
.x59{left:484.574987px;}
.x4b{left:531.525000px;}
.xb{left:533.324987px;}
.x61{left:573.824987px;}
.x5b{left:587.774987px;}
.x6c{left:605.325000px;}
.x62{left:607.424973px;}
.x63{left:617.774987px;}
.x2b{left:621.974987px;}
.x5c{left:631.724987px;}
.x35{left:643.319987px;}
.x4e{left:659.220000px;}
.x43{left:664.469987px;}
.x41{left:709.769987px;}
.x37{left:711.870000px;}
.x65{left:713.220000px;}
.x6{left:717.254987px;}
.x27{left:721.770000px;}
.x10{left:723.269987px;}
.xc{left:801.404973px;}
.x3{left:808.154987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v9{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.666667pt;}
.v2{vertical-align:12.800000pt;}
.v8{vertical-align:14.933333pt;}
.vd{vertical-align:21.333333pt;}
.v7{vertical-align:23.466667pt;}
.vb{vertical-align:35.733333pt;}
.vc{vertical-align:40.533333pt;}
.v4{vertical-align:42.666667pt;}
.v5{vertical-align:48.640000pt;}
.va{vertical-align:55.466667pt;}
.v3{vertical-align:91.200000pt;}
.ls45{letter-spacing:-2.688000pt;}
.ls28{letter-spacing:-0.725333pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.234667pt;}
.ls23{letter-spacing:-0.226667pt;}
.ls4a{letter-spacing:-0.197333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.133333pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.021333pt;}
.ls25{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.085333pt;}
.ls13{letter-spacing:0.088000pt;}
.ls46{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.112000pt;}
.ls48{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.149333pt;}
.ls21{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.181333pt;}
.ls1{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls49{letter-spacing:0.224000pt;}
.ls47{letter-spacing:0.245333pt;}
.ls24{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.277333pt;}
.ls20{letter-spacing:0.288000pt;}
.ls29{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.341333pt;}
.ls35{letter-spacing:0.554667pt;}
.ls3f{letter-spacing:0.874667pt;}
.ls19{letter-spacing:1.344000pt;}
.ls2c{letter-spacing:1.493333pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls30{letter-spacing:2.090667pt;}
.ls40{letter-spacing:2.261333pt;}
.ls3b{letter-spacing:2.368000pt;}
.ls31{letter-spacing:2.826667pt;}
.ls15{letter-spacing:2.858667pt;}
.ls16{letter-spacing:2.912000pt;}
.ls1b{letter-spacing:3.541333pt;}
.ls44{letter-spacing:3.672000pt;}
.ls22{letter-spacing:3.752000pt;}
.ls2e{letter-spacing:5.141333pt;}
.ls36{letter-spacing:5.218667pt;}
.ls9{letter-spacing:9.941333pt;}
.ls43{letter-spacing:14.037333pt;}
.ls42{letter-spacing:14.197333pt;}
.ls1d{letter-spacing:14.952000pt;}
.ls17{letter-spacing:17.600000pt;}
.ls18{letter-spacing:17.792000pt;}
.ls38{letter-spacing:20.658667pt;}
.ls37{letter-spacing:21.218667pt;}
.ls2d{letter-spacing:21.325333pt;}
.ls1e{letter-spacing:21.885333pt;}
.ls2b{letter-spacing:29.352000pt;}
.ls8{letter-spacing:49.408000pt;}
.ls2{letter-spacing:49.914667pt;}
.ls11{letter-spacing:78.080000pt;}
.ls10{letter-spacing:86.613333pt;}
.lsf{letter-spacing:98.133333pt;}
.lsc{letter-spacing:98.666667pt;}
.ls7{letter-spacing:102.741333pt;}
.lsb{letter-spacing:104.000000pt;}
.lsa{letter-spacing:104.106667pt;}
.lsd{letter-spacing:127.573333pt;}
.lse{letter-spacing:128.000000pt;}
.ls41{letter-spacing:148.010667pt;}
.ls39{letter-spacing:170.528000pt;}
.ls3a{letter-spacing:171.061333pt;}
.ws2c{word-spacing:-170.410667pt;}
.ws10{word-spacing:-22.656000pt;}
.wsb{word-spacing:-22.613333pt;}
.ws1a{word-spacing:-22.592000pt;}
.ws17{word-spacing:-22.485333pt;}
.ws13{word-spacing:-22.442667pt;}
.ws6{word-spacing:-22.400000pt;}
.ws15{word-spacing:-22.378667pt;}
.ws16{word-spacing:-22.336000pt;}
.ws19{word-spacing:-22.165333pt;}
.ws26{word-spacing:-22.144000pt;}
.ws4{word-spacing:-17.941333pt;}
.wsa{word-spacing:-17.813333pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.770667pt;}
.ws21{word-spacing:-17.600000pt;}
.ws25{word-spacing:-16.421333pt;}
.ws22{word-spacing:-16.309333pt;}
.ws23{word-spacing:-16.176000pt;}
.ws37{word-spacing:-16.112000pt;}
.ws36{word-spacing:-15.954667pt;}
.wsc{word-spacing:-15.866667pt;}
.wse{word-spacing:-15.640000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.322667pt;}
.ws27{word-spacing:-10.656000pt;}
.ws24{word-spacing:-10.378667pt;}
.ws1d{word-spacing:-8.341333pt;}
.ws18{word-spacing:-5.610667pt;}
.ws1f{word-spacing:-4.661333pt;}
.wsd{word-spacing:-4.608000pt;}
.ws28{word-spacing:-2.869333pt;}
.ws1b{word-spacing:-2.709333pt;}
.ws33{word-spacing:-2.538667pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:5.314667pt;}
.ws1e{word-spacing:5.744000pt;}
.ws14{word-spacing:5.826667pt;}
.wsf{word-spacing:5.869333pt;}
.ws7{word-spacing:5.896000pt;}
.ws11{word-spacing:5.994667pt;}
.ws35{word-spacing:6.557333pt;}
.ws12{word-spacing:6.957333pt;}
.ws2e{word-spacing:41.856000pt;}
.ws2a{word-spacing:42.389333pt;}
.ws8{word-spacing:56.810667pt;}
.ws29{word-spacing:65.856000pt;}
.ws2f{word-spacing:66.389333pt;}
.ws2d{word-spacing:66.549333pt;}
.ws2b{word-spacing:83.989333pt;}
.ws30{word-spacing:107.989333pt;}
.ws31{word-spacing:125.610667pt;}
.ws9{word-spacing:322.346667pt;}
.ws34{word-spacing:409.813333pt;}
.ws32{word-spacing:480.746667pt;}
._27{margin-left:-148.362667pt;}
._2b{margin-left:-7.344000pt;}
._1d{margin-left:-6.170667pt;}
._4{margin-left:-4.800000pt;}
._1{margin-left:-3.744000pt;}
._6{margin-left:-2.784000pt;}
._2{margin-left:-1.872000pt;}
._5{margin-left:-0.928000pt;}
._3{width:1.248000pt;}
._c{width:2.880000pt;}
._b{width:3.904000pt;}
._8{width:4.800000pt;}
._7{width:5.888000pt;}
._e{width:6.912000pt;}
._11{width:7.808000pt;}
._a{width:9.024000pt;}
._9{width:9.984000pt;}
._15{width:11.456000pt;}
._14{width:12.608000pt;}
._1b{width:14.277333pt;}
._1a{width:15.296000pt;}
._d{width:16.704000pt;}
._1f{width:17.786667pt;}
._16{width:18.704000pt;}
._18{width:20.032000pt;}
._17{width:20.992000pt;}
._19{width:22.213333pt;}
._23{width:23.552000pt;}
._22{width:24.704000pt;}
._f{width:26.240000pt;}
._10{width:27.189333pt;}
._26{width:29.973333pt;}
._24{width:31.898667pt;}
._1c{width:32.997333pt;}
._25{width:34.437333pt;}
._28{width:35.461333pt;}
._20{width:36.458667pt;}
._29{width:39.008000pt;}
._2a{width:43.136000pt;}
._13{width:44.272000pt;}
._12{width:45.189333pt;}
._1e{width:87.210667pt;}
._21{width:113.792000pt;}
._0{width:750.234667pt;}
.fs3{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y12c{bottom:-3.333333pt;}
.y68{bottom:-2.933333pt;}
.y66{bottom:-2.800000pt;}
.y12a{bottom:-1.866667pt;}
.y130{bottom:-1.733333pt;}
.y64{bottom:-1.600000pt;}
.y72{bottom:-1.466667pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:3.200000pt;}
.y14a{bottom:3.213333pt;}
.y110{bottom:4.800000pt;}
.y147{bottom:4.933333pt;}
.y165{bottom:8.400000pt;}
.y56{bottom:9.200000pt;}
.yf3{bottom:9.213333pt;}
.ya2{bottom:9.333333pt;}
.ycd{bottom:9.466667pt;}
.y7e{bottom:9.586667pt;}
.ybb{bottom:12.266667pt;}
.ye5{bottom:12.533333pt;}
.y58{bottom:12.546667pt;}
.y97{bottom:12.693333pt;}
.y62{bottom:12.800000pt;}
.yac{bottom:12.813333pt;}
.yb5{bottom:12.933333pt;}
.y171{bottom:13.333333pt;}
.y89{bottom:13.733333pt;}
.yb8{bottom:14.800000pt;}
.y88{bottom:14.933333pt;}
.ya1{bottom:20.000000pt;}
.ycc{bottom:20.173333pt;}
.yce{bottom:21.506667pt;}
.y10f{bottom:21.733333pt;}
.ya3{bottom:22.533333pt;}
.ybc{bottom:22.666667pt;}
.yba{bottom:22.933333pt;}
.yd6{bottom:23.066667pt;}
.yad{bottom:23.080000pt;}
.y96{bottom:23.360000pt;}
.yd5{bottom:23.466667pt;}
.yab{bottom:23.480000pt;}
.y98{bottom:24.160000pt;}
.yb7{bottom:25.466667pt;}
.y7d{bottom:32.400000pt;}
.y7c{bottom:48.533333pt;}
.y6{bottom:49.766667pt;}
.y7b{bottom:59.200000pt;}
.y5{bottom:63.500000pt;}
.y4{bottom:77.366667pt;}
.y7a{bottom:87.360000pt;}
.y30{bottom:106.700000pt;}
.y3e{bottom:109.233333pt;}
.ye2{bottom:109.366667pt;}
.y79{bottom:110.160000pt;}
.y54{bottom:111.500000pt;}
.y7f{bottom:118.426667pt;}
.y61{bottom:118.693333pt;}
.y190{bottom:118.833333pt;}
.y2f{bottom:122.033333pt;}
.y14c{bottom:122.166667pt;}
.y78{bottom:126.026667pt;}
.y2e{bottom:126.700000pt;}
.yc6{bottom:130.433333pt;}
.y108{bottom:131.233333pt;}
.y16f{bottom:132.033333pt;}
.y3d{bottom:136.826667pt;}
.ye1{bottom:136.973333pt;}
.y2d{bottom:137.893333pt;}
.y53{bottom:139.106667pt;}
.yf2{bottom:140.440000pt;}
.y14b{bottom:142.826667pt;}
.y164{bottom:144.706667pt;}
.y18f{bottom:146.440000pt;}
.y9f{bottom:146.560000pt;}
.y77{bottom:148.826667pt;}
.yc5{bottom:158.040000pt;}
.y107{bottom:158.826667pt;}
.y16e{bottom:159.626667pt;}
.y149{bottom:163.493333pt;}
.y3c{bottom:164.440000pt;}
.ye0{bottom:164.560000pt;}
.y76{bottom:164.693333pt;}
.y11f{bottom:165.626667pt;}
.y52{bottom:166.706667pt;}
.yf1{bottom:168.040000pt;}
.y163{bottom:172.306667pt;}
.y18e{bottom:174.040000pt;}
.y9e{bottom:174.573333pt;}
.y83{bottom:175.906667pt;}
.y148{bottom:184.173333pt;}
.yc4{bottom:185.640000pt;}
.y106{bottom:186.440000pt;}
.y16d{bottom:187.240000pt;}
.y162{bottom:187.373333pt;}
.y75{bottom:187.493333pt;}
.y3b{bottom:192.040000pt;}
.ydf{bottom:192.173333pt;}
.y11e{bottom:193.240000pt;}
.y51{bottom:194.306667pt;}
.yf0{bottom:195.626667pt;}
.y18d{bottom:201.626667pt;}
.y9d{bottom:202.306667pt;}
.y74{bottom:203.493333pt;}
.y82{bottom:204.040000pt;}
.y105{bottom:204.840000pt;}
.yc3{bottom:213.226667pt;}
.y16c{bottom:214.840000pt;}
.y161{bottom:214.973333pt;}
.y2c{bottom:219.626667pt;}
.yde{bottom:219.773333pt;}
.y11d{bottom:221.240000pt;}
.y50{bottom:221.893333pt;}
.yef{bottom:223.240000pt;}
.y146{bottom:226.173333pt;}
.y73{bottom:226.293333pt;}
.y18c{bottom:229.240000pt;}
.y9c{bottom:230.306667pt;}
.y81{bottom:232.173333pt;}
.yc2{bottom:240.840000pt;}
.y104{bottom:241.640000pt;}
.y16b{bottom:242.440000pt;}
.y2b{bottom:247.240000pt;}
.ydd{bottom:247.373333pt;}
.y11c{bottom:248.960000pt;}
.y4f{bottom:249.506667pt;}
.yee{bottom:250.840000pt;}
.y18b{bottom:256.840000pt;}
.y9b{bottom:258.440000pt;}
.y80{bottom:259.906667pt;}
.y103{bottom:260.040000pt;}
.y2a{bottom:265.640000pt;}
.y16a{bottom:270.040000pt;}
.y3a{bottom:274.840000pt;}
.y60{bottom:274.973333pt;}
.y1a7{bottom:276.040000pt;}
.y11b{bottom:276.573333pt;}
.y4e{bottom:277.106667pt;}
.yc1{bottom:277.640000pt;}
.yed{bottom:278.440000pt;}
.y18a{bottom:284.440000pt;}
.y9a{bottom:286.573333pt;}
.y102{bottom:287.640000pt;}
.ydc{bottom:293.373333pt;}
.yc0{bottom:296.040000pt;}
.y169{bottom:297.626667pt;}
.y29{bottom:302.440000pt;}
.y11a{bottom:304.173333pt;}
.y4d{bottom:304.706667pt;}
.yec{bottom:306.040000pt;}
.y63{bottom:307.106667pt;}
.y1a6{bottom:310.440000pt;}
.y189{bottom:312.040000pt;}
.y99{bottom:314.306667pt;}
.y101{bottom:315.226667pt;}
.y28{bottom:320.840000pt;}
.y65{bottom:324.973333pt;}
.ybf{bottom:325.906667pt;}
.y95{bottom:329.373333pt;}
.y39{bottom:330.040000pt;}
.ydb{bottom:330.173333pt;}
.y119{bottom:331.773333pt;}
.y4c{bottom:332.306667pt;}
.yeb{bottom:333.626667pt;}
.y168{bottom:334.440000pt;}
.y27{bottom:339.266667pt;}
.y188{bottom:339.666667pt;}
.y67{bottom:341.666667pt;}
.y100{bottom:342.866667pt;}
.y1a5{bottom:344.866667pt;}
.yda{bottom:348.600000pt;}
.ybe{bottom:354.200000pt;}
.y26{bottom:357.666667pt;}
.y69{bottom:358.200000pt;}
.y118{bottom:359.400000pt;}
.y4b{bottom:359.933333pt;}
.yea{bottom:361.266667pt;}
.y167{bottom:362.066667pt;}
.y187{bottom:367.266667pt;}
.yff{bottom:370.466667pt;}
.y145{bottom:374.466667pt;}
.y6a{bottom:374.733333pt;}
.y25{bottom:376.066667pt;}
.yd9{bottom:376.600000pt;}
.y166{bottom:377.133333pt;}
.y117{bottom:378.866667pt;}
.y1a4{bottom:379.266667pt;}
.ybd{bottom:381.933333pt;}
.y38{bottom:385.266667pt;}
.y4a{bottom:387.533333pt;}
.ye9{bottom:388.866667pt;}
.y6b{bottom:391.400000pt;}
.y94{bottom:392.733333pt;}
.y24{bottom:394.466667pt;}
.y186{bottom:394.866667pt;}
.yb9{bottom:397.000000pt;}
.y1a3{bottom:397.666667pt;}
.yfe{bottom:398.066667pt;}
.y116{bottom:399.533333pt;}
.yd8{bottom:404.733333pt;}
.y6c{bottom:407.933333pt;}
.y23{bottom:412.866667pt;}
.y49{bottom:415.133333pt;}
.ye8{bottom:416.466667pt;}
.y144{bottom:417.000000pt;}
.y115{bottom:420.200000pt;}
.y93{bottom:420.733333pt;}
.y185{bottom:422.466667pt;}
.y6d{bottom:424.466667pt;}
.yfd{bottom:425.666667pt;}
.y22{bottom:431.266667pt;}
.y1a2{bottom:432.066667pt;}
.yd7{bottom:432.466667pt;}
.y37{bottom:440.466667pt;}
.y114{bottom:440.866667pt;}
.y6e{bottom:441.000000pt;}
.y48{bottom:442.733333pt;}
.ye7{bottom:444.066667pt;}
.y143{bottom:444.600000pt;}
.y160{bottom:444.733333pt;}
.yb6{bottom:445.000000pt;}
.yd4{bottom:447.533333pt;}
.y92{bottom:448.466667pt;}
.y21{bottom:449.666667pt;}
.y184{bottom:450.066667pt;}
.y1a1{bottom:450.466667pt;}
.yfc{bottom:453.266667pt;}
.y6f{bottom:457.666667pt;}
.y113{bottom:461.533333pt;}
.y20{bottom:468.066667pt;}
.y1a0{bottom:468.866667pt;}
.y47{bottom:470.333333pt;}
.y142{bottom:471.266667pt;}
.ye6{bottom:471.666667pt;}
.y137{bottom:472.333333pt;}
.y70{bottom:474.200000pt;}
.y91{bottom:476.066667pt;}
.y183{bottom:477.666667pt;}
.yfb{bottom:480.866667pt;}
.y111{bottom:482.200000pt;}
.y1f{bottom:486.466667pt;}
.ye4{bottom:486.733333pt;}
.y71{bottom:490.733333pt;}
.y141{bottom:490.866667pt;}
.y138{bottom:491.666667pt;}
.yb4{bottom:492.600000pt;}
.y36{bottom:495.666667pt;}
.y182{bottom:496.066667pt;}
.y46{bottom:497.933333pt;}
.y90{bottom:499.533333pt;}
.y15f{bottom:499.933333pt;}
.y19f{bottom:503.266667pt;}
.y10e{bottom:503.533333pt;}
.y1e{bottom:504.866667pt;}
.yfa{bottom:508.466667pt;}
.yd3{bottom:508.733333pt;}
.y139{bottom:509.266667pt;}
.y140{bottom:510.600000pt;}
.ye3{bottom:514.333333pt;}
.y136{bottom:519.266667pt;}
.y19e{bottom:521.666667pt;}
.y1d{bottom:523.266667pt;}
.y13a{bottom:525.400000pt;}
.y45{bottom:525.533333pt;}
.y5f{bottom:526.866667pt;}
.y15e{bottom:527.533333pt;}
.y13f{bottom:530.333333pt;}
.y181{bottom:532.866667pt;}
.yb3{bottom:533.266667pt;}
.yf9{bottom:536.066667pt;}
.yd2{bottom:536.333333pt;}
.y13b{bottom:541.533333pt;}
.y1c{bottom:541.666667pt;}
.y13e{bottom:549.133333pt;}
.y35{bottom:550.866667pt;}
.y180{bottom:551.266667pt;}
.y10d{bottom:553.933333pt;}
.y5e{bottom:554.466667pt;}
.y15d{bottom:555.133333pt;}
.y19d{bottom:556.066667pt;}
.y13c{bottom:557.666667pt;}
.y1b{bottom:560.066667pt;}
.yb2{bottom:561.266667pt;}
.y44{bottom:562.333333pt;}
.yf8{bottom:563.666667pt;}
.yd1{bottom:564.333333pt;}
.y13d{bottom:567.800000pt;}
.y19c{bottom:574.466667pt;}
.y1a{bottom:578.466667pt;}
.y17f{bottom:578.866667pt;}
.y43{bottom:580.733333pt;}
.y10c{bottom:581.533333pt;}
.y5d{bottom:582.066667pt;}
.y15c{bottom:582.733333pt;}
.yb1{bottom:589.400000pt;}
.yf7{bottom:591.266667pt;}
.yd0{bottom:592.466667pt;}
.y135{bottom:592.600000pt;}
.y128{bottom:593.666667pt;}
.y19{bottom:596.866667pt;}
.y34{bottom:606.066667pt;}
.y17e{bottom:606.466667pt;}
.y19b{bottom:608.866667pt;}
.y10b{bottom:609.533333pt;}
.y5c{bottom:609.666667pt;}
.y15b{bottom:610.333333pt;}
.y134{bottom:612.200000pt;}
.y129{bottom:613.000000pt;}
.y18{bottom:615.266667pt;}
.y42{bottom:617.533333pt;}
.yf6{bottom:618.866667pt;}
.ycf{bottom:620.200000pt;}
.y19a{bottom:627.266667pt;}
.y15a{bottom:629.800000pt;}
.y12b{bottom:630.600000pt;}
.y133{bottom:631.933333pt;}
.y17{bottom:633.666667pt;}
.y17d{bottom:634.066667pt;}
.ycb{bottom:635.266667pt;}
.y41{bottom:635.933333pt;}
.yf5{bottom:637.266667pt;}
.y127{bottom:640.600000pt;}
.yb0{bottom:645.666667pt;}
.y5b{bottom:646.466667pt;}
.y12d{bottom:646.733333pt;}
.y159{bottom:650.466667pt;}
.y132{bottom:651.666667pt;}
.y16{bottom:652.066667pt;}
.y33{bottom:661.306667pt;}
.y17c{bottom:661.706667pt;}
.y12e{bottom:662.906667pt;}
.y40{bottom:663.573333pt;}
.y5a{bottom:664.906667pt;}
.y15{bottom:670.506667pt;}
.y158{bottom:671.173333pt;}
.yaf{bottom:673.840000pt;}
.y12f{bottom:679.040000pt;}
.y8f{bottom:679.706667pt;}
.yf4{bottom:679.973333pt;}
.y199{bottom:680.106667pt;}
.y3f{bottom:687.840000pt;}
.y14{bottom:688.906667pt;}
.y131{bottom:689.173333pt;}
.y157{bottom:691.840000pt;}
.y59{bottom:692.506667pt;}
.yca{bottom:693.306667pt;}
.y17b{bottom:698.506667pt;}
.yae{bottom:701.573333pt;}
.y13{bottom:707.293333pt;}
.y57{bottom:707.560000pt;}
.y156{bottom:712.506667pt;}
.y126{bottom:715.306667pt;}
.y32{bottom:716.506667pt;}
.yaa{bottom:716.626667pt;}
.y17a{bottom:716.906667pt;}
.y10a{bottom:720.106667pt;}
.yc9{bottom:720.906667pt;}
.y12{bottom:725.706667pt;}
.y198{bottom:732.906667pt;}
.y155{bottom:733.173333pt;}
.y8e{bottom:734.906667pt;}
.y55{bottom:735.173333pt;}
.y179{bottom:736.373333pt;}
.y125{bottom:743.440000pt;}
.y11{bottom:744.106667pt;}
.y109{bottom:744.373333pt;}
.yc8{bottom:748.506667pt;}
.y197{bottom:751.306667pt;}
.y154{bottom:754.506667pt;}
.y178{bottom:757.040000pt;}
.y10{bottom:762.506667pt;}
.y8d{bottom:762.906667pt;}
.y124{bottom:771.173333pt;}
.y31{bottom:771.706667pt;}
.yc7{bottom:772.773333pt;}
.ya9{bottom:777.706667pt;}
.yf{bottom:780.906667pt;}
.y196{bottom:785.706667pt;}
.y8c{bottom:793.040000pt;}
.y123{bottom:798.773333pt;}
.y177{bottom:799.040000pt;}
.ye{bottom:799.306667pt;}
.y195{bottom:804.106667pt;}
.y153{bottom:804.906667pt;}
.ya8{bottom:805.706667pt;}
.y176{bottom:819.706667pt;}
.y8b{bottom:823.040000pt;}
.y122{bottom:826.373333pt;}
.yc{bottom:826.906667pt;}
.yd{bottom:832.240000pt;}
.y152{bottom:832.506667pt;}
.ya7{bottom:833.440000pt;}
.y194{bottom:838.506667pt;}
.y175{bottom:840.373333pt;}
.y8a{bottom:850.773333pt;}
.y121{bottom:853.973333pt;}
.yb{bottom:854.506667pt;}
.y193{bottom:856.906667pt;}
.y151{bottom:860.106667pt;}
.y174{bottom:861.040000pt;}
.ya6{bottom:861.440000pt;}
.y87{bottom:865.840000pt;}
.y173{bottom:881.706667pt;}
.y120{bottom:881.973333pt;}
.ya{bottom:882.106667pt;}
.y150{bottom:887.706667pt;}
.ya5{bottom:889.573333pt;}
.y192{bottom:891.306667pt;}
.y172{bottom:902.373333pt;}
.y86{bottom:908.506667pt;}
.y9{bottom:909.706667pt;}
.y14f{bottom:915.306667pt;}
.ya4{bottom:917.306667pt;}
.y170{bottom:923.706667pt;}
.y191{bottom:928.106667pt;}
.ya0{bottom:932.373333pt;}
.y85{bottom:936.373333pt;}
.y8{bottom:937.306667pt;}
.y14e{bottom:942.906667pt;}
.y3{bottom:946.506667pt;}
.y14d{bottom:962.373333pt;}
.y84{bottom:964.773333pt;}
.y7{bottom:964.906667pt;}
.y2{bottom:983.333333pt;}
.y1{bottom:1001.733333pt;}
.h2d{height:16.133333pt;}
.h2e{height:16.166667pt;}
.h10{height:16.533333pt;}
.h11{height:16.666667pt;}
.hf{height:16.700000pt;}
.h37{height:16.920000pt;}
.h29{height:16.933333pt;}
.h34{height:16.966667pt;}
.h2c{height:17.600000pt;}
.he{height:17.866667pt;}
.h12{height:23.600000pt;}
.ha{height:27.600000pt;}
.h20{height:28.133333pt;}
.h33{height:30.000000pt;}
.h17{height:30.133333pt;}
.h6{height:31.078125pt;}
.hd{height:32.133333pt;}
.h36{height:37.186667pt;}
.h27{height:37.200000pt;}
.h5{height:38.250000pt;}
.h4{height:43.031250pt;}
.h23{height:45.500000pt;}
.h21{height:47.600000pt;}
.h1d{height:47.633333pt;}
.h7{height:47.812500pt;}
.h22{height:48.000000pt;}
.h1e{height:48.533333pt;}
.h25{height:48.666667pt;}
.h1a{height:50.833333pt;}
.h38{height:52.450521pt;}
.h2a{height:52.593750pt;}
.h18{height:53.080729pt;}
.h28{height:55.111979pt;}
.h8{height:57.218750pt;}
.h2{height:57.375000pt;}
.h3{height:57.906250pt;}
.hc{height:78.125000pt;}
.h30{height:78.805208pt;}
.h19{height:80.258333pt;}
.h16{height:80.791667pt;}
.h1c{height:100.041667pt;}
.h24{height:100.201667pt;}
.h14{height:120.791667pt;}
.h1f{height:126.658333pt;}
.h15{height:126.765000pt;}
.h1b{height:127.338542pt;}
.h13{height:169.325000pt;}
.h35{height:216.400000pt;}
.h9{height:217.200000pt;}
.h26{height:217.226667pt;}
.hb{height:239.360000pt;}
.h2f{height:443.493333pt;}
.h31{height:491.666667pt;}
.h32{height:564.866667pt;}
.h2b{height:613.000000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w7{width:81.333333pt;}
.wf{width:88.933333pt;}
.w9{width:90.133333pt;}
.wd{width:113.333333pt;}
.wb{width:113.366667pt;}
.wa{width:113.466667pt;}
.wc{width:113.500000pt;}
.w11{width:117.500000pt;}
.w13{width:120.433333pt;}
.w12{width:126.966667pt;}
.w10{width:140.666667pt;}
.w4{width:302.306667pt;}
.w5{width:302.426667pt;}
.w8{width:523.933333pt;}
.we{width:525.133333pt;}
.w6{width:532.733333pt;}
.w3{width:793.733310pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:14.800000pt;}
.x44{left:17.193333pt;}
.x68{left:20.266667pt;}
.x54{left:24.133333pt;}
.x45{left:26.526667pt;}
.x52{left:30.133333pt;}
.x4f{left:32.253333pt;}
.x53{left:34.266667pt;}
.x47{left:35.733333pt;}
.x6f{left:36.960000pt;}
.x4d{left:38.800000pt;}
.x6e{left:40.426667pt;}
.x51{left:42.253333pt;}
.x48{left:46.400000pt;}
.x4c{left:49.600000pt;}
.x69{left:50.800000pt;}
.x50{left:52.673333pt;}
.x28{left:54.386667pt;}
.x6d{left:66.266667pt;}
.x17{left:108.833333pt;}
.x2{left:113.499988pt;}
.xe{left:118.299988pt;}
.x7{left:125.233322pt;}
.x40{left:132.299988pt;}
.x3f{left:136.693322pt;}
.x9{left:140.426655pt;}
.x3a{left:142.959988pt;}
.x18{left:145.873333pt;}
.x39{left:147.359988pt;}
.x38{left:151.906655pt;}
.x3e{left:154.826655pt;}
.x1{left:158.826655pt;}
.x4{left:160.693322pt;}
.x3d{left:162.026655pt;}
.x5{left:163.906655pt;}
.x15{left:164.806667pt;}
.x67{left:166.573333pt;}
.x3b{left:177.359988pt;}
.x8{left:180.839988pt;}
.x19{left:184.940000pt;}
.x1e{left:190.526667pt;}
.x1b{left:195.473333pt;}
.x1a{left:196.406667pt;}
.xa{left:200.439988pt;}
.x12{left:211.893322pt;}
.x64{left:218.673333pt;}
.x2d{left:221.073333pt;}
.x29{left:222.006667pt;}
.x21{left:227.073333pt;}
.x2f{left:235.366667pt;}
.x1c{left:236.433333pt;}
.x73{left:237.906655pt;}
.x36{left:240.966667pt;}
.x31{left:242.166667pt;}
.x46{left:245.773333pt;}
.x56{left:251.773310pt;}
.x33{left:252.833333pt;}
.x58{left:257.359988pt;}
.x57{left:263.239988pt;}
.x32{left:264.433333pt;}
.x30{left:269.766667pt;}
.x2e{left:274.033333pt;}
.x5d{left:275.239976pt;}
.x1d{left:277.366667pt;}
.xf{left:279.773322pt;}
.x5e{left:280.839988pt;}
.x3c{left:285.106655pt;}
.x42{left:300.293322pt;}
.x2c{left:302.973322pt;}
.x70{left:305.773333pt;}
.x6a{left:307.240000pt;}
.x13{left:309.366667pt;}
.x20{left:310.966667pt;}
.x1f{left:311.900000pt;}
.x11{left:314.839988pt;}
.x5a{left:321.359988pt;}
.x60{left:326.839988pt;}
.x66{left:330.693322pt;}
.x72{left:338.466655pt;}
.x2a{left:340.066655pt;}
.x22{left:341.766667pt;}
.xd{left:350.866655pt;}
.x55{left:352.066655pt;}
.x16{left:355.933322pt;}
.x49{left:359.133333pt;}
.x24{left:370.433333pt;}
.x23{left:371.366667pt;}
.x25{left:381.233333pt;}
.x26{left:386.833333pt;}
.x34{left:388.733322pt;}
.x14{left:415.800000pt;}
.x5f{left:418.466655pt;}
.x6b{left:424.733333pt;}
.x71{left:426.200000pt;}
.x59{left:430.733322pt;}
.x4b{left:472.466667pt;}
.xb{left:474.066655pt;}
.x61{left:510.066655pt;}
.x5b{left:522.466655pt;}
.x6c{left:538.066667pt;}
.x62{left:539.933310pt;}
.x63{left:549.133322pt;}
.x2b{left:552.866655pt;}
.x5c{left:561.533322pt;}
.x35{left:571.839988pt;}
.x4e{left:585.973333pt;}
.x43{left:590.639988pt;}
.x41{left:630.906655pt;}
.x37{left:632.773333pt;}
.x65{left:633.973333pt;}
.x6{left:637.559988pt;}
.x27{left:641.573333pt;}
.x10{left:642.906655pt;}
.xc{left:712.359976pt;}
.x3{left:718.359988pt;}
}




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