
    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_5d4f6edb2dd346c032cd609c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_08d2e72abd8da5483439a984.woff')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_39ffa22742aeb18a0657a61e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_9f3c8a0f5fd08b5cf1b5f379.woff')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_f312dc35c83c1ae15539c445.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_810fa5dea8afa33133c0434e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v4{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.v5{vertical-align:13.680000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.vd{vertical-align:33.300000px;}
.vc{vertical-align:38.880000px;}
.vb{vertical-align:40.320000px;}
.v9{vertical-align:44.640000px;}
.v6{vertical-align:50.400000px;}
.v8{vertical-align:53.280000px;}
.v7{vertical-align:58.320000px;}
.ls2c{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.106800px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.023040px;}
.ls34{letter-spacing:0.033120px;}
.ls2{letter-spacing:0.053280px;}
.ls30{letter-spacing:0.100800px;}
.ls25{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.148800px;}
.lsf{letter-spacing:0.152400px;}
.ls3b{letter-spacing:0.152640px;}
.lsc{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.206640px;}
.ls1{letter-spacing:0.259920px;}
.ls31{letter-spacing:0.262080px;}
.ls35{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.601920px;}
.ls3a{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.309040px;}
.ls1d{letter-spacing:2.347200px;}
.ls2d{letter-spacing:2.632320px;}
.ls32{letter-spacing:2.784240px;}
.ls2e{letter-spacing:2.832480px;}
.ls37{letter-spacing:2.891520px;}
.ls2f{letter-spacing:2.947440px;}
.ls18{letter-spacing:2.970000px;}
.ls19{letter-spacing:3.114720px;}
.ls1f{letter-spacing:3.600000px;}
.ls2a{letter-spacing:3.744000px;}
.ls33{letter-spacing:3.972240px;}
.ls21{letter-spacing:6.785280px;}
.ls1b{letter-spacing:7.557840px;}
.ls29{letter-spacing:8.064000px;}
.ls15{letter-spacing:10.635840px;}
.ls17{letter-spacing:11.355840px;}
.ls13{letter-spacing:14.744640px;}
.ls11{letter-spacing:18.198720px;}
.ls12{letter-spacing:18.234720px;}
.ls10{letter-spacing:20.309040px;}
.ls20{letter-spacing:20.465280px;}
.ls38{letter-spacing:21.600000px;}
.ls39{letter-spacing:23.040000px;}
.ls1c{letter-spacing:25.450560px;}
.ls27{letter-spacing:34.865280px;}
.ls24{letter-spacing:36.305280px;}
.ls28{letter-spacing:38.465280px;}
.ls22{letter-spacing:39.905280px;}
.ls16{letter-spacing:41.298240px;}
.ls23{letter-spacing:43.505280px;}
.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;}
}
.ws16{word-spacing:-18.000000px;}
.ws17{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.712400px;}
.ws14{word-spacing:-16.669200px;}
.ws12{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.450800px;}
.ws1a{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.246600px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.932800px;}
.ws9{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.760000px;}
.wse{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.572800px;}
.ws4{word-spacing:-13.860000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws13{word-spacing:-10.761600px;}
.ws11{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
.wsf{word-spacing:4.838400px;}
.ws19{word-spacing:9.318240px;}
.ws18{word-spacing:10.118160px;}
._28{margin-left:-16.200000px;}
._25{margin-left:-15.089280px;}
._3a{margin-left:-12.960000px;}
._26{margin-left:-8.280000px;}
._17{margin-left:-5.365440px;}
._11{margin-left:-3.742560px;}
._4{margin-left:-2.464080px;}
._1{margin-left:-1.254240px;}
._0{width:1.092000px;}
._5{width:2.164320px;}
._9{width:3.254160px;}
._8{width:4.362480px;}
._e{width:5.378400px;}
._d{width:6.497520px;}
._12{width:7.611360px;}
._c{width:8.708640px;}
._b{width:10.338480px;}
._a{width:11.653200px;}
._2d{width:13.181760px;}
._24{width:14.198400px;}
._19{width:15.262320px;}
._10{width:16.792560px;}
._f{width:17.928000px;}
._18{width:19.052640px;}
._7{width:20.182560px;}
._6{width:21.377760px;}
._1f{width:23.006400px;}
._1d{width:24.243840px;}
._1e{width:25.423920px;}
._23{width:26.480640px;}
._14{width:27.688320px;}
._20{width:29.079360px;}
._1a{width:30.130560px;}
._15{width:31.530240px;}
._16{width:33.199440px;}
._38{width:34.418400px;}
._1c{width:35.451600px;}
._1b{width:37.090080px;}
._21{width:39.372480px;}
._22{width:40.402080px;}
._37{width:42.526080px;}
._2e{width:45.195840px;}
._2f{width:46.893600px;}
._32{width:51.336000px;}
._27{width:54.204000px;}
._35{width:64.120320px;}
._2a{width:78.945120px;}
._2c{width:82.613280px;}
._39{width:83.859840px;}
._29{width:95.757600px;}
._30{width:97.790400px;}
._31{width:99.421920px;}
._36{width:108.236160px;}
._33{width:118.656000px;}
._34{width:119.695680px;}
._13{width:166.556880px;}
._2b{width:199.440000px;}
._3{width:366.060000px;}
._2{width:1149.448800px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.600000px;}
.y9a{bottom:3.780000px;}
.y107{bottom:3.810000px;}
.y162{bottom:3.960000px;}
.y9c{bottom:4.140000px;}
.y96{bottom:4.320000px;}
.y98{bottom:4.680000px;}
.ybc{bottom:5.400000px;}
.yba{bottom:5.580000px;}
.yb7{bottom:5.760000px;}
.yb9{bottom:5.940000px;}
.y2{bottom:6.840000px;}
.y163{bottom:10.980000px;}
.y14a{bottom:11.160000px;}
.y138{bottom:12.600000px;}
.y143{bottom:12.960000px;}
.yeb{bottom:13.140000px;}
.y173{bottom:13.500000px;}
.y12a{bottom:13.680000px;}
.y142{bottom:14.220000px;}
.y15c{bottom:22.320000px;}
.y101{bottom:22.500000px;}
.yf5{bottom:22.674000px;}
.yd0{bottom:22.680000px;}
.y106{bottom:22.710000px;}
.yec{bottom:22.725000px;}
.y15b{bottom:23.580000px;}
.yb6{bottom:24.660000px;}
.y92{bottom:29.160000px;}
.y160{bottom:40.854000px;}
.y147{bottom:40.890000px;}
.y15f{bottom:41.034000px;}
.y146{bottom:41.070000px;}
.yf4{bottom:41.574000px;}
.yda{bottom:41.580000px;}
.y100{bottom:41.625000px;}
.ycf{bottom:41.760000px;}
.y105{bottom:41.790000px;}
.y4{bottom:43.380000px;}
.y41{bottom:44.820000px;}
.yff{bottom:60.525000px;}
.yf3{bottom:60.654000px;}
.yce{bottom:60.660000px;}
.yf8{bottom:60.690000px;}
.y40{bottom:64.080000px;}
.yf2{bottom:79.554000px;}
.yd9{bottom:79.560000px;}
.y104{bottom:79.590000px;}
.yfe{bottom:79.605000px;}
.ye3{bottom:79.740000px;}
.yd8{bottom:98.460000px;}
.yfd{bottom:98.505000px;}
.yf1{bottom:98.634000px;}
.ye2{bottom:98.640000px;}
.y103{bottom:98.670000px;}
.y15e{bottom:113.976000px;}
.y77{bottom:114.876000px;}
.yfc{bottom:117.405000px;}
.yf0{bottom:117.534000px;}
.yd7{bottom:117.540000px;}
.y3f{bottom:120.096000px;}
.yf6{bottom:123.336000px;}
.y90{bottom:123.516000px;}
.y129{bottom:125.496000px;}
.ycc{bottom:129.096000px;}
.y11a{bottom:129.276000px;}
.y76{bottom:133.776000px;}
.yef{bottom:136.434000px;}
.yfb{bottom:136.485000px;}
.ye1{bottom:136.650000px;}
.y3e{bottom:138.996000px;}
.y8f{bottom:142.416000px;}
.yed{bottom:143.136000px;}
.y12b{bottom:145.296000px;}
.ycb{bottom:147.996000px;}
.y119{bottom:148.356000px;}
.y75{bottom:152.850000px;}
.yee{bottom:155.514000px;}
.ye0{bottom:155.550000px;}
.y3d{bottom:158.070000px;}
.y8e{bottom:161.490000px;}
.yca{bottom:167.070000px;}
.y118{bottom:167.250000px;}
.y161{bottom:168.330000px;}
.y128{bottom:169.050000px;}
.y74{bottom:171.750000px;}
.ydf{bottom:174.630000px;}
.y3c{bottom:176.970000px;}
.y8d{bottom:180.390000px;}
.yc9{bottom:185.970000px;}
.y117{bottom:186.330000px;}
.y127{bottom:187.950000px;}
.y15d{bottom:188.490000px;}
.y73{bottom:190.830000px;}
.yde{bottom:193.530000px;}
.y3b{bottom:195.870000px;}
.y8c{bottom:199.470000px;}
.yc8{bottom:205.050000px;}
.y116{bottom:205.230000px;}
.y126{bottom:206.850000px;}
.y15a{bottom:208.290000px;}
.y72{bottom:209.730000px;}
.ydd{bottom:212.430000px;}
.y3a{bottom:214.950000px;}
.y8b{bottom:218.370000px;}
.yc7{bottom:223.950000px;}
.y115{bottom:224.130000px;}
.y125{bottom:225.930000px;}
.y71{bottom:228.630000px;}
.ydc{bottom:231.510000px;}
.y39{bottom:233.850000px;}
.y8a{bottom:237.630000px;}
.yc6{bottom:242.850000px;}
.y114{bottom:243.210000px;}
.y124{bottom:244.830000px;}
.y70{bottom:247.710000px;}
.y38{bottom:252.930000px;}
.y89{bottom:257.070000px;}
.yc5{bottom:261.930000px;}
.y113{bottom:262.110000px;}
.y123{bottom:263.730000px;}
.y6f{bottom:266.610000px;}
.y159{bottom:269.490000px;}
.y37{bottom:270.750000px;}
.y18f{bottom:271.830000px;}
.y88{bottom:276.330000px;}
.yc4{bottom:280.830000px;}
.y112{bottom:281.190000px;}
.y122{bottom:284.250000px;}
.y36{bottom:284.430000px;}
.y6e{bottom:285.690000px;}
.y158{bottom:288.570000px;}
.y18e{bottom:290.730000px;}
.y87{bottom:295.770000px;}
.y35{bottom:298.290000px;}
.y111{bottom:300.090000px;}
.yc3{bottom:300.270000px;}
.y121{bottom:303.150000px;}
.y6d{bottom:304.590000px;}
.y157{bottom:307.470000px;}
.y18d{bottom:309.810000px;}
.y34{bottom:312.870000px;}
.yea{bottom:314.670000px;}
.y86{bottom:315.030000px;}
.y110{bottom:318.990000px;}
.yc2{bottom:319.530000px;}
.y120{bottom:322.230000px;}
.y6c{bottom:323.490000px;}
.y156{bottom:326.550000px;}
.y18c{bottom:328.710000px;}
.y33{bottom:329.970000px;}
.y85{bottom:334.470000px;}
.y10f{bottom:338.115000px;}
.yc1{bottom:338.655000px;}
.y11f{bottom:341.175000px;}
.y6b{bottom:342.615000px;}
.y155{bottom:345.495000px;}
.y32{bottom:347.295000px;}
.y18b{bottom:347.835000px;}
.y84{bottom:353.415000px;}
.ye9{bottom:357.015000px;}
.yc0{bottom:357.915000px;}
.y11e{bottom:360.255000px;}
.y6a{bottom:361.515000px;}
.y31{bottom:364.575000px;}
.y18a{bottom:366.735000px;}
.y83{bottom:368.715000px;}
.ye8{bottom:376.095000px;}
.ybf{bottom:377.355000px;}
.y11d{bottom:379.155000px;}
.y82{bottom:379.875000px;}
.y69{bottom:380.595000px;}
.y154{bottom:381.315000px;}
.y30{bottom:381.855000px;}
.y189{bottom:385.815000px;}
.ye7{bottom:394.995000px;}
.ybe{bottom:396.615000px;}
.y11c{bottom:398.055000px;}
.y2f{bottom:399.135000px;}
.y68{bottom:399.495000px;}
.y153{bottom:400.935000px;}
.y188{bottom:404.715000px;}
.y81{bottom:410.655000px;}
.ye6{bottom:414.075000px;}
.ybd{bottom:415.515000px;}
.y2e{bottom:416.415000px;}
.y11b{bottom:417.135000px;}
.y67{bottom:418.575000px;}
.y187{bottom:423.615000px;}
.y80{bottom:429.735000px;}
.ybb{bottom:431.715000px;}
.ye5{bottom:432.975000px;}
.y2d{bottom:433.515000px;}
.y66{bottom:437.475000px;}
.y186{bottom:442.695000px;}
.y152{bottom:443.415000px;}
.y7f{bottom:448.635000px;}
.y2c{bottom:450.795000px;}
.ye4{bottom:451.875000px;}
.yb8{bottom:453.495000px;}
.y65{bottom:456.375000px;}
.y185{bottom:461.955000px;}
.y151{bottom:462.315000px;}
.y7e{bottom:467.535000px;}
.ydb{bottom:467.895000px;}
.y2b{bottom:468.075000px;}
.y10e{bottom:470.955000px;}
.y64{bottom:475.455000px;}
.y150{bottom:481.395000px;}
.y2a{bottom:485.355000px;}
.y7d{bottom:486.255000px;}
.y10d{bottom:489.855000px;}
.y63{bottom:494.355000px;}
.y7c{bottom:497.415000px;}
.y14f{bottom:500.295000px;}
.y29{bottom:502.635000px;}
.y10c{bottom:508.935000px;}
.y62{bottom:513.435000px;}
.y184{bottom:519.195000px;}
.y28{bottom:519.735000px;}
.yb5{bottom:519.915000px;}
.y14e{bottom:520.635000px;}
.y7b{bottom:526.755000px;}
.y10b{bottom:527.835000px;}
.y61{bottom:532.335000px;}
.y27{bottom:537.015000px;}
.y7a{bottom:537.915000px;}
.y183{bottom:538.275000px;}
.yb4{bottom:538.815000px;}
.y14d{bottom:539.715000px;}
.y10a{bottom:546.735000px;}
.y60{bottom:551.235000px;}
.y26{bottom:554.295000px;}
.y182{bottom:557.175000px;}
.yb3{bottom:557.895000px;}
.y14c{bottom:561.315000px;}
.y109{bottom:565.815000px;}
.y79{bottom:567.255000px;}
.y5f{bottom:570.315000px;}
.y25{bottom:571.575000px;}
.y181{bottom:574.995000px;}
.yb2{bottom:576.795000px;}
.y78{bottom:578.415000px;}
.y14b{bottom:580.575000px;}
.y108{bottom:584.715000px;}
.y180{bottom:586.155000px;}
.y24{bottom:588.855000px;}
.y5e{bottom:589.215000px;}
.yb1{bottom:595.875000px;}
.y145{bottom:596.775000px;}
.y102{bottom:600.735000px;}
.y23{bottom:606.165000px;}
.y5d{bottom:608.325000px;}
.yb0{bottom:614.805000px;}
.y17f{bottom:616.245000px;}
.y149{bottom:616.785000px;}
.y22{bottom:623.265000px;}
.y5c{bottom:627.225000px;}
.yaf{bottom:630.825000px;}
.y17e{bottom:635.325000px;}
.y21{bottom:640.545000px;}
.y5b{bottom:646.125000px;}
.yae{bottom:650.985000px;}
.y148{bottom:651.525000px;}
.y17d{bottom:654.225000px;}
.y20{bottom:657.825000px;}
.y5a{bottom:665.205000px;}
.yad{bottom:670.785000px;}
.y144{bottom:671.505000px;}
.y17c{bottom:673.305000px;}
.y1f{bottom:675.105000px;}
.y59{bottom:684.105000px;}
.y141{bottom:691.305000px;}
.yac{bottom:691.485000px;}
.y17b{bottom:692.205000px;}
.y1e{bottom:692.385000px;}
.y58{bottom:703.185000px;}
.y1d{bottom:709.665000px;}
.y17a{bottom:711.105000px;}
.yab{bottom:711.825000px;}
.yd6{bottom:715.425000px;}
.y57{bottom:722.085000px;}
.y1c{bottom:726.765000px;}
.y179{bottom:730.185000px;}
.yaa{bottom:731.445000px;}
.y140{bottom:733.605000px;}
.y56{bottom:740.985000px;}
.y1b{bottom:744.045000px;}
.y178{bottom:746.205000px;}
.y13f{bottom:752.685000px;}
.ya9{bottom:754.845000px;}
.y55{bottom:760.065000px;}
.y1a{bottom:761.325000px;}
.y177{bottom:765.825000px;}
.y13e{bottom:771.585000px;}
.ya8{bottom:773.925000px;}
.y19{bottom:778.605000px;}
.y54{bottom:778.965000px;}
.y176{bottom:785.625000px;}
.y13d{bottom:790.665000px;}
.ya7{bottom:792.825000px;}
.y18{bottom:795.885000px;}
.y53{bottom:798.045000px;}
.y175{bottom:809.025000px;}
.y13c{bottom:809.565000px;}
.ya6{bottom:811.905000px;}
.y17{bottom:812.985000px;}
.y52{bottom:816.945000px;}
.y174{bottom:827.925000px;}
.y13b{bottom:828.465000px;}
.yfa{bottom:830.085000px;}
.y16{bottom:830.265000px;}
.ya5{bottom:830.805000px;}
.y51{bottom:835.845000px;}
.y172{bottom:844.125000px;}
.y15{bottom:847.545000px;}
.yd5{bottom:848.985000px;}
.ya4{bottom:849.705000px;}
.y50{bottom:854.925000px;}
.y13a{bottom:863.565000px;}
.y171{bottom:863.745000px;}
.y14{bottom:864.825000px;}
.ya3{bottom:865.005000px;}
.yd4{bottom:872.430000px;}
.ya2{bottom:873.330000px;}
.y4f{bottom:873.870000px;}
.y13{bottom:882.150000px;}
.y170{bottom:883.590000px;}
.y139{bottom:883.770000px;}
.yd3{bottom:891.330000px;}
.y4e{bottom:892.950000px;}
.ya1{bottom:897.990000px;}
.y12{bottom:899.430000px;}
.y137{bottom:903.750000px;}
.y16f{bottom:906.990000px;}
.yd2{bottom:910.410000px;}
.y4d{bottom:911.850000px;}
.y11{bottom:916.530000px;}
.ya0{bottom:917.070000px;}
.y16e{bottom:925.890000px;}
.yd1{bottom:929.310000px;}
.y4c{bottom:930.930000px;}
.y10{bottom:933.810000px;}
.y9f{bottom:935.970000px;}
.y16d{bottom:944.970000px;}
.ycd{bottom:945.330000px;}
.y136{bottom:946.230000px;}
.y4b{bottom:949.830000px;}
.y9e{bottom:955.050000px;}
.yf{bottom:956.310000px;}
.y16c{bottom:963.870000px;}
.y135{bottom:965.130000px;}
.ye{bottom:968.730000px;}
.y9d{bottom:973.950000px;}
.yf9{bottom:982.590000px;}
.y16b{bottom:982.770000px;}
.y134{bottom:984.030000px;}
.yd{bottom:987.270000px;}
.y4a{bottom:987.810000px;}
.y9b{bottom:989.970000px;}
.y16a{bottom:1001.850000px;}
.y133{bottom:1004.550000px;}
.yc{bottom:1005.450000px;}
.y49{bottom:1006.710000px;}
.y99{bottom:1010.130000px;}
.y169{bottom:1020.750000px;}
.y132{bottom:1023.450000px;}
.y48{bottom:1025.790000px;}
.yb{bottom:1027.950000px;}
.y97{bottom:1029.930000px;}
.y168{bottom:1039.830000px;}
.y131{bottom:1042.350000px;}
.y47{bottom:1044.690000px;}
.ya{bottom:1050.270000px;}
.y95{bottom:1050.630000px;}
.y167{bottom:1058.730000px;}
.y130{bottom:1061.430000px;}
.y46{bottom:1063.590000px;}
.y93{bottom:1070.970000px;}
.y9{bottom:1071.870000px;}
.y166{bottom:1077.630000px;}
.yf7{bottom:1078.170000px;}
.y12f{bottom:1080.330000px;}
.y45{bottom:1082.670000px;}
.y8{bottom:1089.150000px;}
.y91{bottom:1090.590000px;}
.y12e{bottom:1099.410000px;}
.y44{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.y12d{bottom:1115.430000px;}
.y165{bottom:1118.670000px;}
.y43{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.y164{bottom:1134.690000px;}
.y12c{bottom:1135.050000px;}
.y42{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1165.500000px;}
.y1{bottom:1182.240000px;}
.h19{height:18.900000px;}
.h1c{height:19.080000px;}
.h31{height:19.116000px;}
.h30{height:19.260000px;}
.h34{height:19.296000px;}
.h1d{height:19.440000px;}
.h3a{height:19.476000px;}
.h1a{height:19.620000px;}
.h1b{height:19.980000px;}
.h22{height:21.060000px;}
.h21{height:21.240000px;}
.h2{height:26.640000px;}
.ha{height:27.147656px;}
.he{height:33.683203px;}
.h39{height:33.840000px;}
.h36{height:34.020000px;}
.hd{height:34.036523px;}
.h5{height:36.768867px;}
.h32{height:37.980000px;}
.h27{height:38.016000px;}
.h3c{height:38.700000px;}
.h3b{height:38.736000px;}
.h2f{height:39.060000px;}
.h20{height:39.960000px;}
.h8{height:41.726953px;}
.h6{height:42.164648px;}
.h18{height:44.460000px;}
.hc{height:45.549492px;}
.hf{height:46.251562px;}
.h10{height:46.736719px;}
.hb{height:48.027656px;}
.h24{height:48.224531px;}
.h4{height:50.273438px;}
.h3{height:50.414062px;}
.h11{height:50.488594px;}
.h2e{height:52.417969px;}
.h9{height:53.224453px;}
.h7{height:54.864844px;}
.h37{height:56.880000px;}
.h23{height:75.960000px;}
.h29{height:75.996000px;}
.h16{height:82.153125px;}
.h33{height:84.308906px;}
.h17{height:85.033125px;}
.h15{height:90.891562px;}
.h38{height:93.420000px;}
.h35{height:93.816000px;}
.h2a{height:94.860000px;}
.h1e{height:100.148906px;}
.h2c{height:113.760000px;}
.h2d{height:113.976000px;}
.h1f{height:115.453125px;}
.h13{height:126.793125px;}
.h12{height:132.553125px;}
.h25{height:132.840000px;}
.h14{height:135.433125px;}
.h2b{height:151.770000px;}
.h28{height:170.820000px;}
.h26{height:246.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:36.000000px;}
.w8{width:37.980000px;}
.w2{width:62.100000px;}
.w10{width:77.760000px;}
.w26{width:90.360000px;}
.w29{width:101.736000px;}
.w20{width:102.096000px;}
.w22{width:102.996000px;}
.w1f{width:109.080000px;}
.w28{width:109.980000px;}
.w2f{width:110.340000px;}
.w2e{width:110.556000px;}
.w2a{width:111.420000px;}
.w21{width:113.040000px;}
.w2d{width:113.580000px;}
.w27{width:118.116000px;}
.w1e{width:121.896000px;}
.w1d{width:122.580000px;}
.we{width:124.416000px;}
.w25{width:127.476000px;}
.w11{width:129.276000px;}
.wd{width:136.116000px;}
.w30{width:145.476000px;}
.wc{width:149.040000px;}
.wb{width:149.076000px;}
.w31{width:152.820000px;}
.w32{width:152.850000px;}
.w33{width:153.030000px;}
.w13{width:159.480000px;}
.w16{width:170.130000px;}
.w1b{width:180.750000px;}
.w2c{width:197.130000px;}
.w7{width:204.330000px;}
.w9{width:207.030000px;}
.w14{width:230.835000px;}
.w15{width:237.090000px;}
.w23{width:241.770000px;}
.w1c{width:244.470000px;}
.w2b{width:244.650000px;}
.w1a{width:245.730000px;}
.w24{width:255.270000px;}
.w18{width:256.350000px;}
.w17{width:287.130000px;}
.w19{width:297.750000px;}
.w6{width:321.015000px;}
.wa{width:412.095000px;}
.w12{width:443.955000px;}
.wf{width:539.565000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-40.896000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x38{left:19.260000px;}
.x3f{left:29.340000px;}
.x36{left:32.040000px;}
.x41{left:33.480000px;}
.x25{left:35.100000px;}
.x35{left:36.540000px;}
.x24{left:38.520000px;}
.x15{left:61.740000px;}
.x20{left:76.185000px;}
.x43{left:81.174000px;}
.x1f{left:88.740000px;}
.x1{left:108.036000px;}
.x6{left:109.115987px;}
.x3b{left:110.154000px;}
.x17{left:114.885000px;}
.x28{left:116.136000px;}
.x18{left:117.216000px;}
.x26{left:120.996000px;}
.x30{left:135.360000px;}
.x2e{left:148.896000px;}
.x49{left:150.509987px;}
.x19{left:155.910000px;}
.xd{left:161.129987px;}
.x13{left:165.090000px;}
.x1b{left:167.250000px;}
.x3{left:170.130000px;}
.x23{left:176.790000px;}
.x27{left:198.750000px;}
.x14{left:201.810000px;}
.x12{left:215.129987px;}
.x32{left:225.210000px;}
.x44{left:260.850000px;}
.x29{left:275.610000px;}
.x2b{left:286.275000px;}
.x3e{left:305.175000px;}
.x1c{left:316.335000px;}
.xa{left:327.134987px;}
.xb{left:330.374987px;}
.x7{left:344.594987px;}
.x1a{left:363.675000px;}
.x22{left:365.474987px;}
.x9{left:369.254987px;}
.x37{left:371.415000px;}
.xe{left:378.614987px;}
.x48{left:383.654987px;}
.x21{left:387.434987px;}
.x45{left:413.715000px;}
.x10{left:415.874987px;}
.xc{left:418.574987px;}
.xf{left:426.854987px;}
.x3c{left:438.375000px;}
.x33{left:440.355000px;}
.x5{left:446.474987px;}
.x11{left:457.634987px;}
.x1d{left:465.375000px;}
.x8{left:473.144987px;}
.x47{left:474.764987px;}
.x2f{left:499.785000px;}
.x2a{left:506.445000px;}
.x16{left:523.725000px;}
.x40{left:529.305000px;}
.x3d{left:540.465000px;}
.x34{left:543.345000px;}
.x46{left:566.565000px;}
.x2c{left:573.405000px;}
.x2d{left:584.025000px;}
.x39{left:589.245000px;}
.x1e{left:601.485000px;}
.x31{left:622.365000px;}
.x42{left:639.645000px;}
.x3a{left:707.370000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.v5{vertical-align:12.160000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.vd{vertical-align:29.600000pt;}
.vc{vertical-align:34.560000pt;}
.vb{vertical-align:35.840000pt;}
.v9{vertical-align:39.680000pt;}
.v6{vertical-align:44.800000pt;}
.v8{vertical-align:47.360000pt;}
.v7{vertical-align:51.840000pt;}
.ls2c{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.020480pt;}
.ls34{letter-spacing:0.029440pt;}
.ls2{letter-spacing:0.047360pt;}
.ls30{letter-spacing:0.089600pt;}
.ls25{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.132267pt;}
.lsf{letter-spacing:0.135467pt;}
.ls3b{letter-spacing:0.135680pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.183680pt;}
.ls1{letter-spacing:0.231040pt;}
.ls31{letter-spacing:0.232960pt;}
.ls35{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.535040pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls36{letter-spacing:2.052480pt;}
.ls1d{letter-spacing:2.086400pt;}
.ls2d{letter-spacing:2.339840pt;}
.ls32{letter-spacing:2.474880pt;}
.ls2e{letter-spacing:2.517760pt;}
.ls37{letter-spacing:2.570240pt;}
.ls2f{letter-spacing:2.619947pt;}
.ls18{letter-spacing:2.640000pt;}
.ls19{letter-spacing:2.768640pt;}
.ls1f{letter-spacing:3.200000pt;}
.ls2a{letter-spacing:3.328000pt;}
.ls33{letter-spacing:3.530880pt;}
.ls21{letter-spacing:6.031360pt;}
.ls1b{letter-spacing:6.718080pt;}
.ls29{letter-spacing:7.168000pt;}
.ls15{letter-spacing:9.454080pt;}
.ls17{letter-spacing:10.094080pt;}
.ls13{letter-spacing:13.106347pt;}
.ls11{letter-spacing:16.176640pt;}
.ls12{letter-spacing:16.208640pt;}
.ls10{letter-spacing:18.052480pt;}
.ls20{letter-spacing:18.191360pt;}
.ls38{letter-spacing:19.200000pt;}
.ls39{letter-spacing:20.480000pt;}
.ls1c{letter-spacing:22.622720pt;}
.ls27{letter-spacing:30.991360pt;}
.ls24{letter-spacing:32.271360pt;}
.ls28{letter-spacing:34.191360pt;}
.ls22{letter-spacing:35.471360pt;}
.ls16{letter-spacing:36.709547pt;}
.ls23{letter-spacing:38.671360pt;}
.ws16{word-spacing:-16.000000pt;}
.ws17{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.855467pt;}
.ws14{word-spacing:-14.817067pt;}
.ws12{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.622933pt;}
.ws1a{word-spacing:-14.448533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.273600pt;}
.ws9{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.120000pt;}
.wse{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.953600pt;}
.ws4{word-spacing:-12.320000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws13{word-spacing:-9.565867pt;}
.ws11{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
.wsf{word-spacing:4.300800pt;}
.ws19{word-spacing:8.282880pt;}
.ws18{word-spacing:8.993920pt;}
._28{margin-left:-14.400000pt;}
._25{margin-left:-13.412693pt;}
._3a{margin-left:-11.520000pt;}
._26{margin-left:-7.360000pt;}
._17{margin-left:-4.769280pt;}
._11{margin-left:-3.326720pt;}
._4{margin-left:-2.190293pt;}
._1{margin-left:-1.114880pt;}
._0{width:0.970667pt;}
._5{width:1.923840pt;}
._9{width:2.892587pt;}
._8{width:3.877760pt;}
._e{width:4.780800pt;}
._d{width:5.775573pt;}
._12{width:6.765653pt;}
._c{width:7.741013pt;}
._b{width:9.189760pt;}
._a{width:10.358400pt;}
._2d{width:11.717120pt;}
._24{width:12.620800pt;}
._19{width:13.566507pt;}
._10{width:14.926720pt;}
._f{width:15.936000pt;}
._18{width:16.935680pt;}
._7{width:17.940053pt;}
._6{width:19.002453pt;}
._1f{width:20.450133pt;}
._1d{width:21.550080pt;}
._1e{width:22.599040pt;}
._23{width:23.538347pt;}
._14{width:24.611840pt;}
._20{width:25.848320pt;}
._1a{width:26.782720pt;}
._15{width:28.026880pt;}
._16{width:29.510613pt;}
._38{width:30.594133pt;}
._1c{width:31.512533pt;}
._1b{width:32.968960pt;}
._21{width:34.997760pt;}
._22{width:35.912960pt;}
._37{width:37.800960pt;}
._2e{width:40.174080pt;}
._2f{width:41.683200pt;}
._32{width:45.632000pt;}
._27{width:48.181333pt;}
._35{width:56.995840pt;}
._2a{width:70.173440pt;}
._2c{width:73.434027pt;}
._39{width:74.542080pt;}
._29{width:85.117867pt;}
._30{width:86.924800pt;}
._31{width:88.375040pt;}
._36{width:96.209920pt;}
._33{width:105.472000pt;}
._34{width:106.396160pt;}
._13{width:148.050560pt;}
._2b{width:177.280000pt;}
._3{width:325.386667pt;}
._2{width:1021.732267pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:3.200000pt;}
.y9a{bottom:3.360000pt;}
.y107{bottom:3.386667pt;}
.y162{bottom:3.520000pt;}
.y9c{bottom:3.680000pt;}
.y96{bottom:3.840000pt;}
.y98{bottom:4.160000pt;}
.ybc{bottom:4.800000pt;}
.yba{bottom:4.960000pt;}
.yb7{bottom:5.120000pt;}
.yb9{bottom:5.280000pt;}
.y2{bottom:6.080000pt;}
.y163{bottom:9.760000pt;}
.y14a{bottom:9.920000pt;}
.y138{bottom:11.200000pt;}
.y143{bottom:11.520000pt;}
.yeb{bottom:11.680000pt;}
.y173{bottom:12.000000pt;}
.y12a{bottom:12.160000pt;}
.y142{bottom:12.640000pt;}
.y15c{bottom:19.840000pt;}
.y101{bottom:20.000000pt;}
.yf5{bottom:20.154667pt;}
.yd0{bottom:20.160000pt;}
.y106{bottom:20.186667pt;}
.yec{bottom:20.200000pt;}
.y15b{bottom:20.960000pt;}
.yb6{bottom:21.920000pt;}
.y92{bottom:25.920000pt;}
.y160{bottom:36.314667pt;}
.y147{bottom:36.346667pt;}
.y15f{bottom:36.474667pt;}
.y146{bottom:36.506667pt;}
.yf4{bottom:36.954667pt;}
.yda{bottom:36.960000pt;}
.y100{bottom:37.000000pt;}
.ycf{bottom:37.120000pt;}
.y105{bottom:37.146667pt;}
.y4{bottom:38.560000pt;}
.y41{bottom:39.840000pt;}
.yff{bottom:53.800000pt;}
.yf3{bottom:53.914667pt;}
.yce{bottom:53.920000pt;}
.yf8{bottom:53.946667pt;}
.y40{bottom:56.960000pt;}
.yf2{bottom:70.714667pt;}
.yd9{bottom:70.720000pt;}
.y104{bottom:70.746667pt;}
.yfe{bottom:70.760000pt;}
.ye3{bottom:70.880000pt;}
.yd8{bottom:87.520000pt;}
.yfd{bottom:87.560000pt;}
.yf1{bottom:87.674667pt;}
.ye2{bottom:87.680000pt;}
.y103{bottom:87.706667pt;}
.y15e{bottom:101.312000pt;}
.y77{bottom:102.112000pt;}
.yfc{bottom:104.360000pt;}
.yf0{bottom:104.474667pt;}
.yd7{bottom:104.480000pt;}
.y3f{bottom:106.752000pt;}
.yf6{bottom:109.632000pt;}
.y90{bottom:109.792000pt;}
.y129{bottom:111.552000pt;}
.ycc{bottom:114.752000pt;}
.y11a{bottom:114.912000pt;}
.y76{bottom:118.912000pt;}
.yef{bottom:121.274667pt;}
.yfb{bottom:121.320000pt;}
.ye1{bottom:121.466667pt;}
.y3e{bottom:123.552000pt;}
.y8f{bottom:126.592000pt;}
.yed{bottom:127.232000pt;}
.y12b{bottom:129.152000pt;}
.ycb{bottom:131.552000pt;}
.y119{bottom:131.872000pt;}
.y75{bottom:135.866667pt;}
.yee{bottom:138.234667pt;}
.ye0{bottom:138.266667pt;}
.y3d{bottom:140.506667pt;}
.y8e{bottom:143.546667pt;}
.yca{bottom:148.506667pt;}
.y118{bottom:148.666667pt;}
.y161{bottom:149.626667pt;}
.y128{bottom:150.266667pt;}
.y74{bottom:152.666667pt;}
.ydf{bottom:155.226667pt;}
.y3c{bottom:157.306667pt;}
.y8d{bottom:160.346667pt;}
.yc9{bottom:165.306667pt;}
.y117{bottom:165.626667pt;}
.y127{bottom:167.066667pt;}
.y15d{bottom:167.546667pt;}
.y73{bottom:169.626667pt;}
.yde{bottom:172.026667pt;}
.y3b{bottom:174.106667pt;}
.y8c{bottom:177.306667pt;}
.yc8{bottom:182.266667pt;}
.y116{bottom:182.426667pt;}
.y126{bottom:183.866667pt;}
.y15a{bottom:185.146667pt;}
.y72{bottom:186.426667pt;}
.ydd{bottom:188.826667pt;}
.y3a{bottom:191.066667pt;}
.y8b{bottom:194.106667pt;}
.yc7{bottom:199.066667pt;}
.y115{bottom:199.226667pt;}
.y125{bottom:200.826667pt;}
.y71{bottom:203.226667pt;}
.ydc{bottom:205.786667pt;}
.y39{bottom:207.866667pt;}
.y8a{bottom:211.226667pt;}
.yc6{bottom:215.866667pt;}
.y114{bottom:216.186667pt;}
.y124{bottom:217.626667pt;}
.y70{bottom:220.186667pt;}
.y38{bottom:224.826667pt;}
.y89{bottom:228.506667pt;}
.yc5{bottom:232.826667pt;}
.y113{bottom:232.986667pt;}
.y123{bottom:234.426667pt;}
.y6f{bottom:236.986667pt;}
.y159{bottom:239.546667pt;}
.y37{bottom:240.666667pt;}
.y18f{bottom:241.626667pt;}
.y88{bottom:245.626667pt;}
.yc4{bottom:249.626667pt;}
.y112{bottom:249.946667pt;}
.y122{bottom:252.666667pt;}
.y36{bottom:252.826667pt;}
.y6e{bottom:253.946667pt;}
.y158{bottom:256.506667pt;}
.y18e{bottom:258.426667pt;}
.y87{bottom:262.906667pt;}
.y35{bottom:265.146667pt;}
.y111{bottom:266.746667pt;}
.yc3{bottom:266.906667pt;}
.y121{bottom:269.466667pt;}
.y6d{bottom:270.746667pt;}
.y157{bottom:273.306667pt;}
.y18d{bottom:275.386667pt;}
.y34{bottom:278.106667pt;}
.yea{bottom:279.706667pt;}
.y86{bottom:280.026667pt;}
.y110{bottom:283.546667pt;}
.yc2{bottom:284.026667pt;}
.y120{bottom:286.426667pt;}
.y6c{bottom:287.546667pt;}
.y156{bottom:290.266667pt;}
.y18c{bottom:292.186667pt;}
.y33{bottom:293.306667pt;}
.y85{bottom:297.306667pt;}
.y10f{bottom:300.546667pt;}
.yc1{bottom:301.026667pt;}
.y11f{bottom:303.266667pt;}
.y6b{bottom:304.546667pt;}
.y155{bottom:307.106667pt;}
.y32{bottom:308.706667pt;}
.y18b{bottom:309.186667pt;}
.y84{bottom:314.146667pt;}
.ye9{bottom:317.346667pt;}
.yc0{bottom:318.146667pt;}
.y11e{bottom:320.226667pt;}
.y6a{bottom:321.346667pt;}
.y31{bottom:324.066667pt;}
.y18a{bottom:325.986667pt;}
.y83{bottom:327.746667pt;}
.ye8{bottom:334.306667pt;}
.ybf{bottom:335.426667pt;}
.y11d{bottom:337.026667pt;}
.y82{bottom:337.666667pt;}
.y69{bottom:338.306667pt;}
.y154{bottom:338.946667pt;}
.y30{bottom:339.426667pt;}
.y189{bottom:342.946667pt;}
.ye7{bottom:351.106667pt;}
.ybe{bottom:352.546667pt;}
.y11c{bottom:353.826667pt;}
.y2f{bottom:354.786667pt;}
.y68{bottom:355.106667pt;}
.y153{bottom:356.386667pt;}
.y188{bottom:359.746667pt;}
.y81{bottom:365.026667pt;}
.ye6{bottom:368.066667pt;}
.ybd{bottom:369.346667pt;}
.y2e{bottom:370.146667pt;}
.y11b{bottom:370.786667pt;}
.y67{bottom:372.066667pt;}
.y187{bottom:376.546667pt;}
.y80{bottom:381.986667pt;}
.ybb{bottom:383.746667pt;}
.ye5{bottom:384.866667pt;}
.y2d{bottom:385.346667pt;}
.y66{bottom:388.866667pt;}
.y186{bottom:393.506667pt;}
.y152{bottom:394.146667pt;}
.y7f{bottom:398.786667pt;}
.y2c{bottom:400.706667pt;}
.ye4{bottom:401.666667pt;}
.yb8{bottom:403.106667pt;}
.y65{bottom:405.666667pt;}
.y185{bottom:410.626667pt;}
.y151{bottom:410.946667pt;}
.y7e{bottom:415.586667pt;}
.ydb{bottom:415.906667pt;}
.y2b{bottom:416.066667pt;}
.y10e{bottom:418.626667pt;}
.y64{bottom:422.626667pt;}
.y150{bottom:427.906667pt;}
.y2a{bottom:431.426667pt;}
.y7d{bottom:432.226667pt;}
.y10d{bottom:435.426667pt;}
.y63{bottom:439.426667pt;}
.y7c{bottom:442.146667pt;}
.y14f{bottom:444.706667pt;}
.y29{bottom:446.786667pt;}
.y10c{bottom:452.386667pt;}
.y62{bottom:456.386667pt;}
.y184{bottom:461.506667pt;}
.y28{bottom:461.986667pt;}
.yb5{bottom:462.146667pt;}
.y14e{bottom:462.786667pt;}
.y7b{bottom:468.226667pt;}
.y10b{bottom:469.186667pt;}
.y61{bottom:473.186667pt;}
.y27{bottom:477.346667pt;}
.y7a{bottom:478.146667pt;}
.y183{bottom:478.466667pt;}
.yb4{bottom:478.946667pt;}
.y14d{bottom:479.746667pt;}
.y10a{bottom:485.986667pt;}
.y60{bottom:489.986667pt;}
.y26{bottom:492.706667pt;}
.y182{bottom:495.266667pt;}
.yb3{bottom:495.906667pt;}
.y14c{bottom:498.946667pt;}
.y109{bottom:502.946667pt;}
.y79{bottom:504.226667pt;}
.y5f{bottom:506.946667pt;}
.y25{bottom:508.066667pt;}
.y181{bottom:511.106667pt;}
.yb2{bottom:512.706667pt;}
.y78{bottom:514.146667pt;}
.y14b{bottom:516.066667pt;}
.y108{bottom:519.746667pt;}
.y180{bottom:521.026667pt;}
.y24{bottom:523.426667pt;}
.y5e{bottom:523.746667pt;}
.yb1{bottom:529.666667pt;}
.y145{bottom:530.466667pt;}
.y102{bottom:533.986667pt;}
.y23{bottom:538.813333pt;}
.y5d{bottom:540.733333pt;}
.yb0{bottom:546.493333pt;}
.y17f{bottom:547.773333pt;}
.y149{bottom:548.253333pt;}
.y22{bottom:554.013333pt;}
.y5c{bottom:557.533333pt;}
.yaf{bottom:560.733333pt;}
.y17e{bottom:564.733333pt;}
.y21{bottom:569.373333pt;}
.y5b{bottom:574.333333pt;}
.yae{bottom:578.653333pt;}
.y148{bottom:579.133333pt;}
.y17d{bottom:581.533333pt;}
.y20{bottom:584.733333pt;}
.y5a{bottom:591.293333pt;}
.yad{bottom:596.253333pt;}
.y144{bottom:596.893333pt;}
.y17c{bottom:598.493333pt;}
.y1f{bottom:600.093333pt;}
.y59{bottom:608.093333pt;}
.y141{bottom:614.493333pt;}
.yac{bottom:614.653333pt;}
.y17b{bottom:615.293333pt;}
.y1e{bottom:615.453333pt;}
.y58{bottom:625.053333pt;}
.y1d{bottom:630.813333pt;}
.y17a{bottom:632.093333pt;}
.yab{bottom:632.733333pt;}
.yd6{bottom:635.933333pt;}
.y57{bottom:641.853333pt;}
.y1c{bottom:646.013333pt;}
.y179{bottom:649.053333pt;}
.yaa{bottom:650.173333pt;}
.y140{bottom:652.093333pt;}
.y56{bottom:658.653333pt;}
.y1b{bottom:661.373333pt;}
.y178{bottom:663.293333pt;}
.y13f{bottom:669.053333pt;}
.ya9{bottom:670.973333pt;}
.y55{bottom:675.613333pt;}
.y1a{bottom:676.733333pt;}
.y177{bottom:680.733333pt;}
.y13e{bottom:685.853333pt;}
.ya8{bottom:687.933333pt;}
.y19{bottom:692.093333pt;}
.y54{bottom:692.413333pt;}
.y176{bottom:698.333333pt;}
.y13d{bottom:702.813333pt;}
.ya7{bottom:704.733333pt;}
.y18{bottom:707.453333pt;}
.y53{bottom:709.373333pt;}
.y175{bottom:719.133333pt;}
.y13c{bottom:719.613333pt;}
.ya6{bottom:721.693333pt;}
.y17{bottom:722.653333pt;}
.y52{bottom:726.173333pt;}
.y174{bottom:735.933333pt;}
.y13b{bottom:736.413333pt;}
.yfa{bottom:737.853333pt;}
.y16{bottom:738.013333pt;}
.ya5{bottom:738.493333pt;}
.y51{bottom:742.973333pt;}
.y172{bottom:750.333333pt;}
.y15{bottom:753.373333pt;}
.yd5{bottom:754.653333pt;}
.ya4{bottom:755.293333pt;}
.y50{bottom:759.933333pt;}
.y13a{bottom:767.613333pt;}
.y171{bottom:767.773333pt;}
.y14{bottom:768.733333pt;}
.ya3{bottom:768.893333pt;}
.yd4{bottom:775.493333pt;}
.ya2{bottom:776.293333pt;}
.y4f{bottom:776.773333pt;}
.y13{bottom:784.133333pt;}
.y170{bottom:785.413333pt;}
.y139{bottom:785.573333pt;}
.yd3{bottom:792.293333pt;}
.y4e{bottom:793.733333pt;}
.ya1{bottom:798.213333pt;}
.y12{bottom:799.493333pt;}
.y137{bottom:803.333333pt;}
.y16f{bottom:806.213333pt;}
.yd2{bottom:809.253333pt;}
.y4d{bottom:810.533333pt;}
.y11{bottom:814.693333pt;}
.ya0{bottom:815.173333pt;}
.y16e{bottom:823.013333pt;}
.yd1{bottom:826.053333pt;}
.y4c{bottom:827.493333pt;}
.y10{bottom:830.053333pt;}
.y9f{bottom:831.973333pt;}
.y16d{bottom:839.973333pt;}
.ycd{bottom:840.293333pt;}
.y136{bottom:841.093333pt;}
.y4b{bottom:844.293333pt;}
.y9e{bottom:848.933333pt;}
.yf{bottom:850.053333pt;}
.y16c{bottom:856.773333pt;}
.y135{bottom:857.893333pt;}
.ye{bottom:861.093333pt;}
.y9d{bottom:865.733333pt;}
.yf9{bottom:873.413333pt;}
.y16b{bottom:873.573333pt;}
.y134{bottom:874.693333pt;}
.yd{bottom:877.573333pt;}
.y4a{bottom:878.053333pt;}
.y9b{bottom:879.973333pt;}
.y16a{bottom:890.533333pt;}
.y133{bottom:892.933333pt;}
.yc{bottom:893.733333pt;}
.y49{bottom:894.853333pt;}
.y99{bottom:897.893333pt;}
.y169{bottom:907.333333pt;}
.y132{bottom:909.733333pt;}
.y48{bottom:911.813333pt;}
.yb{bottom:913.733333pt;}
.y97{bottom:915.493333pt;}
.y168{bottom:924.293333pt;}
.y131{bottom:926.533333pt;}
.y47{bottom:928.613333pt;}
.ya{bottom:933.573333pt;}
.y95{bottom:933.893333pt;}
.y167{bottom:941.093333pt;}
.y130{bottom:943.493333pt;}
.y46{bottom:945.413333pt;}
.y93{bottom:951.973333pt;}
.y9{bottom:952.773333pt;}
.y166{bottom:957.893333pt;}
.yf7{bottom:958.373333pt;}
.y12f{bottom:960.293333pt;}
.y45{bottom:962.373333pt;}
.y8{bottom:968.133333pt;}
.y91{bottom:969.413333pt;}
.y12e{bottom:977.253333pt;}
.y44{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.y12d{bottom:991.493333pt;}
.y165{bottom:994.373333pt;}
.y43{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.y164{bottom:1008.613333pt;}
.y12c{bottom:1008.933333pt;}
.y42{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1036.000000pt;}
.y1{bottom:1050.880000pt;}
.h19{height:16.800000pt;}
.h1c{height:16.960000pt;}
.h31{height:16.992000pt;}
.h30{height:17.120000pt;}
.h34{height:17.152000pt;}
.h1d{height:17.280000pt;}
.h3a{height:17.312000pt;}
.h1a{height:17.440000pt;}
.h1b{height:17.760000pt;}
.h22{height:18.720000pt;}
.h21{height:18.880000pt;}
.h2{height:23.680000pt;}
.ha{height:24.131250pt;}
.he{height:29.940625pt;}
.h39{height:30.080000pt;}
.h36{height:30.240000pt;}
.hd{height:30.254687pt;}
.h5{height:32.683437pt;}
.h32{height:33.760000pt;}
.h27{height:33.792000pt;}
.h3c{height:34.400000pt;}
.h3b{height:34.432000pt;}
.h2f{height:34.720000pt;}
.h20{height:35.520000pt;}
.h8{height:37.090625pt;}
.h6{height:37.479688pt;}
.h18{height:39.520000pt;}
.hc{height:40.488438pt;}
.hf{height:41.112500pt;}
.h10{height:41.543750pt;}
.hb{height:42.691250pt;}
.h24{height:42.866250pt;}
.h4{height:44.687500pt;}
.h3{height:44.812500pt;}
.h11{height:44.878750pt;}
.h2e{height:46.593750pt;}
.h9{height:47.310625pt;}
.h7{height:48.768750pt;}
.h37{height:50.560000pt;}
.h23{height:67.520000pt;}
.h29{height:67.552000pt;}
.h16{height:73.025000pt;}
.h33{height:74.941250pt;}
.h17{height:75.585000pt;}
.h15{height:80.792500pt;}
.h38{height:83.040000pt;}
.h35{height:83.392000pt;}
.h2a{height:84.320000pt;}
.h1e{height:89.021250pt;}
.h2c{height:101.120000pt;}
.h2d{height:101.312000pt;}
.h1f{height:102.625000pt;}
.h13{height:112.705000pt;}
.h12{height:117.825000pt;}
.h25{height:118.080000pt;}
.h14{height:120.385000pt;}
.h2b{height:134.906667pt;}
.h28{height:151.840000pt;}
.h26{height:219.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:32.000000pt;}
.w8{width:33.760000pt;}
.w2{width:55.200000pt;}
.w10{width:69.120000pt;}
.w26{width:80.320000pt;}
.w29{width:90.432000pt;}
.w20{width:90.752000pt;}
.w22{width:91.552000pt;}
.w1f{width:96.960000pt;}
.w28{width:97.760000pt;}
.w2f{width:98.080000pt;}
.w2e{width:98.272000pt;}
.w2a{width:99.040000pt;}
.w21{width:100.480000pt;}
.w2d{width:100.960000pt;}
.w27{width:104.992000pt;}
.w1e{width:108.352000pt;}
.w1d{width:108.960000pt;}
.we{width:110.592000pt;}
.w25{width:113.312000pt;}
.w11{width:114.912000pt;}
.wd{width:120.992000pt;}
.w30{width:129.312000pt;}
.wc{width:132.480000pt;}
.wb{width:132.512000pt;}
.w31{width:135.840000pt;}
.w32{width:135.866667pt;}
.w33{width:136.026667pt;}
.w13{width:141.760000pt;}
.w16{width:151.226667pt;}
.w1b{width:160.666667pt;}
.w2c{width:175.226667pt;}
.w7{width:181.626667pt;}
.w9{width:184.026667pt;}
.w14{width:205.186667pt;}
.w15{width:210.746667pt;}
.w23{width:214.906667pt;}
.w1c{width:217.306667pt;}
.w2b{width:217.466667pt;}
.w1a{width:218.426667pt;}
.w24{width:226.906667pt;}
.w18{width:227.866667pt;}
.w17{width:255.226667pt;}
.w19{width:264.666667pt;}
.w6{width:285.346667pt;}
.wa{width:366.306667pt;}
.w12{width:394.626667pt;}
.wf{width:479.613333pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-36.352000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x38{left:17.120000pt;}
.x3f{left:26.080000pt;}
.x36{left:28.480000pt;}
.x41{left:29.760000pt;}
.x25{left:31.200000pt;}
.x35{left:32.480000pt;}
.x24{left:34.240000pt;}
.x15{left:54.880000pt;}
.x20{left:67.720000pt;}
.x43{left:72.154667pt;}
.x1f{left:78.880000pt;}
.x1{left:96.032000pt;}
.x6{left:96.991988pt;}
.x3b{left:97.914667pt;}
.x17{left:102.120000pt;}
.x28{left:103.232000pt;}
.x18{left:104.192000pt;}
.x26{left:107.552000pt;}
.x30{left:120.320000pt;}
.x2e{left:132.352000pt;}
.x49{left:133.786655pt;}
.x19{left:138.586667pt;}
.xd{left:143.226655pt;}
.x13{left:146.746667pt;}
.x1b{left:148.666667pt;}
.x3{left:151.226667pt;}
.x23{left:157.146667pt;}
.x27{left:176.666667pt;}
.x14{left:179.386667pt;}
.x12{left:191.226655pt;}
.x32{left:200.186667pt;}
.x44{left:231.866667pt;}
.x29{left:244.986667pt;}
.x2b{left:254.466667pt;}
.x3e{left:271.266667pt;}
.x1c{left:281.186667pt;}
.xa{left:290.786655pt;}
.xb{left:293.666655pt;}
.x7{left:306.306655pt;}
.x1a{left:323.266667pt;}
.x22{left:324.866655pt;}
.x9{left:328.226655pt;}
.x37{left:330.146667pt;}
.xe{left:336.546655pt;}
.x48{left:341.026655pt;}
.x21{left:344.386655pt;}
.x45{left:367.746667pt;}
.x10{left:369.666655pt;}
.xc{left:372.066655pt;}
.xf{left:379.426655pt;}
.x3c{left:389.666667pt;}
.x33{left:391.426667pt;}
.x5{left:396.866655pt;}
.x11{left:406.786655pt;}
.x1d{left:413.666667pt;}
.x8{left:420.573322pt;}
.x47{left:422.013322pt;}
.x2f{left:444.253333pt;}
.x2a{left:450.173333pt;}
.x16{left:465.533333pt;}
.x40{left:470.493333pt;}
.x3d{left:480.413333pt;}
.x34{left:482.973333pt;}
.x46{left:503.613333pt;}
.x2c{left:509.693333pt;}
.x2d{left:519.133333pt;}
.x39{left:523.773333pt;}
.x1e{left:534.653333pt;}
.x31{left:553.213333pt;}
.x42{left:568.573333pt;}
.x3a{left:628.773333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  