
    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_ff8722285e8565e56fc408c7.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_1a7b266bcd88cdfe7c2ccd66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_feec9de7931e32036cab1f90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_eb3aeb95c40e60d379977b5b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_508f49b80edcb8f312437244.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_6d166b94b30b5e2e1738d233.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e957bb89d5a453cf751c04f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7967532751e1b99110a654ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_5693c0bffa5d3440a25b5722.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.va{vertical-align:-12.240000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.160000px;}
.vb{vertical-align:12.240000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:26.340000px;}
.v9{vertical-align:40.320000px;}
.v8{vertical-align:46.080000px;}
.v7{vertical-align:53.280000px;}
.ls5{letter-spacing:-0.924000px;}
.ls20{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.351600px;}
.ls22{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:-0.040320px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.lse{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.133200px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206640px;}
.ls18{letter-spacing:0.237600px;}
.ls4{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.315600px;}
.ls6{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.709200px;}
.lsb{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.900000px;}
.ls21{letter-spacing:3.060000px;}
.ls15{letter-spacing:13.491360px;}
.ls1d{letter-spacing:14.211360px;}
.ls19{letter-spacing:16.239600px;}
.lsa{letter-spacing:16.506720px;}
.ls16{letter-spacing:16.559280px;}
.ls17{letter-spacing:16.739280px;}
.ls1c{letter-spacing:17.279280px;}
.ls1{letter-spacing:39.905280px;}
.ls8{letter-spacing:46.026720px;}
.ls10{letter-spacing:46.170720px;}
.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;}
}
.ws12{word-spacing:-59.772960px;}
.ws13{word-spacing:-59.760000px;}
.ws1c{word-spacing:-59.719680px;}
.ws1b{word-spacing:-59.650800px;}
.ws22{word-spacing:-46.812960px;}
.ws14{word-spacing:-46.092960px;}
.ws25{word-spacing:-43.320240px;}
.ws16{word-spacing:-43.200720px;}
.ws1e{word-spacing:-43.200240px;}
.ws20{word-spacing:-43.132320px;}
.ws24{word-spacing:-42.778320px;}
.ws1d{word-spacing:-42.754320px;}
.ws1f{word-spacing:-42.600240px;}
.ws1a{word-spacing:-42.480720px;}
.ws17{word-spacing:-42.412320px;}
.ws21{word-spacing:-42.284880px;}
.ws11{word-spacing:-42.273360px;}
.ws15{word-spacing:-42.232320px;}
.ws18{word-spacing:-42.058080px;}
.ws19{word-spacing:-20.423520px;}
.ws23{word-spacing:-20.149920px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws27{word-spacing:-14.733600px;}
.ws26{word-spacing:-14.588400px;}
.ws9{word-spacing:-14.580000px;}
.ws28{word-spacing:-14.220000px;}
.wsd{word-spacing:-10.902240px;}
.wsf{word-spacing:-10.755600px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws10{word-spacing:-6.840000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:231.188160px;}
._22{margin-left:-4.247280px;}
._18{margin-left:-3.211920px;}
._13{margin-left:-2.190240px;}
._0{margin-left:-1.080000px;}
._11{width:1.127520px;}
._1{width:2.220000px;}
._15{width:3.898320px;}
._12{width:4.939680px;}
._19{width:5.986320px;}
._16{width:7.171200px;}
._17{width:8.310240px;}
._21{width:9.376320px;}
._6{width:10.800000px;}
._14{width:11.941200px;}
._28{width:13.657680px;}
._27{width:16.194960px;}
._26{width:17.210880px;}
._f{width:18.948000px;}
._1b{width:21.155040px;}
._1a{width:22.589280px;}
._1d{width:31.194720px;}
._1f{width:33.006960px;}
._25{width:42.741360px;}
._20{width:49.363680px;}
._7{width:76.284960px;}
._24{width:89.819280px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._1e{width:155.660160px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._23{width:231.330960px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
._1c{width:1502.400480px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fsa{font-size:27.360000px;}
.fs9{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fsb{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y118{bottom:4.785000px;}
.y11b{bottom:5.655000px;}
.y111{bottom:5.685000px;}
.y106{bottom:5.730000px;}
.y60{bottom:5.760000px;}
.yb6{bottom:5.790000px;}
.y114{bottom:5.865000px;}
.y10a{bottom:5.910000px;}
.ye{bottom:5.940000px;}
.ydb{bottom:6.120000px;}
.yd8{bottom:6.165000px;}
.y132{bottom:6.480000px;}
.y10e{bottom:6.585000px;}
.yd6{bottom:6.840000px;}
.y72{bottom:7.200000px;}
.y70{bottom:7.380000px;}
.yc7{bottom:9.000000px;}
.yca{bottom:9.900000px;}
.y134{bottom:10.620000px;}
.y10c{bottom:10.725000px;}
.y104{bottom:10.770000px;}
.yd4{bottom:10.800000px;}
.y116{bottom:10.830000px;}
.y108{bottom:10.875000px;}
.y136{bottom:11.160000px;}
.ybe{bottom:12.060000px;}
.ybc{bottom:12.105000px;}
.y6{bottom:12.420000px;}
.y154{bottom:13.140000px;}
.yc0{bottom:13.320000px;}
.yfd{bottom:13.680000px;}
.y8{bottom:18.180000px;}
.y93{bottom:20.844000px;}
.y14f{bottom:25.560000px;}
.y130{bottom:26.280000px;}
.y148{bottom:26.325000px;}
.y7f{bottom:26.460000px;}
.yc5{bottom:29.700000px;}
.yba{bottom:32.805000px;}
.y153{bottom:33.120000px;}
.yfc{bottom:33.480000px;}
.y92{bottom:34.170000px;}
.yc{bottom:34.560000px;}
.y5{bottom:40.320000px;}
.yb{bottom:55.080000px;}
.y156{bottom:67.680000px;}
.y100{bottom:67.710000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.y3{bottom:96.330000px;}
.y5e{bottom:97.200000px;}
.y3b{bottom:98.100000px;}
.y8f{bottom:101.670000px;}
.y178{bottom:103.500000px;}
.yb8{bottom:106.560000px;}
.y89{bottom:106.920000px;}
.y91{bottom:108.180000px;}
.y151{bottom:111.780000px;}
.y8e{bottom:114.810000px;}
.y182{bottom:115.380000px;}
.y185{bottom:115.920000px;}
.y5d{bottom:117.000000px;}
.yff{bottom:117.720000px;}
.y3a{bottom:117.900000px;}
.y8a{bottom:121.140000px;}
.y90{bottom:121.530000px;}
.y177{bottom:123.300000px;}
.y88{bottom:123.480000px;}
.y2{bottom:125.670000px;}
.yb7{bottom:127.080000px;}
.y8d{bottom:128.130000px;}
.y150{bottom:132.300000px;}
.y184{bottom:134.820000px;}
.y181{bottom:135.360000px;}
.y5c{bottom:136.800000px;}
.y39{bottom:137.700000px;}
.y102{bottom:138.420000px;}
.y176{bottom:143.100000px;}
.yb5{bottom:147.780000px;}
.y14e{bottom:153.030000px;}
.y183{bottom:153.570000px;}
.y180{bottom:155.190000px;}
.y5b{bottom:156.630000px;}
.y38{bottom:157.530000px;}
.y101{bottom:158.970000px;}
.y175{bottom:163.110000px;}
.yb4{bottom:168.330000px;}
.y17f{bottom:174.990000px;}
.y5a{bottom:176.610000px;}
.y37{bottom:177.330000px;}
.yfe{bottom:179.490000px;}
.y174{bottom:182.910000px;}
.yb3{bottom:188.850000px;}
.y17e{bottom:194.790000px;}
.y8c{bottom:195.555000px;}
.y59{bottom:196.410000px;}
.y36{bottom:197.310000px;}
.yfb{bottom:200.190000px;}
.y8b{bottom:202.290000px;}
.y173{bottom:202.710000px;}
.y63{bottom:203.790000px;}
.y146{bottom:209.370000px;}
.y17d{bottom:214.590000px;}
.yb2{bottom:215.310000px;}
.y58{bottom:216.210000px;}
.y35{bottom:222.330000px;}
.y172{bottom:222.510000px;}
.y62{bottom:224.490000px;}
.y145{bottom:229.170000px;}
.y17c{bottom:234.570000px;}
.yb1{bottom:235.110000px;}
.y57{bottom:236.010000px;}
.y34{bottom:236.910000px;}
.y171{bottom:242.310000px;}
.y61{bottom:245.010000px;}
.y144{bottom:249.150000px;}
.yfa{bottom:254.370000px;}
.yb0{bottom:254.910000px;}
.y56{bottom:255.810000px;}
.y33{bottom:256.710000px;}
.y170{bottom:262.290000px;}
.y5f{bottom:265.530000px;}
.y143{bottom:268.950000px;}
.yf9{bottom:274.170000px;}
.yaf{bottom:274.710000px;}
.y55{bottom:275.790000px;}
.y32{bottom:276.510000px;}
.y16f{bottom:282.090000px;}
.y142{bottom:288.750000px;}
.yf8{bottom:293.970000px;}
.yae{bottom:294.690000px;}
.y54{bottom:295.590000px;}
.y31{bottom:296.490000px;}
.y16e{bottom:301.890000px;}
.y141{bottom:308.550000px;}
.y14d{bottom:310.890000px;}
.ydd{bottom:311.430000px;}
.y53{bottom:312.870000px;}
.yf7{bottom:313.770000px;}
.yad{bottom:314.490000px;}
.y30{bottom:316.290000px;}
.y16d{bottom:321.690000px;}
.y140{bottom:328.350000px;}
.y14c{bottom:331.590000px;}
.ydc{bottom:332.130000px;}
.y52{bottom:332.670000px;}
.yf6{bottom:333.750000px;}
.yac{bottom:334.290000px;}
.y2f{bottom:336.090000px;}
.y16c{bottom:341.490000px;}
.y13f{bottom:348.330000px;}
.y14b{bottom:352.110000px;}
.y51{bottom:352.470000px;}
.yf5{bottom:353.550000px;}
.yda{bottom:353.730000px;}
.yab{bottom:354.090000px;}
.y2e{bottom:355.890000px;}
.y87{bottom:358.770000px;}
.y16b{bottom:361.470000px;}
.y13e{bottom:368.130000px;}
.y50{bottom:372.270000px;}
.y14a{bottom:372.630000px;}
.yf4{bottom:373.350000px;}
.yaa{bottom:373.890000px;}
.yd9{bottom:374.610000px;}
.y2d{bottom:375.690000px;}
.y86{bottom:378.570000px;}
.y16a{bottom:381.270000px;}
.y13d{bottom:387.930000px;}
.y4f{bottom:392.070000px;}
.yf3{bottom:393.150000px;}
.y147{bottom:393.330000px;}
.ya9{bottom:393.870000px;}
.y2c{bottom:395.670000px;}
.yd7{bottom:396.210000px;}
.y85{bottom:398.550000px;}
.y169{bottom:401.115000px;}
.y13c{bottom:407.775000px;}
.y4e{bottom:412.095000px;}
.yf2{bottom:412.995000px;}
.ya8{bottom:413.715000px;}
.y149{bottom:413.895000px;}
.y2b{bottom:415.515000px;}
.yd5{bottom:417.135000px;}
.y84{bottom:418.395000px;}
.y168{bottom:421.095000px;}
.y13b{bottom:427.575000px;}
.ya7{bottom:428.475000px;}
.y4d{bottom:431.895000px;}
.yf1{bottom:432.975000px;}
.y83{bottom:433.155000px;}
.y2a{bottom:435.315000px;}
.yd3{bottom:438.735000px;}
.y167{bottom:441.075000px;}
.y13a{bottom:447.555000px;}
.ya6{bottom:448.995000px;}
.y4c{bottom:451.695000px;}
.yf0{bottom:452.775000px;}
.y82{bottom:453.675000px;}
.y29{bottom:455.115000px;}
.y166{bottom:462.855000px;}
.y139{bottom:467.355000px;}
.y4b{bottom:468.975000px;}
.ya5{bottom:469.695000px;}
.yd2{bottom:470.055000px;}
.yef{bottom:472.575000px;}
.y81{bottom:474.375000px;}
.y28{bottom:474.915000px;}
.y138{bottom:482.115000px;}
.y165{bottom:483.015000px;}
.y119{bottom:486.360000px;}
.y11c{bottom:486.720000px;}
.y4a{bottom:488.775000px;}
.yd1{bottom:489.855000px;}
.ya4{bottom:490.215000px;}
.yee{bottom:492.375000px;}
.y27{bottom:494.895000px;}
.y164{bottom:502.815000px;}
.y137{bottom:508.035000px;}
.y49{bottom:508.575000px;}
.yd0{bottom:509.655000px;}
.ya3{bottom:510.735000px;}
.yed{bottom:512.175000px;}
.y26{bottom:514.695000px;}
.y7e{bottom:515.415000px;}
.y163{bottom:522.615000px;}
.y48{bottom:528.375000px;}
.ycf{bottom:529.635000px;}
.yec{bottom:532.155000px;}
.y135{bottom:533.595000px;}
.y25{bottom:535.935000px;}
.y80{bottom:536.115000px;}
.ya2{bottom:537.195000px;}
.y162{bottom:541.155000px;}
.y47{bottom:548.355000px;}
.yce{bottom:549.435000px;}
.y161{bottom:551.235000px;}
.yeb{bottom:551.955000px;}
.y24{bottom:555.735000px;}
.y7d{bottom:556.635000px;}
.y133{bottom:559.515000px;}
.ya1{bottom:562.215000px;}
.y46{bottom:568.155000px;}
.ycd{bottom:569.235000px;}
.yea{bottom:571.755000px;}
.y11a{bottom:572.400000px;}
.y11d{bottom:575.280000px;}
.y23{bottom:575.535000px;}
.ya0{bottom:576.795000px;}
.y160{bottom:579.855000px;}
.y7c{bottom:583.095000px;}
.ycc{bottom:583.995000px;}
.y12f{bottom:585.075000px;}
.y45{bottom:587.955000px;}
.y15f{bottom:589.935000px;}
.ye9{bottom:591.555000px;}
.y22{bottom:595.335000px;}
.y9f{bottom:596.775000px;}
.y7b{bottom:602.895000px;}
.y131{bottom:605.595000px;}
.y44{bottom:607.755000px;}
.ycb{bottom:608.655000px;}
.ye8{bottom:611.355000px;}
.y21{bottom:615.315000px;}
.y9e{bottom:616.575000px;}
.y15e{bottom:618.735000px;}
.y7a{bottom:622.695000px;}
.y112{bottom:624.240000px;}
.y43{bottom:627.555000px;}
.y15d{bottom:628.815000px;}
.ye7{bottom:631.335000px;}
.y12e{bottom:632.055000px;}
.yc9{bottom:632.415000px;}
.y20{bottom:635.115000px;}
.y115{bottom:635.580000px;}
.y9d{bottom:636.375000px;}
.y79{bottom:642.495000px;}
.y42{bottom:647.535000px;}
.ye6{bottom:651.165000px;}
.y12d{bottom:651.885000px;}
.y1f{bottom:654.945000px;}
.y9c{bottom:656.205000px;}
.yc8{bottom:657.105000px;}
.y15c{bottom:658.365000px;}
.y78{bottom:662.325000px;}
.y41{bottom:667.365000px;}
.ye5{bottom:670.965000px;}
.y12c{bottom:671.685000px;}
.y1e{bottom:674.745000px;}
.y9b{bottom:676.005000px;}
.y15b{bottom:678.165000px;}
.yc4{bottom:680.865000px;}
.y77{bottom:682.305000px;}
.y40{bottom:687.165000px;}
.ye4{bottom:690.765000px;}
.y12b{bottom:691.485000px;}
.y1d{bottom:694.545000px;}
.y9a{bottom:695.985000px;}
.y15a{bottom:697.965000px;}
.yc6{bottom:701.565000px;}
.y76{bottom:702.105000px;}
.y3f{bottom:706.965000px;}
.ye3{bottom:710.565000px;}
.y12a{bottom:711.645000px;}
.y113{bottom:712.620000px;}
.y159{bottom:712.725000px;}
.y1c{bottom:714.525000px;}
.y99{bottom:715.785000px;}
.y117{bottom:716.400000px;}
.y75{bottom:721.905000px;}
.y3e{bottom:724.245000px;}
.ye2{bottom:730.545000px;}
.yc3{bottom:731.085000px;}
.y129{bottom:731.625000px;}
.y155{bottom:733.245000px;}
.y1b{bottom:734.325000px;}
.y98{bottom:735.585000px;}
.y74{bottom:736.665000px;}
.y3d{bottom:744.045000px;}
.ye1{bottom:750.345000px;}
.yc2{bottom:750.885000px;}
.y128{bottom:753.405000px;}
.y158{bottom:753.945000px;}
.y1a{bottom:754.125000px;}
.y97{bottom:755.385000px;}
.y73{bottom:758.805000px;}
.y3c{bottom:760.785000px;}
.y10b{bottom:761.220000px;}
.yc1{bottom:765.645000px;}
.ye0{bottom:770.145000px;}
.y127{bottom:773.385000px;}
.y19{bottom:773.925000px;}
.y10f{bottom:774.000000px;}
.y157{bottom:774.465000px;}
.y96{bottom:775.185000px;}
.y71{bottom:779.685000px;}
.ydf{bottom:789.945000px;}
.y126{bottom:793.185000px;}
.y18{bottom:793.725000px;}
.y95{bottom:795.165000px;}
.y6f{bottom:801.645000px;}
.yde{bottom:809.745000px;}
.y125{bottom:812.985000px;}
.y17{bottom:813.705000px;}
.y94{bottom:814.965000px;}
.y152{bottom:815.685000px;}
.ybf{bottom:820.545000px;}
.y6e{bottom:829.725000px;}
.y124{bottom:832.785000px;}
.y16{bottom:838.725000px;}
.ybd{bottom:848.625000px;}
.y6d{bottom:849.525000px;}
.y123{bottom:851.505000px;}
.y15{bottom:853.305000px;}
.y10d{bottom:855.720000px;}
.y110{bottom:857.880000px;}
.y122{bottom:861.585000px;}
.y6c{bottom:869.325000px;}
.yb9{bottom:875.445000px;}
.y14{bottom:878.325000px;}
.y6b{bottom:889.125000px;}
.y121{bottom:890.205000px;}
.y13{bottom:893.445000px;}
.ybb{bottom:896.145000px;}
.y120{bottom:900.330000px;}
.y6a{bottom:908.970000px;}
.y12{bottom:914.910000px;}
.y103{bottom:915.480000px;}
.y107{bottom:916.560000px;}
.y69{bottom:928.950000px;}
.y11f{bottom:929.130000px;}
.y11{bottom:938.310000px;}
.y11e{bottom:939.210000px;}
.y68{bottom:948.750000px;}
.y67{bottom:968.550000px;}
.y10{bottom:969.990000px;}
.y17b{bottom:980.250000px;}
.y66{bottom:988.350000px;}
.y105{bottom:998.100000px;}
.y109{bottom:999.720000px;}
.y17a{bottom:1000.950000px;}
.yf{bottom:1001.850000px;}
.y65{bottom:1008.150000px;}
.y179{bottom:1021.470000px;}
.y64{bottom:1028.130000px;}
.y9{bottom:1046.670000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.h38{height:14.760000px;}
.h31{height:15.660000px;}
.h35{height:16.380000px;}
.h15{height:19.800000px;}
.h20{height:19.836000px;}
.h18{height:19.980000px;}
.h43{height:20.016000px;}
.h2c{height:20.160000px;}
.h2b{height:20.196000px;}
.h2a{height:20.880000px;}
.h30{height:21.114844px;}
.h17{height:21.240000px;}
.ha{height:21.420000px;}
.h26{height:23.040000px;}
.h28{height:23.940000px;}
.h27{height:23.976000px;}
.h3f{height:24.660000px;}
.h29{height:24.840000px;}
.h40{height:25.200000px;}
.h23{height:26.100000px;}
.h22{height:26.136000px;}
.hf{height:27.147656px;}
.h24{height:27.360000px;}
.h32{height:29.464453px;}
.h7{height:33.480000px;}
.h42{height:39.600000px;}
.h3e{height:40.320000px;}
.h41{height:40.356000px;}
.h1a{height:40.500000px;}
.h10{height:41.726953px;}
.hd{height:42.164648px;}
.h46{height:42.854414px;}
.h14{height:43.506914px;}
.h11{height:43.681992px;}
.h25{height:43.740000px;}
.h16{height:45.024258px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h21{height:46.836000px;}
.h44{height:47.160000px;}
.h2d{height:47.520000px;}
.h1e{height:47.980898px;}
.h12{height:48.027656px;}
.h1f{height:48.124125px;}
.h13{height:48.224531px;}
.h19{height:48.312422px;}
.h3c{height:50.364141px;}
.h3d{height:52.524141px;}
.h9{height:53.224453px;}
.he{height:53.404453px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h1c{height:74.320898px;}
.h45{height:81.720000px;}
.h2e{height:81.756000px;}
.h3a{height:90.684141px;}
.h3b{height:90.864141px;}
.h39{height:96.444141px;}
.h37{height:97.380000px;}
.h2f{height:100.080000px;}
.h36{height:100.260000px;}
.h33{height:100.440000px;}
.h1d{height:101.260898px;}
.h34{height:103.140000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h1b{height:232.020000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w2e{width:15.300000px;}
.w2c{width:15.660000px;}
.w33{width:16.020000px;}
.w31{width:16.380000px;}
.w1b{width:26.280000px;}
.w1a{width:27.180000px;}
.w3a{width:31.500000px;}
.w39{width:32.400000px;}
.w43{width:45.540000px;}
.w48{width:49.140000px;}
.w28{width:49.680000px;}
.w46{width:56.736000px;}
.w1d{width:57.600000px;}
.w1c{width:57.816000px;}
.w38{width:61.596000px;}
.w6{width:65.916000px;}
.w12{width:67.140000px;}
.w19{width:67.320000px;}
.w11{width:67.860000px;}
.w24{width:69.660000px;}
.w10{width:70.956000px;}
.w3c{width:71.100000px;}
.w3b{width:71.136000px;}
.w4a{width:75.240000px;}
.w49{width:75.276000px;}
.w17{width:79.740000px;}
.w1e{width:80.460000px;}
.w20{width:80.640000px;}
.w21{width:80.676000px;}
.w22{width:80.820000px;}
.w27{width:81.756000px;}
.w45{width:82.080000px;}
.w44{width:82.296000px;}
.w47{width:84.636000px;}
.w26{width:85.680000px;}
.we{width:86.220000px;}
.w16{width:86.580000px;}
.w4b{width:88.236000px;}
.w40{width:88.740000px;}
.w3f{width:88.776000px;}
.w2a{width:89.136000px;}
.w41{width:94.536000px;}
.w36{width:96.300000px;}
.w29{width:98.676000px;}
.w8{width:99.036000px;}
.w35{width:100.476000px;}
.w3d{width:107.496000px;}
.w18{width:115.416000px;}
.wa{width:117.036000px;}
.w25{width:123.696000px;}
.w7{width:128.520000px;}
.w9{width:130.176000px;}
.w15{width:131.076000px;}
.w42{width:131.796000px;}
.w2f{width:137.340000px;}
.w3{width:137.556000px;}
.w30{width:139.680000px;}
.w2d{width:139.860000px;}
.w34{width:141.300000px;}
.w37{width:142.236000px;}
.w32{width:142.560000px;}
.w23{width:150.690000px;}
.wc{width:158.970000px;}
.w4c{width:199.650000px;}
.wf{width:205.950000px;}
.w2b{width:215.670000px;}
.wb{width:218.190000px;}
.w13{width:219.495000px;}
.w14{width:219.630000px;}
.w1f{width:242.130000px;}
.w3e{width:272.055000px;}
.wd{width:292.170000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:7.056000px;}
.x2{left:8.100000px;}
.x45{left:11.010000px;}
.x16{left:48.239987px;}
.x1{left:53.100000px;}
.x63{left:54.719987px;}
.x2c{left:59.039987px;}
.x5c{left:64.619987px;}
.x6{left:75.059987px;}
.x61{left:80.999987px;}
.xe{left:96.515987px;}
.x62{left:102.275987px;}
.x11{left:108.035987px;}
.x4{left:118.470000px;}
.x42{left:124.020000px;}
.x9{left:130.175987px;}
.x4a{left:132.480000px;}
.x4d{left:134.460000px;}
.x34{left:149.795987px;}
.x4f{left:157.889987px;}
.x37{left:169.770000px;}
.xc{left:187.049987px;}
.x17{left:199.470000px;}
.x44{left:204.120000px;}
.x4b{left:210.960000px;}
.x4e{left:213.480000px;}
.x2a{left:226.109987px;}
.x12{left:234.210000px;}
.xa{left:236.009987px;}
.x52{left:246.270000px;}
.x2d{left:249.870000px;}
.x3d{left:253.290000px;}
.x26{left:255.989987px;}
.x28{left:257.609987px;}
.x5d{left:260.310000px;}
.x1e{left:266.609987px;}
.x29{left:271.649987px;}
.x27{left:277.049987px;}
.x35{left:285.195000px;}
.xb{left:293.474987px;}
.x13{left:300.135000px;}
.x3c{left:311.114987px;}
.xd{left:314.534987px;}
.x18{left:316.515000px;}
.x10{left:319.214987px;}
.x38{left:320.475000px;}
.x3e{left:335.055000px;}
.x51{left:342.254987px;}
.x50{left:343.694987px;}
.x5e{left:344.955000px;}
.x53{left:346.755000px;}
.x2f{left:358.635000px;}
.x57{left:363.675000px;}
.x36{left:365.655000px;}
.x1d{left:371.054987px;}
.x24{left:373.064987px;}
.x25{left:379.184987px;}
.x23{left:380.264987px;}
.x1f{left:383.324987px;}
.x3f{left:384.735000px;}
.x1a{left:386.715000px;}
.x39{left:390.135000px;}
.x5f{left:394.095000px;}
.x7{left:406.514987px;}
.x56{left:410.655000px;}
.x32{left:412.095000px;}
.x5a{left:424.155000px;}
.x14{left:428.655000px;}
.x30{left:438.375000px;}
.x54{left:443.055000px;}
.x8{left:446.504987px;}
.x58{left:452.445000px;}
.x1b{left:457.665000px;}
.x46{left:461.880000px;}
.x48{left:464.940000px;}
.x2b{left:467.744987px;}
.x60{left:469.365000px;}
.x40{left:483.405000px;}
.x33{left:496.185000px;}
.x20{left:499.139987px;}
.x21{left:503.819987px;}
.x22{left:506.159987px;}
.x2e{left:512.025000px;}
.x3a{left:513.825000px;}
.x1c{left:525.525000px;}
.x15{left:527.685000px;}
.x19{left:534.705000px;}
.x49{left:538.920000px;}
.x59{left:541.185000px;}
.x4c{left:543.960000px;}
.x47{left:545.400000px;}
.x41{left:550.725000px;}
.x31{left:553.785000px;}
.xf{left:578.444987px;}
.x55{left:585.285000px;}
.x5b{left:588.525000px;}
.x3b{left:637.530000px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.va{vertical-align:-10.880000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.920000pt;}
.vb{vertical-align:10.880000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:23.413333pt;}
.v9{vertical-align:35.840000pt;}
.v8{vertical-align:40.960000pt;}
.v7{vertical-align:47.360000pt;}
.ls5{letter-spacing:-0.821333pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.312533pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:-0.035840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.lse{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.118400pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183680pt;}
.ls18{letter-spacing:0.211200pt;}
.ls4{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.280533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.630400pt;}
.lsb{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls15{letter-spacing:11.992320pt;}
.ls1d{letter-spacing:12.632320pt;}
.ls19{letter-spacing:14.435200pt;}
.lsa{letter-spacing:14.672640pt;}
.ls16{letter-spacing:14.719360pt;}
.ls17{letter-spacing:14.879360pt;}
.ls1c{letter-spacing:15.359360pt;}
.ls1{letter-spacing:35.471360pt;}
.ls8{letter-spacing:40.912640pt;}
.ls10{letter-spacing:41.040640pt;}
.ws12{word-spacing:-53.131520pt;}
.ws13{word-spacing:-53.120000pt;}
.ws1c{word-spacing:-53.084160pt;}
.ws1b{word-spacing:-53.022933pt;}
.ws22{word-spacing:-41.611520pt;}
.ws14{word-spacing:-40.971520pt;}
.ws25{word-spacing:-38.506880pt;}
.ws16{word-spacing:-38.400640pt;}
.ws1e{word-spacing:-38.400213pt;}
.ws20{word-spacing:-38.339840pt;}
.ws24{word-spacing:-38.025173pt;}
.ws1d{word-spacing:-38.003840pt;}
.ws1f{word-spacing:-37.866880pt;}
.ws1a{word-spacing:-37.760640pt;}
.ws17{word-spacing:-37.699840pt;}
.ws21{word-spacing:-37.586560pt;}
.ws11{word-spacing:-37.576320pt;}
.ws15{word-spacing:-37.539840pt;}
.ws18{word-spacing:-37.384960pt;}
.ws19{word-spacing:-18.154240pt;}
.ws23{word-spacing:-17.911040pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws27{word-spacing:-13.096533pt;}
.ws26{word-spacing:-12.967467pt;}
.ws9{word-spacing:-12.960000pt;}
.ws28{word-spacing:-12.640000pt;}
.wsd{word-spacing:-9.690880pt;}
.wsf{word-spacing:-9.560533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws10{word-spacing:-6.080000pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:205.500587pt;}
._22{margin-left:-3.775360pt;}
._18{margin-left:-2.855040pt;}
._13{margin-left:-1.946880pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.002240pt;}
._1{width:1.973333pt;}
._15{width:3.465173pt;}
._12{width:4.390827pt;}
._19{width:5.321173pt;}
._16{width:6.374400pt;}
._17{width:7.386880pt;}
._21{width:8.334507pt;}
._6{width:9.600000pt;}
._14{width:10.614400pt;}
._28{width:12.140160pt;}
._27{width:14.395520pt;}
._26{width:15.298560pt;}
._f{width:16.842667pt;}
._1b{width:18.804480pt;}
._1a{width:20.079360pt;}
._1d{width:27.728640pt;}
._1f{width:29.339520pt;}
._25{width:37.992320pt;}
._20{width:43.878827pt;}
._7{width:67.808853pt;}
._24{width:79.839360pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._1e{width:138.364587pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._23{width:205.627520pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
._1c{width:1335.467093pt;}
.fs3{font-size:2.560000pt;}
.fsa{font-size:24.320000pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fsb{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y118{bottom:4.253333pt;}
.y11b{bottom:5.026667pt;}
.y111{bottom:5.053333pt;}
.y106{bottom:5.093333pt;}
.y60{bottom:5.120000pt;}
.yb6{bottom:5.146667pt;}
.y114{bottom:5.213333pt;}
.y10a{bottom:5.253333pt;}
.ye{bottom:5.280000pt;}
.ydb{bottom:5.440000pt;}
.yd8{bottom:5.480000pt;}
.y132{bottom:5.760000pt;}
.y10e{bottom:5.853333pt;}
.yd6{bottom:6.080000pt;}
.y72{bottom:6.400000pt;}
.y70{bottom:6.560000pt;}
.yc7{bottom:8.000000pt;}
.yca{bottom:8.800000pt;}
.y134{bottom:9.440000pt;}
.y10c{bottom:9.533333pt;}
.y104{bottom:9.573333pt;}
.yd4{bottom:9.600000pt;}
.y116{bottom:9.626667pt;}
.y108{bottom:9.666667pt;}
.y136{bottom:9.920000pt;}
.ybe{bottom:10.720000pt;}
.ybc{bottom:10.760000pt;}
.y6{bottom:11.040000pt;}
.y154{bottom:11.680000pt;}
.yc0{bottom:11.840000pt;}
.yfd{bottom:12.160000pt;}
.y8{bottom:16.160000pt;}
.y93{bottom:18.528000pt;}
.y14f{bottom:22.720000pt;}
.y130{bottom:23.360000pt;}
.y148{bottom:23.400000pt;}
.y7f{bottom:23.520000pt;}
.yc5{bottom:26.400000pt;}
.yba{bottom:29.160000pt;}
.y153{bottom:29.440000pt;}
.yfc{bottom:29.760000pt;}
.y92{bottom:30.373333pt;}
.yc{bottom:30.720000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:48.960000pt;}
.y156{bottom:60.160000pt;}
.y100{bottom:60.186667pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.y3{bottom:85.626667pt;}
.y5e{bottom:86.400000pt;}
.y3b{bottom:87.200000pt;}
.y8f{bottom:90.373333pt;}
.y178{bottom:92.000000pt;}
.yb8{bottom:94.720000pt;}
.y89{bottom:95.040000pt;}
.y91{bottom:96.160000pt;}
.y151{bottom:99.360000pt;}
.y8e{bottom:102.053333pt;}
.y182{bottom:102.560000pt;}
.y185{bottom:103.040000pt;}
.y5d{bottom:104.000000pt;}
.yff{bottom:104.640000pt;}
.y3a{bottom:104.800000pt;}
.y8a{bottom:107.680000pt;}
.y90{bottom:108.026667pt;}
.y177{bottom:109.600000pt;}
.y88{bottom:109.760000pt;}
.y2{bottom:111.706667pt;}
.yb7{bottom:112.960000pt;}
.y8d{bottom:113.893333pt;}
.y150{bottom:117.600000pt;}
.y184{bottom:119.840000pt;}
.y181{bottom:120.320000pt;}
.y5c{bottom:121.600000pt;}
.y39{bottom:122.400000pt;}
.y102{bottom:123.040000pt;}
.y176{bottom:127.200000pt;}
.yb5{bottom:131.360000pt;}
.y14e{bottom:136.026667pt;}
.y183{bottom:136.506667pt;}
.y180{bottom:137.946667pt;}
.y5b{bottom:139.226667pt;}
.y38{bottom:140.026667pt;}
.y101{bottom:141.306667pt;}
.y175{bottom:144.986667pt;}
.yb4{bottom:149.626667pt;}
.y17f{bottom:155.546667pt;}
.y5a{bottom:156.986667pt;}
.y37{bottom:157.626667pt;}
.yfe{bottom:159.546667pt;}
.y174{bottom:162.586667pt;}
.yb3{bottom:167.866667pt;}
.y17e{bottom:173.146667pt;}
.y8c{bottom:173.826667pt;}
.y59{bottom:174.586667pt;}
.y36{bottom:175.386667pt;}
.yfb{bottom:177.946667pt;}
.y8b{bottom:179.813333pt;}
.y173{bottom:180.186667pt;}
.y63{bottom:181.146667pt;}
.y146{bottom:186.106667pt;}
.y17d{bottom:190.746667pt;}
.yb2{bottom:191.386667pt;}
.y58{bottom:192.186667pt;}
.y35{bottom:197.626667pt;}
.y172{bottom:197.786667pt;}
.y62{bottom:199.546667pt;}
.y145{bottom:203.706667pt;}
.y17c{bottom:208.506667pt;}
.yb1{bottom:208.986667pt;}
.y57{bottom:209.786667pt;}
.y34{bottom:210.586667pt;}
.y171{bottom:215.386667pt;}
.y61{bottom:217.786667pt;}
.y144{bottom:221.466667pt;}
.yfa{bottom:226.106667pt;}
.yb0{bottom:226.586667pt;}
.y56{bottom:227.386667pt;}
.y33{bottom:228.186667pt;}
.y170{bottom:233.146667pt;}
.y5f{bottom:236.026667pt;}
.y143{bottom:239.066667pt;}
.yf9{bottom:243.706667pt;}
.yaf{bottom:244.186667pt;}
.y55{bottom:245.146667pt;}
.y32{bottom:245.786667pt;}
.y16f{bottom:250.746667pt;}
.y142{bottom:256.666667pt;}
.yf8{bottom:261.306667pt;}
.yae{bottom:261.946667pt;}
.y54{bottom:262.746667pt;}
.y31{bottom:263.546667pt;}
.y16e{bottom:268.346667pt;}
.y141{bottom:274.266667pt;}
.y14d{bottom:276.346667pt;}
.ydd{bottom:276.826667pt;}
.y53{bottom:278.106667pt;}
.yf7{bottom:278.906667pt;}
.yad{bottom:279.546667pt;}
.y30{bottom:281.146667pt;}
.y16d{bottom:285.946667pt;}
.y140{bottom:291.866667pt;}
.y14c{bottom:294.746667pt;}
.ydc{bottom:295.226667pt;}
.y52{bottom:295.706667pt;}
.yf6{bottom:296.666667pt;}
.yac{bottom:297.146667pt;}
.y2f{bottom:298.746667pt;}
.y16c{bottom:303.546667pt;}
.y13f{bottom:309.626667pt;}
.y14b{bottom:312.986667pt;}
.y51{bottom:313.306667pt;}
.yf5{bottom:314.266667pt;}
.yda{bottom:314.426667pt;}
.yab{bottom:314.746667pt;}
.y2e{bottom:316.346667pt;}
.y87{bottom:318.906667pt;}
.y16b{bottom:321.306667pt;}
.y13e{bottom:327.226667pt;}
.y50{bottom:330.906667pt;}
.y14a{bottom:331.226667pt;}
.yf4{bottom:331.866667pt;}
.yaa{bottom:332.346667pt;}
.yd9{bottom:332.986667pt;}
.y2d{bottom:333.946667pt;}
.y86{bottom:336.506667pt;}
.y16a{bottom:338.906667pt;}
.y13d{bottom:344.826667pt;}
.y4f{bottom:348.506667pt;}
.yf3{bottom:349.466667pt;}
.y147{bottom:349.626667pt;}
.ya9{bottom:350.106667pt;}
.y2c{bottom:351.706667pt;}
.yd7{bottom:352.186667pt;}
.y85{bottom:354.266667pt;}
.y169{bottom:356.546667pt;}
.y13c{bottom:362.466667pt;}
.y4e{bottom:366.306667pt;}
.yf2{bottom:367.106667pt;}
.ya8{bottom:367.746667pt;}
.y149{bottom:367.906667pt;}
.y2b{bottom:369.346667pt;}
.yd5{bottom:370.786667pt;}
.y84{bottom:371.906667pt;}
.y168{bottom:374.306667pt;}
.y13b{bottom:380.066667pt;}
.ya7{bottom:380.866667pt;}
.y4d{bottom:383.906667pt;}
.yf1{bottom:384.866667pt;}
.y83{bottom:385.026667pt;}
.y2a{bottom:386.946667pt;}
.yd3{bottom:389.986667pt;}
.y167{bottom:392.066667pt;}
.y13a{bottom:397.826667pt;}
.ya6{bottom:399.106667pt;}
.y4c{bottom:401.506667pt;}
.yf0{bottom:402.466667pt;}
.y82{bottom:403.266667pt;}
.y29{bottom:404.546667pt;}
.y166{bottom:411.426667pt;}
.y139{bottom:415.426667pt;}
.y4b{bottom:416.866667pt;}
.ya5{bottom:417.506667pt;}
.yd2{bottom:417.826667pt;}
.yef{bottom:420.066667pt;}
.y81{bottom:421.666667pt;}
.y28{bottom:422.146667pt;}
.y138{bottom:428.546667pt;}
.y165{bottom:429.346667pt;}
.y119{bottom:432.320000pt;}
.y11c{bottom:432.640000pt;}
.y4a{bottom:434.466667pt;}
.yd1{bottom:435.426667pt;}
.ya4{bottom:435.746667pt;}
.yee{bottom:437.666667pt;}
.y27{bottom:439.906667pt;}
.y164{bottom:446.946667pt;}
.y137{bottom:451.586667pt;}
.y49{bottom:452.066667pt;}
.yd0{bottom:453.026667pt;}
.ya3{bottom:453.986667pt;}
.yed{bottom:455.266667pt;}
.y26{bottom:457.506667pt;}
.y7e{bottom:458.146667pt;}
.y163{bottom:464.546667pt;}
.y48{bottom:469.666667pt;}
.ycf{bottom:470.786667pt;}
.yec{bottom:473.026667pt;}
.y135{bottom:474.306667pt;}
.y25{bottom:476.386667pt;}
.y80{bottom:476.546667pt;}
.ya2{bottom:477.506667pt;}
.y162{bottom:481.026667pt;}
.y47{bottom:487.426667pt;}
.yce{bottom:488.386667pt;}
.y161{bottom:489.986667pt;}
.yeb{bottom:490.626667pt;}
.y24{bottom:493.986667pt;}
.y7d{bottom:494.786667pt;}
.y133{bottom:497.346667pt;}
.ya1{bottom:499.746667pt;}
.y46{bottom:505.026667pt;}
.ycd{bottom:505.986667pt;}
.yea{bottom:508.226667pt;}
.y11a{bottom:508.800000pt;}
.y11d{bottom:511.360000pt;}
.y23{bottom:511.586667pt;}
.ya0{bottom:512.706667pt;}
.y160{bottom:515.426667pt;}
.y7c{bottom:518.306667pt;}
.ycc{bottom:519.106667pt;}
.y12f{bottom:520.066667pt;}
.y45{bottom:522.626667pt;}
.y15f{bottom:524.386667pt;}
.ye9{bottom:525.826667pt;}
.y22{bottom:529.186667pt;}
.y9f{bottom:530.466667pt;}
.y7b{bottom:535.906667pt;}
.y131{bottom:538.306667pt;}
.y44{bottom:540.226667pt;}
.ycb{bottom:541.026667pt;}
.ye8{bottom:543.426667pt;}
.y21{bottom:546.946667pt;}
.y9e{bottom:548.066667pt;}
.y15e{bottom:549.986667pt;}
.y7a{bottom:553.506667pt;}
.y112{bottom:554.880000pt;}
.y43{bottom:557.826667pt;}
.y15d{bottom:558.946667pt;}
.ye7{bottom:561.186667pt;}
.y12e{bottom:561.826667pt;}
.yc9{bottom:562.146667pt;}
.y20{bottom:564.546667pt;}
.y115{bottom:564.960000pt;}
.y9d{bottom:565.666667pt;}
.y79{bottom:571.106667pt;}
.y42{bottom:575.586667pt;}
.ye6{bottom:578.813333pt;}
.y12d{bottom:579.453333pt;}
.y1f{bottom:582.173333pt;}
.y9c{bottom:583.293333pt;}
.yc8{bottom:584.093333pt;}
.y15c{bottom:585.213333pt;}
.y78{bottom:588.733333pt;}
.y41{bottom:593.213333pt;}
.ye5{bottom:596.413333pt;}
.y12c{bottom:597.053333pt;}
.y1e{bottom:599.773333pt;}
.y9b{bottom:600.893333pt;}
.y15b{bottom:602.813333pt;}
.yc4{bottom:605.213333pt;}
.y77{bottom:606.493333pt;}
.y40{bottom:610.813333pt;}
.ye4{bottom:614.013333pt;}
.y12b{bottom:614.653333pt;}
.y1d{bottom:617.373333pt;}
.y9a{bottom:618.653333pt;}
.y15a{bottom:620.413333pt;}
.yc6{bottom:623.613333pt;}
.y76{bottom:624.093333pt;}
.y3f{bottom:628.413333pt;}
.ye3{bottom:631.613333pt;}
.y12a{bottom:632.573333pt;}
.y113{bottom:633.440000pt;}
.y159{bottom:633.533333pt;}
.y1c{bottom:635.133333pt;}
.y99{bottom:636.253333pt;}
.y117{bottom:636.800000pt;}
.y75{bottom:641.693333pt;}
.y3e{bottom:643.773333pt;}
.ye2{bottom:649.373333pt;}
.yc3{bottom:649.853333pt;}
.y129{bottom:650.333333pt;}
.y155{bottom:651.773333pt;}
.y1b{bottom:652.733333pt;}
.y98{bottom:653.853333pt;}
.y74{bottom:654.813333pt;}
.y3d{bottom:661.373333pt;}
.ye1{bottom:666.973333pt;}
.yc2{bottom:667.453333pt;}
.y128{bottom:669.693333pt;}
.y158{bottom:670.173333pt;}
.y1a{bottom:670.333333pt;}
.y97{bottom:671.453333pt;}
.y73{bottom:674.493333pt;}
.y3c{bottom:676.253333pt;}
.y10b{bottom:676.640000pt;}
.yc1{bottom:680.573333pt;}
.ye0{bottom:684.573333pt;}
.y127{bottom:687.453333pt;}
.y19{bottom:687.933333pt;}
.y10f{bottom:688.000000pt;}
.y157{bottom:688.413333pt;}
.y96{bottom:689.053333pt;}
.y71{bottom:693.053333pt;}
.ydf{bottom:702.173333pt;}
.y126{bottom:705.053333pt;}
.y18{bottom:705.533333pt;}
.y95{bottom:706.813333pt;}
.y6f{bottom:712.573333pt;}
.yde{bottom:719.773333pt;}
.y125{bottom:722.653333pt;}
.y17{bottom:723.293333pt;}
.y94{bottom:724.413333pt;}
.y152{bottom:725.053333pt;}
.ybf{bottom:729.373333pt;}
.y6e{bottom:737.533333pt;}
.y124{bottom:740.253333pt;}
.y16{bottom:745.533333pt;}
.ybd{bottom:754.333333pt;}
.y6d{bottom:755.133333pt;}
.y123{bottom:756.893333pt;}
.y15{bottom:758.493333pt;}
.y10d{bottom:760.640000pt;}
.y110{bottom:762.560000pt;}
.y122{bottom:765.853333pt;}
.y6c{bottom:772.733333pt;}
.yb9{bottom:778.173333pt;}
.y14{bottom:780.733333pt;}
.y6b{bottom:790.333333pt;}
.y121{bottom:791.293333pt;}
.y13{bottom:794.173333pt;}
.ybb{bottom:796.573333pt;}
.y120{bottom:800.293333pt;}
.y6a{bottom:807.973333pt;}
.y12{bottom:813.253333pt;}
.y103{bottom:813.760000pt;}
.y107{bottom:814.720000pt;}
.y69{bottom:825.733333pt;}
.y11f{bottom:825.893333pt;}
.y11{bottom:834.053333pt;}
.y11e{bottom:834.853333pt;}
.y68{bottom:843.333333pt;}
.y67{bottom:860.933333pt;}
.y10{bottom:862.213333pt;}
.y17b{bottom:871.333333pt;}
.y66{bottom:878.533333pt;}
.y105{bottom:887.200000pt;}
.y109{bottom:888.640000pt;}
.y17a{bottom:889.733333pt;}
.yf{bottom:890.533333pt;}
.y65{bottom:896.133333pt;}
.y179{bottom:907.973333pt;}
.y64{bottom:913.893333pt;}
.y9{bottom:930.373333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.h38{height:13.120000pt;}
.h31{height:13.920000pt;}
.h35{height:14.560000pt;}
.h15{height:17.600000pt;}
.h20{height:17.632000pt;}
.h18{height:17.760000pt;}
.h43{height:17.792000pt;}
.h2c{height:17.920000pt;}
.h2b{height:17.952000pt;}
.h2a{height:18.560000pt;}
.h30{height:18.768750pt;}
.h17{height:18.880000pt;}
.ha{height:19.040000pt;}
.h26{height:20.480000pt;}
.h28{height:21.280000pt;}
.h27{height:21.312000pt;}
.h3f{height:21.920000pt;}
.h29{height:22.080000pt;}
.h40{height:22.400000pt;}
.h23{height:23.200000pt;}
.h22{height:23.232000pt;}
.hf{height:24.131250pt;}
.h24{height:24.320000pt;}
.h32{height:26.190625pt;}
.h7{height:29.760000pt;}
.h42{height:35.200000pt;}
.h3e{height:35.840000pt;}
.h41{height:35.872000pt;}
.h1a{height:36.000000pt;}
.h10{height:37.090625pt;}
.hd{height:37.479688pt;}
.h46{height:38.092813pt;}
.h14{height:38.672812pt;}
.h11{height:38.828437pt;}
.h25{height:38.880000pt;}
.h16{height:40.021563pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h21{height:41.632000pt;}
.h44{height:41.920000pt;}
.h2d{height:42.240000pt;}
.h1e{height:42.649687pt;}
.h12{height:42.691250pt;}
.h1f{height:42.777000pt;}
.h13{height:42.866250pt;}
.h19{height:42.944375pt;}
.h3c{height:44.768125pt;}
.h3d{height:46.688125pt;}
.h9{height:47.310625pt;}
.he{height:47.470625pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h1c{height:66.063021pt;}
.h45{height:72.640000pt;}
.h2e{height:72.672000pt;}
.h3a{height:80.608125pt;}
.h3b{height:80.768125pt;}
.h39{height:85.728125pt;}
.h37{height:86.560000pt;}
.h2f{height:88.960000pt;}
.h36{height:89.120000pt;}
.h33{height:89.280000pt;}
.h1d{height:90.009687pt;}
.h34{height:91.680000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1b{height:206.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w2e{width:13.600000pt;}
.w2c{width:13.920000pt;}
.w33{width:14.240000pt;}
.w31{width:14.560000pt;}
.w1b{width:23.360000pt;}
.w1a{width:24.160000pt;}
.w3a{width:28.000000pt;}
.w39{width:28.800000pt;}
.w43{width:40.480000pt;}
.w48{width:43.680000pt;}
.w28{width:44.160000pt;}
.w46{width:50.432000pt;}
.w1d{width:51.200000pt;}
.w1c{width:51.392000pt;}
.w38{width:54.752000pt;}
.w6{width:58.592000pt;}
.w12{width:59.680000pt;}
.w19{width:59.840000pt;}
.w11{width:60.320000pt;}
.w24{width:61.920000pt;}
.w10{width:63.072000pt;}
.w3c{width:63.200000pt;}
.w3b{width:63.232000pt;}
.w4a{width:66.880000pt;}
.w49{width:66.912000pt;}
.w17{width:70.880000pt;}
.w1e{width:71.520000pt;}
.w20{width:71.680000pt;}
.w21{width:71.712000pt;}
.w22{width:71.840000pt;}
.w27{width:72.672000pt;}
.w45{width:72.960000pt;}
.w44{width:73.152000pt;}
.w47{width:75.232000pt;}
.w26{width:76.160000pt;}
.we{width:76.640000pt;}
.w16{width:76.960000pt;}
.w4b{width:78.432000pt;}
.w40{width:78.880000pt;}
.w3f{width:78.912000pt;}
.w2a{width:79.232000pt;}
.w41{width:84.032000pt;}
.w36{width:85.600000pt;}
.w29{width:87.712000pt;}
.w8{width:88.032000pt;}
.w35{width:89.312000pt;}
.w3d{width:95.552000pt;}
.w18{width:102.592000pt;}
.wa{width:104.032000pt;}
.w25{width:109.952000pt;}
.w7{width:114.240000pt;}
.w9{width:115.712000pt;}
.w15{width:116.512000pt;}
.w42{width:117.152000pt;}
.w2f{width:122.080000pt;}
.w3{width:122.272000pt;}
.w30{width:124.160000pt;}
.w2d{width:124.320000pt;}
.w34{width:125.600000pt;}
.w37{width:126.432000pt;}
.w32{width:126.720000pt;}
.w23{width:133.946667pt;}
.wc{width:141.306667pt;}
.w4c{width:177.466667pt;}
.wf{width:183.066667pt;}
.w2b{width:191.706667pt;}
.wb{width:193.946667pt;}
.w13{width:195.106667pt;}
.w14{width:195.226667pt;}
.w1f{width:215.226667pt;}
.w3e{width:241.826667pt;}
.wd{width:259.706667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:6.272000pt;}
.x2{left:7.200000pt;}
.x45{left:9.786667pt;}
.x16{left:42.879988pt;}
.x1{left:47.200000pt;}
.x63{left:48.639988pt;}
.x2c{left:52.479988pt;}
.x5c{left:57.439988pt;}
.x6{left:66.719988pt;}
.x61{left:71.999988pt;}
.xe{left:85.791988pt;}
.x62{left:90.911988pt;}
.x11{left:96.031988pt;}
.x4{left:105.306667pt;}
.x42{left:110.240000pt;}
.x9{left:115.711988pt;}
.x4a{left:117.760000pt;}
.x4d{left:119.520000pt;}
.x34{left:133.151988pt;}
.x4f{left:140.346655pt;}
.x37{left:150.906667pt;}
.xc{left:166.266655pt;}
.x17{left:177.306667pt;}
.x44{left:181.440000pt;}
.x4b{left:187.520000pt;}
.x4e{left:189.760000pt;}
.x2a{left:200.986655pt;}
.x12{left:208.186667pt;}
.xa{left:209.786655pt;}
.x52{left:218.906667pt;}
.x2d{left:222.106667pt;}
.x3d{left:225.146667pt;}
.x26{left:227.546655pt;}
.x28{left:228.986655pt;}
.x5d{left:231.386667pt;}
.x1e{left:236.986655pt;}
.x29{left:241.466655pt;}
.x27{left:246.266655pt;}
.x35{left:253.506667pt;}
.xb{left:260.866655pt;}
.x13{left:266.786667pt;}
.x3c{left:276.546655pt;}
.xd{left:279.586655pt;}
.x18{left:281.346667pt;}
.x10{left:283.746655pt;}
.x38{left:284.866667pt;}
.x3e{left:297.826667pt;}
.x51{left:304.226655pt;}
.x50{left:305.506655pt;}
.x5e{left:306.626667pt;}
.x53{left:308.226667pt;}
.x2f{left:318.786667pt;}
.x57{left:323.266667pt;}
.x36{left:325.026667pt;}
.x1d{left:329.826655pt;}
.x24{left:331.613322pt;}
.x25{left:337.053322pt;}
.x23{left:338.013322pt;}
.x1f{left:340.733322pt;}
.x3f{left:341.986667pt;}
.x1a{left:343.746667pt;}
.x39{left:346.786667pt;}
.x5f{left:350.306667pt;}
.x7{left:361.346655pt;}
.x56{left:365.026667pt;}
.x32{left:366.306667pt;}
.x5a{left:377.026667pt;}
.x14{left:381.026667pt;}
.x30{left:389.666667pt;}
.x54{left:393.826667pt;}
.x8{left:396.893322pt;}
.x58{left:402.173333pt;}
.x1b{left:406.813333pt;}
.x46{left:410.560000pt;}
.x48{left:413.280000pt;}
.x2b{left:415.773322pt;}
.x60{left:417.213333pt;}
.x40{left:429.693333pt;}
.x33{left:441.053333pt;}
.x20{left:443.679988pt;}
.x21{left:447.839988pt;}
.x22{left:449.919988pt;}
.x2e{left:455.133333pt;}
.x3a{left:456.733333pt;}
.x1c{left:467.133333pt;}
.x15{left:469.053333pt;}
.x19{left:475.293333pt;}
.x49{left:479.040000pt;}
.x59{left:481.053333pt;}
.x4c{left:483.520000pt;}
.x47{left:484.800000pt;}
.x41{left:489.533333pt;}
.x31{left:492.253333pt;}
.xf{left:514.173322pt;}
.x55{left:520.253333pt;}
.x5b{left:523.133333pt;}
.x3b{left:566.693333pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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