
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f47f88bcd049855975c884c0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_bd9f88ce890f10eab4de4896.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_4c71a07d9ffbae964efbc652.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8e1f0b5b5f548e984f62205c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_912e7182b59bdda9f769a7a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_e00caa65036069305cdddc34.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_4e47cb99de98374401a11516.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_1b9b1d516cae64faf44aeac1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_8088d077cdd96e2b0dcba990.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1c{letter-spacing:-0.426000px;}
.ls23{letter-spacing:-0.306600px;}
.ls12{letter-spacing:-0.186600px;}
.ls2a{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.117600px;}
.ls15{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls27{letter-spacing:-0.048960px;}
.ls30{letter-spacing:-0.031680px;}
.ls16{letter-spacing:-0.018360px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000358px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls28{letter-spacing:0.051840px;}
.ls29{letter-spacing:0.060480px;}
.lsd{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.064800px;}
.ls24{letter-spacing:0.074160px;}
.ls26{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.111000px;}
.ls19{letter-spacing:0.111240px;}
.ls1f{letter-spacing:0.115800px;}
.lsf{letter-spacing:0.116400px;}
.ls2b{letter-spacing:0.138600px;}
.ls5{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.153000px;}
.ls22{letter-spacing:0.160800px;}
.ls13{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.178800px;}
.ls1d{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.275400px;}
.lsb{letter-spacing:0.351600px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.453600px;}
.ls8{letter-spacing:0.534600px;}
.ls1a{letter-spacing:5.133600px;}
.ls3{letter-spacing:6.213600px;}
.ls2d{letter-spacing:28.533600px;}
.ls2f{letter-spacing:48.446640px;}
.ls21{letter-spacing:63.566640px;}
.ls2e{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.387200px;}
.ws1c{word-spacing:-13.365000px;}
.ws12{word-spacing:-13.342800px;}
.ws14{word-spacing:-13.342200px;}
.wse{word-spacing:-13.337400px;}
.ws18{word-spacing:-13.300800px;}
.ws1a{word-spacing:-13.278240px;}
.wsa{word-spacing:-13.275360px;}
.ws17{word-spacing:-13.226758px;}
.ws2{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.208040px;}
.ws19{word-spacing:-13.177440px;}
.wsb{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.141800px;}
.wsc{word-spacing:-13.131600px;}
.ws1b{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.919800px;}
.ws10{word-spacing:-12.800400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws13{word-spacing:-8.732400px;}
.ws3{word-spacing:-8.614200px;}
.wsf{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._12{margin-left:-6.353996px;}
._13{margin-left:-4.748638px;}
._f{margin-left:-3.726719px;}
._b{margin-left:-2.224801px;}
._9{margin-left:-1.021800px;}
._1{width:1.267800px;}
._7{width:2.953686px;}
._6{width:4.054560px;}
._8{width:5.619240px;}
._3{width:6.840439px;}
._0{width:7.923960px;}
._2{width:9.025889px;}
._a{width:10.096259px;}
._5{width:11.132640px;}
._4{width:12.347040px;}
._e{width:14.789520px;}
._16{width:16.472640px;}
._14{width:17.615160px;}
._15{width:18.757440px;}
._18{width:19.779480px;}
._c{width:21.703320px;}
._d{width:22.976640px;}
._11{width:25.009920px;}
._10{width:26.272440px;}
._17{width:28.397160px;}
._1a{width:29.572679px;}
._19{width:30.673560px;}
._1c{width:35.591040px;}
._1b{width:37.058041px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:7.830000px;}
.yca{bottom:7.860000px;}
.y51{bottom:7.920000px;}
.y4e{bottom:7.950000px;}
.y134{bottom:13.140000px;}
.ya2{bottom:16.650000px;}
.y4c{bottom:21.510000px;}
.ya6{bottom:25.380000px;}
.ya1{bottom:25.470000px;}
.yc8{bottom:35.190000px;}
.y56{bottom:48.870000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y75{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.yc3{bottom:115.860000px;}
.y174{bottom:120.270000px;}
.y127{bottom:121.710000px;}
.y14b{bottom:126.480000px;}
.y6f{bottom:128.370000px;}
.y1c8{bottom:128.460000px;}
.y46{bottom:132.420000px;}
.y198{bottom:136.740000px;}
.y173{bottom:137.910000px;}
.y14a{bottom:144.120000px;}
.y6e{bottom:146.010000px;}
.y1c7{bottom:146.100000px;}
.y126{bottom:149.070000px;}
.yc2{bottom:151.410000px;}
.y197{bottom:154.470000px;}
.y94{bottom:155.100000px;}
.y172{bottom:155.460000px;}
.y27{bottom:157.170000px;}
.ye8{bottom:164.370000px;}
.y45{bottom:168.060000px;}
.y1c6{bottom:171.120000px;}
.y6d{bottom:172.560000px;}
.y93{bottom:172.650000px;}
.y171{bottom:173.100000px;}
.y26{bottom:174.810000px;}
.yb6{bottom:174.990000px;}
.y10c{bottom:175.890000px;}
.y125{bottom:176.340000px;}
.y149{bottom:177.060000px;}
.yf2{bottom:178.590000px;}
.y196{bottom:179.400000px;}
.y44{bottom:185.610000px;}
.yc1{bottom:187.050000px;}
.y1c5{bottom:188.850000px;}
.y170{bottom:190.650000px;}
.y25{bottom:192.360000px;}
.yb5{bottom:192.540000px;}
.y92{bottom:199.290000px;}
.ye7{bottom:200.010000px;}
.y123{bottom:203.700000px;}
.y148{bottom:204.420000px;}
.y195{bottom:204.510000px;}
.y6c{bottom:208.200000px;}
.y10b{bottom:211.530000px;}
.yc0{bottom:213.600000px;}
.y1c4{bottom:213.780000px;}
.yf1{bottom:214.230000px;}
.yb4{bottom:219.180000px;}
.y43{bottom:221.160000px;}
.y194{bottom:222.150000px;}
.y16f{bottom:225.840000px;}
.y24{bottom:227.910000px;}
.y10a{bottom:229.080000px;}
.y124{bottom:231.060000px;}
.y1c3{bottom:231.510000px;}
.y147{bottom:231.690000px;}
.y6b{bottom:234.750000px;}
.y91{bottom:234.840000px;}
.ye6{bottom:235.560000px;}
.y193{bottom:239.790000px;}
.yf0{bottom:240.780000px;}
.y23{bottom:245.550000px;}
.ybf{bottom:249.240000px;}
.y90{bottom:252.390000px;}
.ye5{bottom:253.200000px;}
.yb3{bottom:254.730000px;}
.y109{bottom:255.630000px;}
.y42{bottom:256.080000px;}
.y1c2{bottom:256.440000px;}
.y121{bottom:258.420000px;}
.y146{bottom:259.050000px;}
.y16e{bottom:261.390000px;}
.y22{bottom:263.100000px;}
.y192{bottom:264.810000px;}
.ybe{bottom:266.790000px;}
.y41{bottom:267.510000px;}
.y8f{bottom:270.030000px;}
.y6a{bottom:270.300000px;}
.ye4{bottom:270.750000px;}
.yb2{bottom:272.370000px;}
.y1c1{bottom:274.170000px;}
.yef{bottom:276.420000px;}
.y16d{bottom:278.940000px;}
.y21{bottom:280.740000px;}
.y191{bottom:282.450000px;}
.y122{bottom:285.690000px;}
.y145{bottom:286.410000px;}
.y69{bottom:287.940000px;}
.yb1{bottom:289.920000px;}
.y108{bottom:291.270000px;}
.y1c0{bottom:291.720000px;}
.yee{bottom:293.970000px;}
.y16c{bottom:296.580000px;}
.ye3{bottom:297.300000px;}
.y20{bottom:298.290000px;}
.ybd{bottom:302.340000px;}
.y8e{bottom:305.580000px;}
.y190{bottom:307.470000px;}
.y107{bottom:308.820000px;}
.y120{bottom:313.050000px;}
.y144{bottom:313.770000px;}
.y68{bottom:314.490000px;}
.yb0{bottom:316.470000px;}
.y1bf{bottom:316.740000px;}
.y8d{bottom:323.220000px;}
.yed{bottom:323.490000px;}
.y18f{bottom:325.110000px;}
.y1f{bottom:325.200000px;}
.y16b{bottom:332.130000px;}
.ye2{bottom:332.940000px;}
.y1be{bottom:334.380000px;}
.ybc{bottom:334.560000px;}
.yec{bottom:341.130000px;}
.y106{bottom:341.850000px;}
.yaf{bottom:349.050000px;}
.y67{bottom:350.130000px;}
.y1bd{bottom:352.020000px;}
.y8c{bottom:358.770000px;}
.ye1{bottom:359.490000px;}
.y11f{bottom:361.740000px;}
.y143{bottom:362.460000px;}
.y66{bottom:367.680000px;}
.y16a{bottom:367.770000px;}
.y105{bottom:369.120000px;}
.y1e{bottom:373.440000px;}
.y8b{bottom:376.320000px;}
.y1bc{bottom:376.950000px;}
.yeb{bottom:377.580000px;}
.yae{bottom:384.690000px;}
.y169{bottom:385.320000px;}
.y1d{bottom:391.350000px;}
.y18e{bottom:392.790000px;}
.y65{bottom:394.230000px;}
.y1bb{bottom:394.680000px;}
.ye0{bottom:395.130000px;}
.y104{bottom:396.480000px;}
.y11e{bottom:397.380000px;}
.y142{bottom:398.010000px;}
.yad{bottom:402.240000px;}
.y8a{bottom:402.870000px;}
.y18d{bottom:410.430000px;}
.ydf{bottom:412.680000px;}
.y11d{bottom:414.930000px;}
.y141{bottom:415.560000px;}
.y1ba{bottom:419.700000px;}
.y168{bottom:420.510000px;}
.y103{bottom:423.840000px;}
.yea{bottom:427.350000px;}
.y1c{bottom:428.430000px;}
.y64{bottom:429.870000px;}
.yde{bottom:430.230000px;}
.y11c{bottom:432.480000px;}
.y18c{bottom:435.450000px;}
.y89{bottom:435.540000px;}
.y1b9{bottom:437.340000px;}
.yac{bottom:437.880000px;}
.y167{bottom:438.060000px;}
.y140{bottom:442.200000px;}
.y1b{bottom:445.980000px;}
.y63{bottom:447.420000px;}
.ydd{bottom:447.870000px;}
.y11b{bottom:450.120000px;}
.y102{bottom:451.110000px;}
.y18b{bottom:453.090000px;}
.yab{bottom:455.430000px;}
.y166{bottom:455.700000px;}
.y1b8{bottom:462.360000px;}
.y1a{bottom:463.530000px;}
.ydc{bottom:465.420000px;}
.y11a{bottom:467.670000px;}
.y18a{bottom:470.760000px;}
.y88{bottom:471.120000px;}
.yaa{bottom:473.010000px;}
.y62{bottom:474.090000px;}
.y13f{bottom:477.780000px;}
.y101{bottom:478.500000px;}
.y1b7{bottom:480.030000px;}
.y19{bottom:481.200000px;}
.ydb{bottom:483.090000px;}
.y87{bottom:488.760000px;}
.y165{bottom:491.280000px;}
.y119{bottom:494.340000px;}
.y13e{bottom:495.420000px;}
.y189{bottom:495.780000px;}
.y1b6{bottom:497.580000px;}
.y18{bottom:498.750000px;}
.ya9{bottom:499.560000px;}
.yda{bottom:500.640000px;}
.y100{bottom:505.860000px;}
.y164{bottom:508.830000px;}
.y61{bottom:509.640000px;}
.y188{bottom:513.420000px;}
.y86{bottom:515.310000px;}
.y17{bottom:516.390000px;}
.y1b5{bottom:522.600000px;}
.y163{bottom:526.470000px;}
.y60{bottom:527.190000px;}
.y13a{bottom:528.360000px;}
.ya8{bottom:529.620000px;}
.y118{bottom:529.890000px;}
.yff{bottom:533.220000px;}
.y16{bottom:533.940000px;}
.y187{bottom:538.440000px;}
.y1b4{bottom:540.330000px;}
.y162{bottom:544.020000px;}
.y85{bottom:550.860000px;}
.y15{bottom:551.490000px;}
.y5f{bottom:553.740000px;}
.y13d{bottom:555.720000px;}
.y186{bottom:556.080000px;}
.y1b3{bottom:557.880000px;}
.y161{bottom:561.660000px;}
.yd9{bottom:562.740000px;}
.y117{bottom:565.440000px;}
.y84{bottom:568.500000px;}
.y14{bottom:569.130000px;}
.ya7{bottom:574.530000px;}
.y160{bottom:579.210000px;}
.yfe{bottom:581.910000px;}
.y1b2{bottom:582.900000px;}
.y13c{bottom:582.990000px;}
.y116{bottom:583.080000px;}
.y5e{bottom:586.410000px;}
.y13{bottom:586.680000px;}
.y40{bottom:590.370000px;}
.y83{bottom:595.050000px;}
.yd8{bottom:595.410000px;}
.y1b1{bottom:600.540000px;}
.y115{bottom:600.630000px;}
.ya5{bottom:601.890000px;}
.y12{bottom:604.320000px;}
.y3f{bottom:608.010000px;}
.y13b{bottom:610.350000px;}
.y15f{bottom:614.760000px;}
.yfd{bottom:617.460000px;}
.y1b0{bottom:618.090000px;}
.y5c{bottom:619.350000px;}
.y11{bottom:621.870000px;}
.y3e{bottom:625.560000px;}
.y114{bottom:627.270000px;}
.y82{bottom:630.690000px;}
.yd7{bottom:630.960000px;}
.y185{bottom:631.230000px;}
.y15e{bottom:632.400000px;}
.yfc{bottom:635.100000px;}
.y136{bottom:637.710000px;}
.y10{bottom:639.420000px;}
.y1af{bottom:643.110000px;}
.y5d{bottom:646.710000px;}
.ya4{bottom:646.800000px;}
.y81{bottom:648.240000px;}
.yd6{bottom:648.600000px;}
.y15d{bottom:649.950000px;}
.y3d{bottom:652.110000px;}
.y184{bottom:658.140000px;}
.yfb{bottom:661.650000px;}
.y113{bottom:662.820000px;}
.y139{bottom:665.070000px;}
.y80{bottom:665.790000px;}
.yf{bottom:666.420000px;}
.y15c{bottom:667.590000px;}
.y1ae{bottom:668.220000px;}
.y5b{bottom:674.070000px;}
.ya3{bottom:674.160000px;}
.y112{bottom:680.370000px;}
.yd5{bottom:681.540000px;}
.y7f{bottom:683.430000px;}
.y3c{bottom:684.690000px;}
.y15b{bottom:685.140000px;}
.y1ad{bottom:685.860000px;}
.y138{bottom:692.340000px;}
.y183{bottom:695.220000px;}
.yfa{bottom:697.200000px;}
.y5a{bottom:701.340000px;}
.ya0{bottom:701.430000px;}
.y15a{bottom:702.690000px;}
.y1ac{bottom:703.500000px;}
.y111{bottom:707.010000px;}
.yd3{bottom:708.900000px;}
.y7e{bottom:709.980000px;}
.ye{bottom:713.130000px;}
.y137{bottom:719.700000px;}
.y3b{bottom:720.600000px;}
.y182{bottom:722.130000px;}
.y1ab{bottom:728.430000px;}
.y55{bottom:728.700000px;}
.yf9{bottom:732.840000px;}
.yd4{bottom:736.170000px;}
.y159{bottom:738.330000px;}
.y7d{bottom:742.560000px;}
.y1aa{bottom:746.160000px;}
.y9f{bottom:746.340000px;}
.y133{bottom:747.060000px;}
.yd{bottom:748.680000px;}
.yf8{bottom:750.390000px;}
.y158{bottom:755.880000px;}
.y59{bottom:756.060000px;}
.y181{bottom:759.120000px;}
.y110{bottom:760.200000px;}
.yd1{bottom:763.530000px;}
.yf7{bottom:768.030000px;}
.y3a{bottom:768.930000px;}
.y1a9{bottom:771.180000px;}
.y135{bottom:774.420000px;}
.y7c{bottom:775.500000px;}
.y180{bottom:776.670000px;}
.y58{bottom:783.420000px;}
.yc{bottom:784.500000px;}
.y39{bottom:786.480000px;}
.y10f{bottom:786.750000px;}
.y1a8{bottom:788.820000px;}
.yd2{bottom:790.890000px;}
.y157{bottom:791.520000px;}
.y17f{bottom:794.310000px;}
.y9e{bottom:795.030000px;}
.ybb{bottom:799.260000px;}
.y74{bottom:802.860000px;}
.yf6{bottom:803.580000px;}
.y38{bottom:804.030000px;}
.y156{bottom:809.070000px;}
.y57{bottom:810.690000px;}
.y17e{bottom:811.860000px;}
.y1a7{bottom:813.840000px;}
.yce{bottom:818.250000px;}
.yb{bottom:820.500000px;}
.y37{bottom:821.670000px;}
.y10e{bottom:822.300000px;}
.y132{bottom:823.110000px;}
.y155{bottom:826.620000px;}
.y17d{bottom:829.500000px;}
.y7b{bottom:830.220000px;}
.y9d{bottom:830.670000px;}
.yba{bottom:834.810000px;}
.y54{bottom:838.050000px;}
.y1a6{bottom:838.860000px;}
.yf5{bottom:839.130000px;}
.y36{bottom:839.220000px;}
.y10d{bottom:839.940000px;}
.ya{bottom:842.280000px;}
.y154{bottom:844.260000px;}
.yd0{bottom:845.520000px;}
.y17c{bottom:847.050000px;}
.y9{bottom:856.500000px;}
.y1a5{bottom:856.590000px;}
.y7a{bottom:857.580000px;}
.y131{bottom:858.660000px;}
.yb9{bottom:861.450000px;}
.y153{bottom:861.810000px;}
.y53{bottom:865.410000px;}
.y9c{bottom:866.220000px;}
.yf4{bottom:871.350000px;}
.ycf{bottom:872.880000px;}
.y17b{bottom:873.960000px;}
.y1a4{bottom:874.140000px;}
.y35{bottom:874.860000px;}
.y130{bottom:876.210000px;}
.y8{bottom:878.280000px;}
.y152{bottom:879.450000px;}
.y9b{bottom:883.860000px;}
.y79{bottom:884.850000px;}
.ye9{bottom:885.210000px;}
.y34{bottom:892.410000px;}
.y52{bottom:892.680000px;}
.y151{bottom:897.000000px;}
.yb8{bottom:897.270000px;}
.y1a3{bottom:899.160000px;}
.ycd{bottom:900.240000px;}
.y9a{bottom:901.410000px;}
.y12f{bottom:902.850000px;}
.y33{bottom:909.960000px;}
.y7{bottom:910.590000px;}
.y17a{bottom:911.310000px;}
.y78{bottom:912.210000px;}
.y1a2{bottom:916.800000px;}
.y99{bottom:918.960000px;}
.y4f{bottom:920.040000px;}
.ycc{bottom:927.600000px;}
.y6{bottom:929.940000px;}
.y150{bottom:932.550000px;}
.y12e{bottom:935.790000px;}
.y77{bottom:939.570000px;}
.y1a1{bottom:941.820000px;}
.y32{bottom:945.600000px;}
.y50{bottom:947.400000px;}
.y5{bottom:949.290000px;}
.y14f{bottom:950.190000px;}
.y98{bottom:954.600000px;}
.yc7{bottom:954.870000px;}
.y1a0{bottom:959.460000px;}
.y179{bottom:959.550000px;}
.y31{bottom:963.150000px;}
.y76{bottom:966.930000px;}
.y14e{bottom:967.740000px;}
.y97{bottom:972.150000px;}
.y4b{bottom:974.760000px;}
.y19f{bottom:977.100000px;}
.y178{bottom:977.190000px;}
.y30{bottom:980.790000px;}
.ycb{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y96{bottom:989.790000px;}
.y12d{bottom:990.510000px;}
.y73{bottom:994.200000px;}
.y14d{bottom:994.650000px;}
.y177{bottom:994.740000px;}
.y4d{bottom:1002.030000px;}
.y19e{bottom:1002.120000px;}
.yc9{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.370000px;}
.y12c{bottom:1017.810000px;}
.y19d{bottom:1019.790000px;}
.y95{bottom:1025.370000px;}
.y49{bottom:1029.420000px;}
.y176{bottom:1029.960000px;}
.y2e{bottom:1033.920000px;}
.yc6{bottom:1036.890000px;}
.y19c{bottom:1037.340000px;}
.y72{bottom:1042.920000px;}
.y128{bottom:1045.170000px;}
.yf3{bottom:1046.430000px;}
.y175{bottom:1056.870000px;}
.yb7{bottom:1060.560000px;}
.y19b{bottom:1062.360000px;}
.yc4{bottom:1064.250000px;}
.y2d{bottom:1069.560000px;}
.y12b{bottom:1072.530000px;}
.y48{bottom:1078.110000px;}
.y71{bottom:1078.560000px;}
.y19a{bottom:1080.000000px;}
.y14c{bottom:1087.110000px;}
.yc5{bottom:1091.610000px;}
.y70{bottom:1096.110000px;}
.y12a{bottom:1099.890000px;}
.y199{bottom:1105.020000px;}
.y2c{bottom:1105.110000px;}
.y47{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y129{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.h18{height:26.580000px;}
.h12{height:26.640000px;}
.h10{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hd{height:41.661211px;}
.h16{height:44.100000px;}
.h15{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h11{height:53.910000px;}
.hf{height:53.940000px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h1b{height:60.960938px;}
.h1a{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h19{height:81.180000px;}
.h17{height:81.300000px;}
.h1c{height:108.540000px;}
.h13{height:108.630000px;}
.h14{height:190.620000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:40.410000px;}
.w13{width:41.040000px;}
.w1c{width:42.120000px;}
.w1d{width:42.210000px;}
.w14{width:42.660000px;}
.wd{width:43.560000px;}
.w18{width:45.540000px;}
.w1b{width:45.630000px;}
.wc{width:48.690000px;}
.w1e{width:51.030000px;}
.wf{width:51.750000px;}
.we{width:51.780000px;}
.w2c{width:54.450000px;}
.w19{width:54.540000px;}
.w1a{width:54.570000px;}
.w9{width:57.600000px;}
.w2a{width:68.130000px;}
.w15{width:72.540000px;}
.w2e{width:75.510000px;}
.w2f{width:75.900000px;}
.w12{width:84.420000px;}
.w21{width:89.550000px;}
.w23{width:102.720000px;}
.w3{width:110.340000px;}
.w2d{width:111.420000px;}
.w29{width:114.750000px;}
.w20{width:125.760000px;}
.w25{width:126.900000px;}
.w7{width:127.620000px;}
.w4{width:129.420000px;}
.w28{width:131.430000px;}
.w6{width:134.460000px;}
.w27{width:139.050000px;}
.w11{width:150.330000px;}
.w26{width:157.260000px;}
.w24{width:170.370000px;}
.wa{width:170.940000px;}
.w17{width:171.930000px;}
.w5{width:178.050000px;}
.w8{width:184.440000px;}
.w1f{width:200.880000px;}
.w22{width:204.120000px;}
.w2b{width:217.620000px;}
.w10{width:235.800000px;}
.w16{width:332.580000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:3.960000px;}
.x8{left:7.740000px;}
.x5a{left:9.090000px;}
.x15{left:11.340000px;}
.x17{left:14.220000px;}
.x1b{left:15.750000px;}
.x1d{left:17.280000px;}
.x2c{left:18.810000px;}
.x19{left:19.890000px;}
.x1f{left:21.420000px;}
.x5b{left:23.130000px;}
.x10{left:24.660000px;}
.x11{left:26.280000px;}
.x12{left:28.800000px;}
.x59{left:29.880000px;}
.x43{left:32.310000px;}
.x45{left:40.590000px;}
.xb{left:43.830000px;}
.x42{left:54.570000px;}
.x13{left:57.150000px;}
.x44{left:58.710000px;}
.x50{left:61.110000px;}
.x4f{left:66.090000px;}
.x1{left:68.040000px;}
.x30{left:70.649987px;}
.x51{left:74.460000px;}
.x41{left:82.350000px;}
.x49{left:83.970000px;}
.x32{left:95.039987px;}
.x4a{left:97.020000px;}
.x5f{left:111.419987px;}
.x33{left:122.039987px;}
.x27{left:150.299987px;}
.x52{left:151.920000px;}
.x7{left:169.410000px;}
.x2{left:192.719987px;}
.x4c{left:200.460000px;}
.x28{left:210.630000px;}
.x14{left:240.510000px;}
.x2d{left:243.660000px;}
.x3e{left:257.339987px;}
.xd{left:261.030000px;}
.x6{left:265.169987px;}
.x9{left:280.470000px;}
.x16{left:281.640000px;}
.x53{left:284.160000px;}
.x34{left:295.140000px;}
.x5c{left:314.490000px;}
.x2e{left:317.010000px;}
.x18{left:322.860000px;}
.x31{left:330.329987px;}
.x35{left:341.490000px;}
.x1a{left:372.270000px;}
.x36{left:387.840000px;}
.xe{left:389.370000px;}
.x5{left:392.249987px;}
.x54{left:399.630000px;}
.xa{left:410.610000px;}
.x1c{left:413.400000px;}
.x46{left:414.840000px;}
.x5d{left:426.630000px;}
.x37{left:434.190000px;}
.x29{left:447.150000px;}
.x1e{left:457.680000px;}
.x3f{left:465.690000px;}
.x47{left:467.310000px;}
.x55{left:468.480000px;}
.x38{left:489.450000px;}
.x4d{left:499.170000px;}
.x5e{left:502.860000px;}
.x20{left:510.180000px;}
.x56{left:523.770000px;}
.x39{left:544.740000px;}
.x21{left:562.740000px;}
.xf{left:574.620000px;}
.x57{left:579.030000px;}
.xc{left:589.380000px;}
.x3a{left:591.090000px;}
.x40{left:592.170000px;}
.x48{left:593.790000px;}
.x2a{left:598.200000px;}
.x22{left:615.210000px;}
.x3b{left:634.020000px;}
.x2b{left:639.960000px;}
.x4e{left:657.150000px;}
.x4{left:664.889987px;}
.x23{left:667.680000px;}
.x3c{left:676.860000px;}
.x26{left:680.639987px;}
.x58{left:689.640000px;}
.x3d{left:711.059987px;}
.x24{left:720.240000px;}
.x2f{left:759.389987px;}
.x25{left:772.710000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-0.378667pt;}
.ls23{letter-spacing:-0.272533pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.104533pt;}
.ls15{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls27{letter-spacing:-0.043520pt;}
.ls30{letter-spacing:-0.028160pt;}
.ls16{letter-spacing:-0.016320pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000318pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls28{letter-spacing:0.046080pt;}
.ls29{letter-spacing:0.053760pt;}
.lsd{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.057600pt;}
.ls24{letter-spacing:0.065920pt;}
.ls26{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.098667pt;}
.ls19{letter-spacing:0.098880pt;}
.ls1f{letter-spacing:0.102933pt;}
.lsf{letter-spacing:0.103467pt;}
.ls2b{letter-spacing:0.123200pt;}
.ls5{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.136000pt;}
.ls22{letter-spacing:0.142933pt;}
.ls13{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.158933pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.244800pt;}
.lsb{letter-spacing:0.312533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.403200pt;}
.ls8{letter-spacing:0.475200pt;}
.ls1a{letter-spacing:4.563200pt;}
.ls3{letter-spacing:5.523200pt;}
.ls2d{letter-spacing:25.363200pt;}
.ls2f{letter-spacing:43.063680pt;}
.ls21{letter-spacing:56.503680pt;}
.ls2e{letter-spacing:72.503680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.899733pt;}
.ws1c{word-spacing:-11.880000pt;}
.ws12{word-spacing:-11.860267pt;}
.ws14{word-spacing:-11.859733pt;}
.wse{word-spacing:-11.855467pt;}
.ws18{word-spacing:-11.822933pt;}
.ws1a{word-spacing:-11.802880pt;}
.wsa{word-spacing:-11.800320pt;}
.ws17{word-spacing:-11.757118pt;}
.ws2{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.740480pt;}
.ws19{word-spacing:-11.713280pt;}
.wsb{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.681600pt;}
.wsc{word-spacing:-11.672533pt;}
.ws1b{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.484267pt;}
.ws10{word-spacing:-11.378133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws13{word-spacing:-7.762133pt;}
.ws3{word-spacing:-7.657067pt;}
.wsf{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._12{margin-left:-5.647997pt;}
._13{margin-left:-4.221012pt;}
._f{margin-left:-3.312639pt;}
._b{margin-left:-1.977601pt;}
._9{margin-left:-0.908266pt;}
._1{width:1.126933pt;}
._7{width:2.625498pt;}
._6{width:3.604053pt;}
._8{width:4.994880pt;}
._3{width:6.080390pt;}
._0{width:7.043520pt;}
._2{width:8.023013pt;}
._a{width:8.974453pt;}
._5{width:9.895680pt;}
._4{width:10.975147pt;}
._e{width:13.146240pt;}
._16{width:14.642346pt;}
._14{width:15.657920pt;}
._15{width:16.673280pt;}
._18{width:17.581760pt;}
._c{width:19.291840pt;}
._d{width:20.423680pt;}
._11{width:22.231040pt;}
._10{width:23.353280pt;}
._17{width:25.241920pt;}
._1a{width:26.286825pt;}
._19{width:27.265387pt;}
._1c{width:31.636480pt;}
._1b{width:32.940481pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:6.960000pt;}
.yca{bottom:6.986667pt;}
.y51{bottom:7.040000pt;}
.y4e{bottom:7.066667pt;}
.y134{bottom:11.680000pt;}
.ya2{bottom:14.800000pt;}
.y4c{bottom:19.120000pt;}
.ya6{bottom:22.560000pt;}
.ya1{bottom:22.640000pt;}
.yc8{bottom:31.280000pt;}
.y56{bottom:43.440000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y75{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.yc3{bottom:102.986667pt;}
.y174{bottom:106.906667pt;}
.y127{bottom:108.186667pt;}
.y14b{bottom:112.426667pt;}
.y6f{bottom:114.106667pt;}
.y1c8{bottom:114.186667pt;}
.y46{bottom:117.706667pt;}
.y198{bottom:121.546667pt;}
.y173{bottom:122.586667pt;}
.y14a{bottom:128.106667pt;}
.y6e{bottom:129.786667pt;}
.y1c7{bottom:129.866667pt;}
.y126{bottom:132.506667pt;}
.yc2{bottom:134.586667pt;}
.y197{bottom:137.306667pt;}
.y94{bottom:137.866667pt;}
.y172{bottom:138.186667pt;}
.y27{bottom:139.706667pt;}
.ye8{bottom:146.106667pt;}
.y45{bottom:149.386667pt;}
.y1c6{bottom:152.106667pt;}
.y6d{bottom:153.386667pt;}
.y93{bottom:153.466667pt;}
.y171{bottom:153.866667pt;}
.y26{bottom:155.386667pt;}
.yb6{bottom:155.546667pt;}
.y10c{bottom:156.346667pt;}
.y125{bottom:156.746667pt;}
.y149{bottom:157.386667pt;}
.yf2{bottom:158.746667pt;}
.y196{bottom:159.466667pt;}
.y44{bottom:164.986667pt;}
.yc1{bottom:166.266667pt;}
.y1c5{bottom:167.866667pt;}
.y170{bottom:169.466667pt;}
.y25{bottom:170.986667pt;}
.yb5{bottom:171.146667pt;}
.y92{bottom:177.146667pt;}
.ye7{bottom:177.786667pt;}
.y123{bottom:181.066667pt;}
.y148{bottom:181.706667pt;}
.y195{bottom:181.786667pt;}
.y6c{bottom:185.066667pt;}
.y10b{bottom:188.026667pt;}
.yc0{bottom:189.866667pt;}
.y1c4{bottom:190.026667pt;}
.yf1{bottom:190.426667pt;}
.yb4{bottom:194.826667pt;}
.y43{bottom:196.586667pt;}
.y194{bottom:197.466667pt;}
.y16f{bottom:200.746667pt;}
.y24{bottom:202.586667pt;}
.y10a{bottom:203.626667pt;}
.y124{bottom:205.386667pt;}
.y1c3{bottom:205.786667pt;}
.y147{bottom:205.946667pt;}
.y6b{bottom:208.666667pt;}
.y91{bottom:208.746667pt;}
.ye6{bottom:209.386667pt;}
.y193{bottom:213.146667pt;}
.yf0{bottom:214.026667pt;}
.y23{bottom:218.266667pt;}
.ybf{bottom:221.546667pt;}
.y90{bottom:224.346667pt;}
.ye5{bottom:225.066667pt;}
.yb3{bottom:226.426667pt;}
.y109{bottom:227.226667pt;}
.y42{bottom:227.626667pt;}
.y1c2{bottom:227.946667pt;}
.y121{bottom:229.706667pt;}
.y146{bottom:230.266667pt;}
.y16e{bottom:232.346667pt;}
.y22{bottom:233.866667pt;}
.y192{bottom:235.386667pt;}
.ybe{bottom:237.146667pt;}
.y41{bottom:237.786667pt;}
.y8f{bottom:240.026667pt;}
.y6a{bottom:240.266667pt;}
.ye4{bottom:240.666667pt;}
.yb2{bottom:242.106667pt;}
.y1c1{bottom:243.706667pt;}
.yef{bottom:245.706667pt;}
.y16d{bottom:247.946667pt;}
.y21{bottom:249.546667pt;}
.y191{bottom:251.066667pt;}
.y122{bottom:253.946667pt;}
.y145{bottom:254.586667pt;}
.y69{bottom:255.946667pt;}
.yb1{bottom:257.706667pt;}
.y108{bottom:258.906667pt;}
.y1c0{bottom:259.306667pt;}
.yee{bottom:261.306667pt;}
.y16c{bottom:263.626667pt;}
.ye3{bottom:264.266667pt;}
.y20{bottom:265.146667pt;}
.ybd{bottom:268.746667pt;}
.y8e{bottom:271.626667pt;}
.y190{bottom:273.306667pt;}
.y107{bottom:274.506667pt;}
.y120{bottom:278.266667pt;}
.y144{bottom:278.906667pt;}
.y68{bottom:279.546667pt;}
.yb0{bottom:281.306667pt;}
.y1bf{bottom:281.546667pt;}
.y8d{bottom:287.306667pt;}
.yed{bottom:287.546667pt;}
.y18f{bottom:288.986667pt;}
.y1f{bottom:289.066667pt;}
.y16b{bottom:295.226667pt;}
.ye2{bottom:295.946667pt;}
.y1be{bottom:297.226667pt;}
.ybc{bottom:297.386667pt;}
.yec{bottom:303.226667pt;}
.y106{bottom:303.866667pt;}
.yaf{bottom:310.266667pt;}
.y67{bottom:311.226667pt;}
.y1bd{bottom:312.906667pt;}
.y8c{bottom:318.906667pt;}
.ye1{bottom:319.546667pt;}
.y11f{bottom:321.546667pt;}
.y143{bottom:322.186667pt;}
.y66{bottom:326.826667pt;}
.y16a{bottom:326.906667pt;}
.y105{bottom:328.106667pt;}
.y1e{bottom:331.946667pt;}
.y8b{bottom:334.506667pt;}
.y1bc{bottom:335.066667pt;}
.yeb{bottom:335.626667pt;}
.yae{bottom:341.946667pt;}
.y169{bottom:342.506667pt;}
.y1d{bottom:347.866667pt;}
.y18e{bottom:349.146667pt;}
.y65{bottom:350.426667pt;}
.y1bb{bottom:350.826667pt;}
.ye0{bottom:351.226667pt;}
.y104{bottom:352.426667pt;}
.y11e{bottom:353.226667pt;}
.y142{bottom:353.786667pt;}
.yad{bottom:357.546667pt;}
.y8a{bottom:358.106667pt;}
.y18d{bottom:364.826667pt;}
.ydf{bottom:366.826667pt;}
.y11d{bottom:368.826667pt;}
.y141{bottom:369.386667pt;}
.y1ba{bottom:373.066667pt;}
.y168{bottom:373.786667pt;}
.y103{bottom:376.746667pt;}
.yea{bottom:379.866667pt;}
.y1c{bottom:380.826667pt;}
.y64{bottom:382.106667pt;}
.yde{bottom:382.426667pt;}
.y11c{bottom:384.426667pt;}
.y18c{bottom:387.066667pt;}
.y89{bottom:387.146667pt;}
.y1b9{bottom:388.746667pt;}
.yac{bottom:389.226667pt;}
.y167{bottom:389.386667pt;}
.y140{bottom:393.066667pt;}
.y1b{bottom:396.426667pt;}
.y63{bottom:397.706667pt;}
.ydd{bottom:398.106667pt;}
.y11b{bottom:400.106667pt;}
.y102{bottom:400.986667pt;}
.y18b{bottom:402.746667pt;}
.yab{bottom:404.826667pt;}
.y166{bottom:405.066667pt;}
.y1b8{bottom:410.986667pt;}
.y1a{bottom:412.026667pt;}
.ydc{bottom:413.706667pt;}
.y11a{bottom:415.706667pt;}
.y18a{bottom:418.453333pt;}
.y88{bottom:418.773333pt;}
.yaa{bottom:420.453333pt;}
.y62{bottom:421.413333pt;}
.y13f{bottom:424.693333pt;}
.y101{bottom:425.333333pt;}
.y1b7{bottom:426.693333pt;}
.y19{bottom:427.733333pt;}
.ydb{bottom:429.413333pt;}
.y87{bottom:434.453333pt;}
.y165{bottom:436.693333pt;}
.y119{bottom:439.413333pt;}
.y13e{bottom:440.373333pt;}
.y189{bottom:440.693333pt;}
.y1b6{bottom:442.293333pt;}
.y18{bottom:443.333333pt;}
.ya9{bottom:444.053333pt;}
.yda{bottom:445.013333pt;}
.y100{bottom:449.653333pt;}
.y164{bottom:452.293333pt;}
.y61{bottom:453.013333pt;}
.y188{bottom:456.373333pt;}
.y86{bottom:458.053333pt;}
.y17{bottom:459.013333pt;}
.y1b5{bottom:464.533333pt;}
.y163{bottom:467.973333pt;}
.y60{bottom:468.613333pt;}
.y13a{bottom:469.653333pt;}
.ya8{bottom:470.773333pt;}
.y118{bottom:471.013333pt;}
.yff{bottom:473.973333pt;}
.y16{bottom:474.613333pt;}
.y187{bottom:478.613333pt;}
.y1b4{bottom:480.293333pt;}
.y162{bottom:483.573333pt;}
.y85{bottom:489.653333pt;}
.y15{bottom:490.213333pt;}
.y5f{bottom:492.213333pt;}
.y13d{bottom:493.973333pt;}
.y186{bottom:494.293333pt;}
.y1b3{bottom:495.893333pt;}
.y161{bottom:499.253333pt;}
.yd9{bottom:500.213333pt;}
.y117{bottom:502.613333pt;}
.y84{bottom:505.333333pt;}
.y14{bottom:505.893333pt;}
.ya7{bottom:510.693333pt;}
.y160{bottom:514.853333pt;}
.yfe{bottom:517.253333pt;}
.y1b2{bottom:518.133333pt;}
.y13c{bottom:518.213333pt;}
.y116{bottom:518.293333pt;}
.y5e{bottom:521.253333pt;}
.y13{bottom:521.493333pt;}
.y40{bottom:524.773333pt;}
.y83{bottom:528.933333pt;}
.yd8{bottom:529.253333pt;}
.y1b1{bottom:533.813333pt;}
.y115{bottom:533.893333pt;}
.ya5{bottom:535.013333pt;}
.y12{bottom:537.173333pt;}
.y3f{bottom:540.453333pt;}
.y13b{bottom:542.533333pt;}
.y15f{bottom:546.453333pt;}
.yfd{bottom:548.853333pt;}
.y1b0{bottom:549.413333pt;}
.y5c{bottom:550.533333pt;}
.y11{bottom:552.773333pt;}
.y3e{bottom:556.053333pt;}
.y114{bottom:557.573333pt;}
.y82{bottom:560.613333pt;}
.yd7{bottom:560.853333pt;}
.y185{bottom:561.093333pt;}
.y15e{bottom:562.133333pt;}
.yfc{bottom:564.533333pt;}
.y136{bottom:566.853333pt;}
.y10{bottom:568.373333pt;}
.y1af{bottom:571.653333pt;}
.y5d{bottom:574.853333pt;}
.ya4{bottom:574.933333pt;}
.y81{bottom:576.213333pt;}
.yd6{bottom:576.533333pt;}
.y15d{bottom:577.733333pt;}
.y3d{bottom:579.653333pt;}
.y184{bottom:585.013333pt;}
.yfb{bottom:588.133333pt;}
.y113{bottom:589.173333pt;}
.y139{bottom:591.173333pt;}
.y80{bottom:591.813333pt;}
.yf{bottom:592.373333pt;}
.y15c{bottom:593.413333pt;}
.y1ae{bottom:593.973333pt;}
.y5b{bottom:599.173333pt;}
.ya3{bottom:599.253333pt;}
.y112{bottom:604.773333pt;}
.yd5{bottom:605.813333pt;}
.y7f{bottom:607.493333pt;}
.y3c{bottom:608.613333pt;}
.y15b{bottom:609.013333pt;}
.y1ad{bottom:609.653333pt;}
.y138{bottom:615.413333pt;}
.y183{bottom:617.973333pt;}
.yfa{bottom:619.733333pt;}
.y5a{bottom:623.413333pt;}
.ya0{bottom:623.493333pt;}
.y15a{bottom:624.613333pt;}
.y1ac{bottom:625.333333pt;}
.y111{bottom:628.453333pt;}
.yd3{bottom:630.133333pt;}
.y7e{bottom:631.093333pt;}
.ye{bottom:633.893333pt;}
.y137{bottom:639.733333pt;}
.y3b{bottom:640.533333pt;}
.y182{bottom:641.893333pt;}
.y1ab{bottom:647.493333pt;}
.y55{bottom:647.733333pt;}
.yf9{bottom:651.413333pt;}
.yd4{bottom:654.373333pt;}
.y159{bottom:656.293333pt;}
.y7d{bottom:660.053333pt;}
.y1aa{bottom:663.253333pt;}
.y9f{bottom:663.413333pt;}
.y133{bottom:664.053333pt;}
.yd{bottom:665.493333pt;}
.yf8{bottom:667.013333pt;}
.y158{bottom:671.893333pt;}
.y59{bottom:672.053333pt;}
.y181{bottom:674.773333pt;}
.y110{bottom:675.733333pt;}
.yd1{bottom:678.693333pt;}
.yf7{bottom:682.693333pt;}
.y3a{bottom:683.493333pt;}
.y1a9{bottom:685.493333pt;}
.y135{bottom:688.373333pt;}
.y7c{bottom:689.333333pt;}
.y180{bottom:690.373333pt;}
.y58{bottom:696.373333pt;}
.yc{bottom:697.333333pt;}
.y39{bottom:699.093333pt;}
.y10f{bottom:699.333333pt;}
.y1a8{bottom:701.173333pt;}
.yd2{bottom:703.013333pt;}
.y157{bottom:703.573333pt;}
.y17f{bottom:706.053333pt;}
.y9e{bottom:706.693333pt;}
.ybb{bottom:710.453333pt;}
.y74{bottom:713.653333pt;}
.yf6{bottom:714.293333pt;}
.y38{bottom:714.693333pt;}
.y156{bottom:719.173333pt;}
.y57{bottom:720.613333pt;}
.y17e{bottom:721.653333pt;}
.y1a7{bottom:723.413333pt;}
.yce{bottom:727.333333pt;}
.yb{bottom:729.333333pt;}
.y37{bottom:730.373333pt;}
.y10e{bottom:730.933333pt;}
.y132{bottom:731.653333pt;}
.y155{bottom:734.773333pt;}
.y17d{bottom:737.333333pt;}
.y7b{bottom:737.973333pt;}
.y9d{bottom:738.373333pt;}
.yba{bottom:742.053333pt;}
.y54{bottom:744.933333pt;}
.y1a6{bottom:745.653333pt;}
.yf5{bottom:745.893333pt;}
.y36{bottom:745.973333pt;}
.y10d{bottom:746.613333pt;}
.ya{bottom:748.693333pt;}
.y154{bottom:750.453333pt;}
.yd0{bottom:751.573333pt;}
.y17c{bottom:752.933333pt;}
.y9{bottom:761.333333pt;}
.y1a5{bottom:761.413333pt;}
.y7a{bottom:762.293333pt;}
.y131{bottom:763.253333pt;}
.yb9{bottom:765.733333pt;}
.y153{bottom:766.053333pt;}
.y53{bottom:769.253333pt;}
.y9c{bottom:769.973333pt;}
.yf4{bottom:774.533333pt;}
.ycf{bottom:775.893333pt;}
.y17b{bottom:776.853333pt;}
.y1a4{bottom:777.013333pt;}
.y35{bottom:777.653333pt;}
.y130{bottom:778.853333pt;}
.y8{bottom:780.693333pt;}
.y152{bottom:781.733333pt;}
.y9b{bottom:785.653333pt;}
.y79{bottom:786.533333pt;}
.ye9{bottom:786.853333pt;}
.y34{bottom:793.253333pt;}
.y52{bottom:793.493333pt;}
.y151{bottom:797.333333pt;}
.yb8{bottom:797.573333pt;}
.y1a3{bottom:799.253333pt;}
.ycd{bottom:800.213333pt;}
.y9a{bottom:801.253333pt;}
.y12f{bottom:802.533333pt;}
.y33{bottom:808.853333pt;}
.y7{bottom:809.413333pt;}
.y17a{bottom:810.053333pt;}
.y78{bottom:810.853333pt;}
.y1a2{bottom:814.933333pt;}
.y99{bottom:816.853333pt;}
.y4f{bottom:817.813333pt;}
.ycc{bottom:824.533333pt;}
.y6{bottom:826.613333pt;}
.y150{bottom:828.933333pt;}
.y12e{bottom:831.813333pt;}
.y77{bottom:835.173333pt;}
.y1a1{bottom:837.173333pt;}
.y32{bottom:840.533333pt;}
.y50{bottom:842.133333pt;}
.y5{bottom:843.813333pt;}
.y14f{bottom:844.613333pt;}
.y98{bottom:848.533333pt;}
.yc7{bottom:848.773333pt;}
.y1a0{bottom:852.853333pt;}
.y179{bottom:852.933333pt;}
.y31{bottom:856.133333pt;}
.y76{bottom:859.493333pt;}
.y14e{bottom:860.213333pt;}
.y97{bottom:864.133333pt;}
.y4b{bottom:866.453333pt;}
.y19f{bottom:868.533333pt;}
.y178{bottom:868.613333pt;}
.y30{bottom:871.813333pt;}
.ycb{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y96{bottom:879.813333pt;}
.y12d{bottom:880.453333pt;}
.y73{bottom:883.733333pt;}
.y14d{bottom:884.133333pt;}
.y177{bottom:884.213333pt;}
.y4d{bottom:890.693333pt;}
.y19e{bottom:890.773333pt;}
.yc9{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.440000pt;}
.y12c{bottom:904.720000pt;}
.y19d{bottom:906.480000pt;}
.y95{bottom:911.440000pt;}
.y49{bottom:915.040000pt;}
.y176{bottom:915.520000pt;}
.y2e{bottom:919.040000pt;}
.yc6{bottom:921.680000pt;}
.y19c{bottom:922.080000pt;}
.y72{bottom:927.040000pt;}
.y128{bottom:929.040000pt;}
.yf3{bottom:930.160000pt;}
.y175{bottom:939.440000pt;}
.yb7{bottom:942.720000pt;}
.y19b{bottom:944.320000pt;}
.yc4{bottom:946.000000pt;}
.y2d{bottom:950.720000pt;}
.y12b{bottom:953.360000pt;}
.y48{bottom:958.320000pt;}
.y71{bottom:958.720000pt;}
.y19a{bottom:960.000000pt;}
.y14c{bottom:966.320000pt;}
.yc5{bottom:970.320000pt;}
.y70{bottom:974.320000pt;}
.y12a{bottom:977.680000pt;}
.y199{bottom:982.240000pt;}
.y2c{bottom:982.320000pt;}
.y47{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y129{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h18{height:23.626667pt;}
.h12{height:23.680000pt;}
.h10{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hd{height:37.032187pt;}
.h16{height:39.200000pt;}
.h15{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h11{height:47.920000pt;}
.hf{height:47.946667pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h1b{height:54.187500pt;}
.h1a{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h19{height:72.160000pt;}
.h17{height:72.266667pt;}
.h1c{height:96.480000pt;}
.h13{height:96.560000pt;}
.h14{height:169.440000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:35.920000pt;}
.w13{width:36.480000pt;}
.w1c{width:37.440000pt;}
.w1d{width:37.520000pt;}
.w14{width:37.920000pt;}
.wd{width:38.720000pt;}
.w18{width:40.480000pt;}
.w1b{width:40.560000pt;}
.wc{width:43.280000pt;}
.w1e{width:45.360000pt;}
.wf{width:46.000000pt;}
.we{width:46.026667pt;}
.w2c{width:48.400000pt;}
.w19{width:48.480000pt;}
.w1a{width:48.506667pt;}
.w9{width:51.200000pt;}
.w2a{width:60.560000pt;}
.w15{width:64.480000pt;}
.w2e{width:67.120000pt;}
.w2f{width:67.466667pt;}
.w12{width:75.040000pt;}
.w21{width:79.600000pt;}
.w23{width:91.306667pt;}
.w3{width:98.080000pt;}
.w2d{width:99.040000pt;}
.w29{width:102.000000pt;}
.w20{width:111.786667pt;}
.w25{width:112.800000pt;}
.w7{width:113.440000pt;}
.w4{width:115.040000pt;}
.w28{width:116.826667pt;}
.w6{width:119.520000pt;}
.w27{width:123.600000pt;}
.w11{width:133.626667pt;}
.w26{width:139.786667pt;}
.w24{width:151.440000pt;}
.wa{width:151.946667pt;}
.w17{width:152.826667pt;}
.w5{width:158.266667pt;}
.w8{width:163.946667pt;}
.w1f{width:178.560000pt;}
.w22{width:181.440000pt;}
.w2b{width:193.440000pt;}
.w10{width:209.600000pt;}
.w16{width:295.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:3.520000pt;}
.x8{left:6.880000pt;}
.x5a{left:8.080000pt;}
.x15{left:10.080000pt;}
.x17{left:12.640000pt;}
.x1b{left:14.000000pt;}
.x1d{left:15.360000pt;}
.x2c{left:16.720000pt;}
.x19{left:17.680000pt;}
.x1f{left:19.040000pt;}
.x5b{left:20.560000pt;}
.x10{left:21.920000pt;}
.x11{left:23.360000pt;}
.x12{left:25.600000pt;}
.x59{left:26.560000pt;}
.x43{left:28.720000pt;}
.x45{left:36.080000pt;}
.xb{left:38.960000pt;}
.x42{left:48.506667pt;}
.x13{left:50.800000pt;}
.x44{left:52.186667pt;}
.x50{left:54.320000pt;}
.x4f{left:58.746667pt;}
.x1{left:60.480000pt;}
.x30{left:62.799988pt;}
.x51{left:66.186667pt;}
.x41{left:73.200000pt;}
.x49{left:74.640000pt;}
.x32{left:84.479988pt;}
.x4a{left:86.240000pt;}
.x5f{left:99.039988pt;}
.x33{left:108.479988pt;}
.x27{left:133.599988pt;}
.x52{left:135.040000pt;}
.x7{left:150.586667pt;}
.x2{left:171.306655pt;}
.x4c{left:178.186667pt;}
.x28{left:187.226667pt;}
.x14{left:213.786667pt;}
.x2d{left:216.586667pt;}
.x3e{left:228.746655pt;}
.xd{left:232.026667pt;}
.x6{left:235.706655pt;}
.x9{left:249.306667pt;}
.x16{left:250.346667pt;}
.x53{left:252.586667pt;}
.x34{left:262.346667pt;}
.x5c{left:279.546667pt;}
.x2e{left:281.786667pt;}
.x18{left:286.986667pt;}
.x31{left:293.626655pt;}
.x35{left:303.546667pt;}
.x1a{left:330.906667pt;}
.x36{left:344.746667pt;}
.xe{left:346.106667pt;}
.x5{left:348.666655pt;}
.x54{left:355.226667pt;}
.xa{left:364.986667pt;}
.x1c{left:367.466667pt;}
.x46{left:368.746667pt;}
.x5d{left:379.226667pt;}
.x37{left:385.946667pt;}
.x29{left:397.466667pt;}
.x1e{left:406.826667pt;}
.x3f{left:413.946667pt;}
.x47{left:415.386667pt;}
.x55{left:416.426667pt;}
.x38{left:435.066667pt;}
.x4d{left:443.706667pt;}
.x5e{left:446.986667pt;}
.x20{left:453.493333pt;}
.x56{left:465.573333pt;}
.x39{left:484.213333pt;}
.x21{left:500.213333pt;}
.xf{left:510.773333pt;}
.x57{left:514.693333pt;}
.xc{left:523.893333pt;}
.x3a{left:525.413333pt;}
.x40{left:526.373333pt;}
.x48{left:527.813333pt;}
.x2a{left:531.733333pt;}
.x22{left:546.853333pt;}
.x3b{left:563.573333pt;}
.x2b{left:568.853333pt;}
.x4e{left:584.133333pt;}
.x4{left:591.013322pt;}
.x23{left:593.493333pt;}
.x3c{left:601.653333pt;}
.x26{left:605.013322pt;}
.x58{left:613.013333pt;}
.x3d{left:632.053322pt;}
.x24{left:640.213333pt;}
.x2f{left:675.013322pt;}
.x25{left:686.853333pt;}
.x3{left:711.413322pt;}
}




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