
    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_766807fcc4c18d0db3d29e87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_275a54f12d909554ab53de73.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_7ea57493fa0f7b793b98f480.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_c5100340770f3dd7fef97e2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_210614cbc3ef758006f4fda6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_137e2d6e9bd548158129dfb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_022956d62d2dd26fce89d0f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738281;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_3f1fba7324434edc8348f293.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_15d6a46481fcc816fd5b6ecc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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);}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v1{vertical-align:15.120000px;}
.v8{vertical-align:16.559995px;}
.v2{vertical-align:23.760000px;}
.v7{vertical-align:57.180000px;}
.ls25{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.828000px;}
.ls37{letter-spacing:-0.346200px;}
.ls24{letter-spacing:-0.338400px;}
.ls3e{letter-spacing:-0.261600px;}
.ls12{letter-spacing:-0.228000px;}
.ls26{letter-spacing:-0.226800px;}
.ls17{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.214800px;}
.ls34{letter-spacing:-0.205800px;}
.ls3d{letter-spacing:-0.202800px;}
.ls3a{letter-spacing:-0.181200px;}
.ls28{letter-spacing:-0.164400px;}
.ls10{letter-spacing:-0.115800px;}
.ls7{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.107400px;}
.lsc{letter-spacing:-0.069600px;}
.lse{letter-spacing:-0.061200px;}
.ls11{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.048960px;}
.ls36{letter-spacing:-0.043920px;}
.ls39{letter-spacing:-0.041040px;}
.ls3b{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.076080px;}
.ls3f{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.140400px;}
.ls32{letter-spacing:0.143999px;}
.ls42{letter-spacing:0.147000px;}
.ls27{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.175200px;}
.ls19{letter-spacing:0.175680px;}
.ls6{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.186480px;}
.ls1b{letter-spacing:0.205920px;}
.ls3{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.243600px;}
.ls4{letter-spacing:0.256200px;}
.ls43{letter-spacing:0.265200px;}
.ls2{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.306000px;}
.ls41{letter-spacing:0.354240px;}
.ls38{letter-spacing:0.373800px;}
.ls29{letter-spacing:0.385920px;}
.ls31{letter-spacing:0.432000px;}
.ls40{letter-spacing:0.433440px;}
.lsb{letter-spacing:0.493200px;}
.ls1{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.650160px;}
.ls44{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.666720px;}
.ls22{letter-spacing:0.676080px;}
.ls1a{letter-spacing:0.860400px;}
.ls2c{letter-spacing:0.894240px;}
.ls18{letter-spacing:0.900000px;}
.ls1c{letter-spacing:2.121120px;}
.ls3c{letter-spacing:2.733120px;}
.ls21{letter-spacing:3.180960px;}
.ls33{letter-spacing:13.229280px;}
.ls2e{letter-spacing:15.048000px;}
.ls30{letter-spacing:15.120000px;}
.ls2f{letter-spacing:15.228000px;}
.ls1f{letter-spacing:16.140960px;}
.ls20{letter-spacing:16.260960px;}
.ls1e{letter-spacing:16.380000px;}
.ls1d{letter-spacing:19.650240px;}
.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;}
}
.ws14{word-spacing:-46.080720px;}
.ws13{word-spacing:-43.200720px;}
.ws21{word-spacing:-15.444000px;}
.ws2a{word-spacing:-15.235440px;}
.ws29{word-spacing:-15.117240px;}
.ws1e{word-spacing:-15.012000px;}
.ws28{word-spacing:-14.970240px;}
.ws2b{word-spacing:-14.165760px;}
.ws19{word-spacing:-13.879560px;}
.wsb{word-spacing:-13.749360px;}
.wsf{word-spacing:-13.680960px;}
.ws5{word-spacing:-13.646160px;}
.ws15{word-spacing:-13.566360px;}
.ws4{word-spacing:-13.505760px;}
.ws1a{word-spacing:-13.464720px;}
.ws17{word-spacing:-13.461840px;}
.ws1c{word-spacing:-13.450752px;}
.wsd{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.444560px;}
.ws7{word-spacing:-13.436160px;}
.ws1b{word-spacing:-13.410720px;}
.ws12{word-spacing:-13.398360px;}
.wsc{word-spacing:-13.389960px;}
.ws23{word-spacing:-13.302960px;}
.ws16{word-spacing:-13.299960px;}
.ws8{word-spacing:-13.290960px;}
.wse{word-spacing:-13.277760px;}
.ws18{word-spacing:-13.159560px;}
.ws1{word-spacing:-12.204000px;}
.ws2{word-spacing:-10.902240px;}
.wsa{word-spacing:-8.786880px;}
.ws0{word-spacing:-8.316000px;}
.ws3{word-spacing:-8.028000px;}
.ws6{word-spacing:0.000000px;}
.ws20{word-spacing:173.069760px;}
.ws1f{word-spacing:177.606720px;}
.ws27{word-spacing:181.746720px;}
.ws22{word-spacing:193.146720px;}
.ws25{word-spacing:194.466720px;}
.ws1d{word-spacing:257.490000px;}
.ws24{word-spacing:278.190000px;}
.ws26{word-spacing:329.490000px;}
.ws11{word-spacing:661.091040px;}
.ws10{word-spacing:860.196960px;}
._0{margin-left:-1.188000px;}
._2{width:1.260000px;}
._5{width:2.340000px;}
._6{width:3.420000px;}
._3{width:4.806000px;}
._4{width:6.768000px;}
._a{width:7.786560px;}
._7{width:8.910000px;}
._8{width:10.188000px;}
._f{width:11.825280px;}
._13{width:14.549760px;}
._10{width:16.194960px;}
._11{width:17.497200px;}
._12{width:18.717840px;}
._d{width:20.497680px;}
._b{width:21.573360px;}
._c{width:22.589280px;}
._e{width:24.018480px;}
._9{width:25.200000px;}
._1c{width:105.180960px;}
._1b{width:135.479280px;}
._1a{width:194.372640px;}
._18{width:207.152640px;}
._14{width:284.099520px;}
._16{width:303.299520px;}
._17{width:304.859520px;}
._15{width:316.499520px;}
._19{width:356.099520px;}
._1{width:1531.896000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs1{font-size:36.000000px;}
.fsa{font-size:36.144000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:0.180000px;}
.yd2{bottom:0.360000px;}
.ycb{bottom:0.540000px;}
.yc5{bottom:0.720000px;}
.ybf{bottom:0.900000px;}
.yca{bottom:1.080000px;}
.yb7{bottom:1.260000px;}
.yb9{bottom:1.800000px;}
.ybe{bottom:1.980000px;}
.yb8{bottom:2.340000px;}
.y53{bottom:3.060000px;}
.y60{bottom:3.240000px;}
.y87{bottom:3.600000px;}
.y39{bottom:3.960000px;}
.y3b{bottom:4.140000px;}
.yd7{bottom:4.500000px;}
.yc9{bottom:4.680000px;}
.y112{bottom:4.890000px;}
.y150{bottom:4.935000px;}
.yc4{bottom:5.040000px;}
.y129{bottom:5.220000px;}
.yd0{bottom:5.580000px;}
.y14b{bottom:5.760000px;}
.yde{bottom:5.940000px;}
.y47{bottom:6.300000px;}
.y95{bottom:7.020000px;}
.y94{bottom:7.200000px;}
.y75{bottom:7.560000px;}
.yf8{bottom:7.920000px;}
.yb4{bottom:8.100000px;}
.y49{bottom:8.640000px;}
.yaf{bottom:9.900000px;}
.y45{bottom:13.365000px;}
.ybd{bottom:13.500000px;}
.yd6{bottom:15.660000px;}
.yad{bottom:18.180000px;}
.y116{bottom:19.905000px;}
.y44{bottom:22.545000px;}
.yc8{bottom:23.040000px;}
.y14f{bottom:23.070000px;}
.yc3{bottom:23.400000px;}
.ycf{bottom:23.940000px;}
.ydd{bottom:24.120000px;}
.y110{bottom:24.840000px;}
.yb3{bottom:26.280000px;}
.y149{bottom:27.510000px;}
.ybc{bottom:31.860000px;}
.yd5{bottom:34.020000px;}
.y106{bottom:39.135000px;}
.yda{bottom:41.220000px;}
.yc7{bottom:41.400000px;}
.ye5{bottom:41.430000px;}
.yc2{bottom:41.760000px;}
.y143{bottom:41.790000px;}
.yce{bottom:42.300000px;}
.ydc{bottom:42.480000px;}
.yb2{bottom:44.640000px;}
.ybb{bottom:50.040000px;}
.ye2{bottom:50.220000px;}
.yd4{bottom:52.200000px;}
.yd9{bottom:59.580000px;}
.yc6{bottom:59.760000px;}
.ye4{bottom:59.790000px;}
.yc1{bottom:60.120000px;}
.ycd{bottom:60.480000px;}
.ydb{bottom:60.885000px;}
.yb1{bottom:63.000000px;}
.y117{bottom:65.850000px;}
.y107{bottom:70.560000px;}
.y118{bottom:97.485000px;}
.y144{bottom:98.715000px;}
.y108{bottom:101.985000px;}
.y80{bottom:112.500000px;}
.y36{bottom:112.680000px;}
.y61{bottom:113.400000px;}
.y141{bottom:120.600000px;}
.y104{bottom:124.020000px;}
.y17e{bottom:126.000000px;}
.y7f{bottom:126.720000px;}
.y119{bottom:129.090000px;}
.ye6{bottom:129.780000px;}
.y5f{bottom:130.680000px;}
.y35{bottom:131.040000px;}
.y109{bottom:133.410000px;}
.y140{bottom:138.780000px;}
.yab{bottom:140.580000px;}
.y103{bottom:142.380000px;}
.y17d{bottom:144.360000px;}
.ydf{bottom:144.720000px;}
.ye0{bottom:145.830000px;}
.yb6{bottom:148.140000px;}
.y34{bottom:149.400000px;}
.y120{bottom:151.770000px;}
.y145{bottom:155.595000px;}
.y13f{bottom:157.140000px;}
.y11a{bottom:160.740000px;}
.y111{bottom:162.720000px;}
.y10a{bottom:164.850000px;}
.y14a{bottom:167.430000px;}
.yaa{bottom:167.940000px;}
.y102{bottom:169.740000px;}
.y33{bottom:170.640000px;}
.y13e{bottom:178.590000px;}
.y17c{bottom:180.930000px;}
.ya9{bottom:186.150000px;}
.y101{bottom:187.950000px;}
.y32{bottom:192.090000px;}
.y11b{bottom:192.345000px;}
.y10b{bottom:196.275000px;}
.y17b{bottom:199.290000px;}
.y13d{bottom:199.830000px;}
.ya8{bottom:204.510000px;}
.y100{bottom:206.310000px;}
.y86{bottom:207.045000px;}
.y146{bottom:212.505000px;}
.y31{bottom:213.330000px;}
.y17a{bottom:217.650000px;}
.y13c{bottom:218.190000px;}
.ye3{bottom:219.990000px;}
.ya7{bottom:222.870000px;}
.y11c{bottom:223.995000px;}
.yff{bottom:224.670000px;}
.y10c{bottom:227.700000px;}
.y30{bottom:231.690000px;}
.y179{bottom:235.830000px;}
.y13b{bottom:236.370000px;}
.ya6{bottom:241.050000px;}
.yfe{bottom:243.030000px;}
.y178{bottom:254.190000px;}
.y11d{bottom:255.630000px;}
.y13a{bottom:257.790000px;}
.y10d{bottom:259.125000px;}
.y2f{bottom:259.590000px;}
.yfd{bottom:261.210000px;}
.ya5{bottom:268.410000px;}
.y147{bottom:269.430000px;}
.y177{bottom:272.550000px;}
.y139{bottom:279.030000px;}
.yfc{bottom:279.570000px;}
.ya4{bottom:286.770000px;}
.y11e{bottom:287.250000px;}
.y10e{bottom:290.550000px;}
.y176{bottom:290.910000px;}
.y2e{bottom:291.090000px;}
.ye1{bottom:295.050000px;}
.y138{bottom:297.390000px;}
.y122{bottom:301.605000px;}
.y152{bottom:303.735000px;}
.ya3{bottom:305.130000px;}
.y14d{bottom:306.645000px;}
.y114{bottom:306.690000px;}
.y5e{bottom:306.750000px;}
.y175{bottom:309.090000px;}
.y2d{bottom:309.450000px;}
.y151{bottom:315.645000px;}
.y137{bottom:315.750000px;}
.y121{bottom:315.870000px;}
.yfb{bottom:316.290000px;}
.y11f{bottom:318.885000px;}
.y113{bottom:319.170000px;}
.y14c{bottom:321.735000px;}
.y10f{bottom:321.990000px;}
.ya2{bottom:323.310000px;}
.y148{bottom:326.340000px;}
.y174{bottom:327.450000px;}
.y2c{bottom:327.810000px;}
.y5d{bottom:327.990000px;}
.y7e{bottom:328.170000px;}
.y136{bottom:333.930000px;}
.yfa{bottom:338.250000px;}
.ya1{bottom:341.670000px;}
.y173{bottom:345.810000px;}
.y2b{bottom:345.990000px;}
.y5c{bottom:346.350000px;}
.y7d{bottom:349.410000px;}
.yf9{bottom:361.650000px;}
.y135{bottom:361.830000px;}
.y172{bottom:363.990000px;}
.y5b{bottom:364.710000px;}
.y2a{bottom:367.410000px;}
.y7c{bottom:367.770000px;}
.ya0{bottom:369.570000px;}
.yf7{bottom:380.010000px;}
.y171{bottom:382.350000px;}
.y105{bottom:383.580000px;}
.y5a{bottom:385.950000px;}
.y7b{bottom:386.130000px;}
.y115{bottom:388.080000px;}
.y29{bottom:388.650000px;}
.y134{bottom:390.450000px;}
.y170{bottom:400.710000px;}
.y9f{bottom:401.070000px;}
.y7a{bottom:404.310000px;}
.y28{bottom:407.010000px;}
.y59{bottom:407.190000px;}
.y133{bottom:408.810000px;}
.y16f{bottom:419.115000px;}
.y9e{bottom:419.475000px;}
.y79{bottom:422.715000px;}
.y27{bottom:425.235000px;}
.y132{bottom:427.035000px;}
.y58{bottom:428.655000px;}
.y16e{bottom:437.295000px;}
.y9d{bottom:437.835000px;}
.y78{bottom:441.075000px;}
.y26{bottom:443.595000px;}
.y57{bottom:446.835000px;}
.yd1{bottom:447.195000px;}
.y131{bottom:454.395000px;}
.y16d{bottom:455.655000px;}
.y9c{bottom:456.195000px;}
.y25{bottom:461.955000px;}
.y77{bottom:462.315000px;}
.y56{bottom:465.195000px;}
.y130{bottom:472.755000px;}
.y16c{bottom:474.015000px;}
.y9b{bottom:474.375000px;}
.y76{bottom:480.675000px;}
.y24{bottom:483.195000px;}
.y55{bottom:486.615000px;}
.y12f{bottom:491.115000px;}
.y16b{bottom:492.375000px;}
.y9a{bottom:492.735000px;}
.y74{bottom:497.955000px;}
.y23{bottom:504.615000px;}
.y54{bottom:504.795000px;}
.y12e{bottom:509.295000px;}
.y16a{bottom:510.555000px;}
.y99{bottom:511.095000px;}
.y52{bottom:522.075000px;}
.y22{bottom:522.795000px;}
.yd8{bottom:523.335000px;}
.y12d{bottom:527.655000px;}
.y169{bottom:528.915000px;}
.y98{bottom:529.275000px;}
.y21{bottom:541.155000px;}
.y168{bottom:547.275000px;}
.y97{bottom:547.635000px;}
.y12c{bottom:555.015000px;}
.y20{bottom:559.515000px;}
.y167{bottom:565.455000px;}
.y96{bottom:569.055000px;}
.y12b{bottom:576.255000px;}
.y1f{bottom:577.875000px;}
.y93{bottom:583.275000px;}
.y166{bottom:583.815000px;}
.y12a{bottom:590.475000px;}
.y1e{bottom:596.055000px;}
.yd3{bottom:598.575000px;}
.y165{bottom:602.175000px;}
.y128{bottom:608.835000px;}
.y142{bottom:609.300000px;}
.y92{bottom:611.535000px;}
.y14e{bottom:614.160000px;}
.y1d{bottom:614.415000px;}
.y164{bottom:620.535000px;}
.y91{bottom:632.955000px;}
.y163{bottom:638.715000px;}
.y73{bottom:639.975000px;}
.y1c{bottom:642.315000px;}
.y90{bottom:651.135000px;}
.y162{bottom:657.075000px;}
.y72{bottom:661.245000px;}
.y8f{bottom:669.525000px;}
.y1b{bottom:670.065000px;}
.y161{bottom:675.465000px;}
.ycc{bottom:677.445000px;}
.y71{bottom:679.605000px;}
.y8e{bottom:687.885000px;}
.y51{bottom:689.505000px;}
.y1a{bottom:693.825000px;}
.y70{bottom:697.785000px;}
.y8d{bottom:706.245000px;}
.y50{bottom:710.745000px;}
.y160{bottom:712.005000px;}
.y6f{bottom:716.145000px;}
.y19{bottom:717.405000px;}
.y8c{bottom:724.425000px;}
.y4f{bottom:729.105000px;}
.y15f{bottom:730.365000px;}
.yf6{bottom:730.725000px;}
.y6e{bottom:737.565000px;}
.y18{bottom:741.525000px;}
.y8b{bottom:742.785000px;}
.y4e{bottom:747.465000px;}
.yb5{bottom:754.485000px;}
.y6d{bottom:755.745000px;}
.y17{bottom:757.905000px;}
.yf5{bottom:758.085000px;}
.y15e{bottom:758.265000px;}
.y8a{bottom:764.025000px;}
.y4d{bottom:765.645000px;}
.y6b{bottom:773.025000px;}
.yf4{bottom:776.265000px;}
.y15d{bottom:780.765000px;}
.y16{bottom:783.465000px;}
.y89{bottom:785.445000px;}
.y4c{bottom:787.065000px;}
.yf3{bottom:794.625000px;}
.y15{bottom:799.845000px;}
.y15c{bottom:802.185000px;}
.y88{bottom:803.805000px;}
.y4b{bottom:808.305000px;}
.yf2{bottom:812.985000px;}
.y14{bottom:816.405000px;}
.y85{bottom:818.025000px;}
.y15b{bottom:820.365000px;}
.y4a{bottom:823.245000px;}
.yc0{bottom:829.725000px;}
.yf1{bottom:831.345000px;}
.y13{bottom:832.785000px;}
.y48{bottom:846.825000px;}
.y15a{bottom:848.265000px;}
.y12{bottom:849.345000px;}
.yf0{bottom:858.525000px;}
.y46{bottom:870.405000px;}
.y159{bottom:870.945000px;}
.y11{bottom:874.905000px;}
.yef{bottom:876.885000px;}
.y10{bottom:891.285000px;}
.y158{bottom:892.185000px;}
.yee{bottom:895.245000px;}
.y43{bottom:895.425000px;}
.yba{bottom:905.730000px;}
.yf{bottom:907.890000px;}
.y157{bottom:910.590000px;}
.yed{bottom:913.470000px;}
.ye{bottom:924.270000px;}
.y156{bottom:928.950000px;}
.yec{bottom:931.830000px;}
.y42{bottom:946.050000px;}
.yd{bottom:950.190000px;}
.y127{bottom:959.550000px;}
.y41{bottom:967.290000px;}
.yc{bottom:968.010000px;}
.yeb{bottom:968.550000px;}
.y6a{bottom:971.430000px;}
.yb0{bottom:980.070000px;}
.yb{bottom:984.570000px;}
.yea{bottom:986.730000px;}
.y40{bottom:988.530000px;}
.y155{bottom:989.790000px;}
.y69{bottom:992.850000px;}
.ya{bottom:1004.910000px;}
.ye9{bottom:1005.090000px;}
.y3f{bottom:1006.890000px;}
.y154{bottom:1008.150000px;}
.y68{bottom:1011.030000px;}
.y9{bottom:1017.510000px;}
.y126{bottom:1023.450000px;}
.y3e{bottom:1025.250000px;}
.y153{bottom:1026.330000px;}
.y67{bottom:1029.390000px;}
.ye8{bottom:1032.450000px;}
.y8{bottom:1037.850000px;}
.y125{bottom:1041.810000px;}
.y3d{bottom:1046.490000px;}
.y66{bottom:1047.750000px;}
.y7{bottom:1050.450000px;}
.ye7{bottom:1050.810000px;}
.y124{bottom:1059.990000px;}
.y3c{bottom:1061.430000px;}
.yac{bottom:1063.410000px;}
.y65{bottom:1066.110000px;}
.y6{bottom:1068.090000px;}
.y84{bottom:1068.990000px;}
.y123{bottom:1078.350000px;}
.y64{bottom:1084.290000px;}
.y3a{bottom:1085.010000px;}
.y83{bottom:1087.350000px;}
.y5{bottom:1087.530000px;}
.yae{bottom:1092.750000px;}
.y4{bottom:1101.930000px;}
.y63{bottom:1102.650000px;}
.y82{bottom:1105.710000px;}
.y38{bottom:1110.210000px;}
.y62{bottom:1121.010000px;}
.y81{bottom:1123.890000px;}
.y3{bottom:1127.490000px;}
.y37{bottom:1142.250000px;}
.y2{bottom:1174.680000px;}
.y1{bottom:1190.520000px;}
.h2d{height:18.360000px;}
.h1a{height:21.240000px;}
.h1c{height:21.960000px;}
.hd{height:22.680000px;}
.he{height:22.860000px;}
.h5{height:25.839844px;}
.h1d{height:28.620000px;}
.ha{height:34.625391px;}
.h7{height:38.759766px;}
.h9{height:39.208008px;}
.hf{height:40.851562px;}
.h2{height:40.959844px;}
.h10{height:41.256000px;}
.hc{height:42.894141px;}
.h8{height:43.390195px;}
.h33{height:43.554375px;}
.h12{height:47.545312px;}
.hb{height:48.095156px;}
.h30{height:50.312812px;}
.h31{height:50.463000px;}
.h1b{height:51.300000px;}
.h23{height:51.679688px;}
.h3{height:55.503491px;}
.h32{height:56.320313px;}
.h6{height:58.385391px;}
.h4{height:61.164492px;}
.h19{height:61.423863px;}
.h2e{height:62.327813px;}
.h20{height:73.620000px;}
.h29{height:73.800000px;}
.h15{height:74.004654px;}
.h2a{height:74.340000px;}
.h22{height:74.520000px;}
.h2b{height:74.556000px;}
.h26{height:75.240000px;}
.h21{height:75.276000px;}
.h24{height:76.320000px;}
.h27{height:76.896000px;}
.h25{height:78.156000px;}
.h1e{height:81.000000px;}
.h35{height:107.492813px;}
.h16{height:134.820000px;}
.h11{height:160.230000px;}
.h13{height:168.870000px;}
.h14{height:191.370000px;}
.h17{height:194.250000px;}
.h18{height:222.510000px;}
.h28{height:301.755000px;}
.h1f{height:306.570000px;}
.h34{height:329.580000px;}
.h37{height:332.280000px;}
.h2f{height:334.080000px;}
.h36{height:337.140000px;}
.h2c{height:337.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:39.060000px;}
.wd{width:39.096000px;}
.w20{width:42.660000px;}
.w4{width:43.740000px;}
.w9{width:43.776000px;}
.w6{width:43.956000px;}
.wc{width:47.340000px;}
.w5{width:51.480000px;}
.w18{width:55.260000px;}
.w8{width:59.760000px;}
.w7{width:67.320000px;}
.w3{width:72.576000px;}
.wf{width:87.156000px;}
.w1f{width:93.240000px;}
.wa{width:97.740000px;}
.w1c{width:116.856000px;}
.w1e{width:117.216000px;}
.w1b{width:119.016000px;}
.w1d{width:127.620000px;}
.w19{width:135.900000px;}
.wb{width:165.270000px;}
.w13{width:198.930000px;}
.w11{width:220.890000px;}
.w12{width:248.115000px;}
.w23{width:304.020000px;}
.w28{width:307.080000px;}
.w16{width:307.875000px;}
.w21{width:314.490000px;}
.w27{width:316.440000px;}
.w26{width:322.095000px;}
.w24{width:328.320000px;}
.w25{width:331.230000px;}
.w22{width:338.835000px;}
.w15{width:346.170000px;}
.w14{width:371.775000px;}
.w1a{width:480.705000px;}
.w17{width:593.025000px;}
.w10{width:648.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.460000px;}
.x20{left:10.260000px;}
.xc{left:12.240000px;}
.x44{left:13.680000px;}
.x43{left:14.934000px;}
.x12{left:16.740000px;}
.xe{left:17.820000px;}
.x18{left:19.980000px;}
.x1f{left:22.680000px;}
.x16{left:25.380000px;}
.x14{left:27.180000px;}
.x37{left:30.600000px;}
.x3a{left:33.654000px;}
.x45{left:35.634000px;}
.x24{left:39.780000px;}
.x42{left:43.605000px;}
.x5a{left:44.640000px;}
.x3e{left:47.160000px;}
.x3c{left:48.285000px;}
.x40{left:52.560000px;}
.x1e{left:60.330000px;}
.x5d{left:68.295000px;}
.x48{left:73.614000px;}
.x54{left:79.950000px;}
.x49{left:84.990000px;}
.x4b{left:86.580000px;}
.x58{left:94.065000px;}
.x4e{left:98.070000px;}
.x51{left:107.790000px;}
.x2{left:117.035987px;}
.x25{left:119.556000px;}
.x5b{left:124.200000px;}
.x7{left:127.655987px;}
.x38{left:130.715987px;}
.x34{left:132.695987px;}
.x4c{left:135.645000px;}
.x39{left:138.276000px;}
.x56{left:143.640000px;}
.x1{left:144.935987px;}
.x3{left:146.015987px;}
.x55{left:149.075987px;}
.x5c{left:153.750000px;}
.x4d{left:155.310000px;}
.x57{left:158.040000px;}
.x9{left:170.129987px;}
.x4a{left:173.909987px;}
.x5e{left:181.649987px;}
.x2d{left:198.389987px;}
.x28{left:212.790000px;}
.x2b{left:223.050000px;}
.xb{left:230.790000px;}
.x6{left:250.949987px;}
.x2e{left:260.670000px;}
.x3b{left:274.170000px;}
.x4{left:280.334987px;}
.xa{left:285.014987px;}
.x50{left:287.850000px;}
.x33{left:302.835000px;}
.xd{left:304.095000px;}
.x46{left:311.979000px;}
.x1c{left:313.995000px;}
.x26{left:322.814987px;}
.x52{left:324.399000px;}
.x27{left:336.135000px;}
.x30{left:339.554987px;}
.x31{left:341.499000px;}
.xf{left:348.555000px;}
.x2a{left:357.014987px;}
.x1b{left:358.814987px;}
.x2f{left:363.495000px;}
.x3d{left:393.195000px;}
.x10{left:400.755000px;}
.x35{left:403.094987px;}
.x1d{left:412.455000px;}
.x8{left:414.074987px;}
.x47{left:434.775000px;}
.x4f{left:442.440000px;}
.x11{left:445.215000px;}
.x1a{left:446.474987px;}
.x53{left:451.515000px;}
.x59{left:459.180000px;}
.x21{left:460.515000px;}
.x32{left:465.735000px;}
.x2c{left:471.165000px;}
.x13{left:489.885000px;}
.x22{left:500.325000px;}
.x29{left:504.429000px;}
.x3f{left:510.045000px;}
.x23{left:540.105000px;}
.x15{left:557.925000px;}
.x17{left:618.405000px;}
.x41{left:637.665000px;}
.x36{left:712.590000px;}
.x5{left:765.509987px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v1{vertical-align:13.440000pt;}
.v8{vertical-align:14.719996pt;}
.v2{vertical-align:21.120000pt;}
.v7{vertical-align:50.826667pt;}
.ls25{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.736000pt;}
.ls37{letter-spacing:-0.307733pt;}
.ls24{letter-spacing:-0.300800pt;}
.ls3e{letter-spacing:-0.232533pt;}
.ls12{letter-spacing:-0.202667pt;}
.ls26{letter-spacing:-0.201600pt;}
.ls17{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.190933pt;}
.ls34{letter-spacing:-0.182933pt;}
.ls3d{letter-spacing:-0.180267pt;}
.ls3a{letter-spacing:-0.161067pt;}
.ls28{letter-spacing:-0.146133pt;}
.ls10{letter-spacing:-0.102933pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.095467pt;}
.lsc{letter-spacing:-0.061867pt;}
.lse{letter-spacing:-0.054400pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.043520pt;}
.ls36{letter-spacing:-0.039040pt;}
.ls39{letter-spacing:-0.036480pt;}
.ls3b{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.067627pt;}
.ls3f{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.124800pt;}
.ls32{letter-spacing:0.127999pt;}
.ls42{letter-spacing:0.130667pt;}
.ls27{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.155733pt;}
.ls19{letter-spacing:0.156160pt;}
.ls6{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.165760pt;}
.ls1b{letter-spacing:0.183040pt;}
.ls3{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.216533pt;}
.ls4{letter-spacing:0.227733pt;}
.ls43{letter-spacing:0.235733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.272000pt;}
.ls41{letter-spacing:0.314880pt;}
.ls38{letter-spacing:0.332267pt;}
.ls29{letter-spacing:0.343040pt;}
.ls31{letter-spacing:0.384000pt;}
.ls40{letter-spacing:0.385280pt;}
.lsb{letter-spacing:0.438400pt;}
.ls1{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.577920pt;}
.ls44{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.592640pt;}
.ls22{letter-spacing:0.600960pt;}
.ls1a{letter-spacing:0.764800pt;}
.ls2c{letter-spacing:0.794880pt;}
.ls18{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.885440pt;}
.ls3c{letter-spacing:2.429440pt;}
.ls21{letter-spacing:2.827520pt;}
.ls33{letter-spacing:11.759360pt;}
.ls2e{letter-spacing:13.376000pt;}
.ls30{letter-spacing:13.440000pt;}
.ls2f{letter-spacing:13.536000pt;}
.ls1f{letter-spacing:14.347520pt;}
.ls20{letter-spacing:14.454187pt;}
.ls1e{letter-spacing:14.560000pt;}
.ls1d{letter-spacing:17.466880pt;}
.ws14{word-spacing:-40.960640pt;}
.ws13{word-spacing:-38.400640pt;}
.ws21{word-spacing:-13.728000pt;}
.ws2a{word-spacing:-13.542613pt;}
.ws29{word-spacing:-13.437547pt;}
.ws1e{word-spacing:-13.344000pt;}
.ws28{word-spacing:-13.306880pt;}
.ws2b{word-spacing:-12.591787pt;}
.ws19{word-spacing:-12.337387pt;}
.wsb{word-spacing:-12.221653pt;}
.wsf{word-spacing:-12.160853pt;}
.ws5{word-spacing:-12.129920pt;}
.ws15{word-spacing:-12.058987pt;}
.ws4{word-spacing:-12.005120pt;}
.ws1a{word-spacing:-11.968640pt;}
.ws17{word-spacing:-11.966080pt;}
.ws1c{word-spacing:-11.956224pt;}
.wsd{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.950720pt;}
.ws7{word-spacing:-11.943253pt;}
.ws1b{word-spacing:-11.920640pt;}
.ws12{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.902187pt;}
.ws23{word-spacing:-11.824853pt;}
.ws16{word-spacing:-11.822187pt;}
.ws8{word-spacing:-11.814187pt;}
.wse{word-spacing:-11.802453pt;}
.ws18{word-spacing:-11.697387pt;}
.ws1{word-spacing:-10.848000pt;}
.ws2{word-spacing:-9.690880pt;}
.wsa{word-spacing:-7.810560pt;}
.ws0{word-spacing:-7.392000pt;}
.ws3{word-spacing:-7.136000pt;}
.ws6{word-spacing:0.000000pt;}
.ws20{word-spacing:153.839787pt;}
.ws1f{word-spacing:157.872640pt;}
.ws27{word-spacing:161.552640pt;}
.ws22{word-spacing:171.685973pt;}
.ws25{word-spacing:172.859307pt;}
.ws1d{word-spacing:228.880000pt;}
.ws24{word-spacing:247.280000pt;}
.ws26{word-spacing:292.880000pt;}
.ws11{word-spacing:587.636480pt;}
.ws10{word-spacing:764.619520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.120000pt;}
._5{width:2.080000pt;}
._6{width:3.040000pt;}
._3{width:4.272000pt;}
._4{width:6.016000pt;}
._a{width:6.921387pt;}
._7{width:7.920000pt;}
._8{width:9.056000pt;}
._f{width:10.511360pt;}
._13{width:12.933120pt;}
._10{width:14.395520pt;}
._11{width:15.553067pt;}
._12{width:16.638080pt;}
._d{width:18.220160pt;}
._b{width:19.176320pt;}
._c{width:20.079360pt;}
._e{width:21.349760pt;}
._9{width:22.400000pt;}
._1c{width:93.494187pt;}
._1b{width:120.426027pt;}
._1a{width:172.775680pt;}
._18{width:184.135680pt;}
._14{width:252.532907pt;}
._16{width:269.599573pt;}
._17{width:270.986240pt;}
._15{width:281.332907pt;}
._19{width:316.532907pt;}
._1{width:1361.685333pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:32.128000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:0.160000pt;}
.yd2{bottom:0.320000pt;}
.ycb{bottom:0.480000pt;}
.yc5{bottom:0.640000pt;}
.ybf{bottom:0.800000pt;}
.yca{bottom:0.960000pt;}
.yb7{bottom:1.120000pt;}
.yb9{bottom:1.600000pt;}
.ybe{bottom:1.760000pt;}
.yb8{bottom:2.080000pt;}
.y53{bottom:2.720000pt;}
.y60{bottom:2.880000pt;}
.y87{bottom:3.200000pt;}
.y39{bottom:3.520000pt;}
.y3b{bottom:3.680000pt;}
.yd7{bottom:4.000000pt;}
.yc9{bottom:4.160000pt;}
.y112{bottom:4.346667pt;}
.y150{bottom:4.386667pt;}
.yc4{bottom:4.480000pt;}
.y129{bottom:4.640000pt;}
.yd0{bottom:4.960000pt;}
.y14b{bottom:5.120000pt;}
.yde{bottom:5.280000pt;}
.y47{bottom:5.600000pt;}
.y95{bottom:6.240000pt;}
.y94{bottom:6.400000pt;}
.y75{bottom:6.720000pt;}
.yf8{bottom:7.040000pt;}
.yb4{bottom:7.200000pt;}
.y49{bottom:7.680000pt;}
.yaf{bottom:8.800000pt;}
.y45{bottom:11.880000pt;}
.ybd{bottom:12.000000pt;}
.yd6{bottom:13.920000pt;}
.yad{bottom:16.160000pt;}
.y116{bottom:17.693333pt;}
.y44{bottom:20.040000pt;}
.yc8{bottom:20.480000pt;}
.y14f{bottom:20.506667pt;}
.yc3{bottom:20.800000pt;}
.ycf{bottom:21.280000pt;}
.ydd{bottom:21.440000pt;}
.y110{bottom:22.080000pt;}
.yb3{bottom:23.360000pt;}
.y149{bottom:24.453333pt;}
.ybc{bottom:28.320000pt;}
.yd5{bottom:30.240000pt;}
.y106{bottom:34.786667pt;}
.yda{bottom:36.640000pt;}
.yc7{bottom:36.800000pt;}
.ye5{bottom:36.826667pt;}
.yc2{bottom:37.120000pt;}
.y143{bottom:37.146667pt;}
.yce{bottom:37.600000pt;}
.ydc{bottom:37.760000pt;}
.yb2{bottom:39.680000pt;}
.ybb{bottom:44.480000pt;}
.ye2{bottom:44.640000pt;}
.yd4{bottom:46.400000pt;}
.yd9{bottom:52.960000pt;}
.yc6{bottom:53.120000pt;}
.ye4{bottom:53.146667pt;}
.yc1{bottom:53.440000pt;}
.ycd{bottom:53.760000pt;}
.ydb{bottom:54.120000pt;}
.yb1{bottom:56.000000pt;}
.y117{bottom:58.533333pt;}
.y107{bottom:62.720000pt;}
.y118{bottom:86.653333pt;}
.y144{bottom:87.746667pt;}
.y108{bottom:90.653333pt;}
.y80{bottom:100.000000pt;}
.y36{bottom:100.160000pt;}
.y61{bottom:100.800000pt;}
.y141{bottom:107.200000pt;}
.y104{bottom:110.240000pt;}
.y17e{bottom:112.000000pt;}
.y7f{bottom:112.640000pt;}
.y119{bottom:114.746667pt;}
.ye6{bottom:115.360000pt;}
.y5f{bottom:116.160000pt;}
.y35{bottom:116.480000pt;}
.y109{bottom:118.586667pt;}
.y140{bottom:123.360000pt;}
.yab{bottom:124.960000pt;}
.y103{bottom:126.560000pt;}
.y17d{bottom:128.320000pt;}
.ydf{bottom:128.640000pt;}
.ye0{bottom:129.626667pt;}
.yb6{bottom:131.680000pt;}
.y34{bottom:132.800000pt;}
.y120{bottom:134.906667pt;}
.y145{bottom:138.306667pt;}
.y13f{bottom:139.680000pt;}
.y11a{bottom:142.880000pt;}
.y111{bottom:144.640000pt;}
.y10a{bottom:146.533333pt;}
.y14a{bottom:148.826667pt;}
.yaa{bottom:149.280000pt;}
.y102{bottom:150.880000pt;}
.y33{bottom:151.680000pt;}
.y13e{bottom:158.746667pt;}
.y17c{bottom:160.826667pt;}
.ya9{bottom:165.466667pt;}
.y101{bottom:167.066667pt;}
.y32{bottom:170.746667pt;}
.y11b{bottom:170.973333pt;}
.y10b{bottom:174.466667pt;}
.y17b{bottom:177.146667pt;}
.y13d{bottom:177.626667pt;}
.ya8{bottom:181.786667pt;}
.y100{bottom:183.386667pt;}
.y86{bottom:184.040000pt;}
.y146{bottom:188.893333pt;}
.y31{bottom:189.626667pt;}
.y17a{bottom:193.466667pt;}
.y13c{bottom:193.946667pt;}
.ye3{bottom:195.546667pt;}
.ya7{bottom:198.106667pt;}
.y11c{bottom:199.106667pt;}
.yff{bottom:199.706667pt;}
.y10c{bottom:202.400000pt;}
.y30{bottom:205.946667pt;}
.y179{bottom:209.626667pt;}
.y13b{bottom:210.106667pt;}
.ya6{bottom:214.266667pt;}
.yfe{bottom:216.026667pt;}
.y178{bottom:225.946667pt;}
.y11d{bottom:227.226667pt;}
.y13a{bottom:229.146667pt;}
.y10d{bottom:230.333333pt;}
.y2f{bottom:230.746667pt;}
.yfd{bottom:232.186667pt;}
.ya5{bottom:238.586667pt;}
.y147{bottom:239.493333pt;}
.y177{bottom:242.266667pt;}
.y139{bottom:248.026667pt;}
.yfc{bottom:248.506667pt;}
.ya4{bottom:254.906667pt;}
.y11e{bottom:255.333333pt;}
.y10e{bottom:258.266667pt;}
.y176{bottom:258.586667pt;}
.y2e{bottom:258.746667pt;}
.ye1{bottom:262.266667pt;}
.y138{bottom:264.346667pt;}
.y122{bottom:268.093333pt;}
.y152{bottom:269.986667pt;}
.ya3{bottom:271.226667pt;}
.y14d{bottom:272.573333pt;}
.y114{bottom:272.613333pt;}
.y5e{bottom:272.666667pt;}
.y175{bottom:274.746667pt;}
.y2d{bottom:275.066667pt;}
.y151{bottom:280.573333pt;}
.y137{bottom:280.666667pt;}
.y121{bottom:280.773333pt;}
.yfb{bottom:281.146667pt;}
.y11f{bottom:283.453333pt;}
.y113{bottom:283.706667pt;}
.y14c{bottom:285.986667pt;}
.y10f{bottom:286.213333pt;}
.ya2{bottom:287.386667pt;}
.y148{bottom:290.080000pt;}
.y174{bottom:291.066667pt;}
.y2c{bottom:291.386667pt;}
.y5d{bottom:291.546667pt;}
.y7e{bottom:291.706667pt;}
.y136{bottom:296.826667pt;}
.yfa{bottom:300.666667pt;}
.ya1{bottom:303.706667pt;}
.y173{bottom:307.386667pt;}
.y2b{bottom:307.546667pt;}
.y5c{bottom:307.866667pt;}
.y7d{bottom:310.586667pt;}
.yf9{bottom:321.466667pt;}
.y135{bottom:321.626667pt;}
.y172{bottom:323.546667pt;}
.y5b{bottom:324.186667pt;}
.y2a{bottom:326.586667pt;}
.y7c{bottom:326.906667pt;}
.ya0{bottom:328.506667pt;}
.yf7{bottom:337.786667pt;}
.y171{bottom:339.866667pt;}
.y105{bottom:340.960000pt;}
.y5a{bottom:343.066667pt;}
.y7b{bottom:343.226667pt;}
.y115{bottom:344.960000pt;}
.y29{bottom:345.466667pt;}
.y134{bottom:347.066667pt;}
.y170{bottom:356.186667pt;}
.y9f{bottom:356.506667pt;}
.y7a{bottom:359.386667pt;}
.y28{bottom:361.786667pt;}
.y59{bottom:361.946667pt;}
.y133{bottom:363.386667pt;}
.y16f{bottom:372.546667pt;}
.y9e{bottom:372.866667pt;}
.y79{bottom:375.746667pt;}
.y27{bottom:377.986667pt;}
.y132{bottom:379.586667pt;}
.y58{bottom:381.026667pt;}
.y16e{bottom:388.706667pt;}
.y9d{bottom:389.186667pt;}
.y78{bottom:392.066667pt;}
.y26{bottom:394.306667pt;}
.y57{bottom:397.186667pt;}
.yd1{bottom:397.506667pt;}
.y131{bottom:403.906667pt;}
.y16d{bottom:405.026667pt;}
.y9c{bottom:405.506667pt;}
.y25{bottom:410.626667pt;}
.y77{bottom:410.946667pt;}
.y56{bottom:413.506667pt;}
.y130{bottom:420.226667pt;}
.y16c{bottom:421.346667pt;}
.y9b{bottom:421.666667pt;}
.y76{bottom:427.266667pt;}
.y24{bottom:429.506667pt;}
.y55{bottom:432.546667pt;}
.y12f{bottom:436.546667pt;}
.y16b{bottom:437.666667pt;}
.y9a{bottom:437.986667pt;}
.y74{bottom:442.626667pt;}
.y23{bottom:448.546667pt;}
.y54{bottom:448.706667pt;}
.y12e{bottom:452.706667pt;}
.y16a{bottom:453.826667pt;}
.y99{bottom:454.306667pt;}
.y52{bottom:464.066667pt;}
.y22{bottom:464.706667pt;}
.yd8{bottom:465.186667pt;}
.y12d{bottom:469.026667pt;}
.y169{bottom:470.146667pt;}
.y98{bottom:470.466667pt;}
.y21{bottom:481.026667pt;}
.y168{bottom:486.466667pt;}
.y97{bottom:486.786667pt;}
.y12c{bottom:493.346667pt;}
.y20{bottom:497.346667pt;}
.y167{bottom:502.626667pt;}
.y96{bottom:505.826667pt;}
.y12b{bottom:512.226667pt;}
.y1f{bottom:513.666667pt;}
.y93{bottom:518.466667pt;}
.y166{bottom:518.946667pt;}
.y12a{bottom:524.866667pt;}
.y1e{bottom:529.826667pt;}
.yd3{bottom:532.066667pt;}
.y165{bottom:535.266667pt;}
.y128{bottom:541.186667pt;}
.y142{bottom:541.600000pt;}
.y92{bottom:543.586667pt;}
.y14e{bottom:545.920000pt;}
.y1d{bottom:546.146667pt;}
.y164{bottom:551.586667pt;}
.y91{bottom:562.626667pt;}
.y163{bottom:567.746667pt;}
.y73{bottom:568.866667pt;}
.y1c{bottom:570.946667pt;}
.y90{bottom:578.786667pt;}
.y162{bottom:584.066667pt;}
.y72{bottom:587.773333pt;}
.y8f{bottom:595.133333pt;}
.y1b{bottom:595.613333pt;}
.y161{bottom:600.413333pt;}
.ycc{bottom:602.173333pt;}
.y71{bottom:604.093333pt;}
.y8e{bottom:611.453333pt;}
.y51{bottom:612.893333pt;}
.y1a{bottom:616.733333pt;}
.y70{bottom:620.253333pt;}
.y8d{bottom:627.773333pt;}
.y50{bottom:631.773333pt;}
.y160{bottom:632.893333pt;}
.y6f{bottom:636.573333pt;}
.y19{bottom:637.693333pt;}
.y8c{bottom:643.933333pt;}
.y4f{bottom:648.093333pt;}
.y15f{bottom:649.213333pt;}
.yf6{bottom:649.533333pt;}
.y6e{bottom:655.613333pt;}
.y18{bottom:659.133333pt;}
.y8b{bottom:660.253333pt;}
.y4e{bottom:664.413333pt;}
.yb5{bottom:670.653333pt;}
.y6d{bottom:671.773333pt;}
.y17{bottom:673.693333pt;}
.yf5{bottom:673.853333pt;}
.y15e{bottom:674.013333pt;}
.y8a{bottom:679.133333pt;}
.y4d{bottom:680.573333pt;}
.y6b{bottom:687.133333pt;}
.yf4{bottom:690.013333pt;}
.y15d{bottom:694.013333pt;}
.y16{bottom:696.413333pt;}
.y89{bottom:698.173333pt;}
.y4c{bottom:699.613333pt;}
.yf3{bottom:706.333333pt;}
.y15{bottom:710.973333pt;}
.y15c{bottom:713.053333pt;}
.y88{bottom:714.493333pt;}
.y4b{bottom:718.493333pt;}
.yf2{bottom:722.653333pt;}
.y14{bottom:725.693333pt;}
.y85{bottom:727.133333pt;}
.y15b{bottom:729.213333pt;}
.y4a{bottom:731.773333pt;}
.yc0{bottom:737.533333pt;}
.yf1{bottom:738.973333pt;}
.y13{bottom:740.253333pt;}
.y48{bottom:752.733333pt;}
.y15a{bottom:754.013333pt;}
.y12{bottom:754.973333pt;}
.yf0{bottom:763.133333pt;}
.y46{bottom:773.693333pt;}
.y159{bottom:774.173333pt;}
.y11{bottom:777.693333pt;}
.yef{bottom:779.453333pt;}
.y10{bottom:792.253333pt;}
.y158{bottom:793.053333pt;}
.yee{bottom:795.773333pt;}
.y43{bottom:795.933333pt;}
.yba{bottom:805.093333pt;}
.yf{bottom:807.013333pt;}
.y157{bottom:809.413333pt;}
.yed{bottom:811.973333pt;}
.ye{bottom:821.573333pt;}
.y156{bottom:825.733333pt;}
.yec{bottom:828.293333pt;}
.y42{bottom:840.933333pt;}
.yd{bottom:844.613333pt;}
.y127{bottom:852.933333pt;}
.y41{bottom:859.813333pt;}
.yc{bottom:860.453333pt;}
.yeb{bottom:860.933333pt;}
.y6a{bottom:863.493333pt;}
.yb0{bottom:871.173333pt;}
.yb{bottom:875.173333pt;}
.yea{bottom:877.093333pt;}
.y40{bottom:878.693333pt;}
.y155{bottom:879.813333pt;}
.y69{bottom:882.533333pt;}
.ya{bottom:893.253333pt;}
.ye9{bottom:893.413333pt;}
.y3f{bottom:895.013333pt;}
.y154{bottom:896.133333pt;}
.y68{bottom:898.693333pt;}
.y9{bottom:904.453333pt;}
.y126{bottom:909.733333pt;}
.y3e{bottom:911.333333pt;}
.y153{bottom:912.293333pt;}
.y67{bottom:915.013333pt;}
.ye8{bottom:917.733333pt;}
.y8{bottom:922.533333pt;}
.y125{bottom:926.053333pt;}
.y3d{bottom:930.213333pt;}
.y66{bottom:931.333333pt;}
.y7{bottom:933.733333pt;}
.ye7{bottom:934.053333pt;}
.y124{bottom:942.213333pt;}
.y3c{bottom:943.493333pt;}
.yac{bottom:945.253333pt;}
.y65{bottom:947.653333pt;}
.y6{bottom:949.413333pt;}
.y84{bottom:950.213333pt;}
.y123{bottom:958.533333pt;}
.y64{bottom:963.813333pt;}
.y3a{bottom:964.453333pt;}
.y83{bottom:966.533333pt;}
.y5{bottom:966.693333pt;}
.yae{bottom:971.333333pt;}
.y4{bottom:979.493333pt;}
.y63{bottom:980.133333pt;}
.y82{bottom:982.853333pt;}
.y38{bottom:986.853333pt;}
.y62{bottom:996.453333pt;}
.y81{bottom:999.013333pt;}
.y3{bottom:1002.213333pt;}
.y37{bottom:1015.333333pt;}
.y2{bottom:1044.160000pt;}
.y1{bottom:1058.240000pt;}
.h2d{height:16.320000pt;}
.h1a{height:18.880000pt;}
.h1c{height:19.520000pt;}
.hd{height:20.160000pt;}
.he{height:20.320000pt;}
.h5{height:22.968750pt;}
.h1d{height:25.440000pt;}
.ha{height:30.778125pt;}
.h7{height:34.453125pt;}
.h9{height:34.851562pt;}
.hf{height:36.312500pt;}
.h2{height:36.408750pt;}
.h10{height:36.672000pt;}
.hc{height:38.128125pt;}
.h8{height:38.569063pt;}
.h33{height:38.715000pt;}
.h12{height:42.262500pt;}
.hb{height:42.751250pt;}
.h30{height:44.722500pt;}
.h31{height:44.856000pt;}
.h1b{height:45.600000pt;}
.h23{height:45.937500pt;}
.h3{height:49.336436pt;}
.h32{height:50.062500pt;}
.h6{height:51.898125pt;}
.h4{height:54.368437pt;}
.h19{height:54.598989pt;}
.h2e{height:55.402500pt;}
.h20{height:65.440000pt;}
.h29{height:65.600000pt;}
.h15{height:65.781915pt;}
.h2a{height:66.080000pt;}
.h22{height:66.240000pt;}
.h2b{height:66.272000pt;}
.h26{height:66.880000pt;}
.h21{height:66.912000pt;}
.h24{height:67.840000pt;}
.h27{height:68.352000pt;}
.h25{height:69.472000pt;}
.h1e{height:72.000000pt;}
.h35{height:95.549167pt;}
.h16{height:119.840000pt;}
.h11{height:142.426667pt;}
.h13{height:150.106667pt;}
.h14{height:170.106667pt;}
.h17{height:172.666667pt;}
.h18{height:197.786667pt;}
.h28{height:268.226667pt;}
.h1f{height:272.506667pt;}
.h34{height:292.960000pt;}
.h37{height:295.360000pt;}
.h2f{height:296.960000pt;}
.h36{height:299.680000pt;}
.h2c{height:300.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:34.720000pt;}
.wd{width:34.752000pt;}
.w20{width:37.920000pt;}
.w4{width:38.880000pt;}
.w9{width:38.912000pt;}
.w6{width:39.072000pt;}
.wc{width:42.080000pt;}
.w5{width:45.760000pt;}
.w18{width:49.120000pt;}
.w8{width:53.120000pt;}
.w7{width:59.840000pt;}
.w3{width:64.512000pt;}
.wf{width:77.472000pt;}
.w1f{width:82.880000pt;}
.wa{width:86.880000pt;}
.w1c{width:103.872000pt;}
.w1e{width:104.192000pt;}
.w1b{width:105.792000pt;}
.w1d{width:113.440000pt;}
.w19{width:120.800000pt;}
.wb{width:146.906667pt;}
.w13{width:176.826667pt;}
.w11{width:196.346667pt;}
.w12{width:220.546667pt;}
.w23{width:270.240000pt;}
.w28{width:272.960000pt;}
.w16{width:273.666667pt;}
.w21{width:279.546667pt;}
.w27{width:281.280000pt;}
.w26{width:286.306667pt;}
.w24{width:291.840000pt;}
.w25{width:294.426667pt;}
.w22{width:301.186667pt;}
.w15{width:307.706667pt;}
.w14{width:330.466667pt;}
.w1a{width:427.293333pt;}
.w17{width:527.133333pt;}
.w10{width:576.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.520000pt;}
.x20{left:9.120000pt;}
.xc{left:10.880000pt;}
.x44{left:12.160000pt;}
.x43{left:13.274667pt;}
.x12{left:14.880000pt;}
.xe{left:15.840000pt;}
.x18{left:17.760000pt;}
.x1f{left:20.160000pt;}
.x16{left:22.560000pt;}
.x14{left:24.160000pt;}
.x37{left:27.200000pt;}
.x3a{left:29.914667pt;}
.x45{left:31.674667pt;}
.x24{left:35.360000pt;}
.x42{left:38.760000pt;}
.x5a{left:39.680000pt;}
.x3e{left:41.920000pt;}
.x3c{left:42.920000pt;}
.x40{left:46.720000pt;}
.x1e{left:53.626667pt;}
.x5d{left:60.706667pt;}
.x48{left:65.434667pt;}
.x54{left:71.066667pt;}
.x49{left:75.546667pt;}
.x4b{left:76.960000pt;}
.x58{left:83.613333pt;}
.x4e{left:87.173333pt;}
.x51{left:95.813333pt;}
.x2{left:104.031988pt;}
.x25{left:106.272000pt;}
.x5b{left:110.400000pt;}
.x7{left:113.471988pt;}
.x38{left:116.191988pt;}
.x34{left:117.951988pt;}
.x4c{left:120.573333pt;}
.x39{left:122.912000pt;}
.x56{left:127.680000pt;}
.x1{left:128.831988pt;}
.x3{left:129.791988pt;}
.x55{left:132.511988pt;}
.x5c{left:136.666667pt;}
.x4d{left:138.053333pt;}
.x57{left:140.480000pt;}
.x9{left:151.226655pt;}
.x4a{left:154.586655pt;}
.x5e{left:161.466655pt;}
.x2d{left:176.346655pt;}
.x28{left:189.146667pt;}
.x2b{left:198.266667pt;}
.xb{left:205.146667pt;}
.x6{left:223.066655pt;}
.x2e{left:231.706667pt;}
.x3b{left:243.706667pt;}
.x4{left:249.186655pt;}
.xa{left:253.346655pt;}
.x50{left:255.866667pt;}
.x33{left:269.186667pt;}
.xd{left:270.306667pt;}
.x46{left:277.314667pt;}
.x1c{left:279.106667pt;}
.x26{left:286.946655pt;}
.x52{left:288.354667pt;}
.x27{left:298.786667pt;}
.x30{left:301.826655pt;}
.x31{left:303.554667pt;}
.xf{left:309.826667pt;}
.x2a{left:317.346655pt;}
.x1b{left:318.946655pt;}
.x2f{left:323.106667pt;}
.x3d{left:349.506667pt;}
.x10{left:356.226667pt;}
.x35{left:358.306655pt;}
.x1d{left:366.626667pt;}
.x8{left:368.066655pt;}
.x47{left:386.466667pt;}
.x4f{left:393.280000pt;}
.x11{left:395.746667pt;}
.x1a{left:396.866655pt;}
.x53{left:401.346667pt;}
.x59{left:408.160000pt;}
.x21{left:409.346667pt;}
.x32{left:413.986667pt;}
.x2c{left:418.813333pt;}
.x13{left:435.453333pt;}
.x22{left:444.733333pt;}
.x29{left:448.381333pt;}
.x3f{left:453.373333pt;}
.x23{left:480.093333pt;}
.x15{left:495.933333pt;}
.x17{left:549.693333pt;}
.x41{left:566.813333pt;}
.x36{left:633.413333pt;}
.x5{left:680.453322pt;}
}




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