
    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_5fb0587eeaf1352dd0cd354d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_a54019a1033f6c24a2c1ff4a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_2876efeff9614ec9e3fd0d16.woff')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_a67f8cb65562829df7716f7e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_761ac0abaa94eb7268269ee3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_caf0fa7430945b7abdecd0b7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_3d78b256da4dca9c86c98499.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1e00aeb80c70df4394dad3ab.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d747e58b1d506ba4e6fd8e09.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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(0.257777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257777,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-90.720000px;}
.v2{vertical-align:-87.120000px;}
.v4{vertical-align:-82.800000px;}
.v5{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.ls9{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls2{letter-spacing:746.796000px;}
.ls8{letter-spacing:1227.876000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.ws0{word-spacing:-19.728000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws2{word-spacing:-16.272000px;}
.ws1{word-spacing:-13.871327px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-12.240000px;}
._0{margin-left:-1.728000px;}
._3{width:1.356000px;}
._14{width:3.180000px;}
._a{width:4.680000px;}
._b{width:5.844000px;}
._1a{width:7.848000px;}
._1b{width:9.216000px;}
._17{width:11.160000px;}
._10{width:12.672000px;}
._16{width:14.040000px;}
._1c{width:15.576000px;}
._19{width:16.848000px;}
._1e{width:19.224000px;}
._e{width:20.232000px;}
._2{width:21.792000px;}
._1d{width:22.800000px;}
._f{width:24.000000px;}
._c{width:25.848000px;}
._13{width:27.144000px;}
._18{width:28.644000px;}
._9{width:29.952000px;}
._15{width:31.248000px;}
._6{width:33.120000px;}
._7{width:34.932000px;}
._21{width:36.720000px;}
._22{width:37.872000px;}
._d{width:39.240000px;}
._4{width:41.112000px;}
._5{width:42.192000px;}
._28{width:43.344000px;}
._29{width:44.712000px;}
._26{width:46.152000px;}
._1f{width:47.964000px;}
._20{width:49.032000px;}
._27{width:53.412000px;}
._24{width:68.328000px;}
._11{width:76.248000px;}
._12{width:77.772000px;}
._1{width:431.998320px;}
._23{width:558.636000px;}
._25{width:928.296000px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.896859px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.240000px;}
.y9{bottom:3.418719px;}
.y119{bottom:4.125000px;}
.y11c{bottom:4.140000px;}
.y115{bottom:4.485000px;}
.y46{bottom:4.500000px;}
.y145{bottom:4.545000px;}
.yf5{bottom:4.680000px;}
.y3f{bottom:4.860000px;}
.yfc{bottom:5.040000px;}
.y100{bottom:5.085000px;}
.y156{bottom:6.480000px;}
.y168{bottom:6.660000px;}
.y165{bottom:6.840000px;}
.y15c{bottom:7.380000px;}
.y14f{bottom:7.740000px;}
.y18a{bottom:7.770000px;}
.y4a{bottom:7.920000px;}
.y151{bottom:8.460000px;}
.y167{bottom:9.000000px;}
.yb{bottom:9.180000px;}
.y126{bottom:9.540000px;}
.y162{bottom:10.080000px;}
.y18f{bottom:11.520000px;}
.y171{bottom:11.700000px;}
.y191{bottom:12.420000px;}
.y193{bottom:12.600000px;}
.y192{bottom:13.500000px;}
.y123{bottom:14.400000px;}
.y117{bottom:14.565000px;}
.y142{bottom:14.940000px;}
.y14c{bottom:15.660000px;}
.y10{bottom:15.840000px;}
.y16f{bottom:17.820000px;}
.y170{bottom:19.080000px;}
.yd{bottom:19.980000px;}
.y128{bottom:22.140000px;}
.y129{bottom:22.500000px;}
.y118{bottom:24.825000px;}
.y12b{bottom:24.840000px;}
.y15f{bottom:25.020000px;}
.y45{bottom:25.200000px;}
.y51{bottom:25.380000px;}
.y143{bottom:26.820000px;}
.yc{bottom:27.000000px;}
.yf{bottom:27.540000px;}
.y49{bottom:29.520000px;}
.y7{bottom:35.100000px;}
.y124{bottom:35.460000px;}
.y14e{bottom:37.260000px;}
.y50{bottom:44.100000px;}
.y44{bottom:45.900000px;}
.y48{bottom:51.120000px;}
.yfa{bottom:51.165000px;}
.y4f{bottom:64.830000px;}
.y43{bottom:66.600000px;}
.y1a3{bottom:69.480000px;}
.ye2{bottom:70.920000px;}
.yf9{bottom:71.865000px;}
.y19f{bottom:78.120000px;}
.y85{bottom:79.560000px;}
.y3d{bottom:81.000000px;}
.y140{bottom:82.260000px;}
.yb3{bottom:82.800000px;}
.y4e{bottom:85.530000px;}
.y42{bottom:87.345000px;}
.y154{bottom:88.920000px;}
.ye1{bottom:91.620000px;}
.yf8{bottom:92.565000px;}
.y16c{bottom:97.380000px;}
.y19e{bottom:98.820000px;}
.y84{bottom:100.260000px;}
.y3c{bottom:101.700000px;}
.y18d{bottom:103.320000px;}
.yb2{bottom:103.500000px;}
.y4d{bottom:105.870000px;}
.y153{bottom:109.260000px;}
.ye0{bottom:112.320000px;}
.y19d{bottom:119.520000px;}
.y83{bottom:120.960000px;}
.y3b{bottom:122.400000px;}
.yb1{bottom:123.840000px;}
.y1ae{bottom:124.200000px;}
.y152{bottom:125.820000px;}
.y4c{bottom:130.350000px;}
.ydf{bottom:133.020000px;}
.y19c{bottom:140.220000px;}
.y82{bottom:141.660000px;}
.y3a{bottom:143.100000px;}
.yb0{bottom:144.540000px;}
.y1ad{bottom:144.900000px;}
.y4b{bottom:152.820000px;}
.yde{bottom:153.720000px;}
.y19b{bottom:160.920000px;}
.y81{bottom:162.360000px;}
.y11d{bottom:163.080000px;}
.y39{bottom:163.800000px;}
.y121{bottom:164.520000px;}
.yaf{bottom:165.600000px;}
.ydd{bottom:174.420000px;}
.y19a{bottom:181.260000px;}
.y80{bottom:183.060000px;}
.y38{bottom:184.500000px;}
.yae{bottom:185.940000px;}
.y1ac{bottom:186.300000px;}
.y188{bottom:190.620000px;}
.ydc{bottom:195.120000px;}
.y199{bottom:202.320000px;}
.y7f{bottom:203.760000px;}
.y37{bottom:205.200000px;}
.yad{bottom:206.670000px;}
.y11b{bottom:206.865000px;}
.y1ab{bottom:207.030000px;}
.y15a{bottom:213.150000px;}
.ydb{bottom:215.850000px;}
.y198{bottom:218.550000px;}
.y7e{bottom:224.490000px;}
.y36{bottom:225.930000px;}
.yac{bottom:227.730000px;}
.y11a{bottom:229.005000px;}
.yda{bottom:236.550000px;}
.y7d{bottom:245.190000px;}
.y35{bottom:246.630000px;}
.yab{bottom:248.070000px;}
.y1aa{bottom:248.430000px;}
.y14a{bottom:249.510000px;}
.y116{bottom:251.145000px;}
.yd9{bottom:256.890000px;}
.y176{bottom:260.670000px;}
.yf3{bottom:263.550000px;}
.y7c{bottom:265.890000px;}
.y34{bottom:267.330000px;}
.yaa{bottom:268.770000px;}
.y1a9{bottom:269.130000px;}
.y149{bottom:270.210000px;}
.y175{bottom:276.870000px;}
.yd8{bottom:277.950000px;}
.yf2{bottom:284.250000px;}
.y148{bottom:286.410000px;}
.y7b{bottom:286.590000px;}
.y33{bottom:288.030000px;}
.ya9{bottom:289.830000px;}
.y114{bottom:293.265000px;}
.y47{bottom:297.750000px;}
.yd7{bottom:298.650000px;}
.yf1{bottom:304.950000px;}
.y7a{bottom:307.290000px;}
.y32{bottom:308.730000px;}
.ya8{bottom:310.170000px;}
.y1a8{bottom:310.530000px;}
.y13f{bottom:311.430000px;}
.yd6{bottom:319.350000px;}
.y113{bottom:321.330000px;}
.yf0{bottom:325.650000px;}
.y79{bottom:327.990000px;}
.y31{bottom:329.430000px;}
.ya7{bottom:330.870000px;}
.y1a7{bottom:331.230000px;}
.y13e{bottom:332.130000px;}
.yd5{bottom:340.050000px;}
.y112{bottom:341.130000px;}
.yef{bottom:346.170000px;}
.y78{bottom:348.690000px;}
.y30{bottom:350.130000px;}
.ya6{bottom:351.570000px;}
.y1a6{bottom:351.930000px;}
.y13d{bottom:353.190000px;}
.yd4{bottom:360.750000px;}
.y111{bottom:361.830000px;}
.y41{bottom:363.630000px;}
.yee{bottom:366.870000px;}
.y77{bottom:369.390000px;}
.y2f{bottom:370.830000px;}
.ya5{bottom:372.630000px;}
.y13c{bottom:373.890000px;}
.yd3{bottom:381.450000px;}
.y110{bottom:382.530000px;}
.yed{bottom:387.570000px;}
.y76{bottom:390.090000px;}
.y2e{bottom:391.530000px;}
.ya4{bottom:393.330000px;}
.yd2{bottom:401.790000px;}
.y10f{bottom:403.230000px;}
.yec{bottom:408.270000px;}
.y75{bottom:410.790000px;}
.y2d{bottom:412.230000px;}
.y146{bottom:413.850000px;}
.ya3{bottom:414.030000px;}
.yd1{bottom:422.490000px;}
.y10e{bottom:423.930000px;}
.yeb{bottom:428.970000px;}
.y74{bottom:431.490000px;}
.y2c{bottom:432.930000px;}
.ya2{bottom:434.730000px;}
.y144{bottom:435.990000px;}
.yd0{bottom:443.595000px;}
.y10d{bottom:444.675000px;}
.yea{bottom:449.715000px;}
.y73{bottom:452.235000px;}
.y2b{bottom:453.675000px;}
.ya1{bottom:455.475000px;}
.y141{bottom:458.175000px;}
.ycf{bottom:464.295000px;}
.y10c{bottom:465.375000px;}
.y40{bottom:467.895000px;}
.ye9{bottom:470.415000px;}
.y72{bottom:472.935000px;}
.ya0{bottom:476.175000px;}
.yce{bottom:484.995000px;}
.y10b{bottom:486.075000px;}
.ye8{bottom:491.115000px;}
.y3e{bottom:491.295000px;}
.y71{bottom:493.635000px;}
.y9f{bottom:496.875000px;}
.ycd{bottom:505.695000px;}
.y10a{bottom:506.775000px;}
.ye7{bottom:511.455000px;}
.y70{bottom:514.335000px;}
.y9e{bottom:517.575000px;}
.y2a{bottom:518.835000px;}
.y13b{bottom:524.235000px;}
.ycc{bottom:526.395000px;}
.y109{bottom:527.475000px;}
.y166{bottom:528.015000px;}
.ye6{bottom:532.155000px;}
.y6f{bottom:535.035000px;}
.y9d{bottom:538.275000px;}
.y29{bottom:539.535000px;}
.y13a{bottom:544.935000px;}
.ycb{bottom:546.735000px;}
.y108{bottom:548.175000px;}
.ye5{bottom:548.715000px;}
.y159{bottom:554.835000px;}
.y6e{bottom:555.735000px;}
.y9c{bottom:558.975000px;}
.y28{bottom:560.235000px;}
.y139{bottom:565.635000px;}
.yca{bottom:567.435000px;}
.y107{bottom:568.875000px;}
.y6d{bottom:576.435000px;}
.y9b{bottom:579.675000px;}
.y27{bottom:580.575000px;}
.y164{bottom:581.655000px;}
.y138{bottom:586.335000px;}
.yc9{bottom:588.495000px;}
.y106{bottom:589.575000px;}
.y187{bottom:593.895000px;}
.y6c{bottom:597.135000px;}
.y9a{bottom:600.375000px;}
.y26{bottom:601.275000px;}
.y137{bottom:607.035000px;}
.yc8{bottom:609.195000px;}
.y163{bottom:609.375000px;}
.y105{bottom:609.915000px;}
.y6b{bottom:617.835000px;}
.y1b2{bottom:620.715000px;}
.y99{bottom:621.075000px;}
.y25{bottom:622.335000px;}
.y104{bottom:626.475000px;}
.y136{bottom:627.735000px;}
.yc7{bottom:629.895000px;}
.y174{bottom:634.575000px;}
.y186{bottom:634.935000px;}
.y197{bottom:635.655000px;}
.y161{bottom:636.195000px;}
.y6a{bottom:638.535000px;}
.y1b1{bottom:641.415000px;}
.y98{bottom:641.775000px;}
.y24{bottom:642.675000px;}
.y135{bottom:648.435000px;}
.yc6{bottom:650.595000px;}
.y173{bottom:655.635000px;}
.y185{bottom:655.995000px;}
.y69{bottom:659.235000px;}
.y97{bottom:662.475000px;}
.y23{bottom:663.375000px;}
.y160{bottom:663.915000px;}
.y134{bottom:669.135000px;}
.yc5{bottom:671.295000px;}
.y172{bottom:676.365000px;}
.y184{bottom:676.725000px;}
.y196{bottom:677.085000px;}
.y68{bottom:679.965000px;}
.y96{bottom:683.205000px;}
.y22{bottom:684.465000px;}
.y133{bottom:689.865000px;}
.y15e{bottom:690.945000px;}
.yc4{bottom:691.665000px;}
.y16b{bottom:694.005000px;}
.y1a2{bottom:694.905000px;}
.y183{bottom:697.065000px;}
.y67{bottom:700.665000px;}
.y95{bottom:703.905000px;}
.y21{bottom:705.165000px;}
.y132{bottom:710.565000px;}
.y147{bottom:711.825000px;}
.yc3{bottom:712.365000px;}
.y1a5{bottom:717.045000px;}
.y182{bottom:718.125000px;}
.y66{bottom:721.365000px;}
.y94{bottom:724.605000px;}
.y20{bottom:725.505000px;}
.y14d{bottom:729.825000px;}
.y16e{bottom:730.725000px;}
.y131{bottom:731.265000px;}
.yc2{bottom:733.425000px;}
.y15d{bottom:733.785000px;}
.y181{bottom:738.825000px;}
.y1a4{bottom:739.185000px;}
.y65{bottom:742.065000px;}
.y93{bottom:745.305000px;}
.y1f{bottom:746.205000px;}
.y130{bottom:751.965000px;}
.yc1{bottom:754.125000px;}
.y180{bottom:759.525000px;}
.y150{bottom:760.065000px;}
.y15b{bottom:760.605000px;}
.y64{bottom:762.765000px;}
.y92{bottom:766.005000px;}
.y16d{bottom:766.185000px;}
.y1e{bottom:767.265000px;}
.y12f{bottom:772.665000px;}
.yc0{bottom:774.825000px;}
.y17f{bottom:780.225000px;}
.y1a1{bottom:782.205000px;}
.y63{bottom:783.465000px;}
.y158{bottom:785.805000px;}
.y91{bottom:786.705000px;}
.y1d{bottom:787.605000px;}
.y12e{bottom:788.865000px;}
.ybf{bottom:795.525000px;}
.y17e{bottom:800.925000px;}
.y62{bottom:804.165000px;}
.y90{bottom:807.405000px;}
.y1c{bottom:808.305000px;}
.y16a{bottom:809.025000px;}
.y157{bottom:811.725000px;}
.ybe{bottom:816.045000px;}
.y14b{bottom:817.665000px;}
.y17d{bottom:821.625000px;}
.y1a0{bottom:823.605000px;}
.y61{bottom:824.865000px;}
.y8f{bottom:828.105000px;}
.y1b{bottom:829.365000px;}
.y155{bottom:836.205000px;}
.ybd{bottom:836.745000px;}
.y17c{bottom:842.325000px;}
.ye4{bottom:845.385000px;}
.y60{bottom:845.565000px;}
.y195{bottom:848.445000px;}
.y8e{bottom:848.805000px;}
.y1a{bottom:850.065000px;}
.y103{bottom:856.905000px;}
.ybc{bottom:857.445000px;}
.y17b{bottom:863.025000px;}
.y5f{bottom:866.265000px;}
.ye3{bottom:866.445000px;}
.y194{bottom:869.145000px;}
.y8d{bottom:869.505000px;}
.y19{bottom:870.405000px;}
.y169{bottom:873.645000px;}
.y102{bottom:877.245000px;}
.ybb{bottom:878.145000px;}
.yf7{bottom:883.545000px;}
.y17a{bottom:883.725000px;}
.y5e{bottom:886.965000px;}
.y8c{bottom:890.205000px;}
.y18{bottom:891.105000px;}
.y101{bottom:898.305000px;}
.yba{bottom:898.485000px;}
.y179{bottom:904.425000px;}
.yff{bottom:905.325000px;}
.y5d{bottom:907.665000px;}
.y8b{bottom:910.950000px;}
.y17{bottom:912.210000px;}
.y120{bottom:915.270000px;}
.yb9{bottom:919.230000px;}
.y178{bottom:925.170000px;}
.yfe{bottom:927.330000px;}
.y5c{bottom:928.410000px;}
.y8a{bottom:931.650000px;}
.y16{bottom:932.910000px;}
.y12a{bottom:936.690000px;}
.yb8{bottom:939.930000px;}
.y177{bottom:945.510000px;}
.y5b{bottom:949.110000px;}
.yfd{bottom:949.290000px;}
.y89{bottom:952.350000px;}
.y15{bottom:953.250000px;}
.yb7{bottom:960.990000px;}
.y18c{bottom:963.510000px;}
.y5a{bottom:969.810000px;}
.yfb{bottom:971.070000px;}
.y1b0{bottom:972.690000px;}
.y88{bottom:973.050000px;}
.y14{bottom:973.950000px;}
.y127{bottom:978.810000px;}
.yb6{bottom:981.330000px;}
.y59{bottom:990.150000px;}
.yf6{bottom:993.030000px;}
.y1af{bottom:993.390000px;}
.y87{bottom:993.750000px;}
.y13{bottom:995.190000px;}
.yb5{bottom:1002.030000px;}
.y58{bottom:1011.390000px;}
.y86{bottom:1014.450000px;}
.y125{bottom:1018.230000px;}
.y12{bottom:1019.310000px;}
.yb4{bottom:1023.090000px;}
.y190{bottom:1025.070000px;}
.yf4{bottom:1034.430000px;}
.y57{bottom:1035.150000px;}
.y11{bottom:1043.430000px;}
.y122{bottom:1044.690000px;}
.y18e{bottom:1055.310000px;}
.y56{bottom:1055.850000px;}
.y6{bottom:1066.650000px;}
.y55{bottom:1076.550000px;}
.y5{bottom:1084.110000px;}
.y18b{bottom:1084.650000px;}
.y12d{bottom:1096.890000px;}
.y11f{bottom:1097.070000px;}
.y54{bottom:1097.250000px;}
.y4{bottom:1103.370000px;}
.y8{bottom:1109.863245px;}
.y12c{bottom:1117.590000px;}
.y53{bottom:1117.950000px;}
.y3{bottom:1133.430000px;}
.y11e{bottom:1138.470000px;}
.y52{bottom:1138.650000px;}
.y189{bottom:1139.190000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.720000px;}
.ya{bottom:1219.140000px;}
.h7{height:15.941650px;}
.h19{height:20.160000px;}
.h22{height:20.685000px;}
.h25{height:20.695500px;}
.h24{height:20.700000px;}
.h26{height:20.730000px;}
.h2d{height:20.736000px;}
.h1c{height:21.060000px;}
.h1f{height:21.240000px;}
.h20{height:21.276000px;}
.h13{height:21.960000px;}
.h35{height:23.580000px;}
.h33{height:24.480000px;}
.h32{height:24.660000px;}
.h3a{height:25.200000px;}
.h36{height:25.380000px;}
.h38{height:25.416000px;}
.h29{height:25.740000px;}
.h39{height:26.280000px;}
.h30{height:27.180000px;}
.h43{height:27.720000px;}
.h40{height:27.930000px;}
.h31{height:28.620000px;}
.h45{height:28.800000px;}
.h44{height:29.700000px;}
.h5{height:31.952109px;}
.h9{height:32.400000px;}
.h3b{height:32.760000px;}
.hd{height:33.120000px;}
.h3e{height:34.020000px;}
.h3f{height:35.280000px;}
.h2a{height:38.700000px;}
.hb{height:40.140000px;}
.h37{height:41.220000px;}
.h23{height:41.385000px;}
.h2b{height:41.392500px;}
.h1d{height:41.400000px;}
.h4{height:41.738906px;}
.h2e{height:43.020000px;}
.hc{height:45.116367px;}
.h1b{height:50.273438px;}
.h28{height:51.660000px;}
.h8{height:52.040864px;}
.h6{height:53.709961px;}
.h3{height:54.070312px;}
.h41{height:54.540000px;}
.h18{height:59.439023px;}
.h16{height:60.226875px;}
.h3c{height:64.620000px;}
.h15{height:64.980000px;}
.h2c{height:65.196000px;}
.h1a{height:67.824844px;}
.h21{height:69.086250px;}
.h11{height:70.664062px;}
.ha{height:71.613281px;}
.h10{height:72.562500px;}
.he{height:73.722656px;}
.h12{height:80.464922px;}
.h2{height:81.105469px;}
.hf{height:84.898125px;}
.h46{height:85.680000px;}
.h2f{height:86.220000px;}
.h14{height:103.536000px;}
.h1e{height:108.756000px;}
.h3d{height:113.580000px;}
.h42{height:119.520000px;}
.h17{height:144.216000px;}
.h27{height:181.080000px;}
.h34{height:229.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:18.540000px;}
.w35{width:52.380000px;}
.w4a{width:54.900000px;}
.wf{width:56.340000px;}
.w3d{width:58.671000px;}
.w8{width:61.740000px;}
.w21{width:62.460000px;}
.w12{width:65.196000px;}
.w5{width:67.500000px;}
.w44{width:68.760000px;}
.w1e{width:73.800000px;}
.w47{width:75.276000px;}
.w32{width:75.600000px;}
.w39{width:80.676000px;}
.w3a{width:80.805000px;}
.w10{width:86.400000px;}
.w29{width:87.696000px;}
.w28{width:87.840000px;}
.w1d{width:91.836000px;}
.w18{width:92.016000px;}
.w14{width:92.916000px;}
.w11{width:94.311000px;}
.w2e{width:94.536000px;}
.w41{width:97.020000px;}
.w17{width:97.560000px;}
.w13{width:98.280000px;}
.w31{width:99.036000px;}
.w25{width:100.476000px;}
.w48{width:102.780000px;}
.w2{width:103.257005px;}
.wb{width:103.356000px;}
.w24{width:107.280000px;}
.w3b{width:108.381000px;}
.wc{width:110.016000px;}
.w26{width:113.796000px;}
.w19{width:113.925000px;}
.w2c{width:113.976000px;}
.w15{width:114.645000px;}
.w27{width:117.900000px;}
.w1f{width:121.176000px;}
.w20{width:122.760000px;}
.wd{width:124.380000px;}
.w42{width:126.720000px;}
.w33{width:127.296000px;}
.w2b{width:127.440000px;}
.w3c{width:130.125000px;}
.wa{width:142.740000px;}
.we{width:147.276000px;}
.w43{width:152.640000px;}
.w34{width:153.930000px;}
.w2d{width:159.870000px;}
.w16{width:161.295000px;}
.w22{width:162.570000px;}
.w49{width:162.930000px;}
.w46{width:168.690000px;}
.w36{width:169.770000px;}
.w40{width:172.110000px;}
.w23{width:175.530000px;}
.w2a{width:182.370000px;}
.w3{width:193.320000px;}
.w3e{width:196.230000px;}
.w30{width:222.150000px;}
.w1c{width:225.030000px;}
.w38{width:254.910000px;}
.w7{width:263.595000px;}
.w6{width:418.755000px;}
.w4{width:442.980000px;}
.w45{width:600.765000px;}
.w9{width:628.845000px;}
.w1a{width:635.865000px;}
.w3f{width:646.125000px;}
.w37{width:659.445000px;}
.w2f{width:682.710000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x83{left:1.800000px;}
.x60{left:3.420000px;}
.x82{left:5.214000px;}
.x6d{left:7.020000px;}
.x15{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.245577px;}
.x1c{left:13.860000px;}
.xa{left:15.120000px;}
.x35{left:16.920000px;}
.x38{left:19.080000px;}
.x46{left:21.240000px;}
.xb{left:22.860000px;}
.x29{left:24.300000px;}
.x37{left:25.914000px;}
.x1e{left:28.080000px;}
.x80{left:29.160000px;}
.x50{left:30.240000px;}
.x21{left:31.545000px;}
.x2f{left:32.580000px;}
.x64{left:33.660000px;}
.x2a{left:34.740000px;}
.x36{left:35.985000px;}
.x4f{left:37.260000px;}
.x24{left:38.385000px;}
.x39{left:41.385000px;}
.x26{left:42.885000px;}
.x45{left:45.180000px;}
.x22{left:46.665000px;}
.x53{left:48.240000px;}
.x13{left:49.500000px;}
.x27{left:51.120000px;}
.x28{left:53.325000px;}
.x65{left:54.360000px;}
.x25{left:57.825000px;}
.x54{left:58.860000px;}
.x47{left:60.660000px;}
.x66{left:63.540000px;}
.x3a{left:65.010000px;}
.x3b{left:67.350000px;}
.x1a{left:71.274000px;}
.x6f{left:72.360000px;}
.x2b{left:73.665000px;}
.x62{left:74.700000px;}
.x79{left:76.320000px;}
.x14{left:77.616000px;}
.x34{left:80.850000px;}
.x67{left:82.665000px;}
.x7d{left:84.234000px;}
.x73{left:86.034000px;}
.x4b{left:87.654000px;}
.x56{left:91.074000px;}
.x18{left:104.436000px;}
.x61{left:111.054000px;}
.x3f{left:112.494000px;}
.x68{left:116.856000px;}
.x72{left:123.516000px;}
.x3c{left:126.936000px;}
.x2d{left:133.236000px;}
.x2{left:135.036000px;}
.x7b{left:146.196000px;}
.x1{left:148.536000px;}
.x7c{left:153.759000px;}
.xe{left:158.610000px;}
.x23{left:160.770000px;}
.x3{left:172.110000px;}
.x6e{left:175.530000px;}
.x12{left:177.870000px;}
.x63{left:187.410000px;}
.x44{left:189.390000px;}
.x78{left:192.270000px;}
.x3d{left:198.399000px;}
.xd{left:201.270000px;}
.x52{left:214.770000px;}
.xf{left:216.570000px;}
.x2e{left:227.550000px;}
.x1b{left:247.170000px;}
.x30{left:292.755000px;}
.x74{left:295.635000px;}
.x4c{left:302.475000px;}
.x57{left:309.315000px;}
.x19{left:314.319000px;}
.x10{left:327.675000px;}
.x11{left:340.815000px;}
.x1d{left:350.895000px;}
.x40{left:351.975000px;}
.x5c{left:357.195000px;}
.x69{left:371.775000px;}
.x31{left:391.035000px;}
.x75{left:394.275000px;}
.x7e{left:402.735000px;}
.x4d{left:410.475000px;}
.x71{left:413.895000px;}
.x49{left:419.295000px;}
.x58{left:437.475000px;}
.x41{left:444.345000px;}
.x5{left:446.505000px;}
.x6a{left:454.080000px;}
.x5d{left:457.845000px;}
.x1f{left:461.265000px;}
.x7f{left:479.625000px;}
.x32{left:483.960000px;}
.x76{left:488.805000px;}
.x4e{left:511.845000px;}
.x42{left:518.505000px;}
.x6{left:524.047557px;}
.x5e{left:535.065000px;}
.x6b{left:536.340000px;}
.x59{left:538.845000px;}
.x81{left:584.025000px;}
.x20{left:586.005000px;}
.x33{left:598.620000px;}
.x77{left:617.010000px;}
.x51{left:626.370000px;}
.x4{left:629.970000px;}
.x43{left:640.050000px;}
.x6c{left:646.170000px;}
.x8{left:652.177557px;}
.x5a{left:653.550000px;}
.x5f{left:663.810000px;}
.xc{left:682.740000px;}
.x16{left:695.700000px;}
.x17{left:749.130000px;}
.x3e{left:762.810000px;}
.x2c{left:776.310000px;}
.x70{left:778.650000px;}
.x4a{left:787.650000px;}
.x48{left:810.180000px;}
.x5b{left:816.840000px;}
.x55{left:819.360000px;}
.x7a{left:837.180000px;}
@media print{
.v3{vertical-align:-80.640000pt;}
.v2{vertical-align:-77.440000pt;}
.v4{vertical-align:-73.600000pt;}
.v5{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls9{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls2{letter-spacing:663.818667pt;}
.ls8{letter-spacing:1091.445333pt;}
.ws0{word-spacing:-17.536000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws1{word-spacing:-12.330068pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-10.880000pt;}
._0{margin-left:-1.536000pt;}
._3{width:1.205333pt;}
._14{width:2.826667pt;}
._a{width:4.160000pt;}
._b{width:5.194667pt;}
._1a{width:6.976000pt;}
._1b{width:8.192000pt;}
._17{width:9.920000pt;}
._10{width:11.264000pt;}
._16{width:12.480000pt;}
._1c{width:13.845333pt;}
._19{width:14.976000pt;}
._1e{width:17.088000pt;}
._e{width:17.984000pt;}
._2{width:19.370667pt;}
._1d{width:20.266667pt;}
._f{width:21.333333pt;}
._c{width:22.976000pt;}
._13{width:24.128000pt;}
._18{width:25.461333pt;}
._9{width:26.624000pt;}
._15{width:27.776000pt;}
._6{width:29.440000pt;}
._7{width:31.050667pt;}
._21{width:32.640000pt;}
._22{width:33.664000pt;}
._d{width:34.880000pt;}
._4{width:36.544000pt;}
._5{width:37.504000pt;}
._28{width:38.528000pt;}
._29{width:39.744000pt;}
._26{width:41.024000pt;}
._1f{width:42.634667pt;}
._20{width:43.584000pt;}
._27{width:47.477333pt;}
._24{width:60.736000pt;}
._11{width:67.776000pt;}
._12{width:69.130667pt;}
._1{width:383.998507pt;}
._23{width:496.565333pt;}
._25{width:825.152000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:44.352763pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.880000pt;}
.y9{bottom:3.038862pt;}
.y119{bottom:3.666667pt;}
.y11c{bottom:3.680000pt;}
.y115{bottom:3.986667pt;}
.y46{bottom:4.000000pt;}
.y145{bottom:4.040000pt;}
.yf5{bottom:4.160000pt;}
.y3f{bottom:4.320000pt;}
.yfc{bottom:4.480000pt;}
.y100{bottom:4.520000pt;}
.y156{bottom:5.760000pt;}
.y168{bottom:5.920000pt;}
.y165{bottom:6.080000pt;}
.y15c{bottom:6.560000pt;}
.y14f{bottom:6.880000pt;}
.y18a{bottom:6.906667pt;}
.y4a{bottom:7.040000pt;}
.y151{bottom:7.520000pt;}
.y167{bottom:8.000000pt;}
.yb{bottom:8.160000pt;}
.y126{bottom:8.480000pt;}
.y162{bottom:8.960000pt;}
.y18f{bottom:10.240000pt;}
.y171{bottom:10.400000pt;}
.y191{bottom:11.040000pt;}
.y193{bottom:11.200000pt;}
.y192{bottom:12.000000pt;}
.y123{bottom:12.800000pt;}
.y117{bottom:12.946667pt;}
.y142{bottom:13.280000pt;}
.y14c{bottom:13.920000pt;}
.y10{bottom:14.080000pt;}
.y16f{bottom:15.840000pt;}
.y170{bottom:16.960000pt;}
.yd{bottom:17.760000pt;}
.y128{bottom:19.680000pt;}
.y129{bottom:20.000000pt;}
.y118{bottom:22.066667pt;}
.y12b{bottom:22.080000pt;}
.y15f{bottom:22.240000pt;}
.y45{bottom:22.400000pt;}
.y51{bottom:22.560000pt;}
.y143{bottom:23.840000pt;}
.yc{bottom:24.000000pt;}
.yf{bottom:24.480000pt;}
.y49{bottom:26.240000pt;}
.y7{bottom:31.200000pt;}
.y124{bottom:31.520000pt;}
.y14e{bottom:33.120000pt;}
.y50{bottom:39.200000pt;}
.y44{bottom:40.800000pt;}
.y48{bottom:45.440000pt;}
.yfa{bottom:45.480000pt;}
.y4f{bottom:57.626667pt;}
.y43{bottom:59.200000pt;}
.y1a3{bottom:61.760000pt;}
.ye2{bottom:63.040000pt;}
.yf9{bottom:63.880000pt;}
.y19f{bottom:69.440000pt;}
.y85{bottom:70.720000pt;}
.y3d{bottom:72.000000pt;}
.y140{bottom:73.120000pt;}
.yb3{bottom:73.600000pt;}
.y4e{bottom:76.026667pt;}
.y42{bottom:77.640000pt;}
.y154{bottom:79.040000pt;}
.ye1{bottom:81.440000pt;}
.yf8{bottom:82.280000pt;}
.y16c{bottom:86.560000pt;}
.y19e{bottom:87.840000pt;}
.y84{bottom:89.120000pt;}
.y3c{bottom:90.400000pt;}
.y18d{bottom:91.840000pt;}
.yb2{bottom:92.000000pt;}
.y4d{bottom:94.106667pt;}
.y153{bottom:97.120000pt;}
.ye0{bottom:99.840000pt;}
.y19d{bottom:106.240000pt;}
.y83{bottom:107.520000pt;}
.y3b{bottom:108.800000pt;}
.yb1{bottom:110.080000pt;}
.y1ae{bottom:110.400000pt;}
.y152{bottom:111.840000pt;}
.y4c{bottom:115.866667pt;}
.ydf{bottom:118.240000pt;}
.y19c{bottom:124.640000pt;}
.y82{bottom:125.920000pt;}
.y3a{bottom:127.200000pt;}
.yb0{bottom:128.480000pt;}
.y1ad{bottom:128.800000pt;}
.y4b{bottom:135.840000pt;}
.yde{bottom:136.640000pt;}
.y19b{bottom:143.040000pt;}
.y81{bottom:144.320000pt;}
.y11d{bottom:144.960000pt;}
.y39{bottom:145.600000pt;}
.y121{bottom:146.240000pt;}
.yaf{bottom:147.200000pt;}
.ydd{bottom:155.040000pt;}
.y19a{bottom:161.120000pt;}
.y80{bottom:162.720000pt;}
.y38{bottom:164.000000pt;}
.yae{bottom:165.280000pt;}
.y1ac{bottom:165.600000pt;}
.y188{bottom:169.440000pt;}
.ydc{bottom:173.440000pt;}
.y199{bottom:179.840000pt;}
.y7f{bottom:181.120000pt;}
.y37{bottom:182.400000pt;}
.yad{bottom:183.706667pt;}
.y11b{bottom:183.880000pt;}
.y1ab{bottom:184.026667pt;}
.y15a{bottom:189.466667pt;}
.ydb{bottom:191.866667pt;}
.y198{bottom:194.266667pt;}
.y7e{bottom:199.546667pt;}
.y36{bottom:200.826667pt;}
.yac{bottom:202.426667pt;}
.y11a{bottom:203.560000pt;}
.yda{bottom:210.266667pt;}
.y7d{bottom:217.946667pt;}
.y35{bottom:219.226667pt;}
.yab{bottom:220.506667pt;}
.y1aa{bottom:220.826667pt;}
.y14a{bottom:221.786667pt;}
.y116{bottom:223.240000pt;}
.yd9{bottom:228.346667pt;}
.y176{bottom:231.706667pt;}
.yf3{bottom:234.266667pt;}
.y7c{bottom:236.346667pt;}
.y34{bottom:237.626667pt;}
.yaa{bottom:238.906667pt;}
.y1a9{bottom:239.226667pt;}
.y149{bottom:240.186667pt;}
.y175{bottom:246.106667pt;}
.yd8{bottom:247.066667pt;}
.yf2{bottom:252.666667pt;}
.y148{bottom:254.586667pt;}
.y7b{bottom:254.746667pt;}
.y33{bottom:256.026667pt;}
.ya9{bottom:257.626667pt;}
.y114{bottom:260.680000pt;}
.y47{bottom:264.666667pt;}
.yd7{bottom:265.466667pt;}
.yf1{bottom:271.066667pt;}
.y7a{bottom:273.146667pt;}
.y32{bottom:274.426667pt;}
.ya8{bottom:275.706667pt;}
.y1a8{bottom:276.026667pt;}
.y13f{bottom:276.826667pt;}
.yd6{bottom:283.866667pt;}
.y113{bottom:285.626667pt;}
.yf0{bottom:289.466667pt;}
.y79{bottom:291.546667pt;}
.y31{bottom:292.826667pt;}
.ya7{bottom:294.106667pt;}
.y1a7{bottom:294.426667pt;}
.y13e{bottom:295.226667pt;}
.yd5{bottom:302.266667pt;}
.y112{bottom:303.226667pt;}
.yef{bottom:307.706667pt;}
.y78{bottom:309.946667pt;}
.y30{bottom:311.226667pt;}
.ya6{bottom:312.506667pt;}
.y1a6{bottom:312.826667pt;}
.y13d{bottom:313.946667pt;}
.yd4{bottom:320.666667pt;}
.y111{bottom:321.626667pt;}
.y41{bottom:323.226667pt;}
.yee{bottom:326.106667pt;}
.y77{bottom:328.346667pt;}
.y2f{bottom:329.626667pt;}
.ya5{bottom:331.226667pt;}
.y13c{bottom:332.346667pt;}
.yd3{bottom:339.066667pt;}
.y110{bottom:340.026667pt;}
.yed{bottom:344.506667pt;}
.y76{bottom:346.746667pt;}
.y2e{bottom:348.026667pt;}
.ya4{bottom:349.626667pt;}
.yd2{bottom:357.146667pt;}
.y10f{bottom:358.426667pt;}
.yec{bottom:362.906667pt;}
.y75{bottom:365.146667pt;}
.y2d{bottom:366.426667pt;}
.y146{bottom:367.866667pt;}
.ya3{bottom:368.026667pt;}
.yd1{bottom:375.546667pt;}
.y10e{bottom:376.826667pt;}
.yeb{bottom:381.306667pt;}
.y74{bottom:383.546667pt;}
.y2c{bottom:384.826667pt;}
.ya2{bottom:386.426667pt;}
.y144{bottom:387.546667pt;}
.yd0{bottom:394.306667pt;}
.y10d{bottom:395.266667pt;}
.yea{bottom:399.746667pt;}
.y73{bottom:401.986667pt;}
.y2b{bottom:403.266667pt;}
.ya1{bottom:404.866667pt;}
.y141{bottom:407.266667pt;}
.ycf{bottom:412.706667pt;}
.y10c{bottom:413.666667pt;}
.y40{bottom:415.906667pt;}
.ye9{bottom:418.146667pt;}
.y72{bottom:420.386667pt;}
.ya0{bottom:423.266667pt;}
.yce{bottom:431.106667pt;}
.y10b{bottom:432.066667pt;}
.ye8{bottom:436.546667pt;}
.y3e{bottom:436.706667pt;}
.y71{bottom:438.786667pt;}
.y9f{bottom:441.666667pt;}
.ycd{bottom:449.506667pt;}
.y10a{bottom:450.466667pt;}
.ye7{bottom:454.626667pt;}
.y70{bottom:457.186667pt;}
.y9e{bottom:460.066667pt;}
.y2a{bottom:461.186667pt;}
.y13b{bottom:465.986667pt;}
.ycc{bottom:467.906667pt;}
.y109{bottom:468.866667pt;}
.y166{bottom:469.346667pt;}
.ye6{bottom:473.026667pt;}
.y6f{bottom:475.586667pt;}
.y9d{bottom:478.466667pt;}
.y29{bottom:479.586667pt;}
.y13a{bottom:484.386667pt;}
.ycb{bottom:485.986667pt;}
.y108{bottom:487.266667pt;}
.ye5{bottom:487.746667pt;}
.y159{bottom:493.186667pt;}
.y6e{bottom:493.986667pt;}
.y9c{bottom:496.866667pt;}
.y28{bottom:497.986667pt;}
.y139{bottom:502.786667pt;}
.yca{bottom:504.386667pt;}
.y107{bottom:505.666667pt;}
.y6d{bottom:512.386667pt;}
.y9b{bottom:515.266667pt;}
.y27{bottom:516.066667pt;}
.y164{bottom:517.026667pt;}
.y138{bottom:521.186667pt;}
.yc9{bottom:523.106667pt;}
.y106{bottom:524.066667pt;}
.y187{bottom:527.906667pt;}
.y6c{bottom:530.786667pt;}
.y9a{bottom:533.666667pt;}
.y26{bottom:534.466667pt;}
.y137{bottom:539.586667pt;}
.yc8{bottom:541.506667pt;}
.y163{bottom:541.666667pt;}
.y105{bottom:542.146667pt;}
.y6b{bottom:549.186667pt;}
.y1b2{bottom:551.746667pt;}
.y99{bottom:552.066667pt;}
.y25{bottom:553.186667pt;}
.y104{bottom:556.866667pt;}
.y136{bottom:557.986667pt;}
.yc7{bottom:559.906667pt;}
.y174{bottom:564.066667pt;}
.y186{bottom:564.386667pt;}
.y197{bottom:565.026667pt;}
.y161{bottom:565.506667pt;}
.y6a{bottom:567.586667pt;}
.y1b1{bottom:570.146667pt;}
.y98{bottom:570.466667pt;}
.y24{bottom:571.266667pt;}
.y135{bottom:576.386667pt;}
.yc6{bottom:578.306667pt;}
.y173{bottom:582.786667pt;}
.y185{bottom:583.106667pt;}
.y69{bottom:585.986667pt;}
.y97{bottom:588.866667pt;}
.y23{bottom:589.666667pt;}
.y160{bottom:590.146667pt;}
.y134{bottom:594.786667pt;}
.yc5{bottom:596.706667pt;}
.y172{bottom:601.213333pt;}
.y184{bottom:601.533333pt;}
.y196{bottom:601.853333pt;}
.y68{bottom:604.413333pt;}
.y96{bottom:607.293333pt;}
.y22{bottom:608.413333pt;}
.y133{bottom:613.213333pt;}
.y15e{bottom:614.173333pt;}
.yc4{bottom:614.813333pt;}
.y16b{bottom:616.893333pt;}
.y1a2{bottom:617.693333pt;}
.y183{bottom:619.613333pt;}
.y67{bottom:622.813333pt;}
.y95{bottom:625.693333pt;}
.y21{bottom:626.813333pt;}
.y132{bottom:631.613333pt;}
.y147{bottom:632.733333pt;}
.yc3{bottom:633.213333pt;}
.y1a5{bottom:637.373333pt;}
.y182{bottom:638.333333pt;}
.y66{bottom:641.213333pt;}
.y94{bottom:644.093333pt;}
.y20{bottom:644.893333pt;}
.y14d{bottom:648.733333pt;}
.y16e{bottom:649.533333pt;}
.y131{bottom:650.013333pt;}
.yc2{bottom:651.933333pt;}
.y15d{bottom:652.253333pt;}
.y181{bottom:656.733333pt;}
.y1a4{bottom:657.053333pt;}
.y65{bottom:659.613333pt;}
.y93{bottom:662.493333pt;}
.y1f{bottom:663.293333pt;}
.y130{bottom:668.413333pt;}
.yc1{bottom:670.333333pt;}
.y180{bottom:675.133333pt;}
.y150{bottom:675.613333pt;}
.y15b{bottom:676.093333pt;}
.y64{bottom:678.013333pt;}
.y92{bottom:680.893333pt;}
.y16d{bottom:681.053333pt;}
.y1e{bottom:682.013333pt;}
.y12f{bottom:686.813333pt;}
.yc0{bottom:688.733333pt;}
.y17f{bottom:693.533333pt;}
.y1a1{bottom:695.293333pt;}
.y63{bottom:696.413333pt;}
.y158{bottom:698.493333pt;}
.y91{bottom:699.293333pt;}
.y1d{bottom:700.093333pt;}
.y12e{bottom:701.213333pt;}
.ybf{bottom:707.133333pt;}
.y17e{bottom:711.933333pt;}
.y62{bottom:714.813333pt;}
.y90{bottom:717.693333pt;}
.y1c{bottom:718.493333pt;}
.y16a{bottom:719.133333pt;}
.y157{bottom:721.533333pt;}
.ybe{bottom:725.373333pt;}
.y14b{bottom:726.813333pt;}
.y17d{bottom:730.333333pt;}
.y1a0{bottom:732.093333pt;}
.y61{bottom:733.213333pt;}
.y8f{bottom:736.093333pt;}
.y1b{bottom:737.213333pt;}
.y155{bottom:743.293333pt;}
.ybd{bottom:743.773333pt;}
.y17c{bottom:748.733333pt;}
.ye4{bottom:751.453333pt;}
.y60{bottom:751.613333pt;}
.y195{bottom:754.173333pt;}
.y8e{bottom:754.493333pt;}
.y1a{bottom:755.613333pt;}
.y103{bottom:761.693333pt;}
.ybc{bottom:762.173333pt;}
.y17b{bottom:767.133333pt;}
.y5f{bottom:770.013333pt;}
.ye3{bottom:770.173333pt;}
.y194{bottom:772.573333pt;}
.y8d{bottom:772.893333pt;}
.y19{bottom:773.693333pt;}
.y169{bottom:776.573333pt;}
.y102{bottom:779.773333pt;}
.ybb{bottom:780.573333pt;}
.yf7{bottom:785.373333pt;}
.y17a{bottom:785.533333pt;}
.y5e{bottom:788.413333pt;}
.y8c{bottom:791.293333pt;}
.y18{bottom:792.093333pt;}
.y101{bottom:798.493333pt;}
.yba{bottom:798.653333pt;}
.y179{bottom:803.933333pt;}
.yff{bottom:804.733333pt;}
.y5d{bottom:806.813333pt;}
.y8b{bottom:809.733333pt;}
.y17{bottom:810.853333pt;}
.y120{bottom:813.573333pt;}
.yb9{bottom:817.093333pt;}
.y178{bottom:822.373333pt;}
.yfe{bottom:824.293333pt;}
.y5c{bottom:825.253333pt;}
.y8a{bottom:828.133333pt;}
.y16{bottom:829.253333pt;}
.y12a{bottom:832.613333pt;}
.yb8{bottom:835.493333pt;}
.y177{bottom:840.453333pt;}
.y5b{bottom:843.653333pt;}
.yfd{bottom:843.813333pt;}
.y89{bottom:846.533333pt;}
.y15{bottom:847.333333pt;}
.yb7{bottom:854.213333pt;}
.y18c{bottom:856.453333pt;}
.y5a{bottom:862.053333pt;}
.yfb{bottom:863.173333pt;}
.y1b0{bottom:864.613333pt;}
.y88{bottom:864.933333pt;}
.y14{bottom:865.733333pt;}
.y127{bottom:870.053333pt;}
.yb6{bottom:872.293333pt;}
.y59{bottom:880.133333pt;}
.yf6{bottom:882.693333pt;}
.y1af{bottom:883.013333pt;}
.y87{bottom:883.333333pt;}
.y13{bottom:884.613333pt;}
.yb5{bottom:890.693333pt;}
.y58{bottom:899.013333pt;}
.y86{bottom:901.733333pt;}
.y125{bottom:905.093333pt;}
.y12{bottom:906.053333pt;}
.yb4{bottom:909.413333pt;}
.y190{bottom:911.173333pt;}
.yf4{bottom:919.493333pt;}
.y57{bottom:920.133333pt;}
.y11{bottom:927.493333pt;}
.y122{bottom:928.613333pt;}
.y18e{bottom:938.053333pt;}
.y56{bottom:938.533333pt;}
.y6{bottom:948.133333pt;}
.y55{bottom:956.933333pt;}
.y5{bottom:963.653333pt;}
.y18b{bottom:964.133333pt;}
.y12d{bottom:975.013333pt;}
.y11f{bottom:975.173333pt;}
.y54{bottom:975.333333pt;}
.y4{bottom:980.773333pt;}
.y8{bottom:986.545107pt;}
.y12c{bottom:993.413333pt;}
.y53{bottom:993.733333pt;}
.y3{bottom:1007.493333pt;}
.y11e{bottom:1011.973333pt;}
.y52{bottom:1012.133333pt;}
.y189{bottom:1012.613333pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.640000pt;}
.ya{bottom:1083.680000pt;}
.h7{height:14.170356pt;}
.h19{height:17.920000pt;}
.h22{height:18.386667pt;}
.h25{height:18.396000pt;}
.h24{height:18.400000pt;}
.h26{height:18.426667pt;}
.h2d{height:18.432000pt;}
.h1c{height:18.720000pt;}
.h1f{height:18.880000pt;}
.h20{height:18.912000pt;}
.h13{height:19.520000pt;}
.h35{height:20.960000pt;}
.h33{height:21.760000pt;}
.h32{height:21.920000pt;}
.h3a{height:22.400000pt;}
.h36{height:22.560000pt;}
.h38{height:22.592000pt;}
.h29{height:22.880000pt;}
.h39{height:23.360000pt;}
.h30{height:24.160000pt;}
.h43{height:24.640000pt;}
.h40{height:24.826667pt;}
.h31{height:25.440000pt;}
.h45{height:25.600000pt;}
.h44{height:26.400000pt;}
.h5{height:28.401875pt;}
.h9{height:28.800000pt;}
.h3b{height:29.120000pt;}
.hd{height:29.440000pt;}
.h3e{height:30.240000pt;}
.h3f{height:31.360000pt;}
.h2a{height:34.400000pt;}
.hb{height:35.680000pt;}
.h37{height:36.640000pt;}
.h23{height:36.786667pt;}
.h2b{height:36.793333pt;}
.h1d{height:36.800000pt;}
.h4{height:37.101250pt;}
.h2e{height:38.240000pt;}
.hc{height:40.103437pt;}
.h1b{height:44.687500pt;}
.h28{height:45.920000pt;}
.h8{height:46.258546pt;}
.h6{height:47.742188pt;}
.h3{height:48.062500pt;}
.h41{height:48.480000pt;}
.h18{height:52.834688pt;}
.h16{height:53.535000pt;}
.h3c{height:57.440000pt;}
.h15{height:57.760000pt;}
.h2c{height:57.952000pt;}
.h1a{height:60.288750pt;}
.h21{height:61.410000pt;}
.h11{height:62.812500pt;}
.ha{height:63.656250pt;}
.h10{height:64.500000pt;}
.he{height:65.531250pt;}
.h12{height:71.524375pt;}
.h2{height:72.093750pt;}
.hf{height:75.465000pt;}
.h46{height:76.160000pt;}
.h2f{height:76.640000pt;}
.h14{height:92.032000pt;}
.h1e{height:96.672000pt;}
.h3d{height:100.960000pt;}
.h42{height:106.240000pt;}
.h17{height:128.192000pt;}
.h27{height:160.960000pt;}
.h34{height:203.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:16.480000pt;}
.w35{width:46.560000pt;}
.w4a{width:48.800000pt;}
.wf{width:50.080000pt;}
.w3d{width:52.152000pt;}
.w8{width:54.880000pt;}
.w21{width:55.520000pt;}
.w12{width:57.952000pt;}
.w5{width:60.000000pt;}
.w44{width:61.120000pt;}
.w1e{width:65.600000pt;}
.w47{width:66.912000pt;}
.w32{width:67.200000pt;}
.w39{width:71.712000pt;}
.w3a{width:71.826667pt;}
.w10{width:76.800000pt;}
.w29{width:77.952000pt;}
.w28{width:78.080000pt;}
.w1d{width:81.632000pt;}
.w18{width:81.792000pt;}
.w14{width:82.592000pt;}
.w11{width:83.832000pt;}
.w2e{width:84.032000pt;}
.w41{width:86.240000pt;}
.w17{width:86.720000pt;}
.w13{width:87.360000pt;}
.w31{width:88.032000pt;}
.w25{width:89.312000pt;}
.w48{width:91.360000pt;}
.w2{width:91.784005pt;}
.wb{width:91.872000pt;}
.w24{width:95.360000pt;}
.w3b{width:96.338667pt;}
.wc{width:97.792000pt;}
.w26{width:101.152000pt;}
.w19{width:101.266667pt;}
.w2c{width:101.312000pt;}
.w15{width:101.906667pt;}
.w27{width:104.800000pt;}
.w1f{width:107.712000pt;}
.w20{width:109.120000pt;}
.wd{width:110.560000pt;}
.w42{width:112.640000pt;}
.w33{width:113.152000pt;}
.w2b{width:113.280000pt;}
.w3c{width:115.666667pt;}
.wa{width:126.880000pt;}
.we{width:130.912000pt;}
.w43{width:135.680000pt;}
.w34{width:136.826667pt;}
.w2d{width:142.106667pt;}
.w16{width:143.373333pt;}
.w22{width:144.506667pt;}
.w49{width:144.826667pt;}
.w46{width:149.946667pt;}
.w36{width:150.906667pt;}
.w40{width:152.986667pt;}
.w23{width:156.026667pt;}
.w2a{width:162.106667pt;}
.w3{width:171.840000pt;}
.w3e{width:174.426667pt;}
.w30{width:197.466667pt;}
.w1c{width:200.026667pt;}
.w38{width:226.586667pt;}
.w7{width:234.306667pt;}
.w6{width:372.226667pt;}
.w4{width:393.760000pt;}
.w45{width:534.013333pt;}
.w9{width:558.973333pt;}
.w1a{width:565.213333pt;}
.w3f{width:574.333333pt;}
.w37{width:586.173333pt;}
.w2f{width:606.853333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x83{left:1.600000pt;}
.x60{left:3.040000pt;}
.x82{left:4.634667pt;}
.x6d{left:6.240000pt;}
.x15{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:9.996069pt;}
.x1c{left:12.320000pt;}
.xa{left:13.440000pt;}
.x35{left:15.040000pt;}
.x38{left:16.960000pt;}
.x46{left:18.880000pt;}
.xb{left:20.320000pt;}
.x29{left:21.600000pt;}
.x37{left:23.034667pt;}
.x1e{left:24.960000pt;}
.x80{left:25.920000pt;}
.x50{left:26.880000pt;}
.x21{left:28.040000pt;}
.x2f{left:28.960000pt;}
.x64{left:29.920000pt;}
.x2a{left:30.880000pt;}
.x36{left:31.986667pt;}
.x4f{left:33.120000pt;}
.x24{left:34.120000pt;}
.x39{left:36.786667pt;}
.x26{left:38.120000pt;}
.x45{left:40.160000pt;}
.x22{left:41.480000pt;}
.x53{left:42.880000pt;}
.x13{left:44.000000pt;}
.x27{left:45.440000pt;}
.x28{left:47.400000pt;}
.x65{left:48.320000pt;}
.x25{left:51.400000pt;}
.x54{left:52.320000pt;}
.x47{left:53.920000pt;}
.x66{left:56.480000pt;}
.x3a{left:57.786667pt;}
.x3b{left:59.866667pt;}
.x1a{left:63.354667pt;}
.x6f{left:64.320000pt;}
.x2b{left:65.480000pt;}
.x62{left:66.400000pt;}
.x79{left:67.840000pt;}
.x14{left:68.992000pt;}
.x34{left:71.866667pt;}
.x67{left:73.480000pt;}
.x7d{left:74.874667pt;}
.x73{left:76.474667pt;}
.x4b{left:77.914667pt;}
.x56{left:80.954667pt;}
.x18{left:92.832000pt;}
.x61{left:98.714667pt;}
.x3f{left:99.994667pt;}
.x68{left:103.872000pt;}
.x72{left:109.792000pt;}
.x3c{left:112.832000pt;}
.x2d{left:118.432000pt;}
.x2{left:120.032000pt;}
.x7b{left:129.952000pt;}
.x1{left:132.032000pt;}
.x7c{left:136.674667pt;}
.xe{left:140.986667pt;}
.x23{left:142.906667pt;}
.x3{left:152.986667pt;}
.x6e{left:156.026667pt;}
.x12{left:158.106667pt;}
.x63{left:166.586667pt;}
.x44{left:168.346667pt;}
.x78{left:170.906667pt;}
.x3d{left:176.354667pt;}
.xd{left:178.906667pt;}
.x52{left:190.906667pt;}
.xf{left:192.506667pt;}
.x2e{left:202.266667pt;}
.x1b{left:219.706667pt;}
.x30{left:260.226667pt;}
.x74{left:262.786667pt;}
.x4c{left:268.866667pt;}
.x57{left:274.946667pt;}
.x19{left:279.394667pt;}
.x10{left:291.266667pt;}
.x11{left:302.946667pt;}
.x1d{left:311.906667pt;}
.x40{left:312.866667pt;}
.x5c{left:317.506667pt;}
.x69{left:330.466667pt;}
.x31{left:347.586667pt;}
.x75{left:350.466667pt;}
.x7e{left:357.986667pt;}
.x4d{left:364.866667pt;}
.x71{left:367.906667pt;}
.x49{left:372.706667pt;}
.x58{left:388.866667pt;}
.x41{left:394.973333pt;}
.x5{left:396.893333pt;}
.x6a{left:403.626667pt;}
.x5d{left:406.973333pt;}
.x1f{left:410.013333pt;}
.x7f{left:426.333333pt;}
.x32{left:430.186667pt;}
.x76{left:434.493333pt;}
.x4e{left:454.973333pt;}
.x42{left:460.893333pt;}
.x6{left:465.820051pt;}
.x5e{left:475.613333pt;}
.x6b{left:476.746667pt;}
.x59{left:478.973333pt;}
.x81{left:519.133333pt;}
.x20{left:520.893333pt;}
.x33{left:532.106667pt;}
.x77{left:548.453333pt;}
.x51{left:556.773333pt;}
.x4{left:559.973333pt;}
.x43{left:568.933333pt;}
.x6c{left:574.373333pt;}
.x8{left:579.713384pt;}
.x5a{left:580.933333pt;}
.x5f{left:590.053333pt;}
.xc{left:606.880000pt;}
.x16{left:618.400000pt;}
.x17{left:665.893333pt;}
.x3e{left:678.053333pt;}
.x2c{left:690.053333pt;}
.x70{left:692.133333pt;}
.x4a{left:700.133333pt;}
.x48{left:720.160000pt;}
.x5b{left:726.080000pt;}
.x55{left:728.320000pt;}
.x7a{left:744.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; }
  