
    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_6e7d590276ef89439f302f1e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_76129c1e22813a0f7a0d6212.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8f3da4ab4d85611753894f81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_9f00844389a71d47a73814f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_64ee5a1112d6ae7ec1a10c6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_de3a0803e7abc1c3e142069f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a425c079e815950e82ef579a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a91bfeaf97c0b5c7f39355bd.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-15.660000px;}
.lsd{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.135360px;}
.ls10{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.lse{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.900000px;}
.ls17{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls5{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-6.094080px;}
._4{margin-left:-3.444480px;}
._9{margin-left:-2.422320px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._b{width:2.091600px;}
._7{width:3.283920px;}
._8{width:4.601520px;}
._19{width:5.682240px;}
._f{width:6.996960px;}
._15{width:8.844480px;}
._22{width:10.388160px;}
._a{width:11.598480px;}
._11{width:12.972960px;}
._13{width:16.792560px;}
._12{width:17.868240px;}
._14{width:19.362240px;}
._d{width:20.736720px;}
._c{width:21.752640px;}
._31{width:23.122080px;}
._20{width:24.207840px;}
._21{width:25.572240px;}
._2c{width:26.717760px;}
._1c{width:27.733680px;}
._1a{width:28.983600px;}
._1b{width:30.198240px;}
._16{width:31.916880px;}
._2b{width:33.189840px;}
._28{width:34.448400px;}
._1e{width:35.650080px;}
._1d{width:36.692640px;}
._25{width:37.773360px;}
._29{width:39.566160px;}
._e{width:40.582080px;}
._2f{width:41.772240px;}
._26{width:42.967440px;}
._18{width:44.346960px;}
._17{width:45.357840px;}
._2e{width:49.107600px;}
._2d{width:50.143680px;}
._27{width:51.338880px;}
._33{width:52.529040px;}
._2a{width:54.506160px;}
._30{width:56.348640px;}
._1f{width:57.673440px;}
._46{width:58.819680px;}
._24{width:59.944320px;}
._41{width:61.296240px;}
._45{width:65.502000px;}
._3d{width:68.484960px;}
._3c{width:69.560640px;}
._32{width:71.059680px;}
._43{width:72.070560px;}
._23{width:73.206000px;}
._10{width:74.759760px;}
._47{width:78.469920px;}
._3f{width:79.650000px;}
._3e{width:80.740800px;}
._39{width:83.480160px;}
._36{width:90.357120px;}
._38{width:105.582720px;}
._42{width:110.496240px;}
._3b{width:112.635840px;}
._3a{width:117.727200px;}
._44{width:122.453280px;}
._37{width:126.332640px;}
._40{width:135.714960px;}
._35{width:138.282960px;}
._34{width:140.017680px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._3{width:631.448160px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(38,74,96);}
.fc1{color:rgb(0,78,154);}
.fc6{color:rgb(34,34,34);}
.fc2{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y104{bottom:5.760000px;}
.y172{bottom:5.790000px;}
.y106{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y114{bottom:25.560000px;}
.y132{bottom:25.590000px;}
.y180{bottom:25.605000px;}
.y117{bottom:25.740000px;}
.y108{bottom:26.280000px;}
.y125{bottom:26.505000px;}
.y113{bottom:45.360000px;}
.y9{bottom:51.120000px;}
.y135{bottom:58.320000px;}
.y6{bottom:66.780000px;}
.y134{bottom:73.980000px;}
.y37{bottom:98.820000px;}
.yc2{bottom:101.520000px;}
.ya5{bottom:101.880000px;}
.y1a7{bottom:103.320000px;}
.y43{bottom:107.820000px;}
.y15b{bottom:109.440000px;}
.yce{bottom:110.520000px;}
.y79{bottom:112.320000px;}
.y133{bottom:113.940000px;}
.y36{bottom:118.620000px;}
.y18b{bottom:119.520000px;}
.yc1{bottom:121.320000px;}
.ya4{bottom:121.860000px;}
.y102{bottom:122.940000px;}
.y1a6{bottom:123.300000px;}
.y42{bottom:127.620000px;}
.y131{bottom:128.700000px;}
.y15a{bottom:129.240000px;}
.ycd{bottom:130.320000px;}
.y78{bottom:132.300000px;}
.y35{bottom:138.420000px;}
.y18a{bottom:139.320000px;}
.yc0{bottom:141.300000px;}
.ya3{bottom:141.660000px;}
.y101{bottom:142.740000px;}
.y1a5{bottom:143.100000px;}
.y41{bottom:147.420000px;}
.y159{bottom:149.040000px;}
.ycc{bottom:150.300000px;}
.y77{bottom:152.130000px;}
.y34{bottom:158.250000px;}
.ybf{bottom:161.130000px;}
.ya2{bottom:162.570000px;}
.y1a4{bottom:162.930000px;}
.y40{bottom:167.250000px;}
.y189{bottom:168.150000px;}
.y158{bottom:168.870000px;}
.y12e{bottom:169.050000px;}
.ycb{bottom:170.130000px;}
.y76{bottom:171.930000px;}
.y33{bottom:178.050000px;}
.ybe{bottom:180.930000px;}
.y100{bottom:182.370000px;}
.y1a3{bottom:182.730000px;}
.ya1{bottom:183.450000px;}
.y3f{bottom:187.050000px;}
.y188{bottom:187.950000px;}
.y130{bottom:189.750000px;}
.yca{bottom:189.930000px;}
.y75{bottom:191.730000px;}
.y32{bottom:198.030000px;}
.ybd{bottom:200.730000px;}
.yff{bottom:202.170000px;}
.y1a2{bottom:202.530000px;}
.y156{bottom:203.610000px;}
.ya0{bottom:204.330000px;}
.y3e{bottom:207.030000px;}
.y187{bottom:207.930000px;}
.yc9{bottom:209.730000px;}
.y74{bottom:211.530000px;}
.y31{bottom:217.830000px;}
.ybc{bottom:220.530000px;}
.yfe{bottom:222.150000px;}
.y1a1{bottom:222.510000px;}
.y157{bottom:224.130000px;}
.y9f{bottom:225.210000px;}
.y3d{bottom:226.830000px;}
.y186{bottom:227.730000px;}
.yc8{bottom:229.530000px;}
.y12f{bottom:230.070000px;}
.y73{bottom:231.510000px;}
.y30{bottom:237.630000px;}
.ybb{bottom:240.510000px;}
.yfd{bottom:241.950000px;}
.y1a0{bottom:242.310000px;}
.y155{bottom:244.650000px;}
.y9e{bottom:246.270000px;}
.y3c{bottom:246.630000px;}
.y185{bottom:247.530000px;}
.yc7{bottom:249.510000px;}
.y12d{bottom:250.770000px;}
.y72{bottom:251.310000px;}
.y2f{bottom:257.430000px;}
.yba{bottom:260.310000px;}
.yfc{bottom:261.750000px;}
.y19f{bottom:262.110000px;}
.y154{bottom:265.350000px;}
.y3b{bottom:266.430000px;}
.y9d{bottom:267.150000px;}
.y184{bottom:267.330000px;}
.yc6{bottom:269.310000px;}
.y71{bottom:271.110000px;}
.y12c{bottom:277.050000px;}
.y2e{bottom:277.230000px;}
.yb9{bottom:280.110000px;}
.yfb{bottom:281.550000px;}
.y19e{bottom:281.910000px;}
.y3a{bottom:286.230000px;}
.y183{bottom:287.130000px;}
.y9c{bottom:288.030000px;}
.yc5{bottom:289.110000px;}
.y70{bottom:290.910000px;}
.y153{bottom:291.630000px;}
.y12b{bottom:297.030000px;}
.y2d{bottom:297.210000px;}
.yb8{bottom:299.910000px;}
.yfa{bottom:301.350000px;}
.y19d{bottom:301.710000px;}
.y39{bottom:306.210000px;}
.y182{bottom:307.110000px;}
.y9b{bottom:307.830000px;}
.yc4{bottom:308.910000px;}
.y6f{bottom:310.710000px;}
.y150{bottom:311.610000px;}
.y12a{bottom:316.830000px;}
.y2c{bottom:317.010000px;}
.yb7{bottom:319.710000px;}
.yf9{bottom:321.330000px;}
.y19c{bottom:321.690000px;}
.y181{bottom:321.870000px;}
.y38{bottom:326.010000px;}
.y9a{bottom:327.630000px;}
.yc3{bottom:328.710000px;}
.y6e{bottom:330.690000px;}
.y14f{bottom:331.410000px;}
.y129{bottom:336.630000px;}
.yb6{bottom:339.690000px;}
.yf8{bottom:341.130000px;}
.y19b{bottom:341.490000px;}
.y2b{bottom:345.810000px;}
.y99{bottom:348.690000px;}
.y6d{bottom:350.490000px;}
.y14e{bottom:351.210000px;}
.y128{bottom:356.430000px;}
.yb5{bottom:359.490000px;}
.yf7{bottom:360.930000px;}
.y19a{bottom:361.290000px;}
.y17d{bottom:362.190000px;}
.y2a{bottom:365.610000px;}
.y98{bottom:368.490000px;}
.y6c{bottom:370.290000px;}
.y152{bottom:371.010000px;}
.y127{bottom:376.230000px;}
.yb4{bottom:379.290000px;}
.y14d{bottom:380.010000px;}
.yf6{bottom:380.730000px;}
.y199{bottom:381.090000px;}
.y17f{bottom:382.890000px;}
.y29{bottom:385.410000px;}
.y97{bottom:388.290000px;}
.y6b{bottom:390.090000px;}
.y151{bottom:390.810000px;}
.y124{bottom:390.990000px;}
.yb3{bottom:399.090000px;}
.y14c{bottom:399.810000px;}
.yf5{bottom:400.575000px;}
.y198{bottom:400.935000px;}
.y28{bottom:405.435000px;}
.y96{bottom:408.135000px;}
.y6a{bottom:409.935000px;}
.y126{bottom:411.735000px;}
.yb2{bottom:418.935000px;}
.y14b{bottom:419.835000px;}
.yf4{bottom:420.555000px;}
.y197{bottom:420.915000px;}
.y17e{bottom:423.255000px;}
.y27{bottom:425.235000px;}
.y95{bottom:427.935000px;}
.y69{bottom:429.915000px;}
.y123{bottom:432.255000px;}
.yb1{bottom:438.915000px;}
.y14a{bottom:439.635000px;}
.yf3{bottom:440.355000px;}
.y196{bottom:440.715000px;}
.y17c{bottom:443.955000px;}
.y26{bottom:445.035000px;}
.y94{bottom:447.915000px;}
.y68{bottom:449.715000px;}
.y122{bottom:452.955000px;}
.yb0{bottom:458.715000px;}
.y149{bottom:459.435000px;}
.yf2{bottom:460.155000px;}
.y195{bottom:460.515000px;}
.y25{bottom:464.835000px;}
.y93{bottom:467.715000px;}
.y67{bottom:469.515000px;}
.y17b{bottom:470.235000px;}
.yaf{bottom:478.515000px;}
.y121{bottom:479.235000px;}
.yf1{bottom:479.955000px;}
.y194{bottom:480.315000px;}
.y24{bottom:484.635000px;}
.y92{bottom:487.515000px;}
.y66{bottom:489.315000px;}
.y17a{bottom:490.035000px;}
.yae{bottom:498.315000px;}
.y120{bottom:499.035000px;}
.yf0{bottom:499.755000px;}
.y193{bottom:500.115000px;}
.y23{bottom:504.615000px;}
.y91{bottom:507.315000px;}
.y65{bottom:509.115000px;}
.y179{bottom:510.015000px;}
.yad{bottom:518.115000px;}
.y11f{bottom:519.015000px;}
.yef{bottom:519.735000px;}
.y192{bottom:520.095000px;}
.y22{bottom:524.415000px;}
.y90{bottom:527.115000px;}
.y64{bottom:529.095000px;}
.y178{bottom:529.815000px;}
.yac{bottom:538.095000px;}
.y11e{bottom:538.815000px;}
.yee{bottom:539.535000px;}
.y191{bottom:539.895000px;}
.y21{bottom:544.215000px;}
.y8f{bottom:547.095000px;}
.y63{bottom:548.895000px;}
.y177{bottom:549.615000px;}
.y148{bottom:553.575000px;}
.yab{bottom:557.895000px;}
.y11d{bottom:558.615000px;}
.yed{bottom:559.335000px;}
.y190{bottom:559.695000px;}
.y20{bottom:564.015000px;}
.y8e{bottom:566.895000px;}
.y62{bottom:568.695000px;}
.y176{bottom:569.415000px;}
.yaa{bottom:577.695000px;}
.y11c{bottom:578.415000px;}
.yec{bottom:579.135000px;}
.y18f{bottom:579.495000px;}
.y1f{bottom:583.815000px;}
.y8d{bottom:586.695000px;}
.y61{bottom:588.495000px;}
.y175{bottom:589.215000px;}
.y145{bottom:593.895000px;}
.ya9{bottom:597.495000px;}
.y11b{bottom:598.215000px;}
.yeb{bottom:598.935000px;}
.y1e{bottom:603.795000px;}
.y173{bottom:604.155000px;}
.y8c{bottom:606.495000px;}
.y60{bottom:608.295000px;}
.y147{bottom:614.595000px;}
.ya8{bottom:617.295000px;}
.y11a{bottom:618.195000px;}
.yea{bottom:618.915000px;}
.y1d{bottom:623.595000px;}
.y174{bottom:624.675000px;}
.y8b{bottom:626.295000px;}
.y5f{bottom:628.275000px;}
.ya7{bottom:637.275000px;}
.y119{bottom:637.995000px;}
.ye9{bottom:638.715000px;}
.y1c{bottom:643.395000px;}
.y171{bottom:645.195000px;}
.y8a{bottom:646.275000px;}
.y5e{bottom:648.075000px;}
.y146{bottom:654.945000px;}
.ya6{bottom:657.105000px;}
.y118{bottom:657.825000px;}
.ye8{bottom:658.545000px;}
.y1b{bottom:663.225000px;}
.y170{bottom:665.925000px;}
.y89{bottom:666.105000px;}
.y5d{bottom:667.905000px;}
.y116{bottom:672.585000px;}
.y144{bottom:675.645000px;}
.ycf{bottom:676.905000px;}
.ye7{bottom:678.345000px;}
.y1a{bottom:683.025000px;}
.y88{bottom:685.905000px;}
.y18e{bottom:687.705000px;}
.y16f{bottom:692.205000px;}
.y5c{bottom:696.705000px;}
.ye6{bottom:698.145000px;}
.y143{bottom:701.925000px;}
.y19{bottom:705.165000px;}
.y87{bottom:705.705000px;}
.y18d{bottom:707.505000px;}
.y16c{bottom:712.005000px;}
.y111{bottom:713.085000px;}
.y5b{bottom:716.505000px;}
.ye5{bottom:718.125000px;}
.y142{bottom:721.905000px;}
.y18{bottom:724.965000px;}
.y86{bottom:725.505000px;}
.y18c{bottom:727.485000px;}
.y16b{bottom:731.985000px;}
.y115{bottom:733.605000px;}
.y5a{bottom:736.485000px;}
.ye4{bottom:737.925000px;}
.y141{bottom:741.705000px;}
.y17{bottom:744.765000px;}
.y85{bottom:745.485000px;}
.y16a{bottom:751.785000px;}
.y59{bottom:756.285000px;}
.ye3{bottom:757.725000px;}
.y140{bottom:761.505000px;}
.y16{bottom:764.745000px;}
.y84{bottom:765.285000px;}
.y16e{bottom:771.585000px;}
.y112{bottom:774.105000px;}
.y58{bottom:776.085000px;}
.ye2{bottom:777.525000px;}
.y169{bottom:780.585000px;}
.y13f{bottom:781.305000px;}
.y15{bottom:784.545000px;}
.y83{bottom:785.085000px;}
.y16d{bottom:791.385000px;}
.y110{bottom:794.625000px;}
.y57{bottom:795.885000px;}
.ye1{bottom:797.325000px;}
.y168{bottom:800.385000px;}
.y13e{bottom:801.105000px;}
.y14{bottom:804.345000px;}
.y82{bottom:804.885000px;}
.y56{bottom:815.685000px;}
.y13c{bottom:816.045000px;}
.ye0{bottom:817.305000px;}
.y167{bottom:820.185000px;}
.y10f{bottom:821.085000px;}
.y13{bottom:824.145000px;}
.y81{bottom:824.685000px;}
.y55{bottom:835.665000px;}
.y13d{bottom:836.565000px;}
.ydf{bottom:837.105000px;}
.y166{bottom:840.165000px;}
.y10e{bottom:840.885000px;}
.y12{bottom:843.945000px;}
.y80{bottom:844.665000px;}
.y54{bottom:855.465000px;}
.yde{bottom:856.905000px;}
.y13b{bottom:857.085000px;}
.y165{bottom:859.965000px;}
.y10d{bottom:860.685000px;}
.y11{bottom:863.925000px;}
.y7f{bottom:864.465000px;}
.y53{bottom:875.265000px;}
.ydd{bottom:876.705000px;}
.y13a{bottom:877.785000px;}
.y164{bottom:879.765000px;}
.y10c{bottom:880.485000px;}
.y10{bottom:883.545000px;}
.y7e{bottom:884.265000px;}
.y52{bottom:895.065000px;}
.ydc{bottom:896.505000px;}
.y163{bottom:899.610000px;}
.y10b{bottom:900.330000px;}
.y7d{bottom:904.110000px;}
.yf{bottom:905.910000px;}
.y51{bottom:914.910000px;}
.ydb{bottom:916.530000px;}
.y162{bottom:919.410000px;}
.y10a{bottom:920.310000px;}
.y7c{bottom:923.910000px;}
.ye{bottom:930.930000px;}
.y50{bottom:934.890000px;}
.y107{bottom:935.070000px;}
.yda{bottom:936.330000px;}
.y161{bottom:939.390000px;}
.y7b{bottom:943.890000px;}
.yd{bottom:946.050000px;}
.y160{bottom:954.150000px;}
.y4f{bottom:954.690000px;}
.y109{bottom:955.590000px;}
.yd9{bottom:956.130000px;}
.y7a{bottom:963.690000px;}
.yc{bottom:967.290000px;}
.y139{bottom:974.490000px;}
.yd8{bottom:975.930000px;}
.y105{bottom:976.110000px;}
.y4e{bottom:983.490000px;}
.yb{bottom:990.690000px;}
.y138{bottom:994.290000px;}
.y15d{bottom:994.470000px;}
.yd7{bottom:995.730000px;}
.y103{bottom:996.810000px;}
.y4d{bottom:1003.290000px;}
.y137{bottom:1014.090000px;}
.y15f{bottom:1015.170000px;}
.yd6{bottom:1016.610000px;}
.ya{bottom:1022.550000px;}
.y4c{bottom:1023.090000px;}
.y136{bottom:1034.070000px;}
.yd5{bottom:1037.670000px;}
.y4b{bottom:1043.070000px;}
.y15e{bottom:1055.490000px;}
.yd4{bottom:1058.550000px;}
.y4a{bottom:1062.870000px;}
.y5{bottom:1067.370000px;}
.y15c{bottom:1076.190000px;}
.yd3{bottom:1079.430000px;}
.y49{bottom:1082.670000px;}
.yd2{bottom:1100.310000px;}
.y48{bottom:1102.470000px;}
.y4{bottom:1102.830000px;}
.yd1{bottom:1121.190000px;}
.y47{bottom:1122.270000px;}
.y3{bottom:1131.270000px;}
.yd0{bottom:1141.170000px;}
.y46{bottom:1142.250000px;}
.y2{bottom:1159.740000px;}
.y45{bottom:1171.620000px;}
.y1{bottom:1190.520000px;}
.y44{bottom:1193.400000px;}
.h11{height:19.800000px;}
.h1f{height:19.836000px;}
.h12{height:19.980000px;}
.h19{height:20.016000px;}
.h6{height:21.780000px;}
.hc{height:28.115859px;}
.h16{height:39.600000px;}
.h1c{height:39.636000px;}
.h17{height:39.780000px;}
.h13{height:40.320000px;}
.h18{height:40.536000px;}
.he{height:41.493516px;}
.hb{height:42.164648px;}
.hd{height:43.215117px;}
.h10{height:43.506914px;}
.hf{height:43.681992px;}
.h3{height:46.736719px;}
.h7{height:47.901094px;}
.h4{height:50.800781px;}
.h8{height:53.224453px;}
.h2{height:54.864844px;}
.h15{height:60.120000px;}
.h1b{height:60.300000px;}
.h1e{height:60.336000px;}
.h5{height:65.884219px;}
.h9{height:67.565039px;}
.ha{height:69.248320px;}
.h14{height:80.820000px;}
.h20{height:80.856000px;}
.h1a{height:81.000000px;}
.h1d{height:81.036000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w34{width:21.420000px;}
.w11{width:21.600000px;}
.w22{width:24.840000px;}
.w4b{width:38.016000px;}
.w33{width:38.340000px;}
.w10{width:39.960000px;}
.w3b{width:40.176000px;}
.w2a{width:40.536000px;}
.w5d{width:41.796000px;}
.w21{width:42.660000px;}
.w19{width:43.776000px;}
.w43{width:44.820000px;}
.w55{width:46.620000px;}
.w3{width:51.336000px;}
.wc{width:55.476000px;}
.w51{width:57.600000px;}
.wb{width:57.780000px;}
.w3f{width:57.960000px;}
.w52{width:61.236000px;}
.w1e{width:62.316000px;}
.w12{width:63.576000px;}
.w40{width:64.656000px;}
.w30{width:65.916000px;}
.w44{width:66.276000px;}
.w57{width:68.940000px;}
.w13{width:70.020000px;}
.w35{width:74.916000px;}
.w7{width:75.960000px;}
.w2e{width:75.996000px;}
.w4f{width:76.140000px;}
.w8{width:76.176000px;}
.w23{width:76.536000px;}
.w4c{width:78.120000px;}
.w24{width:80.280000px;}
.w56{width:81.576000px;}
.w2b{width:85.860000px;}
.w1a{width:86.400000px;}
.w36{width:87.156000px;}
.w58{width:89.100000px;}
.w37{width:91.080000px;}
.w25{width:92.916000px;}
.w3c{width:93.060000px;}
.w14{width:93.636000px;}
.w59{width:96.336000px;}
.w38{width:97.596000px;}
.w5e{width:97.740000px;}
.w46{width:99.000000px;}
.w26{width:99.756000px;}
.w45{width:101.016000px;}
.w47{width:101.916000px;}
.w15{width:103.176000px;}
.w50{width:106.920000px;}
.w9{width:107.100000px;}
.w1d{width:109.260000px;}
.wa{width:109.296000px;}
.w2f{width:109.440000px;}
.w4a{width:111.636000px;}
.w6{width:113.976000px;}
.w49{width:114.480000px;}
.w29{width:114.516000px;}
.w5b{width:116.460000px;}
.w5c{width:116.676000px;}
.w41{width:116.856000px;}
.w3a{width:118.800000px;}
.w28{width:119.160000px;}
.w4e{width:119.556000px;}
.w1c{width:120.816000px;}
.w18{width:122.976000px;}
.w3e{width:123.336000px;}
.w2d{width:124.416000px;}
.w1f{width:127.116000px;}
.we{width:130.896000px;}
.w17{width:132.120000px;}
.w31{width:133.956000px;}
.w53{width:140.256000px;}
.w48{width:227.010000px;}
.w5a{width:233.850000px;}
.w39{width:234.030000px;}
.w27{width:234.390000px;}
.w16{width:255.810000px;}
.w5{width:485.385000px;}
.w54{width:490.605000px;}
.w4d{width:490.965000px;}
.w20{width:509.505000px;}
.w32{width:512.025000px;}
.wf{width:524.805000px;}
.w1b{width:528.045000px;}
.w3d{width:530.385000px;}
.w42{width:531.285000px;}
.w2c{width:531.465000px;}
.w4{width:733.110000px;}
.wd{width:783.720000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:4.500000px;}
.x3{left:8.100000px;}
.x5{left:10.260000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x6{left:58.319987px;}
.x7{left:63.179987px;}
.x53{left:80.999987px;}
.x43{left:93.456000px;}
.x2c{left:95.976000px;}
.x52{left:97.236000px;}
.x1e{left:99.216000px;}
.x4{left:106.056000px;}
.x54{left:108.035987px;}
.xa{left:126.755987px;}
.x3b{left:172.290000px;}
.x2d{left:180.750000px;}
.x1f{left:182.550000px;}
.x16{left:186.330000px;}
.x33{left:189.390000px;}
.x4a{left:195.870000px;}
.x44{left:201.090000px;}
.xf{left:203.790000px;}
.x32{left:239.250000px;}
.x24{left:241.050000px;}
.x1a{left:257.070000px;}
.x49{left:259.410000px;}
.x15{left:262.290000px;}
.x28{left:263.550000px;}
.x4e{left:265.575000px;}
.x3f{left:274.035000px;}
.x37{left:277.275000px;}
.x9{left:280.334987px;}
.x20{left:304.275000px;}
.x2e{left:305.895000px;}
.x11{left:318.495000px;}
.x45{left:321.375000px;}
.xc{left:329.114987px;}
.x1b{left:351.435000px;}
.x4f{left:355.575000px;}
.x29{left:357.195000px;}
.x38{left:369.075000px;}
.x40{left:373.935000px;}
.x12{left:395.175000px;}
.x46{left:398.235000px;}
.x21{left:414.255000px;}
.x2f{left:416.055000px;}
.x8{left:446.504987px;}
.x50{left:452.625000px;}
.x1c{left:455.325000px;}
.x2a{left:457.665000px;}
.x39{left:467.385000px;}
.x13{left:472.065000px;}
.xb{left:473.504987px;}
.x47{left:475.125000px;}
.x41{left:476.565000px;}
.x22{left:491.145000px;}
.x30{left:492.765000px;}
.xd{left:500.504987px;}
.xe{left:527.504987px;}
.x51{left:569.805000px;}
.x2b{left:577.545000px;}
.x14{left:579.885000px;}
.x48{left:582.765000px;}
.x3a{left:586.905000px;}
.x1d{left:588.165000px;}
.x42{left:591.945000px;}
.x23{left:601.305000px;}
.x31{left:602.925000px;}
.x4b{left:687.210000px;}
.x25{left:692.790000px;}
.x34{left:702.150000px;}
.x3c{left:704.310000px;}
.x17{left:711.870000px;}
.x4c{left:734.550000px;}
.x26{left:736.350000px;}
.x35{left:741.390000px;}
.x3d{left:749.850000px;}
.x18{left:752.550000px;}
.x4d{left:756.870000px;}
.x27{left:761.910000px;}
.x36{left:763.530000px;}
.x3e{left:772.170000px;}
.x19{left:774.870000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-13.920000pt;}
.lsd{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.120320pt;}
.ls10{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls17{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls5{letter-spacing:56.912640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-5.416960pt;}
._4{margin-left:-3.061760pt;}
._9{margin-left:-2.153173pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._b{width:1.859200pt;}
._7{width:2.919040pt;}
._8{width:4.090240pt;}
._19{width:5.050880pt;}
._f{width:6.219520pt;}
._15{width:7.861760pt;}
._22{width:9.233920pt;}
._a{width:10.309760pt;}
._11{width:11.531520pt;}
._13{width:14.926720pt;}
._12{width:15.882880pt;}
._14{width:17.210880pt;}
._d{width:18.432640pt;}
._c{width:19.335680pt;}
._31{width:20.552960pt;}
._20{width:21.518080pt;}
._21{width:22.730880pt;}
._2c{width:23.749120pt;}
._1c{width:24.652160pt;}
._1a{width:25.763200pt;}
._1b{width:26.842880pt;}
._16{width:28.370560pt;}
._2b{width:29.502080pt;}
._28{width:30.620800pt;}
._1e{width:31.688960pt;}
._1d{width:32.615680pt;}
._25{width:33.576320pt;}
._29{width:35.169920pt;}
._e{width:36.072960pt;}
._2f{width:37.130880pt;}
._26{width:38.193280pt;}
._18{width:39.419520pt;}
._17{width:40.318080pt;}
._2e{width:43.651200pt;}
._2d{width:44.572160pt;}
._27{width:45.634560pt;}
._33{width:46.692480pt;}
._2a{width:48.449920pt;}
._30{width:50.087680pt;}
._1f{width:51.265280pt;}
._46{width:52.284160pt;}
._24{width:53.283840pt;}
._41{width:54.485547pt;}
._45{width:58.224000pt;}
._3d{width:60.875520pt;}
._3c{width:61.831680pt;}
._32{width:63.164160pt;}
._43{width:64.062720pt;}
._23{width:65.072000pt;}
._10{width:66.453120pt;}
._47{width:69.751040pt;}
._3f{width:70.800000pt;}
._3e{width:71.769600pt;}
._39{width:74.204587pt;}
._36{width:80.317440pt;}
._38{width:93.851307pt;}
._42{width:98.218880pt;}
._3b{width:100.120747pt;}
._3a{width:104.646400pt;}
._44{width:108.847360pt;}
._37{width:112.295680pt;}
._40{width:120.635520pt;}
._35{width:122.918187pt;}
._34{width:124.460160pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._3{width:561.287253pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:5.120000pt;}
.y172{bottom:5.146667pt;}
.y106{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y114{bottom:22.720000pt;}
.y132{bottom:22.746667pt;}
.y180{bottom:22.760000pt;}
.y117{bottom:22.880000pt;}
.y108{bottom:23.360000pt;}
.y125{bottom:23.560000pt;}
.y113{bottom:40.320000pt;}
.y9{bottom:45.440000pt;}
.y135{bottom:51.840000pt;}
.y6{bottom:59.360000pt;}
.y134{bottom:65.760000pt;}
.y37{bottom:87.840000pt;}
.yc2{bottom:90.240000pt;}
.ya5{bottom:90.560000pt;}
.y1a7{bottom:91.840000pt;}
.y43{bottom:95.840000pt;}
.y15b{bottom:97.280000pt;}
.yce{bottom:98.240000pt;}
.y79{bottom:99.840000pt;}
.y133{bottom:101.280000pt;}
.y36{bottom:105.440000pt;}
.y18b{bottom:106.240000pt;}
.yc1{bottom:107.840000pt;}
.ya4{bottom:108.320000pt;}
.y102{bottom:109.280000pt;}
.y1a6{bottom:109.600000pt;}
.y42{bottom:113.440000pt;}
.y131{bottom:114.400000pt;}
.y15a{bottom:114.880000pt;}
.ycd{bottom:115.840000pt;}
.y78{bottom:117.600000pt;}
.y35{bottom:123.040000pt;}
.y18a{bottom:123.840000pt;}
.yc0{bottom:125.600000pt;}
.ya3{bottom:125.920000pt;}
.y101{bottom:126.880000pt;}
.y1a5{bottom:127.200000pt;}
.y41{bottom:131.040000pt;}
.y159{bottom:132.480000pt;}
.ycc{bottom:133.600000pt;}
.y77{bottom:135.226667pt;}
.y34{bottom:140.666667pt;}
.ybf{bottom:143.226667pt;}
.ya2{bottom:144.506667pt;}
.y1a4{bottom:144.826667pt;}
.y40{bottom:148.666667pt;}
.y189{bottom:149.466667pt;}
.y158{bottom:150.106667pt;}
.y12e{bottom:150.266667pt;}
.ycb{bottom:151.226667pt;}
.y76{bottom:152.826667pt;}
.y33{bottom:158.266667pt;}
.ybe{bottom:160.826667pt;}
.y100{bottom:162.106667pt;}
.y1a3{bottom:162.426667pt;}
.ya1{bottom:163.066667pt;}
.y3f{bottom:166.266667pt;}
.y188{bottom:167.066667pt;}
.y130{bottom:168.666667pt;}
.yca{bottom:168.826667pt;}
.y75{bottom:170.426667pt;}
.y32{bottom:176.026667pt;}
.ybd{bottom:178.426667pt;}
.yff{bottom:179.706667pt;}
.y1a2{bottom:180.026667pt;}
.y156{bottom:180.986667pt;}
.ya0{bottom:181.626667pt;}
.y3e{bottom:184.026667pt;}
.y187{bottom:184.826667pt;}
.yc9{bottom:186.426667pt;}
.y74{bottom:188.026667pt;}
.y31{bottom:193.626667pt;}
.ybc{bottom:196.026667pt;}
.yfe{bottom:197.466667pt;}
.y1a1{bottom:197.786667pt;}
.y157{bottom:199.226667pt;}
.y9f{bottom:200.186667pt;}
.y3d{bottom:201.626667pt;}
.y186{bottom:202.426667pt;}
.yc8{bottom:204.026667pt;}
.y12f{bottom:204.506667pt;}
.y73{bottom:205.786667pt;}
.y30{bottom:211.226667pt;}
.ybb{bottom:213.786667pt;}
.yfd{bottom:215.066667pt;}
.y1a0{bottom:215.386667pt;}
.y155{bottom:217.466667pt;}
.y9e{bottom:218.906667pt;}
.y3c{bottom:219.226667pt;}
.y185{bottom:220.026667pt;}
.yc7{bottom:221.786667pt;}
.y12d{bottom:222.906667pt;}
.y72{bottom:223.386667pt;}
.y2f{bottom:228.826667pt;}
.yba{bottom:231.386667pt;}
.yfc{bottom:232.666667pt;}
.y19f{bottom:232.986667pt;}
.y154{bottom:235.866667pt;}
.y3b{bottom:236.826667pt;}
.y9d{bottom:237.466667pt;}
.y184{bottom:237.626667pt;}
.yc6{bottom:239.386667pt;}
.y71{bottom:240.986667pt;}
.y12c{bottom:246.266667pt;}
.y2e{bottom:246.426667pt;}
.yb9{bottom:248.986667pt;}
.yfb{bottom:250.266667pt;}
.y19e{bottom:250.586667pt;}
.y3a{bottom:254.426667pt;}
.y183{bottom:255.226667pt;}
.y9c{bottom:256.026667pt;}
.yc5{bottom:256.986667pt;}
.y70{bottom:258.586667pt;}
.y153{bottom:259.226667pt;}
.y12b{bottom:264.026667pt;}
.y2d{bottom:264.186667pt;}
.yb8{bottom:266.586667pt;}
.yfa{bottom:267.866667pt;}
.y19d{bottom:268.186667pt;}
.y39{bottom:272.186667pt;}
.y182{bottom:272.986667pt;}
.y9b{bottom:273.626667pt;}
.yc4{bottom:274.586667pt;}
.y6f{bottom:276.186667pt;}
.y150{bottom:276.986667pt;}
.y12a{bottom:281.626667pt;}
.y2c{bottom:281.786667pt;}
.yb7{bottom:284.186667pt;}
.yf9{bottom:285.626667pt;}
.y19c{bottom:285.946667pt;}
.y181{bottom:286.106667pt;}
.y38{bottom:289.786667pt;}
.y9a{bottom:291.226667pt;}
.yc3{bottom:292.186667pt;}
.y6e{bottom:293.946667pt;}
.y14f{bottom:294.586667pt;}
.y129{bottom:299.226667pt;}
.yb6{bottom:301.946667pt;}
.yf8{bottom:303.226667pt;}
.y19b{bottom:303.546667pt;}
.y2b{bottom:307.386667pt;}
.y99{bottom:309.946667pt;}
.y6d{bottom:311.546667pt;}
.y14e{bottom:312.186667pt;}
.y128{bottom:316.826667pt;}
.yb5{bottom:319.546667pt;}
.yf7{bottom:320.826667pt;}
.y19a{bottom:321.146667pt;}
.y17d{bottom:321.946667pt;}
.y2a{bottom:324.986667pt;}
.y98{bottom:327.546667pt;}
.y6c{bottom:329.146667pt;}
.y152{bottom:329.786667pt;}
.y127{bottom:334.426667pt;}
.yb4{bottom:337.146667pt;}
.y14d{bottom:337.786667pt;}
.yf6{bottom:338.426667pt;}
.y199{bottom:338.746667pt;}
.y17f{bottom:340.346667pt;}
.y29{bottom:342.586667pt;}
.y97{bottom:345.146667pt;}
.y6b{bottom:346.746667pt;}
.y151{bottom:347.386667pt;}
.y124{bottom:347.546667pt;}
.yb3{bottom:354.746667pt;}
.y14c{bottom:355.386667pt;}
.yf5{bottom:356.066667pt;}
.y198{bottom:356.386667pt;}
.y28{bottom:360.386667pt;}
.y96{bottom:362.786667pt;}
.y6a{bottom:364.386667pt;}
.y126{bottom:365.986667pt;}
.yb2{bottom:372.386667pt;}
.y14b{bottom:373.186667pt;}
.yf4{bottom:373.826667pt;}
.y197{bottom:374.146667pt;}
.y17e{bottom:376.226667pt;}
.y27{bottom:377.986667pt;}
.y95{bottom:380.386667pt;}
.y69{bottom:382.146667pt;}
.y123{bottom:384.226667pt;}
.yb1{bottom:390.146667pt;}
.y14a{bottom:390.786667pt;}
.yf3{bottom:391.426667pt;}
.y196{bottom:391.746667pt;}
.y17c{bottom:394.626667pt;}
.y26{bottom:395.586667pt;}
.y94{bottom:398.146667pt;}
.y68{bottom:399.746667pt;}
.y122{bottom:402.626667pt;}
.yb0{bottom:407.746667pt;}
.y149{bottom:408.386667pt;}
.yf2{bottom:409.026667pt;}
.y195{bottom:409.346667pt;}
.y25{bottom:413.186667pt;}
.y93{bottom:415.746667pt;}
.y67{bottom:417.346667pt;}
.y17b{bottom:417.986667pt;}
.yaf{bottom:425.346667pt;}
.y121{bottom:425.986667pt;}
.yf1{bottom:426.626667pt;}
.y194{bottom:426.946667pt;}
.y24{bottom:430.786667pt;}
.y92{bottom:433.346667pt;}
.y66{bottom:434.946667pt;}
.y17a{bottom:435.586667pt;}
.yae{bottom:442.946667pt;}
.y120{bottom:443.586667pt;}
.yf0{bottom:444.226667pt;}
.y193{bottom:444.546667pt;}
.y23{bottom:448.546667pt;}
.y91{bottom:450.946667pt;}
.y65{bottom:452.546667pt;}
.y179{bottom:453.346667pt;}
.yad{bottom:460.546667pt;}
.y11f{bottom:461.346667pt;}
.yef{bottom:461.986667pt;}
.y192{bottom:462.306667pt;}
.y22{bottom:466.146667pt;}
.y90{bottom:468.546667pt;}
.y64{bottom:470.306667pt;}
.y178{bottom:470.946667pt;}
.yac{bottom:478.306667pt;}
.y11e{bottom:478.946667pt;}
.yee{bottom:479.586667pt;}
.y191{bottom:479.906667pt;}
.y21{bottom:483.746667pt;}
.y8f{bottom:486.306667pt;}
.y63{bottom:487.906667pt;}
.y177{bottom:488.546667pt;}
.y148{bottom:492.066667pt;}
.yab{bottom:495.906667pt;}
.y11d{bottom:496.546667pt;}
.yed{bottom:497.186667pt;}
.y190{bottom:497.506667pt;}
.y20{bottom:501.346667pt;}
.y8e{bottom:503.906667pt;}
.y62{bottom:505.506667pt;}
.y176{bottom:506.146667pt;}
.yaa{bottom:513.506667pt;}
.y11c{bottom:514.146667pt;}
.yec{bottom:514.786667pt;}
.y18f{bottom:515.106667pt;}
.y1f{bottom:518.946667pt;}
.y8d{bottom:521.506667pt;}
.y61{bottom:523.106667pt;}
.y175{bottom:523.746667pt;}
.y145{bottom:527.906667pt;}
.ya9{bottom:531.106667pt;}
.y11b{bottom:531.746667pt;}
.yeb{bottom:532.386667pt;}
.y1e{bottom:536.706667pt;}
.y173{bottom:537.026667pt;}
.y8c{bottom:539.106667pt;}
.y60{bottom:540.706667pt;}
.y147{bottom:546.306667pt;}
.ya8{bottom:548.706667pt;}
.y11a{bottom:549.506667pt;}
.yea{bottom:550.146667pt;}
.y1d{bottom:554.306667pt;}
.y174{bottom:555.266667pt;}
.y8b{bottom:556.706667pt;}
.y5f{bottom:558.466667pt;}
.ya7{bottom:566.466667pt;}
.y119{bottom:567.106667pt;}
.ye9{bottom:567.746667pt;}
.y1c{bottom:571.906667pt;}
.y171{bottom:573.506667pt;}
.y8a{bottom:574.466667pt;}
.y5e{bottom:576.066667pt;}
.y146{bottom:582.173333pt;}
.ya6{bottom:584.093333pt;}
.y118{bottom:584.733333pt;}
.ye8{bottom:585.373333pt;}
.y1b{bottom:589.533333pt;}
.y170{bottom:591.933333pt;}
.y89{bottom:592.093333pt;}
.y5d{bottom:593.693333pt;}
.y116{bottom:597.853333pt;}
.y144{bottom:600.573333pt;}
.ycf{bottom:601.693333pt;}
.ye7{bottom:602.973333pt;}
.y1a{bottom:607.133333pt;}
.y88{bottom:609.693333pt;}
.y18e{bottom:611.293333pt;}
.y16f{bottom:615.293333pt;}
.y5c{bottom:619.293333pt;}
.ye6{bottom:620.573333pt;}
.y143{bottom:623.933333pt;}
.y19{bottom:626.813333pt;}
.y87{bottom:627.293333pt;}
.y18d{bottom:628.893333pt;}
.y16c{bottom:632.893333pt;}
.y111{bottom:633.853333pt;}
.y5b{bottom:636.893333pt;}
.ye5{bottom:638.333333pt;}
.y142{bottom:641.693333pt;}
.y18{bottom:644.413333pt;}
.y86{bottom:644.893333pt;}
.y18c{bottom:646.653333pt;}
.y16b{bottom:650.653333pt;}
.y115{bottom:652.093333pt;}
.y5a{bottom:654.653333pt;}
.ye4{bottom:655.933333pt;}
.y141{bottom:659.293333pt;}
.y17{bottom:662.013333pt;}
.y85{bottom:662.653333pt;}
.y16a{bottom:668.253333pt;}
.y59{bottom:672.253333pt;}
.ye3{bottom:673.533333pt;}
.y140{bottom:676.893333pt;}
.y16{bottom:679.773333pt;}
.y84{bottom:680.253333pt;}
.y16e{bottom:685.853333pt;}
.y112{bottom:688.093333pt;}
.y58{bottom:689.853333pt;}
.ye2{bottom:691.133333pt;}
.y169{bottom:693.853333pt;}
.y13f{bottom:694.493333pt;}
.y15{bottom:697.373333pt;}
.y83{bottom:697.853333pt;}
.y16d{bottom:703.453333pt;}
.y110{bottom:706.333333pt;}
.y57{bottom:707.453333pt;}
.ye1{bottom:708.733333pt;}
.y168{bottom:711.453333pt;}
.y13e{bottom:712.093333pt;}
.y14{bottom:714.973333pt;}
.y82{bottom:715.453333pt;}
.y56{bottom:725.053333pt;}
.y13c{bottom:725.373333pt;}
.ye0{bottom:726.493333pt;}
.y167{bottom:729.053333pt;}
.y10f{bottom:729.853333pt;}
.y13{bottom:732.573333pt;}
.y81{bottom:733.053333pt;}
.y55{bottom:742.813333pt;}
.y13d{bottom:743.613333pt;}
.ydf{bottom:744.093333pt;}
.y166{bottom:746.813333pt;}
.y10e{bottom:747.453333pt;}
.y12{bottom:750.173333pt;}
.y80{bottom:750.813333pt;}
.y54{bottom:760.413333pt;}
.yde{bottom:761.693333pt;}
.y13b{bottom:761.853333pt;}
.y165{bottom:764.413333pt;}
.y10d{bottom:765.053333pt;}
.y11{bottom:767.933333pt;}
.y7f{bottom:768.413333pt;}
.y53{bottom:778.013333pt;}
.ydd{bottom:779.293333pt;}
.y13a{bottom:780.253333pt;}
.y164{bottom:782.013333pt;}
.y10c{bottom:782.653333pt;}
.y10{bottom:785.373333pt;}
.y7e{bottom:786.013333pt;}
.y52{bottom:795.613333pt;}
.ydc{bottom:796.893333pt;}
.y163{bottom:799.653333pt;}
.y10b{bottom:800.293333pt;}
.y7d{bottom:803.653333pt;}
.yf{bottom:805.253333pt;}
.y51{bottom:813.253333pt;}
.ydb{bottom:814.693333pt;}
.y162{bottom:817.253333pt;}
.y10a{bottom:818.053333pt;}
.y7c{bottom:821.253333pt;}
.ye{bottom:827.493333pt;}
.y50{bottom:831.013333pt;}
.y107{bottom:831.173333pt;}
.yda{bottom:832.293333pt;}
.y161{bottom:835.013333pt;}
.y7b{bottom:839.013333pt;}
.yd{bottom:840.933333pt;}
.y160{bottom:848.133333pt;}
.y4f{bottom:848.613333pt;}
.y109{bottom:849.413333pt;}
.yd9{bottom:849.893333pt;}
.y7a{bottom:856.613333pt;}
.yc{bottom:859.813333pt;}
.y139{bottom:866.213333pt;}
.yd8{bottom:867.493333pt;}
.y105{bottom:867.653333pt;}
.y4e{bottom:874.213333pt;}
.yb{bottom:880.613333pt;}
.y138{bottom:883.813333pt;}
.y15d{bottom:883.973333pt;}
.yd7{bottom:885.093333pt;}
.y103{bottom:886.053333pt;}
.y4d{bottom:891.813333pt;}
.y137{bottom:901.413333pt;}
.y15f{bottom:902.373333pt;}
.yd6{bottom:903.653333pt;}
.ya{bottom:908.933333pt;}
.y4c{bottom:909.413333pt;}
.y136{bottom:919.173333pt;}
.yd5{bottom:922.373333pt;}
.y4b{bottom:927.173333pt;}
.y15e{bottom:938.213333pt;}
.yd4{bottom:940.933333pt;}
.y4a{bottom:944.773333pt;}
.y5{bottom:948.773333pt;}
.y15c{bottom:956.613333pt;}
.yd3{bottom:959.493333pt;}
.y49{bottom:962.373333pt;}
.yd2{bottom:978.053333pt;}
.y48{bottom:979.973333pt;}
.y4{bottom:980.293333pt;}
.yd1{bottom:996.613333pt;}
.y47{bottom:997.573333pt;}
.y3{bottom:1005.573333pt;}
.yd0{bottom:1014.373333pt;}
.y46{bottom:1015.333333pt;}
.y2{bottom:1030.880000pt;}
.y45{bottom:1041.440000pt;}
.y1{bottom:1058.240000pt;}
.y44{bottom:1060.800000pt;}
.h11{height:17.600000pt;}
.h1f{height:17.632000pt;}
.h12{height:17.760000pt;}
.h19{height:17.792000pt;}
.h6{height:19.360000pt;}
.hc{height:24.991875pt;}
.h16{height:35.200000pt;}
.h1c{height:35.232000pt;}
.h17{height:35.360000pt;}
.h13{height:35.840000pt;}
.h18{height:36.032000pt;}
.he{height:36.883125pt;}
.hb{height:37.479688pt;}
.hd{height:38.413438pt;}
.h10{height:38.672812pt;}
.hf{height:38.828437pt;}
.h3{height:41.543750pt;}
.h7{height:42.578750pt;}
.h4{height:45.156250pt;}
.h8{height:47.310625pt;}
.h2{height:48.768750pt;}
.h15{height:53.440000pt;}
.h1b{height:53.600000pt;}
.h1e{height:53.632000pt;}
.h5{height:58.563750pt;}
.h9{height:60.057813pt;}
.ha{height:61.554062pt;}
.h14{height:71.840000pt;}
.h20{height:71.872000pt;}
.h1a{height:72.000000pt;}
.h1d{height:72.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w34{width:19.040000pt;}
.w11{width:19.200000pt;}
.w22{width:22.080000pt;}
.w4b{width:33.792000pt;}
.w33{width:34.080000pt;}
.w10{width:35.520000pt;}
.w3b{width:35.712000pt;}
.w2a{width:36.032000pt;}
.w5d{width:37.152000pt;}
.w21{width:37.920000pt;}
.w19{width:38.912000pt;}
.w43{width:39.840000pt;}
.w55{width:41.440000pt;}
.w3{width:45.632000pt;}
.wc{width:49.312000pt;}
.w51{width:51.200000pt;}
.wb{width:51.360000pt;}
.w3f{width:51.520000pt;}
.w52{width:54.432000pt;}
.w1e{width:55.392000pt;}
.w12{width:56.512000pt;}
.w40{width:57.472000pt;}
.w30{width:58.592000pt;}
.w44{width:58.912000pt;}
.w57{width:61.280000pt;}
.w13{width:62.240000pt;}
.w35{width:66.592000pt;}
.w7{width:67.520000pt;}
.w2e{width:67.552000pt;}
.w4f{width:67.680000pt;}
.w8{width:67.712000pt;}
.w23{width:68.032000pt;}
.w4c{width:69.440000pt;}
.w24{width:71.360000pt;}
.w56{width:72.512000pt;}
.w2b{width:76.320000pt;}
.w1a{width:76.800000pt;}
.w36{width:77.472000pt;}
.w58{width:79.200000pt;}
.w37{width:80.960000pt;}
.w25{width:82.592000pt;}
.w3c{width:82.720000pt;}
.w14{width:83.232000pt;}
.w59{width:85.632000pt;}
.w38{width:86.752000pt;}
.w5e{width:86.880000pt;}
.w46{width:88.000000pt;}
.w26{width:88.672000pt;}
.w45{width:89.792000pt;}
.w47{width:90.592000pt;}
.w15{width:91.712000pt;}
.w50{width:95.040000pt;}
.w9{width:95.200000pt;}
.w1d{width:97.120000pt;}
.wa{width:97.152000pt;}
.w2f{width:97.280000pt;}
.w4a{width:99.232000pt;}
.w6{width:101.312000pt;}
.w49{width:101.760000pt;}
.w29{width:101.792000pt;}
.w5b{width:103.520000pt;}
.w5c{width:103.712000pt;}
.w41{width:103.872000pt;}
.w3a{width:105.600000pt;}
.w28{width:105.920000pt;}
.w4e{width:106.272000pt;}
.w1c{width:107.392000pt;}
.w18{width:109.312000pt;}
.w3e{width:109.632000pt;}
.w2d{width:110.592000pt;}
.w1f{width:112.992000pt;}
.we{width:116.352000pt;}
.w17{width:117.440000pt;}
.w31{width:119.072000pt;}
.w53{width:124.672000pt;}
.w48{width:201.786667pt;}
.w5a{width:207.866667pt;}
.w39{width:208.026667pt;}
.w27{width:208.346667pt;}
.w16{width:227.386667pt;}
.w5{width:431.453333pt;}
.w54{width:436.093333pt;}
.w4d{width:436.413333pt;}
.w20{width:452.893333pt;}
.w32{width:455.133333pt;}
.wf{width:466.493333pt;}
.w1b{width:469.373333pt;}
.w3d{width:471.453333pt;}
.w42{width:472.253333pt;}
.w2c{width:472.413333pt;}
.w4{width:651.653333pt;}
.wd{width:696.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:4.000000pt;}
.x3{left:7.200000pt;}
.x5{left:9.120000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x6{left:51.839988pt;}
.x7{left:56.159988pt;}
.x53{left:71.999988pt;}
.x43{left:83.072000pt;}
.x2c{left:85.312000pt;}
.x52{left:86.432000pt;}
.x1e{left:88.192000pt;}
.x4{left:94.272000pt;}
.x54{left:96.031988pt;}
.xa{left:112.671988pt;}
.x3b{left:153.146667pt;}
.x2d{left:160.666667pt;}
.x1f{left:162.266667pt;}
.x16{left:165.626667pt;}
.x33{left:168.346667pt;}
.x4a{left:174.106667pt;}
.x44{left:178.746667pt;}
.xf{left:181.146667pt;}
.x32{left:212.666667pt;}
.x24{left:214.266667pt;}
.x1a{left:228.506667pt;}
.x49{left:230.586667pt;}
.x15{left:233.146667pt;}
.x28{left:234.266667pt;}
.x4e{left:236.066667pt;}
.x3f{left:243.586667pt;}
.x37{left:246.466667pt;}
.x9{left:249.186655pt;}
.x20{left:270.466667pt;}
.x2e{left:271.906667pt;}
.x11{left:283.106667pt;}
.x45{left:285.666667pt;}
.xc{left:292.546655pt;}
.x1b{left:312.386667pt;}
.x4f{left:316.066667pt;}
.x29{left:317.506667pt;}
.x38{left:328.066667pt;}
.x40{left:332.386667pt;}
.x12{left:351.266667pt;}
.x46{left:353.986667pt;}
.x21{left:368.226667pt;}
.x2f{left:369.826667pt;}
.x8{left:396.893322pt;}
.x50{left:402.333333pt;}
.x1c{left:404.733333pt;}
.x2a{left:406.813333pt;}
.x39{left:415.453333pt;}
.x13{left:419.613333pt;}
.xb{left:420.893322pt;}
.x47{left:422.333333pt;}
.x41{left:423.613333pt;}
.x22{left:436.573333pt;}
.x30{left:438.013333pt;}
.xd{left:444.893322pt;}
.xe{left:468.893322pt;}
.x51{left:506.493333pt;}
.x2b{left:513.373333pt;}
.x14{left:515.453333pt;}
.x48{left:518.013333pt;}
.x3a{left:521.693333pt;}
.x1d{left:522.813333pt;}
.x42{left:526.173333pt;}
.x23{left:534.493333pt;}
.x31{left:535.933333pt;}
.x4b{left:610.853333pt;}
.x25{left:615.813333pt;}
.x34{left:624.133333pt;}
.x3c{left:626.053333pt;}
.x17{left:632.773333pt;}
.x4c{left:652.933333pt;}
.x26{left:654.533333pt;}
.x35{left:659.013333pt;}
.x3d{left:666.533333pt;}
.x18{left:668.933333pt;}
.x4d{left:672.773333pt;}
.x27{left:677.253333pt;}
.x36{left:678.693333pt;}
.x3e{left:686.373333pt;}
.x19{left:688.773333pt;}
}




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