
    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_b913eef08e57617df1d426d2.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_20315b72e501028f282f0c8d.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b186cfb41e886cac9cb140f.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_dd7b1cd4f57f0f3045cc9ce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0082d2253f469d9b6722366e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_52cac5821245a2b2287843fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_80cc3a01ef36299009792330.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986328;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_85229bcf85fb1a6fd75438d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v7{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v8{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:46.080000px;}
.v3{vertical-align:48.240000px;}
.ls36{letter-spacing:-0.924000px;}
.ls33{letter-spacing:-0.774000px;}
.ls2{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.612000px;}
.ls35{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.277200px;}
.ls1a{letter-spacing:-0.206400px;}
.ls2d{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls1c{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.135600px;}
.ls1f{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.206640px;}
.ls21{letter-spacing:0.259800px;}
.ls30{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.lsa{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.513600px;}
.ls1e{letter-spacing:0.532800px;}
.ls39{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.599760px;}
.ls34{letter-spacing:1.620000px;}
.ls16{letter-spacing:3.180960px;}
.ls32{letter-spacing:3.420000px;}
.ls31{letter-spacing:3.780000px;}
.ls17{letter-spacing:4.140000px;}
.ls27{letter-spacing:4.500000px;}
.lsc{letter-spacing:10.190160px;}
.lse{letter-spacing:13.491360px;}
.ls15{letter-spacing:16.439760px;}
.ls38{letter-spacing:16.506720px;}
.ls14{letter-spacing:17.159760px;}
.ls18{letter-spacing:20.700000px;}
.ls13{letter-spacing:21.108960px;}
.lsd{letter-spacing:39.553200px;}
.ls25{letter-spacing:41.706720px;}
.lsb{letter-spacing:41.850720px;}
.ls20{letter-spacing:44.586720px;}
.ls2b{letter-spacing:44.730720px;}
.ls37{letter-spacing:46.170720px;}
.ls29{letter-spacing:51.066720px;}
.ls7{letter-spacing:62.010720px;}
.ls4{letter-spacing:64.890720px;}
.ls5{letter-spacing:66.330720px;}
.ls6{letter-spacing:69.930720px;}
.ls12{letter-spacing:101.124000px;}
.ls11{letter-spacing:104.724000px;}
.ls10{letter-spacing:168.084000px;}
.ls26{letter-spacing:253.386720px;}
.ls28{letter-spacing:296.706720px;}
.ls24{letter-spacing:381.666720px;}
.ls23{letter-spacing:792.360000px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.ws19{word-spacing:-15.238800px;}
.ws14{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws1b{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.220000px;}
.ws1d{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.160160px;}
.wsd{word-spacing:-13.147200px;}
.wse{word-spacing:-12.870000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.187200px;}
.ws6{word-spacing:0.000000px;}
.ws13{word-spacing:3.292560px;}
.wsc{word-spacing:3.412080px;}
.ws1a{word-spacing:4.012560px;}
.ws12{word-spacing:4.119840px;}
.ws17{word-spacing:4.132080px;}
.ws11{word-spacing:4.380480px;}
.ws16{word-spacing:11.499840px;}
._24{margin-left:-5.345280px;}
._23{margin-left:-3.905280px;}
._13{margin-left:-2.538720px;}
._0{margin-left:-1.080000px;}
._11{width:1.053360px;}
._1{width:2.220000px;}
._15{width:3.240480px;}
._16{width:5.145600px;}
._14{width:6.872400px;}
._19{width:8.088240px;}
._1f{width:9.355680px;}
._6{width:10.800000px;}
._25{width:11.867760px;}
._1a{width:13.371840px;}
._21{width:16.157520px;}
._22{width:17.755200px;}
._f{width:18.948000px;}
._17{width:20.975760px;}
._18{width:22.047360px;}
._12{width:23.313360px;}
._1b{width:24.979680px;}
._20{width:26.129520px;}
._28{width:30.716640px;}
._1e{width:32.210640px;}
._1d{width:35.019360px;}
._1c{width:36.057600px;}
._29{width:52.708320px;}
._31{width:58.781520px;}
._2e{width:59.961600px;}
._2a{width:61.373520px;}
._2d{width:74.840160px;}
._7{width:76.284960px;}
._2c{width:119.086560px;}
._2f{width:123.703200px;}
._30{width:125.193120px;}
._10{width:132.780000px;}
._26{width:139.404240px;}
._27{width:147.211200px;}
._8{width:154.080000px;}
._2b{width:177.660000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._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;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(27,28,29);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{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;}
.y8b{bottom:2.880000px;}
.y8d{bottom:3.060000px;}
.y89{bottom:3.105000px;}
.ye{bottom:5.760000px;}
.y13c{bottom:5.805000px;}
.y33{bottom:5.940000px;}
.y7a{bottom:6.120000px;}
.y78{bottom:6.150000px;}
.y88{bottom:6.165000px;}
.y7c{bottom:6.300000px;}
.y77{bottom:6.330000px;}
.y87{bottom:6.345000px;}
.y139{bottom:7.020000px;}
.y31{bottom:10.260000px;}
.y6{bottom:12.420000px;}
.y36{bottom:15.660000px;}
.y183{bottom:16.020000px;}
.y8{bottom:18.180000px;}
.y99{bottom:25.380000px;}
.y38{bottom:25.560000px;}
.y3c{bottom:25.740000px;}
.y14f{bottom:25.785000px;}
.yf0{bottom:27.000000px;}
.yea{bottom:27.945000px;}
.y35{bottom:35.460000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y37{bottom:45.360000px;}
.y167{bottom:45.540000px;}
.y16c{bottom:45.570000px;}
.yef{bottom:46.980000px;}
.ye9{bottom:47.745000px;}
.yb{bottom:60.300000px;}
.y16b{bottom:65.370000px;}
.ye8{bottom:67.545000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y14a{bottom:107.460000px;}
.yfd{bottom:109.980000px;}
.y16a{bottom:113.220000px;}
.y6b{bottom:114.480000px;}
.y196{bottom:115.020000px;}
.y98{bottom:117.180000px;}
.y3b{bottom:117.540000px;}
.y2{bottom:125.670000px;}
.y149{bottom:127.260000px;}
.yd5{bottom:127.800000px;}
.y11f{bottom:129.060000px;}
.yfc{bottom:129.780000px;}
.y195{bottom:133.920000px;}
.y6a{bottom:134.460000px;}
.y193{bottom:141.840000px;}
.y11e{bottom:144.000000px;}
.y148{bottom:147.240000px;}
.yd4{bottom:147.600000px;}
.yfb{bottom:149.760000px;}
.y194{bottom:152.670000px;}
.y69{bottom:154.290000px;}
.y3a{bottom:158.070000px;}
.y192{bottom:161.670000px;}
.y97{bottom:162.750000px;}
.y11d{bottom:164.550000px;}
.y147{bottom:167.070000px;}
.yd3{bottom:169.230000px;}
.yfa{bottom:169.590000px;}
.y68{bottom:174.090000px;}
.y39{bottom:178.590000px;}
.y191{bottom:181.470000px;}
.y96{bottom:182.550000px;}
.y11c{bottom:184.350000px;}
.y146{bottom:186.870000px;}
.yf9{bottom:189.390000px;}
.yd2{bottom:190.650000px;}
.y169{bottom:193.350000px;}
.y67{bottom:193.890000px;}
.y190{bottom:201.270000px;}
.y95{bottom:202.350000px;}
.y11b{bottom:204.150000px;}
.y145{bottom:206.670000px;}
.yf8{bottom:209.190000px;}
.yd1{bottom:210.450000px;}
.y66{bottom:213.690000px;}
.y34{bottom:219.090000px;}
.y18f{bottom:221.250000px;}
.y94{bottom:222.150000px;}
.y11a{bottom:224.130000px;}
.y144{bottom:226.470000px;}
.yd0{bottom:227.190000px;}
.yf7{bottom:228.990000px;}
.yc4{bottom:232.770000px;}
.y65{bottom:233.670000px;}
.y18e{bottom:241.050000px;}
.y93{bottom:241.950000px;}
.y119{bottom:243.930000px;}
.y143{bottom:246.450000px;}
.yf6{bottom:248.970000px;}
.yc3{bottom:252.750000px;}
.y64{bottom:253.470000px;}
.y168{bottom:253.650000px;}
.y18d{bottom:260.850000px;}
.y92{bottom:261.930000px;}
.y118{bottom:263.730000px;}
.y142{bottom:266.250000px;}
.yf5{bottom:268.770000px;}
.yc2{bottom:272.550000px;}
.y63{bottom:273.270000px;}
.y32{bottom:279.210000px;}
.y18c{bottom:280.650000px;}
.y91{bottom:281.730000px;}
.y117{bottom:283.530000px;}
.y141{bottom:286.050000px;}
.yf4{bottom:288.570000px;}
.yc1{bottom:292.350000px;}
.y62{bottom:293.070000px;}
.y166{bottom:293.970000px;}
.y30{bottom:299.910000px;}
.y18b{bottom:300.450000px;}
.y90{bottom:301.530000px;}
.yf3{bottom:303.330000px;}
.y140{bottom:305.850000px;}
.yc0{bottom:312.150000px;}
.y61{bottom:312.870000px;}
.y8f{bottom:316.290000px;}
.y18a{bottom:320.430000px;}
.yee{bottom:324.030000px;}
.y13f{bottom:325.650000px;}
.ybf{bottom:331.950000px;}
.y60{bottom:332.850000px;}
.y2f{bottom:334.650000px;}
.y8e{bottom:337.350000px;}
.y189{bottom:340.230000px;}
.yf2{bottom:344.550000px;}
.y13e{bottom:344.730000px;}
.y116{bottom:350.310000px;}
.ybe{bottom:351.750000px;}
.y5f{bottom:352.650000px;}
.y2e{bottom:354.450000px;}
.y8c{bottom:358.230000px;}
.y165{bottom:360.030000px;}
.yf1{bottom:365.070000px;}
.y13d{bottom:369.750000px;}
.y115{bottom:370.290000px;}
.ybd{bottom:371.730000px;}
.y5e{bottom:372.450000px;}
.y2d{bottom:374.250000px;}
.y8a{bottom:379.290000px;}
.y164{bottom:379.830000px;}
.ye7{bottom:385.770000px;}
.y114{bottom:390.090000px;}
.ybc{bottom:391.530000px;}
.y5d{bottom:392.250000px;}
.y2c{bottom:394.050000px;}
.y13b{bottom:394.770000px;}
.y188{bottom:399.630000px;}
.y86{bottom:400.170000px;}
.yed{bottom:406.335000px;}
.y113{bottom:409.935000px;}
.ybb{bottom:411.375000px;}
.y5c{bottom:412.095000px;}
.y2b{bottom:414.075000px;}
.y163{bottom:415.335000px;}
.y187{bottom:419.655000px;}
.y13a{bottom:420.015000px;}
.y85{bottom:420.555000px;}
.yec{bottom:426.855000px;}
.y112{bottom:429.735000px;}
.yba{bottom:431.175000px;}
.y5b{bottom:432.075000px;}
.y2a{bottom:433.875000px;}
.y186{bottom:434.415000px;}
.y162{bottom:435.855000px;}
.y138{bottom:445.035000px;}
.y84{bottom:446.835000px;}
.yeb{bottom:447.555000px;}
.y111{bottom:449.535000px;}
.yb9{bottom:450.975000px;}
.y5a{bottom:451.875000px;}
.y29{bottom:453.675000px;}
.y185{bottom:455.295000px;}
.y161{bottom:462.315000px;}
.y83{bottom:466.635000px;}
.ye6{bottom:468.075000px;}
.y110{bottom:469.335000px;}
.yb8{bottom:470.955000px;}
.y59{bottom:471.675000px;}
.y28{bottom:473.475000px;}
.y182{bottom:476.355000px;}
.y137{bottom:477.255000px;}
.y160{bottom:482.115000px;}
.y82{bottom:486.615000px;}
.y10f{bottom:489.315000px;}
.yb7{bottom:490.755000px;}
.y58{bottom:491.475000px;}
.y27{bottom:493.275000px;}
.ye5{bottom:494.535000px;}
.y184{bottom:496.875000px;}
.y136{bottom:497.055000px;}
.y15f{bottom:501.915000px;}
.y81{bottom:506.415000px;}
.y10e{bottom:509.115000px;}
.yb6{bottom:510.555000px;}
.y57{bottom:511.275000px;}
.y26{bottom:513.255000px;}
.ye4{bottom:514.335000px;}
.y135{bottom:516.855000px;}
.y15e{bottom:521.715000px;}
.y181{bottom:523.335000px;}
.y80{bottom:526.215000px;}
.y10d{bottom:528.915000px;}
.yb5{bottom:530.355000px;}
.y56{bottom:531.255000px;}
.y25{bottom:533.055000px;}
.ye3{bottom:534.135000px;}
.y134{bottom:537.015000px;}
.y15d{bottom:541.695000px;}
.y180{bottom:543.135000px;}
.y7f{bottom:546.015000px;}
.y10c{bottom:548.715000px;}
.yb4{bottom:550.155000px;}
.y55{bottom:551.055000px;}
.y24{bottom:552.855000px;}
.ye2{bottom:553.935000px;}
.y133{bottom:556.995000px;}
.y7e{bottom:560.775000px;}
.y15c{bottom:561.675000px;}
.y17f{bottom:562.935000px;}
.ycf{bottom:565.815000px;}
.y10b{bottom:568.515000px;}
.yb3{bottom:570.135000px;}
.y54{bottom:570.855000px;}
.y23{bottom:572.655000px;}
.ye1{bottom:573.915000px;}
.y132{bottom:576.795000px;}
.y15b{bottom:581.655000px;}
.y7d{bottom:581.835000px;}
.y17e{bottom:582.735000px;}
.yce{bottom:585.615000px;}
.y10a{bottom:588.495000px;}
.yb2{bottom:589.935000px;}
.y53{bottom:590.655000px;}
.y22{bottom:592.455000px;}
.ye0{bottom:593.715000px;}
.y131{bottom:596.595000px;}
.y15a{bottom:601.455000px;}
.y17d{bottom:602.535000px;}
.y7b{bottom:602.715000px;}
.ycd{bottom:605.415000px;}
.y109{bottom:608.295000px;}
.yb1{bottom:609.735000px;}
.y52{bottom:610.455000px;}
.y21{bottom:612.435000px;}
.ydf{bottom:613.515000px;}
.y130{bottom:616.395000px;}
.y17c{bottom:622.695000px;}
.y79{bottom:623.775000px;}
.ycc{bottom:625.395000px;}
.y108{bottom:628.095000px;}
.yb0{bottom:629.535000px;}
.y51{bottom:630.435000px;}
.y20{bottom:632.235000px;}
.yde{bottom:633.315000px;}
.y12f{bottom:636.375000px;}
.y17b{bottom:642.675000px;}
.y107{bottom:642.855000px;}
.y76{bottom:644.655000px;}
.ycb{bottom:645.195000px;}
.yaf{bottom:649.365000px;}
.y50{bottom:650.265000px;}
.y1f{bottom:652.065000px;}
.ydd{bottom:653.145000px;}
.y12e{bottom:656.205000px;}
.y159{bottom:656.745000px;}
.y17a{bottom:657.465000px;}
.y106{bottom:662.685000px;}
.yca{bottom:665.025000px;}
.y75{bottom:665.745000px;}
.yae{bottom:669.345000px;}
.y4f{bottom:670.065000px;}
.y12d{bottom:670.965000px;}
.y1e{bottom:671.865000px;}
.ydc{bottom:673.125000px;}
.y179{bottom:678.165000px;}
.y105{bottom:682.665000px;}
.yc9{bottom:684.825000px;}
.yad{bottom:689.145000px;}
.y4e{bottom:689.865000px;}
.y12c{bottom:691.485000px;}
.y1d{bottom:691.665000px;}
.y74{bottom:692.205000px;}
.ydb{bottom:692.925000px;}
.y158{bottom:697.245000px;}
.y178{bottom:698.685000px;}
.y104{bottom:702.465000px;}
.yc8{bottom:706.425000px;}
.yac{bottom:708.945000px;}
.y4d{bottom:709.665000px;}
.y1c{bottom:711.645000px;}
.y73{bottom:712.005000px;}
.y12b{bottom:712.185000px;}
.yda{bottom:712.725000px;}
.y157{bottom:717.765000px;}
.y177{bottom:719.205000px;}
.y103{bottom:722.265000px;}
.yc7{bottom:727.845000px;}
.yab{bottom:728.745000px;}
.y4c{bottom:729.645000px;}
.y1b{bottom:731.445000px;}
.y72{bottom:731.805000px;}
.yd9{bottom:732.525000px;}
.y12a{bottom:732.705000px;}
.y156{bottom:738.285000px;}
.y176{bottom:739.905000px;}
.y102{bottom:742.065000px;}
.yc6{bottom:747.645000px;}
.yaa{bottom:748.545000px;}
.y4b{bottom:749.445000px;}
.y1a{bottom:751.245000px;}
.y71{bottom:751.605000px;}
.yd8{bottom:752.325000px;}
.y129{bottom:753.225000px;}
.y175{bottom:760.425000px;}
.y101{bottom:761.865000px;}
.yc5{bottom:764.385000px;}
.y155{bottom:764.745000px;}
.ya9{bottom:768.525000px;}
.y4a{bottom:769.245000px;}
.y19{bottom:771.045000px;}
.y70{bottom:771.405000px;}
.yd7{bottom:772.305000px;}
.y128{bottom:779.685000px;}
.y174{bottom:780.945000px;}
.y100{bottom:781.845000px;}
.y154{bottom:784.545000px;}
.ya8{bottom:788.325000px;}
.yd6{bottom:788.865000px;}
.y49{bottom:789.045000px;}
.y18{bottom:790.845000px;}
.y6f{bottom:791.385000px;}
.y127{bottom:799.485000px;}
.yff{bottom:801.645000px;}
.y173{bottom:802.005000px;}
.y153{bottom:804.345000px;}
.ya7{bottom:808.125000px;}
.y48{bottom:808.845000px;}
.y17{bottom:810.825000px;}
.y6e{bottom:811.185000px;}
.y126{bottom:819.285000px;}
.yfe{bottom:822.165000px;}
.y152{bottom:824.325000px;}
.y6d{bottom:827.925000px;}
.y47{bottom:828.825000px;}
.y16{bottom:830.625000px;}
.y6c{bottom:838.005000px;}
.y125{bottom:839.445000px;}
.y151{bottom:844.125000px;}
.ya6{bottom:847.725000px;}
.y172{bottom:848.265000px;}
.y46{bottom:848.625000px;}
.y15{bottom:855.645000px;}
.y124{bottom:859.425000px;}
.y150{bottom:863.925000px;}
.ya5{bottom:867.705000px;}
.y171{bottom:868.065000px;}
.y45{bottom:868.425000px;}
.y14{bottom:870.765000px;}
.y14e{bottom:878.685000px;}
.y123{bottom:879.225000px;}
.ya4{bottom:887.505000px;}
.y170{bottom:887.865000px;}
.y44{bottom:888.225000px;}
.y13{bottom:892.545000px;}
.y122{bottom:899.070000px;}
.ya3{bottom:907.350000px;}
.y16f{bottom:907.710000px;}
.y43{bottom:908.070000px;}
.y12{bottom:914.010000px;}
.y9e{bottom:916.890000px;}
.y121{bottom:919.050000px;}
.y14d{bottom:919.230000px;}
.ya2{bottom:927.150000px;}
.y16e{bottom:927.510000px;}
.y42{bottom:928.050000px;}
.y11{bottom:937.410000px;}
.y9d{bottom:937.770000px;}
.y120{bottom:938.850000px;}
.ya1{bottom:947.310000px;}
.y16d{bottom:947.490000px;}
.y41{bottom:947.850000px;}
.y9c{bottom:958.830000px;}
.y14c{bottom:959.550000px;}
.ya0{bottom:967.470000px;}
.y40{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.y9b{bottom:979.710000px;}
.y14b{bottom:980.250000px;}
.y3f{bottom:987.450000px;}
.y9a{bottom:1000.770000px;}
.yf{bottom:1000.950000px;}
.y9f{bottom:1001.490000px;}
.y3e{bottom:1007.250000px;}
.y3d{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h15{height:19.800000px;}
.h23{height:19.836000px;}
.h12{height:19.980000px;}
.h1d{height:20.160000px;}
.h1e{height:20.340000px;}
.h1b{height:20.376000px;}
.ha{height:21.240000px;}
.h25{height:22.320000px;}
.hf{height:27.147656px;}
.h11{height:28.980000px;}
.h7{height:33.480000px;}
.h14{height:39.600000px;}
.h20{height:39.636000px;}
.h21{height:39.780000px;}
.h16{height:39.816000px;}
.h29{height:40.320000px;}
.hd{height:41.726953px;}
.h10{height:42.164648px;}
.h2a{height:42.854414px;}
.h18{height:43.506914px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h17{height:49.255313px;}
.h1c{height:50.364141px;}
.h9{height:53.224453px;}
.he{height:53.404453px;}
.h28{height:57.514219px;}
.h13{height:59.400000px;}
.h26{height:59.580000px;}
.h24{height:61.020000px;}
.h1f{height:62.604141px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h27{height:79.416000px;}
.h22{height:81.576000px;}
.h1a{height:90.684141px;}
.h19{height:98.604141px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.wf{width:20.520000px;}
.w2b{width:31.140000px;}
.we{width:32.976000px;}
.w2a{width:36.900000px;}
.w8{width:38.340000px;}
.w27{width:40.320000px;}
.w11{width:42.120000px;}
.w24{width:48.960000px;}
.w28{width:50.940000px;}
.wb{width:63.756000px;}
.w38{width:65.736000px;}
.w3d{width:70.416000px;}
.w34{width:70.560000px;}
.w45{width:74.340000px;}
.w35{width:75.600000px;}
.w39{width:79.596000px;}
.w3a{width:82.980000px;}
.w3b{width:84.456000px;}
.w32{width:88.776000px;}
.w15{width:90.540000px;}
.w1e{width:96.336000px;}
.w3c{width:96.480000px;}
.w1c{width:96.696000px;}
.w25{width:98.640000px;}
.w18{width:105.120000px;}
.w16{width:107.496000px;}
.w40{width:110.016000px;}
.w43{width:113.976000px;}
.w42{width:115.596000px;}
.w41{width:118.440000px;}
.w3f{width:121.716000px;}
.w2f{width:126.900000px;}
.w46{width:129.816000px;}
.w30{width:129.996000px;}
.w3{width:130.716000px;}
.w49{width:132.876000px;}
.w33{width:136.296000px;}
.w48{width:142.956000px;}
.w1b{width:148.500000px;}
.w12{width:148.716000px;}
.w13{width:148.860000px;}
.w31{width:156.090000px;}
.w2c{width:156.810000px;}
.w2d{width:156.990000px;}
.w14{width:159.150000px;}
.w37{width:166.890000px;}
.w29{width:167.970000px;}
.wd{width:169.230000px;}
.w22{width:191.370000px;}
.w17{width:196.050000px;}
.wc{width:201.990000px;}
.w20{width:202.170000px;}
.w3e{width:205.410000px;}
.w26{width:205.995000px;}
.w2e{width:211.575000px;}
.w23{width:212.610000px;}
.wa{width:225.390000px;}
.w9{width:225.435000px;}
.w36{width:247.035000px;}
.w47{width:275.835000px;}
.w44{width:276.555000px;}
.w1d{width:297.615000px;}
.w1a{width:307.695000px;}
.w1f{width:328.755000px;}
.w19{width:357.195000px;}
.w7{width:385.125000px;}
.w6{width:390.495000px;}
.w21{width:403.995000px;}
.w2{width:649.410000px;}
.w10{width:733.110000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.080000px;}
.x3f{left:2.700000px;}
.x2{left:8.100000px;}
.x32{left:11.340000px;}
.x23{left:13.860000px;}
.x34{left:23.265000px;}
.x54{left:26.505000px;}
.xf{left:35.136000px;}
.x1a{left:47.520000px;}
.x1c{left:51.660000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x11{left:59.039987px;}
.x1e{left:69.840000px;}
.x1f{left:76.140000px;}
.x8{left:78.119987px;}
.x24{left:80.999987px;}
.x10{left:86.075987px;}
.x7{left:88.955987px;}
.x1b{left:90.000000px;}
.x1d{left:94.140000px;}
.x59{left:96.515987px;}
.x39{left:98.496000px;}
.xd{left:108.035987px;}
.x4{left:118.290000px;}
.x48{left:142.776000px;}
.x36{left:148.896000px;}
.xa{left:150.509987px;}
.x2f{left:170.130000px;}
.x29{left:181.289987px;}
.x14{left:201.990000px;}
.x42{left:211.170000px;}
.x4c{left:213.330000px;}
.x17{left:229.170000px;}
.x15{left:240.330000px;}
.x2c{left:241.589987px;}
.x3b{left:250.590000px;}
.x50{left:259.410000px;}
.x46{left:267.015000px;}
.x20{left:276.195000px;}
.x49{left:279.075000px;}
.x27{left:289.154987px;}
.x18{left:292.935000px;}
.x21{left:318.315000px;}
.x55{left:330.555000px;}
.x38{left:340.275000px;}
.xb{left:349.094987px;}
.x28{left:355.574987px;}
.xc{left:366.194987px;}
.x43{left:368.175000px;}
.x26{left:373.214987px;}
.x2b{left:374.834987px;}
.x51{left:381.135000px;}
.x47{left:394.635000px;}
.x12{left:401.294987px;}
.x56{left:404.895000px;}
.x9{left:411.194987px;}
.x4a{left:425.235000px;}
.x13{left:436.574987px;}
.xe{left:445.215000px;}
.x3c{left:458.925000px;}
.x16{left:465.765000px;}
.x22{left:467.025000px;}
.x25{left:473.324987px;}
.x2d{left:474.585000px;}
.x30{left:477.825000px;}
.x52{left:491.145000px;}
.x19{left:494.925000px;}
.x3d{left:501.405000px;}
.x4d{left:504.825000px;}
.x35{left:509.865000px;}
.x44{left:524.985000px;}
.x57{left:534.705000px;}
.x37{left:552.885000px;}
.x3e{left:554.505000px;}
.x4e{left:587.805000px;}
.x53{left:609.585000px;}
.x33{left:616.245000px;}
.x31{left:626.325000px;}
.x2a{left:653.549987px;}
.x2e{left:670.650000px;}
.x4b{left:672.270000px;}
.x58{left:677.670000px;}
.x45{left:681.990000px;}
.x3{left:705.930000px;}
.x40{left:724.650000px;}
.x41{left:763.710000px;}
.x4f{left:768.750000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v7{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v8{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.960000pt;}
.v3{vertical-align:42.880000pt;}
.ls36{letter-spacing:-0.821333pt;}
.ls33{letter-spacing:-0.688000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.544000pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.246400pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.120533pt;}
.ls1f{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.183680pt;}
.ls21{letter-spacing:0.230933pt;}
.ls30{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.456533pt;}
.ls1e{letter-spacing:0.473600pt;}
.ls39{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.533120pt;}
.ls34{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.827520pt;}
.ls32{letter-spacing:3.040000pt;}
.ls31{letter-spacing:3.360000pt;}
.ls17{letter-spacing:3.680000pt;}
.ls27{letter-spacing:4.000000pt;}
.lsc{letter-spacing:9.057920pt;}
.lse{letter-spacing:11.992320pt;}
.ls15{letter-spacing:14.613120pt;}
.ls38{letter-spacing:14.672640pt;}
.ls14{letter-spacing:15.253120pt;}
.ls18{letter-spacing:18.400000pt;}
.ls13{letter-spacing:18.763520pt;}
.lsd{letter-spacing:35.158400pt;}
.ls25{letter-spacing:37.072640pt;}
.lsb{letter-spacing:37.200640pt;}
.ls20{letter-spacing:39.632640pt;}
.ls2b{letter-spacing:39.760640pt;}
.ls37{letter-spacing:41.040640pt;}
.ls29{letter-spacing:45.392640pt;}
.ls7{letter-spacing:55.120640pt;}
.ls4{letter-spacing:57.680640pt;}
.ls5{letter-spacing:58.960640pt;}
.ls6{letter-spacing:62.160640pt;}
.ls12{letter-spacing:89.888000pt;}
.ls11{letter-spacing:93.088000pt;}
.ls10{letter-spacing:149.408000pt;}
.ls26{letter-spacing:225.232640pt;}
.ls28{letter-spacing:263.739307pt;}
.ls24{letter-spacing:339.259307pt;}
.ls23{letter-spacing:704.320000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.ws19{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws1b{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.640000pt;}
.ws1d{word-spacing:-12.320000pt;}
.wsf{word-spacing:-11.697920pt;}
.wsd{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.440000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.166400pt;}
.ws6{word-spacing:0.000000pt;}
.ws13{word-spacing:2.926720pt;}
.wsc{word-spacing:3.032960pt;}
.ws1a{word-spacing:3.566720pt;}
.ws12{word-spacing:3.662080pt;}
.ws17{word-spacing:3.672960pt;}
.ws11{word-spacing:3.893760pt;}
.ws16{word-spacing:10.222080pt;}
._24{margin-left:-4.751360pt;}
._23{margin-left:-3.471360pt;}
._13{margin-left:-2.256640pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.936320pt;}
._1{width:1.973333pt;}
._15{width:2.880427pt;}
._16{width:4.573867pt;}
._14{width:6.108800pt;}
._19{width:7.189547pt;}
._1f{width:8.316160pt;}
._6{width:9.600000pt;}
._25{width:10.549120pt;}
._1a{width:11.886080pt;}
._21{width:14.362240pt;}
._22{width:15.782400pt;}
._f{width:16.842667pt;}
._17{width:18.645120pt;}
._18{width:19.597653pt;}
._12{width:20.722987pt;}
._1b{width:22.204160pt;}
._20{width:23.226240pt;}
._28{width:27.303680pt;}
._1e{width:28.631680pt;}
._1d{width:31.128320pt;}
._1c{width:32.051200pt;}
._29{width:46.851840pt;}
._31{width:52.250240pt;}
._2e{width:53.299200pt;}
._2a{width:54.554240pt;}
._2d{width:66.524587pt;}
._7{width:67.808853pt;}
._2c{width:105.854720pt;}
._2f{width:109.958400pt;}
._30{width:111.282773pt;}
._10{width:118.026667pt;}
._26{width:123.914880pt;}
._27{width:130.854400pt;}
._8{width:136.960000pt;}
._2b{width:157.920000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._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;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{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;}
.y8b{bottom:2.560000pt;}
.y8d{bottom:2.720000pt;}
.y89{bottom:2.760000pt;}
.ye{bottom:5.120000pt;}
.y13c{bottom:5.160000pt;}
.y33{bottom:5.280000pt;}
.y7a{bottom:5.440000pt;}
.y78{bottom:5.466667pt;}
.y88{bottom:5.480000pt;}
.y7c{bottom:5.600000pt;}
.y77{bottom:5.626667pt;}
.y87{bottom:5.640000pt;}
.y139{bottom:6.240000pt;}
.y31{bottom:9.120000pt;}
.y6{bottom:11.040000pt;}
.y36{bottom:13.920000pt;}
.y183{bottom:14.240000pt;}
.y8{bottom:16.160000pt;}
.y99{bottom:22.560000pt;}
.y38{bottom:22.720000pt;}
.y3c{bottom:22.880000pt;}
.y14f{bottom:22.920000pt;}
.yf0{bottom:24.000000pt;}
.yea{bottom:24.840000pt;}
.y35{bottom:31.520000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y37{bottom:40.320000pt;}
.y167{bottom:40.480000pt;}
.y16c{bottom:40.506667pt;}
.yef{bottom:41.760000pt;}
.ye9{bottom:42.440000pt;}
.yb{bottom:53.600000pt;}
.y16b{bottom:58.106667pt;}
.ye8{bottom:60.040000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y14a{bottom:95.520000pt;}
.yfd{bottom:97.760000pt;}
.y16a{bottom:100.640000pt;}
.y6b{bottom:101.760000pt;}
.y196{bottom:102.240000pt;}
.y98{bottom:104.160000pt;}
.y3b{bottom:104.480000pt;}
.y2{bottom:111.706667pt;}
.y149{bottom:113.120000pt;}
.yd5{bottom:113.600000pt;}
.y11f{bottom:114.720000pt;}
.yfc{bottom:115.360000pt;}
.y195{bottom:119.040000pt;}
.y6a{bottom:119.520000pt;}
.y193{bottom:126.080000pt;}
.y11e{bottom:128.000000pt;}
.y148{bottom:130.880000pt;}
.yd4{bottom:131.200000pt;}
.yfb{bottom:133.120000pt;}
.y194{bottom:135.706667pt;}
.y69{bottom:137.146667pt;}
.y3a{bottom:140.506667pt;}
.y192{bottom:143.706667pt;}
.y97{bottom:144.666667pt;}
.y11d{bottom:146.266667pt;}
.y147{bottom:148.506667pt;}
.yd3{bottom:150.426667pt;}
.yfa{bottom:150.746667pt;}
.y68{bottom:154.746667pt;}
.y39{bottom:158.746667pt;}
.y191{bottom:161.306667pt;}
.y96{bottom:162.266667pt;}
.y11c{bottom:163.866667pt;}
.y146{bottom:166.106667pt;}
.yf9{bottom:168.346667pt;}
.yd2{bottom:169.466667pt;}
.y169{bottom:171.866667pt;}
.y67{bottom:172.346667pt;}
.y190{bottom:178.906667pt;}
.y95{bottom:179.866667pt;}
.y11b{bottom:181.466667pt;}
.y145{bottom:183.706667pt;}
.yf8{bottom:185.946667pt;}
.yd1{bottom:187.066667pt;}
.y66{bottom:189.946667pt;}
.y34{bottom:194.746667pt;}
.y18f{bottom:196.666667pt;}
.y94{bottom:197.466667pt;}
.y11a{bottom:199.226667pt;}
.y144{bottom:201.306667pt;}
.yd0{bottom:201.946667pt;}
.yf7{bottom:203.546667pt;}
.yc4{bottom:206.906667pt;}
.y65{bottom:207.706667pt;}
.y18e{bottom:214.266667pt;}
.y93{bottom:215.066667pt;}
.y119{bottom:216.826667pt;}
.y143{bottom:219.066667pt;}
.yf6{bottom:221.306667pt;}
.yc3{bottom:224.666667pt;}
.y64{bottom:225.306667pt;}
.y168{bottom:225.466667pt;}
.y18d{bottom:231.866667pt;}
.y92{bottom:232.826667pt;}
.y118{bottom:234.426667pt;}
.y142{bottom:236.666667pt;}
.yf5{bottom:238.906667pt;}
.yc2{bottom:242.266667pt;}
.y63{bottom:242.906667pt;}
.y32{bottom:248.186667pt;}
.y18c{bottom:249.466667pt;}
.y91{bottom:250.426667pt;}
.y117{bottom:252.026667pt;}
.y141{bottom:254.266667pt;}
.yf4{bottom:256.506667pt;}
.yc1{bottom:259.866667pt;}
.y62{bottom:260.506667pt;}
.y166{bottom:261.306667pt;}
.y30{bottom:266.586667pt;}
.y18b{bottom:267.066667pt;}
.y90{bottom:268.026667pt;}
.yf3{bottom:269.626667pt;}
.y140{bottom:271.866667pt;}
.yc0{bottom:277.466667pt;}
.y61{bottom:278.106667pt;}
.y8f{bottom:281.146667pt;}
.y18a{bottom:284.826667pt;}
.yee{bottom:288.026667pt;}
.y13f{bottom:289.466667pt;}
.ybf{bottom:295.066667pt;}
.y60{bottom:295.866667pt;}
.y2f{bottom:297.466667pt;}
.y8e{bottom:299.866667pt;}
.y189{bottom:302.426667pt;}
.yf2{bottom:306.266667pt;}
.y13e{bottom:306.426667pt;}
.y116{bottom:311.386667pt;}
.ybe{bottom:312.666667pt;}
.y5f{bottom:313.466667pt;}
.y2e{bottom:315.066667pt;}
.y8c{bottom:318.426667pt;}
.y165{bottom:320.026667pt;}
.yf1{bottom:324.506667pt;}
.y13d{bottom:328.666667pt;}
.y115{bottom:329.146667pt;}
.ybd{bottom:330.426667pt;}
.y5e{bottom:331.066667pt;}
.y2d{bottom:332.666667pt;}
.y8a{bottom:337.146667pt;}
.y164{bottom:337.626667pt;}
.ye7{bottom:342.906667pt;}
.y114{bottom:346.746667pt;}
.ybc{bottom:348.026667pt;}
.y5d{bottom:348.666667pt;}
.y2c{bottom:350.266667pt;}
.y13b{bottom:350.906667pt;}
.y188{bottom:355.226667pt;}
.y86{bottom:355.706667pt;}
.yed{bottom:361.186667pt;}
.y113{bottom:364.386667pt;}
.ybb{bottom:365.666667pt;}
.y5c{bottom:366.306667pt;}
.y2b{bottom:368.066667pt;}
.y163{bottom:369.186667pt;}
.y187{bottom:373.026667pt;}
.y13a{bottom:373.346667pt;}
.y85{bottom:373.826667pt;}
.yec{bottom:379.426667pt;}
.y112{bottom:381.986667pt;}
.yba{bottom:383.266667pt;}
.y5b{bottom:384.066667pt;}
.y2a{bottom:385.666667pt;}
.y186{bottom:386.146667pt;}
.y162{bottom:387.426667pt;}
.y138{bottom:395.586667pt;}
.y84{bottom:397.186667pt;}
.yeb{bottom:397.826667pt;}
.y111{bottom:399.586667pt;}
.yb9{bottom:400.866667pt;}
.y5a{bottom:401.666667pt;}
.y29{bottom:403.266667pt;}
.y185{bottom:404.706667pt;}
.y161{bottom:410.946667pt;}
.y83{bottom:414.786667pt;}
.ye6{bottom:416.066667pt;}
.y110{bottom:417.186667pt;}
.yb8{bottom:418.626667pt;}
.y59{bottom:419.266667pt;}
.y28{bottom:420.866667pt;}
.y182{bottom:423.426667pt;}
.y137{bottom:424.226667pt;}
.y160{bottom:428.546667pt;}
.y82{bottom:432.546667pt;}
.y10f{bottom:434.946667pt;}
.yb7{bottom:436.226667pt;}
.y58{bottom:436.866667pt;}
.y27{bottom:438.466667pt;}
.ye5{bottom:439.586667pt;}
.y184{bottom:441.666667pt;}
.y136{bottom:441.826667pt;}
.y15f{bottom:446.146667pt;}
.y81{bottom:450.146667pt;}
.y10e{bottom:452.546667pt;}
.yb6{bottom:453.826667pt;}
.y57{bottom:454.466667pt;}
.y26{bottom:456.226667pt;}
.ye4{bottom:457.186667pt;}
.y135{bottom:459.426667pt;}
.y15e{bottom:463.746667pt;}
.y181{bottom:465.186667pt;}
.y80{bottom:467.746667pt;}
.y10d{bottom:470.146667pt;}
.yb5{bottom:471.426667pt;}
.y56{bottom:472.226667pt;}
.y25{bottom:473.826667pt;}
.ye3{bottom:474.786667pt;}
.y134{bottom:477.346667pt;}
.y15d{bottom:481.506667pt;}
.y180{bottom:482.786667pt;}
.y7f{bottom:485.346667pt;}
.y10c{bottom:487.746667pt;}
.yb4{bottom:489.026667pt;}
.y55{bottom:489.826667pt;}
.y24{bottom:491.426667pt;}
.ye2{bottom:492.386667pt;}
.y133{bottom:495.106667pt;}
.y7e{bottom:498.466667pt;}
.y15c{bottom:499.266667pt;}
.y17f{bottom:500.386667pt;}
.ycf{bottom:502.946667pt;}
.y10b{bottom:505.346667pt;}
.yb3{bottom:506.786667pt;}
.y54{bottom:507.426667pt;}
.y23{bottom:509.026667pt;}
.ye1{bottom:510.146667pt;}
.y132{bottom:512.706667pt;}
.y15b{bottom:517.026667pt;}
.y7d{bottom:517.186667pt;}
.y17e{bottom:517.986667pt;}
.yce{bottom:520.546667pt;}
.y10a{bottom:523.106667pt;}
.yb2{bottom:524.386667pt;}
.y53{bottom:525.026667pt;}
.y22{bottom:526.626667pt;}
.ye0{bottom:527.746667pt;}
.y131{bottom:530.306667pt;}
.y15a{bottom:534.626667pt;}
.y17d{bottom:535.586667pt;}
.y7b{bottom:535.746667pt;}
.ycd{bottom:538.146667pt;}
.y109{bottom:540.706667pt;}
.yb1{bottom:541.986667pt;}
.y52{bottom:542.626667pt;}
.y21{bottom:544.386667pt;}
.ydf{bottom:545.346667pt;}
.y130{bottom:547.906667pt;}
.y17c{bottom:553.506667pt;}
.y79{bottom:554.466667pt;}
.ycc{bottom:555.906667pt;}
.y108{bottom:558.306667pt;}
.yb0{bottom:559.586667pt;}
.y51{bottom:560.386667pt;}
.y20{bottom:561.986667pt;}
.yde{bottom:562.946667pt;}
.y12f{bottom:565.666667pt;}
.y17b{bottom:571.266667pt;}
.y107{bottom:571.426667pt;}
.y76{bottom:573.026667pt;}
.ycb{bottom:573.506667pt;}
.yaf{bottom:577.213333pt;}
.y50{bottom:578.013333pt;}
.y1f{bottom:579.613333pt;}
.ydd{bottom:580.573333pt;}
.y12e{bottom:583.293333pt;}
.y159{bottom:583.773333pt;}
.y17a{bottom:584.413333pt;}
.y106{bottom:589.053333pt;}
.yca{bottom:591.133333pt;}
.y75{bottom:591.773333pt;}
.yae{bottom:594.973333pt;}
.y4f{bottom:595.613333pt;}
.y12d{bottom:596.413333pt;}
.y1e{bottom:597.213333pt;}
.ydc{bottom:598.333333pt;}
.y179{bottom:602.813333pt;}
.y105{bottom:606.813333pt;}
.yc9{bottom:608.733333pt;}
.yad{bottom:612.573333pt;}
.y4e{bottom:613.213333pt;}
.y12c{bottom:614.653333pt;}
.y1d{bottom:614.813333pt;}
.y74{bottom:615.293333pt;}
.ydb{bottom:615.933333pt;}
.y158{bottom:619.773333pt;}
.y178{bottom:621.053333pt;}
.y104{bottom:624.413333pt;}
.yc8{bottom:627.933333pt;}
.yac{bottom:630.173333pt;}
.y4d{bottom:630.813333pt;}
.y1c{bottom:632.573333pt;}
.y73{bottom:632.893333pt;}
.y12b{bottom:633.053333pt;}
.yda{bottom:633.533333pt;}
.y157{bottom:638.013333pt;}
.y177{bottom:639.293333pt;}
.y103{bottom:642.013333pt;}
.yc7{bottom:646.973333pt;}
.yab{bottom:647.773333pt;}
.y4c{bottom:648.573333pt;}
.y1b{bottom:650.173333pt;}
.y72{bottom:650.493333pt;}
.yd9{bottom:651.133333pt;}
.y12a{bottom:651.293333pt;}
.y156{bottom:656.253333pt;}
.y176{bottom:657.693333pt;}
.y102{bottom:659.613333pt;}
.yc6{bottom:664.573333pt;}
.yaa{bottom:665.373333pt;}
.y4b{bottom:666.173333pt;}
.y1a{bottom:667.773333pt;}
.y71{bottom:668.093333pt;}
.yd8{bottom:668.733333pt;}
.y129{bottom:669.533333pt;}
.y175{bottom:675.933333pt;}
.y101{bottom:677.213333pt;}
.yc5{bottom:679.453333pt;}
.y155{bottom:679.773333pt;}
.ya9{bottom:683.133333pt;}
.y4a{bottom:683.773333pt;}
.y19{bottom:685.373333pt;}
.y70{bottom:685.693333pt;}
.yd7{bottom:686.493333pt;}
.y128{bottom:693.053333pt;}
.y174{bottom:694.173333pt;}
.y100{bottom:694.973333pt;}
.y154{bottom:697.373333pt;}
.ya8{bottom:700.733333pt;}
.yd6{bottom:701.213333pt;}
.y49{bottom:701.373333pt;}
.y18{bottom:702.973333pt;}
.y6f{bottom:703.453333pt;}
.y127{bottom:710.653333pt;}
.yff{bottom:712.573333pt;}
.y173{bottom:712.893333pt;}
.y153{bottom:714.973333pt;}
.ya7{bottom:718.333333pt;}
.y48{bottom:718.973333pt;}
.y17{bottom:720.733333pt;}
.y6e{bottom:721.053333pt;}
.y126{bottom:728.253333pt;}
.yfe{bottom:730.813333pt;}
.y152{bottom:732.733333pt;}
.y6d{bottom:735.933333pt;}
.y47{bottom:736.733333pt;}
.y16{bottom:738.333333pt;}
.y6c{bottom:744.893333pt;}
.y125{bottom:746.173333pt;}
.y151{bottom:750.333333pt;}
.ya6{bottom:753.533333pt;}
.y172{bottom:754.013333pt;}
.y46{bottom:754.333333pt;}
.y15{bottom:760.573333pt;}
.y124{bottom:763.933333pt;}
.y150{bottom:767.933333pt;}
.ya5{bottom:771.293333pt;}
.y171{bottom:771.613333pt;}
.y45{bottom:771.933333pt;}
.y14{bottom:774.013333pt;}
.y14e{bottom:781.053333pt;}
.y123{bottom:781.533333pt;}
.ya4{bottom:788.893333pt;}
.y170{bottom:789.213333pt;}
.y44{bottom:789.533333pt;}
.y13{bottom:793.373333pt;}
.y122{bottom:799.173333pt;}
.ya3{bottom:806.533333pt;}
.y16f{bottom:806.853333pt;}
.y43{bottom:807.173333pt;}
.y12{bottom:812.453333pt;}
.y9e{bottom:815.013333pt;}
.y121{bottom:816.933333pt;}
.y14d{bottom:817.093333pt;}
.ya2{bottom:824.133333pt;}
.y16e{bottom:824.453333pt;}
.y42{bottom:824.933333pt;}
.y11{bottom:833.253333pt;}
.y9d{bottom:833.573333pt;}
.y120{bottom:834.533333pt;}
.ya1{bottom:842.053333pt;}
.y16d{bottom:842.213333pt;}
.y41{bottom:842.533333pt;}
.y9c{bottom:852.293333pt;}
.y14c{bottom:852.933333pt;}
.ya0{bottom:859.973333pt;}
.y40{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.y9b{bottom:870.853333pt;}
.y14b{bottom:871.333333pt;}
.y3f{bottom:877.733333pt;}
.y9a{bottom:889.573333pt;}
.yf{bottom:889.733333pt;}
.y9f{bottom:890.213333pt;}
.y3e{bottom:895.333333pt;}
.y3d{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h15{height:17.600000pt;}
.h23{height:17.632000pt;}
.h12{height:17.760000pt;}
.h1d{height:17.920000pt;}
.h1e{height:18.080000pt;}
.h1b{height:18.112000pt;}
.ha{height:18.880000pt;}
.h25{height:19.840000pt;}
.hf{height:24.131250pt;}
.h11{height:25.760000pt;}
.h7{height:29.760000pt;}
.h14{height:35.200000pt;}
.h20{height:35.232000pt;}
.h21{height:35.360000pt;}
.h16{height:35.392000pt;}
.h29{height:35.840000pt;}
.hd{height:37.090625pt;}
.h10{height:37.479688pt;}
.h2a{height:38.092813pt;}
.h18{height:38.672812pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h17{height:43.782500pt;}
.h1c{height:44.768125pt;}
.h9{height:47.310625pt;}
.he{height:47.470625pt;}
.h28{height:51.123750pt;}
.h13{height:52.800000pt;}
.h26{height:52.960000pt;}
.h24{height:54.240000pt;}
.h1f{height:55.648125pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h27{height:70.592000pt;}
.h22{height:72.512000pt;}
.h1a{height:80.608125pt;}
.h19{height:87.648125pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.wf{width:18.240000pt;}
.w2b{width:27.680000pt;}
.we{width:29.312000pt;}
.w2a{width:32.800000pt;}
.w8{width:34.080000pt;}
.w27{width:35.840000pt;}
.w11{width:37.440000pt;}
.w24{width:43.520000pt;}
.w28{width:45.280000pt;}
.wb{width:56.672000pt;}
.w38{width:58.432000pt;}
.w3d{width:62.592000pt;}
.w34{width:62.720000pt;}
.w45{width:66.080000pt;}
.w35{width:67.200000pt;}
.w39{width:70.752000pt;}
.w3a{width:73.760000pt;}
.w3b{width:75.072000pt;}
.w32{width:78.912000pt;}
.w15{width:80.480000pt;}
.w1e{width:85.632000pt;}
.w3c{width:85.760000pt;}
.w1c{width:85.952000pt;}
.w25{width:87.680000pt;}
.w18{width:93.440000pt;}
.w16{width:95.552000pt;}
.w40{width:97.792000pt;}
.w43{width:101.312000pt;}
.w42{width:102.752000pt;}
.w41{width:105.280000pt;}
.w3f{width:108.192000pt;}
.w2f{width:112.800000pt;}
.w46{width:115.392000pt;}
.w30{width:115.552000pt;}
.w3{width:116.192000pt;}
.w49{width:118.112000pt;}
.w33{width:121.152000pt;}
.w48{width:127.072000pt;}
.w1b{width:132.000000pt;}
.w12{width:132.192000pt;}
.w13{width:132.320000pt;}
.w31{width:138.746667pt;}
.w2c{width:139.386667pt;}
.w2d{width:139.546667pt;}
.w14{width:141.466667pt;}
.w37{width:148.346667pt;}
.w29{width:149.306667pt;}
.wd{width:150.426667pt;}
.w22{width:170.106667pt;}
.w17{width:174.266667pt;}
.wc{width:179.546667pt;}
.w20{width:179.706667pt;}
.w3e{width:182.586667pt;}
.w26{width:183.106667pt;}
.w2e{width:188.066667pt;}
.w23{width:188.986667pt;}
.wa{width:200.346667pt;}
.w9{width:200.386667pt;}
.w36{width:219.586667pt;}
.w47{width:245.186667pt;}
.w44{width:245.826667pt;}
.w1d{width:264.546667pt;}
.w1a{width:273.506667pt;}
.w1f{width:292.226667pt;}
.w19{width:317.506667pt;}
.w7{width:342.333333pt;}
.w6{width:347.106667pt;}
.w21{width:359.106667pt;}
.w2{width:577.253333pt;}
.w10{width:651.653333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:0.960000pt;}
.x3f{left:2.400000pt;}
.x2{left:7.200000pt;}
.x32{left:10.080000pt;}
.x23{left:12.320000pt;}
.x34{left:20.680000pt;}
.x54{left:23.560000pt;}
.xf{left:31.232000pt;}
.x1a{left:42.240000pt;}
.x1c{left:45.920000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x11{left:52.479988pt;}
.x1e{left:62.080000pt;}
.x1f{left:67.680000pt;}
.x8{left:69.439988pt;}
.x24{left:71.999988pt;}
.x10{left:76.511988pt;}
.x7{left:79.071988pt;}
.x1b{left:80.000000pt;}
.x1d{left:83.680000pt;}
.x59{left:85.791988pt;}
.x39{left:87.552000pt;}
.xd{left:96.031988pt;}
.x4{left:105.146667pt;}
.x48{left:126.912000pt;}
.x36{left:132.352000pt;}
.xa{left:133.786655pt;}
.x2f{left:151.226667pt;}
.x29{left:161.146655pt;}
.x14{left:179.546667pt;}
.x42{left:187.706667pt;}
.x4c{left:189.626667pt;}
.x17{left:203.706667pt;}
.x15{left:213.626667pt;}
.x2c{left:214.746655pt;}
.x3b{left:222.746667pt;}
.x50{left:230.586667pt;}
.x46{left:237.346667pt;}
.x20{left:245.506667pt;}
.x49{left:248.066667pt;}
.x27{left:257.026655pt;}
.x18{left:260.386667pt;}
.x21{left:282.946667pt;}
.x55{left:293.826667pt;}
.x38{left:302.466667pt;}
.xb{left:310.306655pt;}
.x28{left:316.066655pt;}
.xc{left:325.506655pt;}
.x43{left:327.266667pt;}
.x26{left:331.746655pt;}
.x2b{left:333.186655pt;}
.x51{left:338.786667pt;}
.x47{left:350.786667pt;}
.x12{left:356.706655pt;}
.x56{left:359.906667pt;}
.x9{left:365.506655pt;}
.x4a{left:377.986667pt;}
.x13{left:388.066655pt;}
.xe{left:395.746667pt;}
.x3c{left:407.933333pt;}
.x16{left:414.013333pt;}
.x22{left:415.133333pt;}
.x25{left:420.733322pt;}
.x2d{left:421.853333pt;}
.x30{left:424.733333pt;}
.x52{left:436.573333pt;}
.x19{left:439.933333pt;}
.x3d{left:445.693333pt;}
.x4d{left:448.733333pt;}
.x35{left:453.213333pt;}
.x44{left:466.653333pt;}
.x57{left:475.293333pt;}
.x37{left:491.453333pt;}
.x3e{left:492.893333pt;}
.x4e{left:522.493333pt;}
.x53{left:541.853333pt;}
.x33{left:547.773333pt;}
.x31{left:556.733333pt;}
.x2a{left:580.933322pt;}
.x2e{left:596.133333pt;}
.x4b{left:597.573333pt;}
.x58{left:602.373333pt;}
.x45{left:606.213333pt;}
.x3{left:627.493333pt;}
.x40{left:644.133333pt;}
.x41{left:678.853333pt;}
.x4f{left:683.333333pt;}
.x6{left:737.280000pt;}
}




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