
    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_d932aa982b7bcdf7177b4b0f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3060f79c3dd4ac0484a8725f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_84375d1d293d323442e2d898.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ec9ea01911bbdf5a1634a507.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_6b054a20a2af7ff97fb05369.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_099003a5e82a22719c14492a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3535872c187c3f4425014401.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_f18ba5f3aead06f9bc256725.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aefa44bb193c4a7b41b56085.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_105c9da91bb66bfcf8cb26e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls19{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.690000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.450600px;}
.lsc{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.220800px;}
.lsf{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.175800px;}
.ls10{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.054720px;}
.lsd{letter-spacing:-0.027360px;}
.ls1f{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.027360px;}
.ls1b{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.900000px;}
.ls7{letter-spacing:2.340000px;}
.ls5{letter-spacing:3.060000px;}
.ls9{letter-spacing:3.780000px;}
.ls14{letter-spacing:4.320000px;}
.ls15{letter-spacing:10.080000px;}
.ls13{letter-spacing:25.200000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.ws1{word-spacing:-49.870080px;}
.ws12{word-spacing:-40.608000px;}
.ws2{word-spacing:-21.641760px;}
.ws16{word-spacing:-19.900080px;}
.ws0{word-spacing:-19.640280px;}
.wsf{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws6{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.247360px;}
.ws5{word-spacing:-14.220000px;}
.wsb{word-spacing:-14.192640px;}
.ws9{word-spacing:-14.165280px;}
.wsc{word-spacing:-13.999200px;}
.wsa{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.530000px;}
.ws3{word-spacing:-13.229520px;}
.ws17{word-spacing:-12.186000px;}
.wsd{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.878800px;}
.ws15{word-spacing:-10.980000px;}
.ws13{word-spacing:-7.560000px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-14.400000px;}
._11{margin-left:-4.383120px;}
._d{margin-left:-2.979600px;}
._6{margin-left:-1.004160px;}
._0{width:1.171200px;}
._4{width:2.474160px;}
._f{width:3.654240px;}
._e{width:5.050080px;}
._10{width:6.161760px;}
._2{width:7.195200px;}
._3{width:8.904240px;}
._8{width:9.968160px;}
._a{width:11.916240px;}
._14{width:13.316880px;}
._13{width:14.976000px;}
._9{width:16.314480px;}
._5{width:19.744800px;}
._15{width:21.079200px;}
._1a{width:22.104000px;}
._1c{width:23.108160px;}
._17{width:24.408000px;}
._16{width:26.352000px;}
._1d{width:27.452160px;}
._12{width:28.647840px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1f{width:33.336000px;}
._1e{width:35.128320px;}
._18{width:36.432000px;}
._19{width:37.584000px;}
._21{width:41.969520px;}
._b{width:43.086960px;}
._c{width:44.389920px;}
._20{width:143.688000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(238,0,0);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y1e4{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y1e3{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y1e2{bottom:-32.760000px;}
.y1e1{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.yd9{bottom:2.520000px;}
.y9{bottom:3.780000px;}
.y1b0{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.yed{bottom:9.360000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.ye8{bottom:16.200000px;}
.ydd{bottom:16.380000px;}
.yf7{bottom:16.416000px;}
.y11b{bottom:16.425000px;}
.y1e0{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y29{bottom:22.755000px;}
.ydb{bottom:23.220000px;}
.yf5{bottom:23.250000px;}
.y119{bottom:23.265000px;}
.ydc{bottom:30.060000px;}
.yf6{bottom:30.090000px;}
.y14b{bottom:30.105000px;}
.ye2{bottom:30.240000px;}
.y11a{bottom:30.285000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.ye3{bottom:37.080000px;}
.y1df{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y1de{bottom:65.190000px;}
.y1c{bottom:73.125000px;}
.y6e{bottom:73.440000px;}
.y10e{bottom:74.520000px;}
.ycd{bottom:76.320000px;}
.y159{bottom:76.860000px;}
.y6d{bottom:77.940000px;}
.y136{bottom:79.740000px;}
.y1dd{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.yb9{bottom:81.180000px;}
.y1af{bottom:85.500000px;}
.y177{bottom:87.300000px;}
.y199{bottom:90.000000px;}
.y87{bottom:91.080000px;}
.y6c{bottom:93.240000px;}
.y6b{bottom:97.740000px;}
.y135{bottom:99.000000px;}
.yfc{bottom:102.060000px;}
.y1dc{bottom:103.530000px;}
.y10d{bottom:105.480000px;}
.y1c5{bottom:107.100000px;}
.ycc{bottom:107.460000px;}
.y158{bottom:108.000000px;}
.y1b{bottom:109.305000px;}
.y134{bottom:110.340000px;}
.y198{bottom:110.700000px;}
.yb8{bottom:112.140000px;}
.y6a{bottom:113.040000px;}
.yfb{bottom:115.920000px;}
.ya3{bottom:117.180000px;}
.y69{bottom:117.540000px;}
.y86{bottom:122.040000px;}
.y1ae{bottom:124.200000px;}
.y1db{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.yf4{bottom:127.980000px;}
.y197{bottom:131.400000px;}
.y68{bottom:132.840000px;}
.y10c{bottom:136.656000px;}
.y67{bottom:137.376000px;}
.ycb{bottom:138.456000px;}
.y157{bottom:138.996000px;}
.yfa{bottom:141.876000px;}
.yb7{bottom:143.316000px;}
.y19{bottom:146.025000px;}
.y176{bottom:146.736000px;}
.y66{bottom:148.176000px;}
.ya2{bottom:148.356000px;}
.y1da{bottom:150.690000px;}
.y196{bottom:152.130000px;}
.y85{bottom:153.210000px;}
.yf9{bottom:155.550000px;}
.yd{bottom:156.090000px;}
.y1ad{bottom:162.930000px;}
.y18{bottom:164.205000px;}
.y175{bottom:167.430000px;}
.y10b{bottom:167.610000px;}
.yf8{bottom:169.410000px;}
.yca{bottom:169.590000px;}
.y156{bottom:170.130000px;}
.yb6{bottom:174.270000px;}
.y1d9{bottom:174.450000px;}
.ya1{bottom:179.310000px;}
.y17{bottom:182.565000px;}
.y65{bottom:183.270000px;}
.y84{bottom:184.170000px;}
.y1d8{bottom:189.030000px;}
.y195{bottom:190.830000px;}
.yf3{bottom:196.950000px;}
.y10a{bottom:198.750000px;}
.yc9{bottom:200.550000px;}
.y155{bottom:201.090000px;}
.y1ac{bottom:201.630000px;}
.yb5{bottom:205.230000px;}
.y174{bottom:206.130000px;}
.y64{bottom:208.650000px;}
.ya0{bottom:210.270000px;}
.yf2{bottom:210.810000px;}
.y194{bottom:211.530000px;}
.y1d7{bottom:212.790000px;}
.y83{bottom:215.310000px;}
.y16{bottom:218.925000px;}
.yf1{bottom:224.670000px;}
.y63{bottom:225.030000px;}
.y173{bottom:226.830000px;}
.y19e{bottom:229.530000px;}
.y109{bottom:229.710000px;}
.yc8{bottom:231.690000px;}
.y154{bottom:232.230000px;}
.yb4{bottom:236.370000px;}
.y15{bottom:237.285000px;}
.yec{bottom:238.350000px;}
.y1ab{bottom:240.330000px;}
.y62{bottom:241.410000px;}
.y82{bottom:246.270000px;}
.y193{bottom:250.230000px;}
.y1d6{bottom:250.950000px;}
.yf0{bottom:252.210000px;}
.y14{bottom:255.465000px;}
.y61{bottom:257.790000px;}
.y108{bottom:260.850000px;}
.yc7{bottom:262.650000px;}
.y153{bottom:263.190000px;}
.y172{bottom:265.530000px;}
.yef{bottom:265.890000px;}
.yb3{bottom:267.330000px;}
.y192{bottom:270.930000px;}
.y9f{bottom:272.370000px;}
.y13{bottom:273.855000px;}
.y60{bottom:274.170000px;}
.y1d5{bottom:274.890000px;}
.y81{bottom:277.230000px;}
.y1aa{bottom:279.030000px;}
.yee{bottom:279.750000px;}
.y171{bottom:286.230000px;}
.y19d{bottom:288.930000px;}
.y5f{bottom:290.550000px;}
.y107{bottom:291.810000px;}
.ye7{bottom:293.610000px;}
.yc6{bottom:293.790000px;}
.y152{bottom:294.330000px;}
.yb2{bottom:298.470000px;}
.y9e{bottom:303.510000px;}
.y5e{bottom:306.930000px;}
.yeb{bottom:307.290000px;}
.y80{bottom:308.370000px;}
.y1d4{bottom:309.135000px;}
.y191{bottom:309.630000px;}
.y1a9{bottom:317.730000px;}
.yea{bottom:321.150000px;}
.y106{bottom:322.950000px;}
.y5d{bottom:323.310000px;}
.y1d3{bottom:323.895000px;}
.yc5{bottom:324.750000px;}
.y170{bottom:324.930000px;}
.y151{bottom:325.290000px;}
.yb1{bottom:329.430000px;}
.y9d{bottom:334.470000px;}
.ye9{bottom:335.010000px;}
.y7f{bottom:339.330000px;}
.y5c{bottom:339.690000px;}
.y150{bottom:344.550000px;}
.y16f{bottom:345.630000px;}
.y1d2{bottom:347.475000px;}
.y190{bottom:348.330000px;}
.ye1{bottom:348.690000px;}
.y105{bottom:353.910000px;}
.yc4{bottom:355.890000px;}
.y5b{bottom:356.070000px;}
.y1a8{bottom:356.430000px;}
.y14f{bottom:358.410000px;}
.y2a{bottom:360.210000px;}
.ye6{bottom:362.550000px;}
.y9c{bottom:365.610000px;}
.y18f{bottom:369.030000px;}
.yb0{bottom:369.570000px;}
.y7e{bottom:370.470000px;}
.y1d1{bottom:371.055000px;}
.y5a{bottom:372.450000px;}
.ye5{bottom:376.410000px;}
.y14e{bottom:384.150000px;}
.y16e{bottom:384.330000px;}
.y104{bottom:385.050000px;}
.yc3{bottom:386.850000px;}
.y59{bottom:388.875000px;}
.ye4{bottom:390.135000px;}
.y1d0{bottom:394.815000px;}
.y1a7{bottom:395.175000px;}
.y9b{bottom:396.615000px;}
.y14d{bottom:398.055000px;}
.y7d{bottom:401.475000px;}
.yda{bottom:403.995000px;}
.y16d{bottom:405.075000px;}
.y58{bottom:405.255000px;}
.y1c4{bottom:406.875000px;}
.y18e{bottom:407.775000px;}
.yaf{bottom:409.575000px;}
.y14c{bottom:411.915000px;}
.y103{bottom:416.055000px;}
.ye0{bottom:417.855000px;}
.y1cf{bottom:418.395000px;}
.yc2{bottom:420.195000px;}
.y57{bottom:421.635000px;}
.y147{bottom:425.595000px;}
.y9a{bottom:427.755000px;}
.y18d{bottom:428.475000px;}
.ydf{bottom:431.535000px;}
.y7c{bottom:432.615000px;}
.y1ce{bottom:432.975000px;}
.y1a6{bottom:433.875000px;}
.y1c3{bottom:437.835000px;}
.y56{bottom:438.015000px;}
.y14a{bottom:439.455000px;}
.y16c{bottom:443.775000px;}
.yde{bottom:445.395000px;}
.y102{bottom:447.195000px;}
.yae{bottom:449.715000px;}
.y149{bottom:453.315000px;}
.yc1{bottom:453.855000px;}
.y55{bottom:454.395000px;}
.y1cd{bottom:456.735000px;}
.y1c2{bottom:457.815000px;}
.y99{bottom:458.715000px;}
.yd8{bottom:459.255000px;}
.y7b{bottom:463.575000px;}
.y16b{bottom:464.475000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y101{bottom:466.455000px;}
.y148{bottom:466.995000px;}
.y18c{bottom:467.175000px;}
.y1a5{bottom:472.575000px;}
.y100{bottom:477.615000px;}
.yd7{bottom:477.795000px;}
.y54{bottom:479.775000px;}
.yad{bottom:480.675000px;}
.y144{bottom:480.855000px;}
.yc0{bottom:484.995000px;}
.y133{bottom:485.535000px;}
.yc{bottom:486.615000px;}
.y18b{bottom:487.875000px;}
.y98{bottom:489.855000px;}
.y1c1{bottom:493.815000px;}
.y7a{bottom:494.715000px;}
.y53{bottom:498.315000px;}
.yd6{bottom:498.495000px;}
.y16a{bottom:503.175000px;}
.y132{bottom:506.235000px;}
.y146{bottom:508.395000px;}
.y1a4{bottom:511.275000px;}
.yac{bottom:511.815000px;}
.y1cc{bottom:514.875000px;}
.ybf{bottom:515.955000px;}
.y97{bottom:520.815000px;}
.y145{bottom:522.255000px;}
.y169{bottom:523.875000px;}
.y52{bottom:525.315000px;}
.y79{bottom:525.675000px;}
.y18a{bottom:526.575000px;}
.y131{bottom:526.935000px;}
.yd5{bottom:529.455000px;}
.y1c0{bottom:533.775000px;}
.y140{bottom:536.115000px;}
.y1cb{bottom:539.205000px;}
.yab{bottom:542.775000px;}
.y168{bottom:544.575000px;}
.ybe{bottom:547.095000px;}
.y189{bottom:547.275000px;}
.y143{bottom:549.795000px;}
.y1a3{bottom:549.975000px;}
.y51{bottom:550.695000px;}
.y96{bottom:551.955000px;}
.y25{bottom:552.420000px;}
.y78{bottom:556.815000px;}
.y130{bottom:558.075000px;}
.yd4{bottom:560.595000px;}
.y142{bottom:563.655000px;}
.y1bf{bottom:564.915000px;}
.y50{bottom:567.075000px;}
.y188{bottom:567.975000px;}
.yaa{bottom:573.915000px;}
.y1ca{bottom:575.205000px;}
.y141{bottom:577.515000px;}
.ybd{bottom:578.055000px;}
.y95{bottom:582.915000px;}
.y167{bottom:583.275000px;}
.y4f{bottom:583.455000px;}
.y77{bottom:587.775000px;}
.y1a2{bottom:588.675000px;}
.y12f{bottom:589.035000px;}
.y10{bottom:589.215000px;}
.y13d{bottom:591.195000px;}
.yd3{bottom:591.555000px;}
.y1be{bottom:595.875000px;}
.y4e{bottom:599.835000px;}
.y166{bottom:603.975000px;}
.ya9{bottom:604.875000px;}
.y13f{bottom:605.055000px;}
.y23{bottom:605.340000px;}
.y187{bottom:606.675000px;}
.ybc{bottom:609.195000px;}
.y1c9{bottom:609.945000px;}
.y94{bottom:614.055000px;}
.y4d{bottom:616.215000px;}
.ya{bottom:616.395000px;}
.y13e{bottom:618.735000px;}
.y76{bottom:618.915000px;}
.y1b1{bottom:619.635150px;}
.y12e{bottom:619.995000px;}
.yd2{bottom:622.515000px;}
.y165{bottom:624.675000px;}
.y1bd{bottom:627.015000px;}
.y186{bottom:627.375000px;}
.y4c{bottom:632.595000px;}
.ya8{bottom:636.015000px;}
.ybb{bottom:642.345000px;}
.y33{bottom:644.685000px;}
.y93{bottom:645.045000px;}
.y1c8{bottom:646.305000px;}
.y139{bottom:646.485000px;}
.y4b{bottom:649.005000px;}
.y75{bottom:649.905000px;}
.y12d{bottom:651.165000px;}
.yd1{bottom:653.685000px;}
.y1bc{bottom:658.005000px;}
.y13c{bottom:660.165000px;}
.y164{bottom:663.405000px;}
.y4a{bottom:665.385000px;}
.y185{bottom:666.105000px;}
.yd0{bottom:672.945000px;}
.y13b{bottom:674.025000px;}
.ya7{bottom:676.005000px;}
.y92{bottom:676.185000px;}
.yba{bottom:678.345000px;}
.y74{bottom:681.045000px;}
.y49{bottom:681.765000px;}
.y1c7{bottom:682.305000px;}
.y163{bottom:684.105000px;}
.ycf{bottom:684.285000px;}
.y184{bottom:686.805000px;}
.y13a{bottom:687.885000px;}
.y12c{bottom:688.425000px;}
.y1bb{bottom:689.145000px;}
.y48{bottom:698.145000px;}
.y12b{bottom:702.285000px;}
.y138{bottom:703.905000px;}
.y19c{bottom:704.805000px;}
.y91{bottom:707.145000px;}
.y183{bottom:707.505000px;}
.y73{bottom:712.005000px;}
.y127{bottom:714.165000px;}
.y47{bottom:714.525000px;}
.ya6{bottom:716.145000px;}
.y1c6{bottom:718.305000px;}
.y1ba{bottom:720.105000px;}
.y137{bottom:722.445000px;}
.y162{bottom:722.805000px;}
.y19b{bottom:725.505000px;}
.y12a{bottom:728.025000px;}
.y46{bottom:730.905000px;}
.y90{bottom:738.285000px;}
.y129{bottom:741.885000px;}
.y72{bottom:743.145000px;}
.y161{bottom:743.505000px;}
.y182{bottom:746.205000px;}
.y45{bottom:747.285000px;}
.y1b9{bottom:751.245000px;}
.y128{bottom:755.565000px;}
.ya5{bottom:756.105000px;}
.y44{bottom:763.665000px;}
.y181{bottom:766.905000px;}
.y8f{bottom:769.245000px;}
.y123{bottom:769.425000px;}
.y71{bottom:774.105000px;}
.y43{bottom:780.045000px;}
.y160{bottom:782.205000px;}
.y126{bottom:783.285000px;}
.y1a1{bottom:784.905000px;}
.ya4{bottom:796.245000px;}
.y42{bottom:796.425000px;}
.y125{bottom:796.965000px;}
.y8e{bottom:800.385000px;}
.y15f{bottom:802.905000px;}
.y70{bottom:805.245000px;}
.y180{bottom:805.605000px;}
.y124{bottom:810.825000px;}
.y41{bottom:812.805000px;}
.y1b8{bottom:813.345000px;}
.y11f{bottom:824.685000px;}
.y17f{bottom:826.305000px;}
.y8d{bottom:831.345000px;}
.y6f{bottom:836.205000px;}
.y40{bottom:837.285000px;}
.y122{bottom:838.365000px;}
.y15e{bottom:841.605000px;}
.y1a0{bottom:844.305000px;}
.y121{bottom:852.225000px;}
.y15d{bottom:862.305000px;}
.y8c{bottom:862.485000px;}
.y17e{bottom:865.005000px;}
.y120{bottom:866.085000px;}
.y3f{bottom:867.345000px;}
.yff{bottom:868.605000px;}
.y1b7{bottom:875.445000px;}
.y118{bottom:879.765000px;}
.y17d{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.yfe{bottom:889.305000px;}
.y8b{bottom:893.490000px;}
.y11e{bottom:893.670000px;}
.y3d{bottom:898.350000px;}
.y15c{bottom:901.050000px;}
.y3e{bottom:905.190000px;}
.y1b6{bottom:906.450000px;}
.y11d{bottom:907.530000px;}
.y1e5{bottom:912.210000px;}
.yfd{bottom:920.490000px;}
.y11c{bottom:921.210000px;}
.y15b{bottom:921.750000px;}
.y17c{bottom:924.450000px;}
.y8a{bottom:924.630000px;}
.y3b{bottom:929.490000px;}
.y114{bottom:935.070000px;}
.y3c{bottom:936.330000px;}
.y1b5{bottom:937.590000px;}
.y17b{bottom:945.150000px;}
.y117{bottom:948.930000px;}
.y89{bottom:955.590000px;}
.y39{bottom:960.450000px;}
.y116{bottom:962.610000px;}
.y19f{bottom:963.150000px;}
.y3a{bottom:967.290000px;}
.y1b4{bottom:968.550000px;}
.y15a{bottom:970.890000px;}
.y115{bottom:976.470000px;}
.y17a{bottom:983.850000px;}
.y88{bottom:988.890000px;}
.y110{bottom:990.330000px;}
.y38{bottom:991.590000px;}
.y113{bottom:1004.010000px;}
.y179{bottom:1004.550000px;}
.y1b3{bottom:1007.250000px;}
.y112{bottom:1017.870000px;}
.y36{bottom:1022.550000px;}
.y19a{bottom:1025.250000px;}
.y37{bottom:1028.490000px;}
.y111{bottom:1031.730000px;}
.y178{bottom:1043.250000px;}
.y10f{bottom:1045.410000px;}
.y1b2{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.yce{bottom:1063.950000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1e{height:13.680000px;}
.h29{height:13.680150px;}
.h24{height:13.716000px;}
.h21{height:13.860000px;}
.h23{height:13.860150px;}
.h26{height:13.896000px;}
.h5{height:24.156000px;}
.h1b{height:27.109688px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h12{height:35.261367px;}
.h1a{height:39.471680px;}
.h16{height:42.845977px;}
.h1c{height:43.246406px;}
.h1f{height:44.858672px;}
.h27{height:45.109688px;}
.h2e{height:47.980898px;}
.h18{height:50.519883px;}
.h19{height:50.992031px;}
.h17{height:52.628906px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h25{height:55.080000px;}
.h28{height:55.116000px;}
.h20{height:55.260000px;}
.h2f{height:55.291992px;}
.h22{height:55.296000px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h2{height:59.439023px;}
.h2d{height:61.189805px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h13{height:65.884219px;}
.h2c{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h30{height:189.000000px;}
.hb{height:306.255000px;}
.h2b{height:754.845000px;}
.h9{height:1188.900000px;}
.h2a{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w11{width:84.780000px;}
.w12{width:84.996000px;}
.w18{width:85.176000px;}
.w6{width:88.560000px;}
.w17{width:95.220000px;}
.w16{width:95.616000px;}
.w1a{width:95.796000px;}
.w19{width:106.200000px;}
.w14{width:106.236000px;}
.w13{width:106.380000px;}
.w15{width:106.416000px;}
.wf{width:198.210000px;}
.w1c{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w1b{width:325.695000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x11{left:-2.055000px;}
.x0{left:0.000000px;}
.x52{left:4.860000px;}
.x6{left:8.676000px;}
.xa{left:9.900000px;}
.x3a{left:14.580000px;}
.x3b{left:16.020000px;}
.x31{left:18.720000px;}
.x37{left:20.340000px;}
.xd{left:22.320000px;}
.x3c{left:25.560000px;}
.x39{left:27.540000px;}
.x2f{left:28.620000px;}
.x42{left:30.960000px;}
.xc{left:33.120000px;}
.x3f{left:34.410000px;}
.x17{left:37.620000px;}
.x34{left:38.910000px;}
.x40{left:40.530000px;}
.x41{left:42.510000px;}
.x3e{left:43.560000px;}
.x3d{left:45.570000px;}
.x4{left:64.439987px;}
.x27{left:68.219987px;}
.x5{left:73.080000px;}
.x1d{left:81.575987px;}
.x18{left:82.800000px;}
.x4b{left:111.456000px;}
.x19{left:113.400000px;}
.x29{left:117.575987px;}
.x48{left:123.875987px;}
.x44{left:127.475987px;}
.x15{left:133.125000px;}
.x2b{left:135.035987px;}
.x8{left:137.385000px;}
.x4a{left:139.355987px;}
.x2e{left:142.055987px;}
.x1c{left:146.195987px;}
.x14{left:160.410000px;}
.xf{left:163.110000px;}
.x47{left:177.869987px;}
.x1a{left:187.245000px;}
.x46{left:197.669987px;}
.x30{left:201.450000px;}
.x54{left:202.545000px;}
.x4c{left:206.670000px;}
.x1b{left:215.489987px;}
.x43{left:221.789987px;}
.x2a{left:239.249987px;}
.x2d{left:254.774987px;}
.x26{left:280.514987px;}
.x32{left:286.455000px;}
.x4d{left:291.855000px;}
.x3{left:388.694987px;}
.x33{left:392.835000px;}
.x4e{left:398.055000px;}
.x13{left:406.155000px;}
.xe{left:408.135000px;}
.x16{left:411.945000px;}
.x12{left:419.760000px;}
.x10{left:439.560000px;}
.x20{left:442.004987px;}
.x53{left:456.225000px;}
.x1{left:461.804987px;}
.x28{left:468.644987px;}
.x7{left:470.625000px;}
.x35{left:499.065000px;}
.x4f{left:504.465000px;}
.x24{left:522.104987px;}
.x36{left:605.490000px;}
.x50{left:610.890000px;}
.x25{left:617.189987px;}
.x21{left:634.649987px;}
.x38{left:711.870000px;}
.x51{left:717.090000px;}
.x2{left:782.279987px;}
.x1e{left:796.319973px;}
.x1f{left:802.439987px;}
.xb{left:803.880000px;}
.x45{left:808.919987px;}
.x2c{left:809.999987px;}
.x22{left:813.599973px;}
.x49{left:817.919987px;}
.x23{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.613333pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.400533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.196267pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.156267pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.048640pt;}
.lsd{letter-spacing:-0.024320pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024320pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls7{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls9{letter-spacing:3.360000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls15{letter-spacing:8.960000pt;}
.ls13{letter-spacing:22.400000pt;}
.wse{word-spacing:-64.000000pt;}
.ws1{word-spacing:-44.328960pt;}
.ws12{word-spacing:-36.096000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws16{word-spacing:-17.688960pt;}
.ws0{word-spacing:-17.458027pt;}
.wsf{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.664320pt;}
.ws5{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.615680pt;}
.ws9{word-spacing:-12.591360pt;}
.wsc{word-spacing:-12.443733pt;}
.wsa{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.026667pt;}
.ws3{word-spacing:-11.759573pt;}
.ws17{word-spacing:-10.832000pt;}
.wsd{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.558933pt;}
.ws15{word-spacing:-9.760000pt;}
.ws13{word-spacing:-6.720000pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-12.800000pt;}
._11{margin-left:-3.896107pt;}
._d{margin-left:-2.648533pt;}
._6{margin-left:-0.892587pt;}
._0{width:1.041067pt;}
._4{width:2.199253pt;}
._f{width:3.248213pt;}
._e{width:4.488960pt;}
._10{width:5.477120pt;}
._2{width:6.395733pt;}
._3{width:7.914880pt;}
._8{width:8.860587pt;}
._a{width:10.592213pt;}
._14{width:11.837227pt;}
._13{width:13.312000pt;}
._9{width:14.501760pt;}
._5{width:17.550933pt;}
._15{width:18.737067pt;}
._1a{width:19.648000pt;}
._1c{width:20.540587pt;}
._17{width:21.696000pt;}
._16{width:23.424000pt;}
._1d{width:24.401920pt;}
._12{width:25.464747pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1f{width:29.632000pt;}
._1e{width:31.225173pt;}
._18{width:32.384000pt;}
._19{width:33.408000pt;}
._21{width:37.306240pt;}
._b{width:38.299520pt;}
._c{width:39.457707pt;}
._20{width:127.722667pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y1e4{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y1e3{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y1e2{bottom:-29.120000pt;}
.y1e1{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.yd9{bottom:2.240000pt;}
.y9{bottom:3.360000pt;}
.y1b0{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.yed{bottom:8.320000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.ye8{bottom:14.400000pt;}
.ydd{bottom:14.560000pt;}
.yf7{bottom:14.592000pt;}
.y11b{bottom:14.600000pt;}
.y1e0{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y29{bottom:20.226667pt;}
.ydb{bottom:20.640000pt;}
.yf5{bottom:20.666667pt;}
.y119{bottom:20.680000pt;}
.ydc{bottom:26.720000pt;}
.yf6{bottom:26.746667pt;}
.y14b{bottom:26.760000pt;}
.ye2{bottom:26.880000pt;}
.y11a{bottom:26.920000pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.ye3{bottom:32.960000pt;}
.y1df{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y1de{bottom:57.946667pt;}
.y1c{bottom:65.000000pt;}
.y6e{bottom:65.280000pt;}
.y10e{bottom:66.240000pt;}
.ycd{bottom:67.840000pt;}
.y159{bottom:68.320000pt;}
.y6d{bottom:69.280000pt;}
.y136{bottom:70.880000pt;}
.y1dd{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.yb9{bottom:72.160000pt;}
.y1af{bottom:76.000000pt;}
.y177{bottom:77.600000pt;}
.y199{bottom:80.000000pt;}
.y87{bottom:80.960000pt;}
.y6c{bottom:82.880000pt;}
.y6b{bottom:86.880000pt;}
.y135{bottom:88.000000pt;}
.yfc{bottom:90.720000pt;}
.y1dc{bottom:92.026667pt;}
.y10d{bottom:93.760000pt;}
.y1c5{bottom:95.200000pt;}
.ycc{bottom:95.520000pt;}
.y158{bottom:96.000000pt;}
.y1b{bottom:97.160000pt;}
.y134{bottom:98.080000pt;}
.y198{bottom:98.400000pt;}
.yb8{bottom:99.680000pt;}
.y6a{bottom:100.480000pt;}
.yfb{bottom:103.040000pt;}
.ya3{bottom:104.160000pt;}
.y69{bottom:104.480000pt;}
.y86{bottom:108.480000pt;}
.y1ae{bottom:110.400000pt;}
.y1db{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.yf4{bottom:113.760000pt;}
.y197{bottom:116.800000pt;}
.y68{bottom:118.080000pt;}
.y10c{bottom:121.472000pt;}
.y67{bottom:122.112000pt;}
.ycb{bottom:123.072000pt;}
.y157{bottom:123.552000pt;}
.yfa{bottom:126.112000pt;}
.yb7{bottom:127.392000pt;}
.y19{bottom:129.800000pt;}
.y176{bottom:130.432000pt;}
.y66{bottom:131.712000pt;}
.ya2{bottom:131.872000pt;}
.y1da{bottom:133.946667pt;}
.y196{bottom:135.226667pt;}
.y85{bottom:136.186667pt;}
.yf9{bottom:138.266667pt;}
.yd{bottom:138.746667pt;}
.y1ad{bottom:144.826667pt;}
.y18{bottom:145.960000pt;}
.y175{bottom:148.826667pt;}
.y10b{bottom:148.986667pt;}
.yf8{bottom:150.586667pt;}
.yca{bottom:150.746667pt;}
.y156{bottom:151.226667pt;}
.yb6{bottom:154.906667pt;}
.y1d9{bottom:155.066667pt;}
.ya1{bottom:159.386667pt;}
.y17{bottom:162.280000pt;}
.y65{bottom:162.906667pt;}
.y84{bottom:163.706667pt;}
.y1d8{bottom:168.026667pt;}
.y195{bottom:169.626667pt;}
.yf3{bottom:175.066667pt;}
.y10a{bottom:176.666667pt;}
.yc9{bottom:178.266667pt;}
.y155{bottom:178.746667pt;}
.y1ac{bottom:179.226667pt;}
.yb5{bottom:182.426667pt;}
.y174{bottom:183.226667pt;}
.y64{bottom:185.466667pt;}
.ya0{bottom:186.906667pt;}
.yf2{bottom:187.386667pt;}
.y194{bottom:188.026667pt;}
.y1d7{bottom:189.146667pt;}
.y83{bottom:191.386667pt;}
.y16{bottom:194.600000pt;}
.yf1{bottom:199.706667pt;}
.y63{bottom:200.026667pt;}
.y173{bottom:201.626667pt;}
.y19e{bottom:204.026667pt;}
.y109{bottom:204.186667pt;}
.yc8{bottom:205.946667pt;}
.y154{bottom:206.426667pt;}
.yb4{bottom:210.106667pt;}
.y15{bottom:210.920000pt;}
.yec{bottom:211.866667pt;}
.y1ab{bottom:213.626667pt;}
.y62{bottom:214.586667pt;}
.y82{bottom:218.906667pt;}
.y193{bottom:222.426667pt;}
.y1d6{bottom:223.066667pt;}
.yf0{bottom:224.186667pt;}
.y14{bottom:227.080000pt;}
.y61{bottom:229.146667pt;}
.y108{bottom:231.866667pt;}
.yc7{bottom:233.466667pt;}
.y153{bottom:233.946667pt;}
.y172{bottom:236.026667pt;}
.yef{bottom:236.346667pt;}
.yb3{bottom:237.626667pt;}
.y192{bottom:240.826667pt;}
.y9f{bottom:242.106667pt;}
.y13{bottom:243.426667pt;}
.y60{bottom:243.706667pt;}
.y1d5{bottom:244.346667pt;}
.y81{bottom:246.426667pt;}
.y1aa{bottom:248.026667pt;}
.yee{bottom:248.666667pt;}
.y171{bottom:254.426667pt;}
.y19d{bottom:256.826667pt;}
.y5f{bottom:258.266667pt;}
.y107{bottom:259.386667pt;}
.ye7{bottom:260.986667pt;}
.yc6{bottom:261.146667pt;}
.y152{bottom:261.626667pt;}
.yb2{bottom:265.306667pt;}
.y9e{bottom:269.786667pt;}
.y5e{bottom:272.826667pt;}
.yeb{bottom:273.146667pt;}
.y80{bottom:274.106667pt;}
.y1d4{bottom:274.786667pt;}
.y191{bottom:275.226667pt;}
.y1a9{bottom:282.426667pt;}
.yea{bottom:285.466667pt;}
.y106{bottom:287.066667pt;}
.y5d{bottom:287.386667pt;}
.y1d3{bottom:287.906667pt;}
.yc5{bottom:288.666667pt;}
.y170{bottom:288.826667pt;}
.y151{bottom:289.146667pt;}
.yb1{bottom:292.826667pt;}
.y9d{bottom:297.306667pt;}
.ye9{bottom:297.786667pt;}
.y7f{bottom:301.626667pt;}
.y5c{bottom:301.946667pt;}
.y150{bottom:306.266667pt;}
.y16f{bottom:307.226667pt;}
.y1d2{bottom:308.866667pt;}
.y190{bottom:309.626667pt;}
.ye1{bottom:309.946667pt;}
.y105{bottom:314.586667pt;}
.yc4{bottom:316.346667pt;}
.y5b{bottom:316.506667pt;}
.y1a8{bottom:316.826667pt;}
.y14f{bottom:318.586667pt;}
.y2a{bottom:320.186667pt;}
.ye6{bottom:322.266667pt;}
.y9c{bottom:324.986667pt;}
.y18f{bottom:328.026667pt;}
.yb0{bottom:328.506667pt;}
.y7e{bottom:329.306667pt;}
.y1d1{bottom:329.826667pt;}
.y5a{bottom:331.066667pt;}
.ye5{bottom:334.586667pt;}
.y14e{bottom:341.466667pt;}
.y16e{bottom:341.626667pt;}
.y104{bottom:342.266667pt;}
.yc3{bottom:343.866667pt;}
.y59{bottom:345.666667pt;}
.ye4{bottom:346.786667pt;}
.y1d0{bottom:350.946667pt;}
.y1a7{bottom:351.266667pt;}
.y9b{bottom:352.546667pt;}
.y14d{bottom:353.826667pt;}
.y7d{bottom:356.866667pt;}
.yda{bottom:359.106667pt;}
.y16d{bottom:360.066667pt;}
.y58{bottom:360.226667pt;}
.y1c4{bottom:361.666667pt;}
.y18e{bottom:362.466667pt;}
.yaf{bottom:364.066667pt;}
.y14c{bottom:366.146667pt;}
.y103{bottom:369.826667pt;}
.ye0{bottom:371.426667pt;}
.y1cf{bottom:371.906667pt;}
.yc2{bottom:373.506667pt;}
.y57{bottom:374.786667pt;}
.y147{bottom:378.306667pt;}
.y9a{bottom:380.226667pt;}
.y18d{bottom:380.866667pt;}
.ydf{bottom:383.586667pt;}
.y7c{bottom:384.546667pt;}
.y1ce{bottom:384.866667pt;}
.y1a6{bottom:385.666667pt;}
.y1c3{bottom:389.186667pt;}
.y56{bottom:389.346667pt;}
.y14a{bottom:390.626667pt;}
.y16c{bottom:394.466667pt;}
.yde{bottom:395.906667pt;}
.y102{bottom:397.506667pt;}
.yae{bottom:399.746667pt;}
.y149{bottom:402.946667pt;}
.yc1{bottom:403.426667pt;}
.y55{bottom:403.906667pt;}
.y1cd{bottom:405.986667pt;}
.y1c2{bottom:406.946667pt;}
.y99{bottom:407.746667pt;}
.yd8{bottom:408.226667pt;}
.y7b{bottom:412.066667pt;}
.y16b{bottom:412.866667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y101{bottom:414.626667pt;}
.y148{bottom:415.106667pt;}
.y18c{bottom:415.266667pt;}
.y1a5{bottom:420.066667pt;}
.y100{bottom:424.546667pt;}
.yd7{bottom:424.706667pt;}
.y54{bottom:426.466667pt;}
.yad{bottom:427.266667pt;}
.y144{bottom:427.426667pt;}
.yc0{bottom:431.106667pt;}
.y133{bottom:431.586667pt;}
.yc{bottom:432.546667pt;}
.y18b{bottom:433.666667pt;}
.y98{bottom:435.426667pt;}
.y1c1{bottom:438.946667pt;}
.y7a{bottom:439.746667pt;}
.y53{bottom:442.946667pt;}
.yd6{bottom:443.106667pt;}
.y16a{bottom:447.266667pt;}
.y132{bottom:449.986667pt;}
.y146{bottom:451.906667pt;}
.y1a4{bottom:454.466667pt;}
.yac{bottom:454.946667pt;}
.y1cc{bottom:457.666667pt;}
.ybf{bottom:458.626667pt;}
.y97{bottom:462.946667pt;}
.y145{bottom:464.226667pt;}
.y169{bottom:465.666667pt;}
.y52{bottom:466.946667pt;}
.y79{bottom:467.266667pt;}
.y18a{bottom:468.066667pt;}
.y131{bottom:468.386667pt;}
.yd5{bottom:470.626667pt;}
.y1c0{bottom:474.466667pt;}
.y140{bottom:476.546667pt;}
.y1cb{bottom:479.293333pt;}
.yab{bottom:482.466667pt;}
.y168{bottom:484.066667pt;}
.ybe{bottom:486.306667pt;}
.y189{bottom:486.466667pt;}
.y143{bottom:488.706667pt;}
.y1a3{bottom:488.866667pt;}
.y51{bottom:489.506667pt;}
.y96{bottom:490.626667pt;}
.y25{bottom:491.040000pt;}
.y78{bottom:494.946667pt;}
.y130{bottom:496.066667pt;}
.yd4{bottom:498.306667pt;}
.y142{bottom:501.026667pt;}
.y1bf{bottom:502.146667pt;}
.y50{bottom:504.066667pt;}
.y188{bottom:504.866667pt;}
.yaa{bottom:510.146667pt;}
.y1ca{bottom:511.293333pt;}
.y141{bottom:513.346667pt;}
.ybd{bottom:513.826667pt;}
.y95{bottom:518.146667pt;}
.y167{bottom:518.466667pt;}
.y4f{bottom:518.626667pt;}
.y77{bottom:522.466667pt;}
.y1a2{bottom:523.266667pt;}
.y12f{bottom:523.586667pt;}
.y10{bottom:523.746667pt;}
.y13d{bottom:525.506667pt;}
.yd3{bottom:525.826667pt;}
.y1be{bottom:529.666667pt;}
.y4e{bottom:533.186667pt;}
.y166{bottom:536.866667pt;}
.ya9{bottom:537.666667pt;}
.y13f{bottom:537.826667pt;}
.y23{bottom:538.080000pt;}
.y187{bottom:539.266667pt;}
.ybc{bottom:541.506667pt;}
.y1c9{bottom:542.173333pt;}
.y94{bottom:545.826667pt;}
.y4d{bottom:547.746667pt;}
.ya{bottom:547.906667pt;}
.y13e{bottom:549.986667pt;}
.y76{bottom:550.146667pt;}
.y1b1{bottom:550.786800pt;}
.y12e{bottom:551.106667pt;}
.yd2{bottom:553.346667pt;}
.y165{bottom:555.266667pt;}
.y1bd{bottom:557.346667pt;}
.y186{bottom:557.666667pt;}
.y4c{bottom:562.306667pt;}
.ya8{bottom:565.346667pt;}
.ybb{bottom:570.973333pt;}
.y33{bottom:573.053333pt;}
.y93{bottom:573.373333pt;}
.y1c8{bottom:574.493333pt;}
.y139{bottom:574.653333pt;}
.y4b{bottom:576.893333pt;}
.y75{bottom:577.693333pt;}
.y12d{bottom:578.813333pt;}
.yd1{bottom:581.053333pt;}
.y1bc{bottom:584.893333pt;}
.y13c{bottom:586.813333pt;}
.y164{bottom:589.693333pt;}
.y4a{bottom:591.453333pt;}
.y185{bottom:592.093333pt;}
.yd0{bottom:598.173333pt;}
.y13b{bottom:599.133333pt;}
.ya7{bottom:600.893333pt;}
.y92{bottom:601.053333pt;}
.yba{bottom:602.973333pt;}
.y74{bottom:605.373333pt;}
.y49{bottom:606.013333pt;}
.y1c7{bottom:606.493333pt;}
.y163{bottom:608.093333pt;}
.ycf{bottom:608.253333pt;}
.y184{bottom:610.493333pt;}
.y13a{bottom:611.453333pt;}
.y12c{bottom:611.933333pt;}
.y1bb{bottom:612.573333pt;}
.y48{bottom:620.573333pt;}
.y12b{bottom:624.253333pt;}
.y138{bottom:625.693333pt;}
.y19c{bottom:626.493333pt;}
.y91{bottom:628.573333pt;}
.y183{bottom:628.893333pt;}
.y73{bottom:632.893333pt;}
.y127{bottom:634.813333pt;}
.y47{bottom:635.133333pt;}
.ya6{bottom:636.573333pt;}
.y1c6{bottom:638.493333pt;}
.y1ba{bottom:640.093333pt;}
.y137{bottom:642.173333pt;}
.y162{bottom:642.493333pt;}
.y19b{bottom:644.893333pt;}
.y12a{bottom:647.133333pt;}
.y46{bottom:649.693333pt;}
.y90{bottom:656.253333pt;}
.y129{bottom:659.453333pt;}
.y72{bottom:660.573333pt;}
.y161{bottom:660.893333pt;}
.y182{bottom:663.293333pt;}
.y45{bottom:664.253333pt;}
.y1b9{bottom:667.773333pt;}
.y128{bottom:671.613333pt;}
.ya5{bottom:672.093333pt;}
.y44{bottom:678.813333pt;}
.y181{bottom:681.693333pt;}
.y8f{bottom:683.773333pt;}
.y123{bottom:683.933333pt;}
.y71{bottom:688.093333pt;}
.y43{bottom:693.373333pt;}
.y160{bottom:695.293333pt;}
.y126{bottom:696.253333pt;}
.y1a1{bottom:697.693333pt;}
.ya4{bottom:707.773333pt;}
.y42{bottom:707.933333pt;}
.y125{bottom:708.413333pt;}
.y8e{bottom:711.453333pt;}
.y15f{bottom:713.693333pt;}
.y70{bottom:715.773333pt;}
.y180{bottom:716.093333pt;}
.y124{bottom:720.733333pt;}
.y41{bottom:722.493333pt;}
.y1b8{bottom:722.973333pt;}
.y11f{bottom:733.053333pt;}
.y17f{bottom:734.493333pt;}
.y8d{bottom:738.973333pt;}
.y6f{bottom:743.293333pt;}
.y40{bottom:744.253333pt;}
.y122{bottom:745.213333pt;}
.y15e{bottom:748.093333pt;}
.y1a0{bottom:750.493333pt;}
.y121{bottom:757.533333pt;}
.y15d{bottom:766.493333pt;}
.y8c{bottom:766.653333pt;}
.y17e{bottom:768.893333pt;}
.y120{bottom:769.853333pt;}
.y3f{bottom:770.973333pt;}
.yff{bottom:772.093333pt;}
.y1b7{bottom:778.173333pt;}
.y118{bottom:782.013333pt;}
.y17d{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.yfe{bottom:790.493333pt;}
.y8b{bottom:794.213333pt;}
.y11e{bottom:794.373333pt;}
.y3d{bottom:798.533333pt;}
.y15c{bottom:800.933333pt;}
.y3e{bottom:804.613333pt;}
.y1b6{bottom:805.733333pt;}
.y11d{bottom:806.693333pt;}
.y1e5{bottom:810.853333pt;}
.yfd{bottom:818.213333pt;}
.y11c{bottom:818.853333pt;}
.y15b{bottom:819.333333pt;}
.y17c{bottom:821.733333pt;}
.y8a{bottom:821.893333pt;}
.y3b{bottom:826.213333pt;}
.y114{bottom:831.173333pt;}
.y3c{bottom:832.293333pt;}
.y1b5{bottom:833.413333pt;}
.y17b{bottom:840.133333pt;}
.y117{bottom:843.493333pt;}
.y89{bottom:849.413333pt;}
.y39{bottom:853.733333pt;}
.y116{bottom:855.653333pt;}
.y19f{bottom:856.133333pt;}
.y3a{bottom:859.813333pt;}
.y1b4{bottom:860.933333pt;}
.y15a{bottom:863.013333pt;}
.y115{bottom:867.973333pt;}
.y17a{bottom:874.533333pt;}
.y88{bottom:879.013333pt;}
.y110{bottom:880.293333pt;}
.y38{bottom:881.413333pt;}
.y113{bottom:892.453333pt;}
.y179{bottom:892.933333pt;}
.y1b3{bottom:895.333333pt;}
.y112{bottom:904.773333pt;}
.y36{bottom:908.933333pt;}
.y19a{bottom:911.333333pt;}
.y37{bottom:914.213333pt;}
.y111{bottom:917.093333pt;}
.y178{bottom:927.333333pt;}
.y10f{bottom:929.253333pt;}
.y1b2{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.yce{bottom:945.733333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1e{height:12.160000pt;}
.h29{height:12.160133pt;}
.h24{height:12.192000pt;}
.h21{height:12.320000pt;}
.h23{height:12.320133pt;}
.h26{height:12.352000pt;}
.h5{height:21.472000pt;}
.h1b{height:24.097500pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h12{height:31.343437pt;}
.h1a{height:35.085938pt;}
.h16{height:38.085312pt;}
.h1c{height:38.441250pt;}
.h1f{height:39.874375pt;}
.h27{height:40.097500pt;}
.h2e{height:42.649687pt;}
.h18{height:44.906562pt;}
.h19{height:45.326250pt;}
.h17{height:46.781250pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h25{height:48.960000pt;}
.h28{height:48.992000pt;}
.h20{height:49.120000pt;}
.h2f{height:49.148438pt;}
.h22{height:49.152000pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h2{height:52.834688pt;}
.h2d{height:54.390938pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h13{height:58.563750pt;}
.h2c{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h30{height:168.000000pt;}
.hb{height:272.226667pt;}
.h2b{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h2a{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w11{width:75.360000pt;}
.w12{width:75.552000pt;}
.w18{width:75.712000pt;}
.w6{width:78.720000pt;}
.w17{width:84.640000pt;}
.w16{width:84.992000pt;}
.w1a{width:85.152000pt;}
.w19{width:94.400000pt;}
.w14{width:94.432000pt;}
.w13{width:94.560000pt;}
.w15{width:94.592000pt;}
.wf{width:176.186667pt;}
.w1c{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w1b{width:289.506667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x11{left:-1.826667pt;}
.x0{left:0.000000pt;}
.x52{left:4.320000pt;}
.x6{left:7.712000pt;}
.xa{left:8.800000pt;}
.x3a{left:12.960000pt;}
.x3b{left:14.240000pt;}
.x31{left:16.640000pt;}
.x37{left:18.080000pt;}
.xd{left:19.840000pt;}
.x3c{left:22.720000pt;}
.x39{left:24.480000pt;}
.x2f{left:25.440000pt;}
.x42{left:27.520000pt;}
.xc{left:29.440000pt;}
.x3f{left:30.586667pt;}
.x17{left:33.440000pt;}
.x34{left:34.586667pt;}
.x40{left:36.026667pt;}
.x41{left:37.786667pt;}
.x3e{left:38.720000pt;}
.x3d{left:40.506667pt;}
.x4{left:57.279988pt;}
.x27{left:60.639988pt;}
.x5{left:64.960000pt;}
.x1d{left:72.511988pt;}
.x18{left:73.600000pt;}
.x4b{left:99.072000pt;}
.x19{left:100.800000pt;}
.x29{left:104.511988pt;}
.x48{left:110.111988pt;}
.x44{left:113.311988pt;}
.x15{left:118.333333pt;}
.x2b{left:120.031988pt;}
.x8{left:122.120000pt;}
.x4a{left:123.871988pt;}
.x2e{left:126.271988pt;}
.x1c{left:129.951988pt;}
.x14{left:142.586667pt;}
.xf{left:144.986667pt;}
.x47{left:158.106655pt;}
.x1a{left:166.440000pt;}
.x46{left:175.706655pt;}
.x30{left:179.066667pt;}
.x54{left:180.040000pt;}
.x4c{left:183.706667pt;}
.x1b{left:191.546655pt;}
.x43{left:197.146655pt;}
.x2a{left:212.666655pt;}
.x2d{left:226.466655pt;}
.x26{left:249.346655pt;}
.x32{left:254.626667pt;}
.x4d{left:259.426667pt;}
.x3{left:345.506655pt;}
.x33{left:349.186667pt;}
.x4e{left:353.826667pt;}
.x13{left:361.026667pt;}
.xe{left:362.786667pt;}
.x16{left:366.173333pt;}
.x12{left:373.120000pt;}
.x10{left:390.720000pt;}
.x20{left:392.893322pt;}
.x53{left:405.533333pt;}
.x1{left:410.493322pt;}
.x28{left:416.573322pt;}
.x7{left:418.333333pt;}
.x35{left:443.613333pt;}
.x4f{left:448.413333pt;}
.x24{left:464.093322pt;}
.x36{left:538.213333pt;}
.x50{left:543.013333pt;}
.x25{left:548.613322pt;}
.x21{left:564.133322pt;}
.x38{left:632.773333pt;}
.x51{left:637.413333pt;}
.x2{left:695.359988pt;}
.x1e{left:707.839976pt;}
.x1f{left:713.279988pt;}
.xb{left:714.560000pt;}
.x45{left:719.039988pt;}
.x2c{left:719.999988pt;}
.x22{left:723.199976pt;}
.x49{left:727.039988pt;}
.x23{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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