
    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_ed58a00d6920ddca79b700d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a872b7b23d53aa8fc32d5682.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7bef323af3065a9aaae9d43.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_e13f91f3d1e5884d1b64c525.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_5235cfdc6927017d8f238e76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cee019650699dae474dc8adc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3800556bcf2ac91430f58f48.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ea224f8ca17c9cbbf70611e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_111d4db38fc941e018ec02b8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c125a6eb5d4705ee215a1c1a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_a092a79a0f99ca757324eb86.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c3cc71c19834d5a1c3fedc56.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ece0a7305648613ba6fcd1aa.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_39eb84677dfe860a2cb3deff.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:35.280000px;}
.ls10{letter-spacing:-2.520000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls9{letter-spacing:-0.127200px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.087600px;}
.ls14{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.135600px;}
.ls13{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls18{letter-spacing:16.506720px;}
.ls17{letter-spacing:46.026720px;}
.ls11{letter-spacing:294.762000px;}
.ls15{letter-spacing:1179.120000px;}
.ls16{letter-spacing:1224.480000px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws16{word-spacing:-16.272000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.075600px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.wse{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.wsc{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:73.344000px;}
.ws11{word-spacing:268.734000px;}
.ws10{word-spacing:357.048000px;}
.ws15{word-spacing:414.150000px;}
.wsf{word-spacing:428.274000px;}
._1d{margin-left:-8.307360px;}
._12{margin-left:-6.454080px;}
._3{margin-left:-5.383440px;}
._11{margin-left:-4.123440px;}
._2{margin-left:-3.023760px;}
._0{margin-left:-1.104000px;}
._1{width:1.188000px;}
._e{width:2.237760px;}
._a{width:3.286800px;}
._6{width:4.900320px;}
._5{width:6.035760px;}
._d{width:7.058880px;}
._9{width:8.187120px;}
._8{width:9.561600px;}
._4{width:11.480400px;}
._7{width:13.021200px;}
._14{width:16.560720px;}
._1c{width:17.588160px;}
._20{width:19.303200px;}
._1e{width:20.975040px;}
._1f{width:21.994560px;}
._10{width:23.306400px;}
._f{width:24.329520px;}
._c{width:29.653200px;}
._b{width:32.953680px;}
._15{width:130.854000px;}
._13{width:382.974000px;}
._17{width:438.498000px;}
._16{width:450.234000px;}
._1a{width:1162.380000px;}
._18{width:1188.156000px;}
._19{width:1191.180000px;}
._1b{width:1338.960000px;}
.fc8{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:3.240000px;}
.y157{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y114{bottom:3.780000px;}
.y45{bottom:3.960000px;}
.y118{bottom:5.760000px;}
.y139{bottom:6.660000px;}
.y135{bottom:7.380000px;}
.yad{bottom:7.665000px;}
.yeb{bottom:8.100000px;}
.ye{bottom:9.540000px;}
.y43{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.680000px;}
.yd2{bottom:14.430000px;}
.yd3{bottom:15.585000px;}
.y4{bottom:17.280000px;}
.y75{bottom:17.715000px;}
.y2{bottom:20.160000px;}
.yba{bottom:20.340000px;}
.y3f{bottom:20.520000px;}
.y148{bottom:20.550000px;}
.y13b{bottom:20.880000px;}
.y113{bottom:21.060000px;}
.yfa{bottom:21.240000px;}
.yf8{bottom:21.630000px;}
.y44{bottom:22.320000px;}
.y130{bottom:23.580000px;}
.y18{bottom:23.985000px;}
.y42{bottom:25.380000px;}
.y117{bottom:25.740000px;}
.y137{bottom:26.640000px;}
.y134{bottom:27.360000px;}
.yb{bottom:30.060000px;}
.y3e{bottom:37.620000px;}
.y112{bottom:38.340000px;}
.y17{bottom:39.825000px;}
.yce{bottom:40.500000px;}
.y12f{bottom:43.560000px;}
.yab{bottom:45.030000px;}
.yf6{bottom:45.075000px;}
.y116{bottom:45.720000px;}
.ya{bottom:46.440000px;}
.y133{bottom:47.340000px;}
.yd4{bottom:52.485000px;}
.y16{bottom:52.965000px;}
.y3d{bottom:54.900000px;}
.y5{bottom:58.680000px;}
.ya5{bottom:62.565000px;}
.yed{bottom:62.640000px;}
.y15{bottom:62.685000px;}
.yac{bottom:63.030000px;}
.y12e{bottom:63.585000px;}
.y132{bottom:67.365000px;}
.y3c{bottom:72.180000px;}
.y9{bottom:73.260000px;}
.y14{bottom:77.445000px;}
.y2b{bottom:81.180000px;}
.y1{bottom:81.216000px;}
.ycf{bottom:82.290000px;}
.yf7{bottom:88.455000px;}
.y3b{bottom:89.460000px;}
.y13{bottom:92.745000px;}
.y8{bottom:92.910000px;}
.yee{bottom:95.295000px;}
.y2a{bottom:96.480000px;}
.ya6{bottom:106.710000px;}
.y3a{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y12{bottom:111.645000px;}
.y29{bottom:114.120000px;}
.y39{bottom:124.020000px;}
.y162{bottom:124.956000px;}
.y12c{bottom:126.396000px;}
.yef{bottom:127.950000px;}
.ya0{bottom:128.736000px;}
.yd0{bottom:130.785000px;}
.y28{bottom:131.400000px;}
.y56{bottom:135.576000px;}
.ye7{bottom:137.376000px;}
.y11{bottom:137.385000px;}
.y38{bottom:141.120000px;}
.y161{bottom:142.236000px;}
.y9f{bottom:143.496000px;}
.y12b{bottom:143.676000px;}
.ya4{bottom:147.450000px;}
.y27{bottom:148.710000px;}
.ya7{bottom:150.840000px;}
.y55{bottom:152.850000px;}
.ye6{bottom:155.370000px;}
.y37{bottom:158.430000px;}
.y160{bottom:159.510000px;}
.yf0{bottom:160.590000px;}
.y12a{bottom:160.950000px;}
.y9e{bottom:161.490000px;}
.y10{bottom:161.865000px;}
.y26{bottom:166.350000px;}
.y110{bottom:169.230000px;}
.y54{bottom:170.130000px;}
.ye5{bottom:173.370000px;}
.y36{bottom:175.710000px;}
.y15f{bottom:176.790000px;}
.y129{bottom:178.050000px;}
.yd1{bottom:179.250000px;}
.y9d{bottom:179.490000px;}
.y73{bottom:180.285000px;}
.y25{bottom:183.810000px;}
.y74{bottom:185.040000px;}
.y10f{bottom:186.510000px;}
.y53{bottom:187.410000px;}
.ye4{bottom:191.370000px;}
.y15e{bottom:191.550000px;}
.ya3{bottom:191.595000px;}
.ye9{bottom:191.670000px;}
.y35{bottom:192.990000px;}
.yf1{bottom:193.245000px;}
.ya8{bottom:194.970000px;}
.y128{bottom:195.330000px;}
.y9c{bottom:197.490000px;}
.y115{bottom:198.030000px;}
.y24{bottom:201.270000px;}
.y10e{bottom:203.790000px;}
.y52{bottom:204.690000px;}
.ye3{bottom:209.370000px;}
.y15d{bottom:209.550000px;}
.y34{bottom:210.270000px;}
.y127{bottom:212.610000px;}
.y9b{bottom:215.490000px;}
.y23{bottom:218.550000px;}
.y10d{bottom:220.890000px;}
.y51{bottom:221.790000px;}
.y136{bottom:222.690000px;}
.yf2{bottom:225.870000px;}
.ye2{bottom:227.370000px;}
.y33{bottom:227.550000px;}
.y126{bottom:229.890000px;}
.y9a{bottom:233.490000px;}
.y22{bottom:236.010000px;}
.y10c{bottom:238.170000px;}
.y50{bottom:239.070000px;}
.ya9{bottom:239.115000px;}
.y32{bottom:244.650000px;}
.ye1{bottom:245.370000px;}
.y15c{bottom:245.550000px;}
.y125{bottom:247.170000px;}
.y99{bottom:251.490000px;}
.y21{bottom:253.470000px;}
.y10b{bottom:255.450000px;}
.y4f{bottom:256.350000px;}
.yf3{bottom:258.510000px;}
.y31{bottom:261.930000px;}
.ye0{bottom:263.370000px;}
.y15b{bottom:263.550000px;}
.y124{bottom:264.270000px;}
.y98{bottom:269.490000px;}
.y20{bottom:270.750000px;}
.y4e{bottom:273.630000px;}
.y123{bottom:278.310000px;}
.y30{bottom:279.210000px;}
.ya2{bottom:279.870000px;}
.ydf{bottom:281.370000px;}
.y15a{bottom:281.550000px;}
.yaa{bottom:283.245000px;}
.y97{bottom:287.490000px;}
.y1f{bottom:288.210000px;}
.y4d{bottom:290.910000px;}
.yf4{bottom:291.165000px;}
.ycc{bottom:294.510000px;}
.y2f{bottom:296.490000px;}
.y159{bottom:299.550000px;}
.yde{bottom:302.610000px;}
.y96{bottom:305.490000px;}
.y1e{bottom:305.670000px;}
.y187{bottom:308.010000px;}
.y4c{bottom:308.190000px;}
.ycb{bottom:311.790000px;}
.y2e{bottom:313.770000px;}
.y158{bottom:317.550000px;}
.ydd{bottom:319.890000px;}
.y95{bottom:323.490000px;}
.yf5{bottom:323.820000px;}
.y4b{bottom:325.290000px;}
.yca{bottom:328.890000px;}
.y2d{bottom:331.050000px;}
.y1d{bottom:333.210000px;}
.y156{bottom:335.550000px;}
.ydc{bottom:337.215000px;}
.y94{bottom:341.535000px;}
.y4a{bottom:342.615000px;}
.yc9{bottom:343.695000px;}
.y2c{bottom:348.150000px;}
.y1c{bottom:350.850000px;}
.y155{bottom:353.595000px;}
.ydb{bottom:354.495000px;}
.y93{bottom:359.535000px;}
.y186{bottom:359.715000px;}
.y49{bottom:359.895000px;}
.yc8{bottom:361.695000px;}
.y154{bottom:371.595000px;}
.yda{bottom:371.775000px;}
.y185{bottom:376.995000px;}
.y48{bottom:377.175000px;}
.y92{bottom:377.535000px;}
.yc7{bottom:379.695000px;}
.y71{bottom:388.335000px;}
.yd9{bottom:389.055000px;}
.y153{bottom:389.595000px;}
.y184{bottom:394.275000px;}
.y47{bottom:394.455000px;}
.yc6{bottom:397.695000px;}
.y91{bottom:398.775000px;}
.y70{bottom:405.435000px;}
.yd8{bottom:406.155000px;}
.y152{bottom:407.595000px;}
.y183{bottom:411.555000px;}
.y46{bottom:411.735000px;}
.yc5{bottom:415.695000px;}
.y90{bottom:416.055000px;}
.yd7{bottom:420.195000px;}
.yec{bottom:422.640000px;}
.y6f{bottom:422.715000px;}
.y41{bottom:425.595000px;}
.y151{bottom:428.835000px;}
.y8f{bottom:433.335000px;}
.yc4{bottom:433.695000px;}
.y6e{bottom:439.995000px;}
.y150{bottom:446.115000px;}
.y8e{bottom:450.435000px;}
.yc3{bottom:454.935000px;}
.y6d{bottom:457.275000px;}
.y1b{bottom:462.315000px;}
.y14f{bottom:463.215000px;}
.y8d{bottom:467.715000px;}
.yc2{bottom:472.215000px;}
.y6c{bottom:474.555000px;}
.y14e{bottom:480.495000px;}
.y8c{bottom:484.995000px;}
.y6b{bottom:488.415000px;}
.yc1{bottom:489.495000px;}
.y72{bottom:489.780000px;}
.y14d{bottom:497.775000px;}
.y8b{bottom:499.755000px;}
.y10a{bottom:502.275000px;}
.yc0{bottom:506.775000px;}
.y14c{bottom:515.055000px;}
.y122{bottom:515.595000px;}
.y8a{bottom:517.755000px;}
.y109{bottom:519.555000px;}
.y111{bottom:521.715000px;}
.ybf{bottom:524.055000px;}
.y138{bottom:524.955000px;}
.y13a{bottom:526.935000px;}
.y14b{bottom:532.335000px;}
.y121{bottom:532.875000px;}
.y89{bottom:535.755000px;}
.y108{bottom:536.835000px;}
.ybe{bottom:538.815000px;}
.y14a{bottom:549.435000px;}
.y120{bottom:550.155000px;}
.y88{bottom:553.755000px;}
.y107{bottom:553.935000px;}
.ybd{bottom:556.815000px;}
.y149{bottom:566.715000px;}
.y11f{bottom:567.435000px;}
.y106{bottom:571.215000px;}
.y87{bottom:571.755000px;}
.ybc{bottom:574.815000px;}
.y11e{bottom:581.475000px;}
.y182{bottom:583.995000px;}
.y105{bottom:585.255000px;}
.y86{bottom:589.755000px;}
.ybb{bottom:592.815000px;}
.y147{bottom:599.475000px;}
.y181{bottom:601.275000px;}
.y85{bottom:607.785000px;}
.yb9{bottom:610.845000px;}
.y180{bottom:618.585000px;}
.y84{bottom:625.785000px;}
.y146{bottom:634.785000px;}
.y17f{bottom:635.865000px;}
.y83{bottom:643.785000px;}
.y145{bottom:652.785000px;}
.y17e{bottom:652.965000px;}
.y82{bottom:661.785000px;}
.yb8{bottom:663.225000px;}
.y17d{bottom:670.245000px;}
.y144{bottom:670.785000px;}
.y81{bottom:679.785000px;}
.yb7{bottom:684.465000px;}
.y17c{bottom:687.525000px;}
.y80{bottom:697.785000px;}
.yb6{bottom:701.745000px;}
.y17b{bottom:704.805000px;}
.y143{bottom:706.065000px;}
.y7f{bottom:715.785000px;}
.yb5{bottom:719.025000px;}
.y17a{bottom:722.085000px;}
.yb4{bottom:736.305000px;}
.y7e{bottom:737.025000px;}
.y179{bottom:739.365000px;}
.y142{bottom:741.345000px;}
.yb3{bottom:753.585000px;}
.y7d{bottom:754.305000px;}
.y178{bottom:756.465000px;}
.yd6{bottom:769.965000px;}
.yb2{bottom:770.685000px;}
.y7c{bottom:771.585000px;}
.y177{bottom:773.745000px;}
.y141{bottom:776.625000px;}
.yd5{bottom:784.005000px;}
.ye8{bottom:786.420000px;}
.yb1{bottom:787.965000px;}
.y7b{bottom:788.685000px;}
.y176{bottom:791.025000px;}
.yb0{bottom:805.245000px;}
.y7a{bottom:805.965000px;}
.y175{bottom:808.305000px;}
.y12d{bottom:811.185000px;}
.y140{bottom:811.725000px;}
.y131{bottom:812.985000px;}
.yaf{bottom:822.525000px;}
.y79{bottom:823.245000px;}
.y19{bottom:824.505000px;}
.y174{bottom:825.585000px;}
.y104{bottom:829.185000px;}
.y6a{bottom:836.025000px;}
.yae{bottom:836.565000px;}
.ycd{bottom:837.720000px;}
.y78{bottom:840.525000px;}
.y173{bottom:842.685000px;}
.y11d{bottom:845.745000px;}
.y103{bottom:846.465000px;}
.y13f{bottom:847.005000px;}
.y69{bottom:853.305000px;}
.yf{bottom:854.025000px;}
.y77{bottom:857.805000px;}
.y172{bottom:859.965000px;}
.y11c{bottom:862.845000px;}
.y102{bottom:863.745000px;}
.y68{bottom:870.630000px;}
.y76{bottom:871.890000px;}
.ya1{bottom:874.260000px;}
.y171{bottom:877.290000px;}
.y100{bottom:878.550000px;}
.y11b{bottom:880.170000px;}
.y13e{bottom:882.330000px;}
.y67{bottom:887.730000px;}
.y170{bottom:894.570000px;}
.y101{bottom:896.550000px;}
.y11a{bottom:897.450000px;}
.y66{bottom:905.010000px;}
.y16f{bottom:909.330000px;}
.y119{bottom:911.490000px;}
.yfe{bottom:914.550000px;}
.y13d{bottom:917.610000px;}
.y65{bottom:922.290000px;}
.y16e{bottom:927.330000px;}
.yff{bottom:932.550000px;}
.y64{bottom:939.570000px;}
.y16d{bottom:945.330000px;}
.yfc{bottom:950.550000px;}
.y13c{bottom:952.890000px;}
.y63{bottom:956.850000px;}
.y16c{bottom:963.330000px;}
.yfd{bottom:968.550000px;}
.y62{bottom:974.130000px;}
.y16b{bottom:981.330000px;}
.yf9{bottom:986.550000px;}
.y61{bottom:991.230000px;}
.yea{bottom:998.100000px;}
.y16a{bottom:999.330000px;}
.yfb{bottom:1004.550000px;}
.y60{bottom:1008.510000px;}
.y169{bottom:1017.330000px;}
.y5f{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.y168{bottom:1035.330000px;}
.y5e{bottom:1043.070000px;}
.y167{bottom:1053.330000px;}
.y6{bottom:1056.390000px;}
.y5d{bottom:1060.350000px;}
.y166{bottom:1071.330000px;}
.y5c{bottom:1077.630000px;}
.y165{bottom:1089.330000px;}
.y5b{bottom:1094.730000px;}
.y164{bottom:1107.330000px;}
.y5a{bottom:1112.010000px;}
.y163{bottom:1125.330000px;}
.y59{bottom:1129.290000px;}
.y58{bottom:1146.600000px;}
.y57{bottom:1163.880000px;}
.h27{height:17.100000px;}
.h26{height:17.136000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.hb{height:24.840000px;}
.h2a{height:25.380000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.940000px;}
.h33{height:34.380000px;}
.h34{height:34.560000px;}
.h35{height:34.596000px;}
.h2c{height:35.280000px;}
.h8{height:36.180000px;}
.h1c{height:36.720000px;}
.h32{height:37.980000px;}
.h19{height:38.818125px;}
.h31{height:40.680000px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h36{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h21{height:48.027656px;}
.h1d{height:48.088125px;}
.h25{height:51.660000px;}
.h2d{height:52.920000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h24{height:59.582250px;}
.h2e{height:59.760000px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h30{height:81.396000px;}
.h2f{height:83.196000px;}
.h23{height:88.989961px;}
.h7{height:121.536000px;}
.hc{height:176.970000px;}
.h28{height:271.080000px;}
.h22{height:303.660000px;}
.h1e{height:343.080000px;}
.h2b{height:344.160000px;}
.h14{height:362.190000px;}
.h29{height:391.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.w14{width:163.440000px;}
.w21{width:179.310000px;}
.w20{width:179.490000px;}
.w24{width:181.650000px;}
.w16{width:185.970000px;}
.w18{width:186.150000px;}
.w22{width:206.130000px;}
.w8{width:223.275000px;}
.w25{width:245.550000px;}
.wd{width:248.295000px;}
.we{width:248.430000px;}
.w1d{width:260.310000px;}
.w1f{width:288.255000px;}
.w1b{width:290.910000px;}
.w1c{width:295.455000px;}
.w1e{width:299.910000px;}
.w23{width:317.955000px;}
.wb{width:372.855000px;}
.wc{width:373.035000px;}
.w13{width:398.340000px;}
.wa{width:496.080000px;}
.wf{width:497.445000px;}
.w9{width:524.055000px;}
.w11{width:556.920000px;}
.w17{width:559.725000px;}
.w10{width:579.420000px;}
.w6{width:595.365000px;}
.w19{width:596.985000px;}
.w1a{width:597.885000px;}
.w15{width:609.660000px;}
.w2{width:673.530000px;}
.w12{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x6b{left:10.794000px;}
.x14{left:12.600000px;}
.x81{left:14.760000px;}
.x6e{left:16.020000px;}
.x71{left:17.670000px;}
.x69{left:19.434000px;}
.x75{left:23.754000px;}
.x42{left:26.070000px;}
.x50{left:27.075000px;}
.x80{left:28.836000px;}
.x7d{left:29.916000px;}
.x5c{left:32.256000px;}
.x6a{left:33.294000px;}
.x7f{left:34.410000px;}
.x7c{left:36.030000px;}
.x7b{left:38.016000px;}
.x7e{left:39.816000px;}
.x40{left:41.760000px;}
.xc{left:43.596000px;}
.x51{left:45.435000px;}
.x3f{left:48.600000px;}
.x6f{left:50.040000px;}
.x88{left:51.156000px;}
.x78{left:52.785000px;}
.x84{left:53.820000px;}
.x4e{left:59.910000px;}
.x4a{left:61.596000px;}
.x65{left:62.676000px;}
.x2e{left:64.296000px;}
.x64{left:65.925000px;}
.x86{left:67.500000px;}
.x62{left:68.805000px;}
.x5b{left:69.990000px;}
.x1{left:72.360000px;}
.x66{left:73.650000px;}
.x61{left:76.365000px;}
.x5f{left:78.510000px;}
.x87{left:79.590000px;}
.x4{left:80.999987px;}
.x63{left:83.010000px;}
.x32{left:84.990000px;}
.x8c{left:86.610000px;}
.x39{left:91.620000px;}
.x3b{left:93.600000px;}
.x4b{left:94.710000px;}
.x4f{left:95.940000px;}
.x5{left:98.130000px;}
.x3a{left:99.360000px;}
.x8b{left:100.830000px;}
.x73{left:103.500000px;}
.xd{left:104.790000px;}
.x30{left:107.100000px;}
.x38{left:109.110000px;}
.x35{left:110.700000px;}
.x36{left:112.680000px;}
.x33{left:116.100000px;}
.x41{left:117.540000px;}
.x48{left:119.550000px;}
.x3c{left:123.045000px;}
.x34{left:124.050000px;}
.x8d{left:126.210000px;}
.xf{left:128.370000px;}
.x2b{left:130.530000px;}
.x10{left:132.870000px;}
.x82{left:134.670000px;}
.x1f{left:136.830000px;}
.x27{left:138.990000px;}
.x2a{left:140.070000px;}
.x24{left:142.230000px;}
.x74{left:144.756000px;}
.x19{left:147.240000px;}
.x49{left:148.890000px;}
.x47{left:150.150000px;}
.x25{left:151.410000px;}
.x1d{left:152.670000px;}
.x4c{left:154.470000px;}
.x26{left:155.730000px;}
.x11{left:157.710000px;}
.x8a{left:162.210000px;}
.x20{left:163.830000px;}
.x21{left:167.070000px;}
.x22{left:169.230000px;}
.x2c{left:170.490000px;}
.x23{left:172.650000px;}
.x28{left:176.430000px;}
.x58{left:178.050000px;}
.xe{left:184.170000px;}
.x29{left:186.330000px;}
.x17{left:197.820000px;}
.x1a{left:211.575000px;}
.x12{left:215.175000px;}
.x45{left:221.249987px;}
.x6{left:224.850000px;}
.x37{left:233.355000px;}
.x59{left:237.885000px;}
.x89{left:239.429987px;}
.x57{left:241.815000px;}
.x3d{left:246.855000px;}
.x5e{left:249.915000px;}
.x77{left:253.470000px;}
.x43{left:258.585000px;}
.x5d{left:260.130000px;}
.x16{left:269.669987px;}
.x46{left:287.174987px;}
.x9{left:288.435000px;}
.x4d{left:290.774987px;}
.x56{left:293.474987px;}
.x13{left:296.175000px;}
.x55{left:299.774987px;}
.x18{left:303.120000px;}
.x5a{left:309.780000px;}
.x53{left:315.254987px;}
.x72{left:316.695000px;}
.x2d{left:317.954987px;}
.x2f{left:322.275000px;}
.x1c{left:326.054987px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x83{left:391.935000px;}
.x79{left:433.695000px;}
.x68{left:436.754987px;}
.x6c{left:443.234987px;}
.x67{left:444.674987px;}
.x1e{left:446.835000px;}
.xa{left:455.700000px;}
.x76{left:458.895000px;}
.x70{left:460.695000px;}
.x3e{left:497.880000px;}
.x31{left:571.425000px;}
.x85{left:574.305000px;}
.x6d{left:576.104987px;}
.x7a{left:613.725000px;}
.x60{left:633.705000px;}
.x52{left:646.844987px;}
.x15{left:695.129987px;}
.x44{left:725.549987px;}
.x1b{left:736.889987px;}
.x3{left:745.890000px;}
.x54{left:752.549987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:31.360000pt;}
.ls10{letter-spacing:-2.240000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.077867pt;}
.ls14{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.120533pt;}
.ls13{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls18{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls11{letter-spacing:262.010667pt;}
.ls15{letter-spacing:1048.106667pt;}
.ls16{letter-spacing:1088.426667pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws16{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.400533pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:65.194667pt;}
.ws11{word-spacing:238.874667pt;}
.ws10{word-spacing:317.376000pt;}
.ws15{word-spacing:368.133333pt;}
.wsf{word-spacing:380.688000pt;}
._1d{margin-left:-7.384320pt;}
._12{margin-left:-5.736960pt;}
._3{margin-left:-4.785280pt;}
._11{margin-left:-3.665280pt;}
._2{margin-left:-2.687787pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.056000pt;}
._e{width:1.989120pt;}
._a{width:2.921600pt;}
._6{width:4.355840pt;}
._5{width:5.365120pt;}
._d{width:6.274560pt;}
._9{width:7.277440pt;}
._8{width:8.499200pt;}
._4{width:10.204800pt;}
._7{width:11.574400pt;}
._14{width:14.720640pt;}
._1c{width:15.633920pt;}
._20{width:17.158400pt;}
._1e{width:18.644480pt;}
._1f{width:19.550720pt;}
._10{width:20.716800pt;}
._f{width:21.626240pt;}
._c{width:26.358400pt;}
._b{width:29.292160pt;}
._15{width:116.314667pt;}
._13{width:340.421333pt;}
._17{width:389.776000pt;}
._16{width:400.208000pt;}
._1a{width:1033.226667pt;}
._18{width:1056.138667pt;}
._19{width:1058.826667pt;}
._1b{width:1190.186667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.880000pt;}
.y157{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y114{bottom:3.360000pt;}
.y45{bottom:3.520000pt;}
.y118{bottom:5.120000pt;}
.y139{bottom:5.920000pt;}
.y135{bottom:6.560000pt;}
.yad{bottom:6.813333pt;}
.yeb{bottom:7.200000pt;}
.ye{bottom:8.480000pt;}
.y43{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.160000pt;}
.yd2{bottom:12.826667pt;}
.yd3{bottom:13.853333pt;}
.y4{bottom:15.360000pt;}
.y75{bottom:15.746667pt;}
.y2{bottom:17.920000pt;}
.yba{bottom:18.080000pt;}
.y3f{bottom:18.240000pt;}
.y148{bottom:18.266667pt;}
.y13b{bottom:18.560000pt;}
.y113{bottom:18.720000pt;}
.yfa{bottom:18.880000pt;}
.yf8{bottom:19.226667pt;}
.y44{bottom:19.840000pt;}
.y130{bottom:20.960000pt;}
.y18{bottom:21.320000pt;}
.y42{bottom:22.560000pt;}
.y117{bottom:22.880000pt;}
.y137{bottom:23.680000pt;}
.y134{bottom:24.320000pt;}
.yb{bottom:26.720000pt;}
.y3e{bottom:33.440000pt;}
.y112{bottom:34.080000pt;}
.y17{bottom:35.400000pt;}
.yce{bottom:36.000000pt;}
.y12f{bottom:38.720000pt;}
.yab{bottom:40.026667pt;}
.yf6{bottom:40.066667pt;}
.y116{bottom:40.640000pt;}
.ya{bottom:41.280000pt;}
.y133{bottom:42.080000pt;}
.yd4{bottom:46.653333pt;}
.y16{bottom:47.080000pt;}
.y3d{bottom:48.800000pt;}
.y5{bottom:52.160000pt;}
.ya5{bottom:55.613333pt;}
.yed{bottom:55.680000pt;}
.y15{bottom:55.720000pt;}
.yac{bottom:56.026667pt;}
.y12e{bottom:56.520000pt;}
.y132{bottom:59.880000pt;}
.y3c{bottom:64.160000pt;}
.y9{bottom:65.120000pt;}
.y14{bottom:68.840000pt;}
.y2b{bottom:72.160000pt;}
.y1{bottom:72.192000pt;}
.ycf{bottom:73.146667pt;}
.yf7{bottom:78.626667pt;}
.y3b{bottom:79.520000pt;}
.y13{bottom:82.440000pt;}
.y8{bottom:82.586667pt;}
.yee{bottom:84.706667pt;}
.y2a{bottom:85.760000pt;}
.ya6{bottom:94.853333pt;}
.y3a{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y12{bottom:99.240000pt;}
.y29{bottom:101.440000pt;}
.y39{bottom:110.240000pt;}
.y162{bottom:111.072000pt;}
.y12c{bottom:112.352000pt;}
.yef{bottom:113.733333pt;}
.ya0{bottom:114.432000pt;}
.yd0{bottom:116.253333pt;}
.y28{bottom:116.800000pt;}
.y56{bottom:120.512000pt;}
.ye7{bottom:122.112000pt;}
.y11{bottom:122.120000pt;}
.y38{bottom:125.440000pt;}
.y161{bottom:126.432000pt;}
.y9f{bottom:127.552000pt;}
.y12b{bottom:127.712000pt;}
.ya4{bottom:131.066667pt;}
.y27{bottom:132.186667pt;}
.ya7{bottom:134.080000pt;}
.y55{bottom:135.866667pt;}
.ye6{bottom:138.106667pt;}
.y37{bottom:140.826667pt;}
.y160{bottom:141.786667pt;}
.yf0{bottom:142.746667pt;}
.y12a{bottom:143.066667pt;}
.y9e{bottom:143.546667pt;}
.y10{bottom:143.880000pt;}
.y26{bottom:147.866667pt;}
.y110{bottom:150.426667pt;}
.y54{bottom:151.226667pt;}
.ye5{bottom:154.106667pt;}
.y36{bottom:156.186667pt;}
.y15f{bottom:157.146667pt;}
.y129{bottom:158.266667pt;}
.yd1{bottom:159.333333pt;}
.y9d{bottom:159.546667pt;}
.y73{bottom:160.253333pt;}
.y25{bottom:163.386667pt;}
.y74{bottom:164.480000pt;}
.y10f{bottom:165.786667pt;}
.y53{bottom:166.586667pt;}
.ye4{bottom:170.106667pt;}
.y15e{bottom:170.266667pt;}
.ya3{bottom:170.306667pt;}
.ye9{bottom:170.373333pt;}
.y35{bottom:171.546667pt;}
.yf1{bottom:171.773333pt;}
.ya8{bottom:173.306667pt;}
.y128{bottom:173.626667pt;}
.y9c{bottom:175.546667pt;}
.y115{bottom:176.026667pt;}
.y24{bottom:178.906667pt;}
.y10e{bottom:181.146667pt;}
.y52{bottom:181.946667pt;}
.ye3{bottom:186.106667pt;}
.y15d{bottom:186.266667pt;}
.y34{bottom:186.906667pt;}
.y127{bottom:188.986667pt;}
.y9b{bottom:191.546667pt;}
.y23{bottom:194.266667pt;}
.y10d{bottom:196.346667pt;}
.y51{bottom:197.146667pt;}
.y136{bottom:197.946667pt;}
.yf2{bottom:200.773333pt;}
.ye2{bottom:202.106667pt;}
.y33{bottom:202.266667pt;}
.y126{bottom:204.346667pt;}
.y9a{bottom:207.546667pt;}
.y22{bottom:209.786667pt;}
.y10c{bottom:211.706667pt;}
.y50{bottom:212.506667pt;}
.ya9{bottom:212.546667pt;}
.y32{bottom:217.466667pt;}
.ye1{bottom:218.106667pt;}
.y15c{bottom:218.266667pt;}
.y125{bottom:219.706667pt;}
.y99{bottom:223.546667pt;}
.y21{bottom:225.306667pt;}
.y10b{bottom:227.066667pt;}
.y4f{bottom:227.866667pt;}
.yf3{bottom:229.786667pt;}
.y31{bottom:232.826667pt;}
.ye0{bottom:234.106667pt;}
.y15b{bottom:234.266667pt;}
.y124{bottom:234.906667pt;}
.y98{bottom:239.546667pt;}
.y20{bottom:240.666667pt;}
.y4e{bottom:243.226667pt;}
.y123{bottom:247.386667pt;}
.y30{bottom:248.186667pt;}
.ya2{bottom:248.773333pt;}
.ydf{bottom:250.106667pt;}
.y15a{bottom:250.266667pt;}
.yaa{bottom:251.773333pt;}
.y97{bottom:255.546667pt;}
.y1f{bottom:256.186667pt;}
.y4d{bottom:258.586667pt;}
.yf4{bottom:258.813333pt;}
.ycc{bottom:261.786667pt;}
.y2f{bottom:263.546667pt;}
.y159{bottom:266.266667pt;}
.yde{bottom:268.986667pt;}
.y96{bottom:271.546667pt;}
.y1e{bottom:271.706667pt;}
.y187{bottom:273.786667pt;}
.y4c{bottom:273.946667pt;}
.ycb{bottom:277.146667pt;}
.y2e{bottom:278.906667pt;}
.y158{bottom:282.266667pt;}
.ydd{bottom:284.346667pt;}
.y95{bottom:287.546667pt;}
.yf5{bottom:287.840000pt;}
.y4b{bottom:289.146667pt;}
.yca{bottom:292.346667pt;}
.y2d{bottom:294.266667pt;}
.y1d{bottom:296.186667pt;}
.y156{bottom:298.266667pt;}
.ydc{bottom:299.746667pt;}
.y94{bottom:303.586667pt;}
.y4a{bottom:304.546667pt;}
.yc9{bottom:305.506667pt;}
.y2c{bottom:309.466667pt;}
.y1c{bottom:311.866667pt;}
.y155{bottom:314.306667pt;}
.ydb{bottom:315.106667pt;}
.y93{bottom:319.586667pt;}
.y186{bottom:319.746667pt;}
.y49{bottom:319.906667pt;}
.yc8{bottom:321.506667pt;}
.y154{bottom:330.306667pt;}
.yda{bottom:330.466667pt;}
.y185{bottom:335.106667pt;}
.y48{bottom:335.266667pt;}
.y92{bottom:335.586667pt;}
.yc7{bottom:337.506667pt;}
.y71{bottom:345.186667pt;}
.yd9{bottom:345.826667pt;}
.y153{bottom:346.306667pt;}
.y184{bottom:350.466667pt;}
.y47{bottom:350.626667pt;}
.yc6{bottom:353.506667pt;}
.y91{bottom:354.466667pt;}
.y70{bottom:360.386667pt;}
.yd8{bottom:361.026667pt;}
.y152{bottom:362.306667pt;}
.y183{bottom:365.826667pt;}
.y46{bottom:365.986667pt;}
.yc5{bottom:369.506667pt;}
.y90{bottom:369.826667pt;}
.yd7{bottom:373.506667pt;}
.yec{bottom:375.680000pt;}
.y6f{bottom:375.746667pt;}
.y41{bottom:378.306667pt;}
.y151{bottom:381.186667pt;}
.y8f{bottom:385.186667pt;}
.yc4{bottom:385.506667pt;}
.y6e{bottom:391.106667pt;}
.y150{bottom:396.546667pt;}
.y8e{bottom:400.386667pt;}
.yc3{bottom:404.386667pt;}
.y6d{bottom:406.466667pt;}
.y1b{bottom:410.946667pt;}
.y14f{bottom:411.746667pt;}
.y8d{bottom:415.746667pt;}
.yc2{bottom:419.746667pt;}
.y6c{bottom:421.826667pt;}
.y14e{bottom:427.106667pt;}
.y8c{bottom:431.106667pt;}
.y6b{bottom:434.146667pt;}
.yc1{bottom:435.106667pt;}
.y72{bottom:435.360000pt;}
.y14d{bottom:442.466667pt;}
.y8b{bottom:444.226667pt;}
.y10a{bottom:446.466667pt;}
.yc0{bottom:450.466667pt;}
.y14c{bottom:457.826667pt;}
.y122{bottom:458.306667pt;}
.y8a{bottom:460.226667pt;}
.y109{bottom:461.826667pt;}
.y111{bottom:463.746667pt;}
.ybf{bottom:465.826667pt;}
.y138{bottom:466.626667pt;}
.y13a{bottom:468.386667pt;}
.y14b{bottom:473.186667pt;}
.y121{bottom:473.666667pt;}
.y89{bottom:476.226667pt;}
.y108{bottom:477.186667pt;}
.ybe{bottom:478.946667pt;}
.y14a{bottom:488.386667pt;}
.y120{bottom:489.026667pt;}
.y88{bottom:492.226667pt;}
.y107{bottom:492.386667pt;}
.ybd{bottom:494.946667pt;}
.y149{bottom:503.746667pt;}
.y11f{bottom:504.386667pt;}
.y106{bottom:507.746667pt;}
.y87{bottom:508.226667pt;}
.ybc{bottom:510.946667pt;}
.y11e{bottom:516.866667pt;}
.y182{bottom:519.106667pt;}
.y105{bottom:520.226667pt;}
.y86{bottom:524.226667pt;}
.ybb{bottom:526.946667pt;}
.y147{bottom:532.866667pt;}
.y181{bottom:534.466667pt;}
.y85{bottom:540.253333pt;}
.yb9{bottom:542.973333pt;}
.y180{bottom:549.853333pt;}
.y84{bottom:556.253333pt;}
.y146{bottom:564.253333pt;}
.y17f{bottom:565.213333pt;}
.y83{bottom:572.253333pt;}
.y145{bottom:580.253333pt;}
.y17e{bottom:580.413333pt;}
.y82{bottom:588.253333pt;}
.yb8{bottom:589.533333pt;}
.y17d{bottom:595.773333pt;}
.y144{bottom:596.253333pt;}
.y81{bottom:604.253333pt;}
.yb7{bottom:608.413333pt;}
.y17c{bottom:611.133333pt;}
.y80{bottom:620.253333pt;}
.yb6{bottom:623.773333pt;}
.y17b{bottom:626.493333pt;}
.y143{bottom:627.613333pt;}
.y7f{bottom:636.253333pt;}
.yb5{bottom:639.133333pt;}
.y17a{bottom:641.853333pt;}
.yb4{bottom:654.493333pt;}
.y7e{bottom:655.133333pt;}
.y179{bottom:657.213333pt;}
.y142{bottom:658.973333pt;}
.yb3{bottom:669.853333pt;}
.y7d{bottom:670.493333pt;}
.y178{bottom:672.413333pt;}
.yd6{bottom:684.413333pt;}
.yb2{bottom:685.053333pt;}
.y7c{bottom:685.853333pt;}
.y177{bottom:687.773333pt;}
.y141{bottom:690.333333pt;}
.yd5{bottom:696.893333pt;}
.ye8{bottom:699.040000pt;}
.yb1{bottom:700.413333pt;}
.y7b{bottom:701.053333pt;}
.y176{bottom:703.133333pt;}
.yb0{bottom:715.773333pt;}
.y7a{bottom:716.413333pt;}
.y175{bottom:718.493333pt;}
.y12d{bottom:721.053333pt;}
.y140{bottom:721.533333pt;}
.y131{bottom:722.653333pt;}
.yaf{bottom:731.133333pt;}
.y79{bottom:731.773333pt;}
.y19{bottom:732.893333pt;}
.y174{bottom:733.853333pt;}
.y104{bottom:737.053333pt;}
.y6a{bottom:743.133333pt;}
.yae{bottom:743.613333pt;}
.ycd{bottom:744.640000pt;}
.y78{bottom:747.133333pt;}
.y173{bottom:749.053333pt;}
.y11d{bottom:751.773333pt;}
.y103{bottom:752.413333pt;}
.y13f{bottom:752.893333pt;}
.y69{bottom:758.493333pt;}
.yf{bottom:759.133333pt;}
.y77{bottom:762.493333pt;}
.y172{bottom:764.413333pt;}
.y11c{bottom:766.973333pt;}
.y102{bottom:767.773333pt;}
.y68{bottom:773.893333pt;}
.y76{bottom:775.013333pt;}
.ya1{bottom:777.120000pt;}
.y171{bottom:779.813333pt;}
.y100{bottom:780.933333pt;}
.y11b{bottom:782.373333pt;}
.y13e{bottom:784.293333pt;}
.y67{bottom:789.093333pt;}
.y170{bottom:795.173333pt;}
.y101{bottom:796.933333pt;}
.y11a{bottom:797.733333pt;}
.y66{bottom:804.453333pt;}
.y16f{bottom:808.293333pt;}
.y119{bottom:810.213333pt;}
.yfe{bottom:812.933333pt;}
.y13d{bottom:815.653333pt;}
.y65{bottom:819.813333pt;}
.y16e{bottom:824.293333pt;}
.yff{bottom:828.933333pt;}
.y64{bottom:835.173333pt;}
.y16d{bottom:840.293333pt;}
.yfc{bottom:844.933333pt;}
.y13c{bottom:847.013333pt;}
.y63{bottom:850.533333pt;}
.y16c{bottom:856.293333pt;}
.yfd{bottom:860.933333pt;}
.y62{bottom:865.893333pt;}
.y16b{bottom:872.293333pt;}
.yf9{bottom:876.933333pt;}
.y61{bottom:881.093333pt;}
.yea{bottom:887.200000pt;}
.y16a{bottom:888.293333pt;}
.yfb{bottom:892.933333pt;}
.y60{bottom:896.453333pt;}
.y169{bottom:904.293333pt;}
.y5f{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.y168{bottom:920.293333pt;}
.y5e{bottom:927.173333pt;}
.y167{bottom:936.293333pt;}
.y6{bottom:939.013333pt;}
.y5d{bottom:942.533333pt;}
.y166{bottom:952.293333pt;}
.y5c{bottom:957.893333pt;}
.y165{bottom:968.293333pt;}
.y5b{bottom:973.093333pt;}
.y164{bottom:984.293333pt;}
.y5a{bottom:988.453333pt;}
.y163{bottom:1000.293333pt;}
.y59{bottom:1003.813333pt;}
.y58{bottom:1019.200000pt;}
.y57{bottom:1034.560000pt;}
.h27{height:15.200000pt;}
.h26{height:15.232000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.hb{height:22.080000pt;}
.h2a{height:22.560000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.280000pt;}
.h33{height:30.560000pt;}
.h34{height:30.720000pt;}
.h35{height:30.752000pt;}
.h2c{height:31.360000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.640000pt;}
.h32{height:33.760000pt;}
.h19{height:34.505000pt;}
.h31{height:36.160000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h36{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h21{height:42.691250pt;}
.h1d{height:42.745000pt;}
.h25{height:45.920000pt;}
.h2d{height:47.040000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h24{height:52.962000pt;}
.h2e{height:53.120000pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h30{height:72.352000pt;}
.h2f{height:73.952000pt;}
.h23{height:79.102187pt;}
.h7{height:108.032000pt;}
.hc{height:157.306667pt;}
.h28{height:240.960000pt;}
.h22{height:269.920000pt;}
.h1e{height:304.960000pt;}
.h2b{height:305.920000pt;}
.h14{height:321.946667pt;}
.h29{height:348.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.w14{width:145.280000pt;}
.w21{width:159.386667pt;}
.w20{width:159.546667pt;}
.w24{width:161.466667pt;}
.w16{width:165.306667pt;}
.w18{width:165.466667pt;}
.w22{width:183.226667pt;}
.w8{width:198.466667pt;}
.w25{width:218.266667pt;}
.wd{width:220.706667pt;}
.we{width:220.826667pt;}
.w1d{width:231.386667pt;}
.w1f{width:256.226667pt;}
.w1b{width:258.586667pt;}
.w1c{width:262.626667pt;}
.w1e{width:266.586667pt;}
.w23{width:282.626667pt;}
.wb{width:331.426667pt;}
.wc{width:331.586667pt;}
.w13{width:354.080000pt;}
.wa{width:440.960000pt;}
.wf{width:442.173333pt;}
.w9{width:465.826667pt;}
.w11{width:495.040000pt;}
.w17{width:497.533333pt;}
.w10{width:515.040000pt;}
.w6{width:529.213333pt;}
.w19{width:530.653333pt;}
.w1a{width:531.453333pt;}
.w15{width:541.920000pt;}
.w2{width:598.693333pt;}
.w12{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x6b{left:9.594667pt;}
.x14{left:11.200000pt;}
.x81{left:13.120000pt;}
.x6e{left:14.240000pt;}
.x71{left:15.706667pt;}
.x69{left:17.274667pt;}
.x75{left:21.114667pt;}
.x42{left:23.173333pt;}
.x50{left:24.066667pt;}
.x80{left:25.632000pt;}
.x7d{left:26.592000pt;}
.x5c{left:28.672000pt;}
.x6a{left:29.594667pt;}
.x7f{left:30.586667pt;}
.x7c{left:32.026667pt;}
.x7b{left:33.792000pt;}
.x7e{left:35.392000pt;}
.x40{left:37.120000pt;}
.xc{left:38.752000pt;}
.x51{left:40.386667pt;}
.x3f{left:43.200000pt;}
.x6f{left:44.480000pt;}
.x88{left:45.472000pt;}
.x78{left:46.920000pt;}
.x84{left:47.840000pt;}
.x4e{left:53.253333pt;}
.x4a{left:54.752000pt;}
.x65{left:55.712000pt;}
.x2e{left:57.152000pt;}
.x64{left:58.600000pt;}
.x86{left:60.000000pt;}
.x62{left:61.160000pt;}
.x5b{left:62.213333pt;}
.x1{left:64.320000pt;}
.x66{left:65.466667pt;}
.x61{left:67.880000pt;}
.x5f{left:69.786667pt;}
.x87{left:70.746667pt;}
.x4{left:71.999988pt;}
.x63{left:73.786667pt;}
.x32{left:75.546667pt;}
.x8c{left:76.986667pt;}
.x39{left:81.440000pt;}
.x3b{left:83.200000pt;}
.x4b{left:84.186667pt;}
.x4f{left:85.280000pt;}
.x5{left:87.226667pt;}
.x3a{left:88.320000pt;}
.x8b{left:89.626667pt;}
.x73{left:92.000000pt;}
.xd{left:93.146667pt;}
.x30{left:95.200000pt;}
.x38{left:96.986667pt;}
.x35{left:98.400000pt;}
.x36{left:100.160000pt;}
.x33{left:103.200000pt;}
.x41{left:104.480000pt;}
.x48{left:106.266667pt;}
.x3c{left:109.373333pt;}
.x34{left:110.266667pt;}
.x8d{left:112.186667pt;}
.xf{left:114.106667pt;}
.x2b{left:116.026667pt;}
.x10{left:118.106667pt;}
.x82{left:119.706667pt;}
.x1f{left:121.626667pt;}
.x27{left:123.546667pt;}
.x2a{left:124.506667pt;}
.x24{left:126.426667pt;}
.x74{left:128.672000pt;}
.x19{left:130.880000pt;}
.x49{left:132.346667pt;}
.x47{left:133.466667pt;}
.x25{left:134.586667pt;}
.x1d{left:135.706667pt;}
.x4c{left:137.306667pt;}
.x26{left:138.426667pt;}
.x11{left:140.186667pt;}
.x8a{left:144.186667pt;}
.x20{left:145.626667pt;}
.x21{left:148.506667pt;}
.x22{left:150.426667pt;}
.x2c{left:151.546667pt;}
.x23{left:153.466667pt;}
.x28{left:156.826667pt;}
.x58{left:158.266667pt;}
.xe{left:163.706667pt;}
.x29{left:165.626667pt;}
.x17{left:175.840000pt;}
.x1a{left:188.066667pt;}
.x12{left:191.266667pt;}
.x45{left:196.666655pt;}
.x6{left:199.866667pt;}
.x37{left:207.426667pt;}
.x59{left:211.453333pt;}
.x89{left:212.826655pt;}
.x57{left:214.946667pt;}
.x3d{left:219.426667pt;}
.x5e{left:222.146667pt;}
.x77{left:225.306667pt;}
.x43{left:229.853333pt;}
.x5d{left:231.226667pt;}
.x16{left:239.706655pt;}
.x46{left:255.266655pt;}
.x9{left:256.386667pt;}
.x4d{left:258.466655pt;}
.x56{left:260.866655pt;}
.x13{left:263.266667pt;}
.x55{left:266.466655pt;}
.x18{left:269.440000pt;}
.x5a{left:275.360000pt;}
.x53{left:280.226655pt;}
.x72{left:281.506667pt;}
.x2d{left:282.626655pt;}
.x2f{left:286.466667pt;}
.x1c{left:289.826655pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x83{left:348.386667pt;}
.x79{left:385.506667pt;}
.x68{left:388.226655pt;}
.x6c{left:393.986655pt;}
.x67{left:395.266655pt;}
.x1e{left:397.186667pt;}
.xa{left:405.066667pt;}
.x76{left:407.906667pt;}
.x70{left:409.506667pt;}
.x3e{left:442.560000pt;}
.x31{left:507.933333pt;}
.x85{left:510.493333pt;}
.x6d{left:512.093322pt;}
.x7a{left:545.533333pt;}
.x60{left:563.293333pt;}
.x52{left:574.973322pt;}
.x15{left:617.893322pt;}
.x44{left:644.933322pt;}
.x1b{left:655.013322pt;}
.x3{left:663.013333pt;}
.x54{left:668.933322pt;}
}




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