
    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_036e1f6e550df2e4b40358fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174316;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_f8188557fcf8ea983c69e2f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_dd47b37f66a3b86426454ad2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003418;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e4307372f49e1b9fe11c7174.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.055176;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_c156b73456bb273cb947a4bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.174316;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_7a8fe56b8d18a57ac7e36565.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_9ddd3da292b3761f22d50fed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_744808b47b9b5a8dd141ae10.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0946f85aff01a0fdce025fbc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls42{letter-spacing:-0.792000px;}
.ls45{letter-spacing:-0.756000px;}
.ls28{letter-spacing:-0.702000px;}
.ls41{letter-spacing:-0.594000px;}
.ls36{letter-spacing:-0.544800px;}
.ls6{letter-spacing:-0.540000px;}
.ls43{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.324000px;}
.ls3d{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.229200px;}
.ls2a{letter-spacing:-0.220200px;}
.ls2d{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.198000px;}
.ls1c{letter-spacing:-0.159600px;}
.ls19{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.138000px;}
.ls44{letter-spacing:-0.126000px;}
.ls8{letter-spacing:-0.110400px;}
.ls2e{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.041760px;}
.ls32{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.003456px;}
.ls13{letter-spacing:0.005760px;}
.ls26{letter-spacing:0.018000px;}
.ls18{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.076200px;}
.ls31{letter-spacing:0.098640px;}
.ls39{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.112320px;}
.ls38{letter-spacing:0.126000px;}
.ls21{letter-spacing:0.152640px;}
.ls1b{letter-spacing:0.154800px;}
.ls1d{letter-spacing:0.175200px;}
.ls20{letter-spacing:0.175800px;}
.ls0{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.194688px;}
.ls22{letter-spacing:0.195840px;}
.lsd{letter-spacing:0.206400px;}
.ls37{letter-spacing:0.206640px;}
.lsf{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.306600px;}
.ls14{letter-spacing:0.306720px;}
.ls1f{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.358800px;}
.ls2{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378000px;}
.ls40{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.486720px;}
.ls33{letter-spacing:0.490800px;}
.ls25{letter-spacing:0.558000px;}
.ls10{letter-spacing:0.612000px;}
.ls1e{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.620000px;}
.ls3f{letter-spacing:1.800000px;}
.ls3e{letter-spacing:2.340000px;}
.ls1{letter-spacing:5.220000px;}
.ls3{letter-spacing:5.340000px;}
.lsa{letter-spacing:10.260000px;}
.ls3a{letter-spacing:14.400000px;}
.ls3c{letter-spacing:44.748000px;}
.ls3b{letter-spacing:72.108000px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.wsf{word-spacing:-15.552000px;}
.ws23{word-spacing:-15.430800px;}
.wse{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.ws12{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.115200px;}
.ws16{word-spacing:-15.094800px;}
.ws25{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.898240px;}
.ws7{word-spacing:-14.829600px;}
.ws13{word-spacing:-14.802000px;}
.ws14{word-spacing:-14.796000px;}
.ws17{word-spacing:-14.780400px;}
.ws1e{word-spacing:-14.719800px;}
.wsc{word-spacing:-14.710800px;}
.ws1b{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.860000px;}
.ws29{word-spacing:-13.680000px;}
.ws24{word-spacing:-13.626000px;}
.ws27{word-spacing:-13.536000px;}
.ws5{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.428000px;}
.ws2f{word-spacing:-13.374000px;}
.ws22{word-spacing:-13.302000px;}
.ws30{word-spacing:-13.284000px;}
.ws1f{word-spacing:-13.248000px;}
.ws2a{word-spacing:-13.212000px;}
.ws2b{word-spacing:-13.176000px;}
.ws26{word-spacing:-13.140000px;}
.ws2e{word-spacing:-13.122000px;}
.ws28{word-spacing:-12.960000px;}
.ws2c{word-spacing:-12.906000px;}
.ws31{word-spacing:-12.744000px;}
.ws2d{word-spacing:-12.708000px;}
.ws1d{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws19{word-spacing:-9.828000px;}
.ws3{word-spacing:-9.360000px;}
.ws15{word-spacing:-9.108000px;}
.ws2{word-spacing:-9.000000px;}
.ws1c{word-spacing:-8.676000px;}
.ws1a{word-spacing:-8.638800px;}
.ws20{word-spacing:-8.356200px;}
.ws4{word-spacing:-8.280000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-3.273840px;}
._7{margin-left:-2.247120px;}
._0{margin-left:-1.125600px;}
._1{width:1.057680px;}
._4{width:2.679600px;}
._11{width:3.811680px;}
._8{width:5.088720px;}
._9{width:6.265440px;}
._d{width:7.768800px;}
._a{width:9.442080px;}
._5{width:10.725840px;}
._b{width:12.071520px;}
._c{width:13.092240px;}
._1b{width:14.634000px;}
._e{width:15.944160px;}
._12{width:17.210880px;}
._13{width:18.282720px;}
._1d{width:19.384080px;}
._6{width:22.284000px;}
._1a{width:23.344080px;}
._19{width:24.382080px;}
._18{width:25.894080px;}
._14{width:27.250560px;}
._15{width:28.532400px;}
._3{width:29.700000px;}
._16{width:34.780320px;}
._17{width:36.011520px;}
._1f{width:48.870000px;}
._1e{width:50.490000px;}
._2{width:907.095120px;}
._1c{width:1575.667200px;}
._f{width:1600.147200px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.120000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs9{font-size:74.880000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.960000px;}
.ye1{bottom:3.990000px;}
.yd4{bottom:4.140000px;}
.y1a0{bottom:7.920000px;}
.ydf{bottom:9.000000px;}
.ye2{bottom:9.030000px;}
.ybf{bottom:11.520000px;}
.yb3{bottom:11.700000px;}
.y106{bottom:12.750000px;}
.yf1{bottom:12.930000px;}
.y122{bottom:12.960000px;}
.y11b{bottom:13.140000px;}
.yaf{bottom:14.580000px;}
.y11c{bottom:22.140000px;}
.y11f{bottom:22.320000px;}
.y1a2{bottom:23.580000px;}
.yb1{bottom:23.760000px;}
.yc3{bottom:23.790000px;}
.yb9{bottom:23.940000px;}
.y2{bottom:40.530000px;}
.y1a1{bottom:43.020000px;}
.y38{bottom:66.600000px;}
.y4{bottom:67.140000px;}
.y6b{bottom:86.256000px;}
.yef{bottom:89.136000px;}
.y13d{bottom:89.316000px;}
.yde{bottom:90.756000px;}
.ya9{bottom:99.756000px;}
.y84{bottom:101.556000px;}
.ydd{bottom:108.936000px;}
.yee{bottom:109.476000px;}
.y36{bottom:110.736000px;}
.y104{bottom:111.096000px;}
.y10f{bottom:116.496000px;}
.y16f{bottom:116.856000px;}
.y13f{bottom:119.016000px;}
.ya8{bottom:119.916000px;}
.y83{bottom:121.716000px;}
.y19c{bottom:122.616000px;}
.y6a{bottom:124.596000px;}
.ydc{bottom:127.116000px;}
.yed{bottom:129.636000px;}
.y13c{bottom:129.816000px;}
.y103{bottom:131.256000px;}
.y10e{bottom:136.116000px;}
.y16e{bottom:136.476000px;}
.y13e{bottom:137.196000px;}
.ya7{bottom:140.256000px;}
.y82{bottom:142.056000px;}
.y69{bottom:144.756000px;}
.ydb{bottom:145.296000px;}
.y13b{bottom:149.976000px;}
.y102{bottom:151.590000px;}
.y10d{bottom:155.550000px;}
.y16d{bottom:155.910000px;}
.y19b{bottom:161.490000px;}
.y81{bottom:162.210000px;}
.yda{bottom:163.470000px;}
.y68{bottom:165.090000px;}
.yec{bottom:167.430000px;}
.y35{bottom:169.230000px;}
.ya6{bottom:169.410000px;}
.y13a{bottom:170.310000px;}
.y101{bottom:171.750000px;}
.y16c{bottom:175.350000px;}
.y10c{bottom:180.030000px;}
.y19a{bottom:181.110000px;}
.yd9{bottom:181.650000px;}
.y80{bottom:182.550000px;}
.y67{bottom:185.250000px;}
.yeb{bottom:186.870000px;}
.y34{bottom:189.390000px;}
.y139{bottom:190.470000px;}
.y100{bottom:192.090000px;}
.y16b{bottom:194.970000px;}
.yd8{bottom:200.010000px;}
.y199{bottom:200.550000px;}
.y7f{bottom:202.710000px;}
.y66{bottom:205.410000px;}
.yea{bottom:206.310000px;}
.ya5{bottom:207.750000px;}
.y138{bottom:210.630000px;}
.yff{bottom:212.250000px;}
.y16a{bottom:214.410000px;}
.yd7{bottom:218.190000px;}
.y198{bottom:219.990000px;}
.y7e{bottom:222.870000px;}
.y65{bottom:225.750000px;}
.ye9{bottom:225.930000px;}
.y33{bottom:227.730000px;}
.y137{bottom:230.970000px;}
.yfe{bottom:232.590000px;}
.y169{bottom:233.850000px;}
.yd6{bottom:236.370000px;}
.y197{bottom:239.610000px;}
.y7d{bottom:243.210000px;}
.ye8{bottom:245.370000px;}
.y64{bottom:245.910000px;}
.y32{bottom:247.890000px;}
.y136{bottom:251.130000px;}
.yfd{bottom:252.750000px;}
.y168{bottom:253.470000px;}
.yd5{bottom:254.550000px;}
.y196{bottom:259.050000px;}
.y7c{bottom:263.370000px;}
.ya4{bottom:266.070000px;}
.y63{bottom:266.250000px;}
.y31{bottom:268.230000px;}
.ye7{bottom:269.850000px;}
.y135{bottom:271.470000px;}
.yd3{bottom:272.730000px;}
.yfc{bottom:272.910000px;}
.y195{bottom:278.490000px;}
.y7b{bottom:283.710000px;}
.y62{bottom:286.410000px;}
.y30{bottom:288.390000px;}
.y134{bottom:291.630000px;}
.yd1{bottom:291.810000px;}
.y167{bottom:292.350000px;}
.yfb{bottom:293.250000px;}
.y194{bottom:298.110000px;}
.y7a{bottom:303.870000px;}
.ya3{bottom:306.570000px;}
.y61{bottom:306.750000px;}
.y2f{bottom:308.550000px;}
.y133{bottom:311.970000px;}
.yfa{bottom:313.410000px;}
.y193{bottom:317.550000px;}
.yd0{bottom:324.570000px;}
.y60{bottom:326.910000px;}
.y2e{bottom:328.890000px;}
.y166{bottom:331.410000px;}
.y132{bottom:332.130000px;}
.y79{bottom:333.210000px;}
.yf9{bottom:333.750000px;}
.y192{bottom:337.035000px;}
.ycf{bottom:344.055000px;}
.y5f{bottom:347.115000px;}
.y2d{bottom:349.095000px;}
.y165{bottom:350.895000px;}
.y131{bottom:352.335000px;}
.yf8{bottom:353.955000px;}
.y191{bottom:356.655000px;}
.yce{bottom:363.495000px;}
.y5e{bottom:367.455000px;}
.y2c{bottom:369.435000px;}
.y164{bottom:370.515000px;}
.y78{bottom:370.875000px;}
.y130{bottom:372.675000px;}
.yf7{bottom:374.295000px;}
.y190{bottom:376.095000px;}
.ycd{bottom:383.115000px;}
.y5d{bottom:387.615000px;}
.y2b{bottom:389.595000px;}
.y163{bottom:389.955000px;}
.y77{bottom:390.315000px;}
.y12f{bottom:392.835000px;}
.yf6{bottom:394.455000px;}
.y18f{bottom:395.535000px;}
.ya2{bottom:396.615000px;}
.y5c{bottom:407.955000px;}
.y162{bottom:409.395000px;}
.y2a{bottom:409.935000px;}
.y12e{bottom:413.175000px;}
.y18e{bottom:415.155000px;}
.ycc{bottom:421.095000px;}
.yf5{bottom:424.695000px;}
.y5b{bottom:428.115000px;}
.y161{bottom:429.015000px;}
.y29{bottom:430.095000px;}
.y12d{bottom:433.335000px;}
.y76{bottom:434.235000px;}
.y18d{bottom:434.595000px;}
.ya1{bottom:434.775000px;}
.ycb{bottom:441.255000px;}
.y5a{bottom:448.455000px;}
.y28{bottom:450.255000px;}
.y12c{bottom:453.675000px;}
.y18c{bottom:454.035000px;}
.ya0{bottom:455.115000px;}
.yca{bottom:461.595000px;}
.yf4{bottom:462.495000px;}
.y160{bottom:467.895000px;}
.y59{bottom:468.615000px;}
.y27{bottom:470.595000px;}
.y18b{bottom:473.655000px;}
.y12b{bottom:473.835000px;}
.y9f{bottom:475.275000px;}
.yc9{bottom:481.755000px;}
.yf3{bottom:481.935000px;}
.y15f{bottom:487.515000px;}
.y58{bottom:488.775000px;}
.y18a{bottom:493.095000px;}
.y12a{bottom:493.995000px;}
.y9e{bottom:495.615000px;}
.yc8{bottom:502.095000px;}
.yf2{bottom:506.415000px;}
.y15e{bottom:506.955000px;}
.y26{bottom:508.215000px;}
.y57{bottom:509.115000px;}
.y189{bottom:512.535000px;}
.y129{bottom:514.335000px;}
.y9d{bottom:515.775000px;}
.yc7{bottom:522.255000px;}
.y15d{bottom:526.395000px;}
.y56{bottom:529.275000px;}
.y188{bottom:532.155000px;}
.y128{bottom:534.495000px;}
.y25{bottom:535.395000px;}
.y9c{bottom:536.115000px;}
.yc6{bottom:542.595000px;}
.y15c{bottom:546.015000px;}
.y55{bottom:549.615000px;}
.y187{bottom:551.595000px;}
.y24{bottom:553.575000px;}
.y127{bottom:554.835000px;}
.y9b{bottom:556.275000px;}
.yc5{bottom:560.415000px;}
.y15b{bottom:565.455000px;}
.y54{bottom:569.775000px;}
.y186{bottom:571.035000px;}
.y23{bottom:571.935000px;}
.y126{bottom:574.995000px;}
.y9a{bottom:576.435000px;}
.yc2{bottom:584.715000px;}
.y15a{bottom:584.895000px;}
.y53{bottom:590.115000px;}
.y185{bottom:590.655000px;}
.y22{bottom:591.375000px;}
.y21{bottom:595.155000px;}
.y99{bottom:596.775000px;}
.y125{bottom:604.365000px;}
.y159{bottom:604.545000px;}
.yc4{bottom:609.045000px;}
.y184{bottom:610.125000px;}
.y52{bottom:610.305000px;}
.y20{bottom:610.845000px;}
.y98{bottom:616.965000px;}
.y158{bottom:623.985000px;}
.ye6{bottom:624.885000px;}
.y183{bottom:629.565000px;}
.y1f{bottom:630.465000px;}
.yc0{bottom:633.345000px;}
.y1e{bottom:634.245000px;}
.y97{bottom:637.305000px;}
.y124{bottom:639.465000px;}
.y157{bottom:643.425000px;}
.ye5{bottom:644.505000px;}
.y182{bottom:649.185000px;}
.y1d{bottom:649.905000px;}
.y51{bottom:650.805000px;}
.y96{bottom:657.465000px;}
.yc1{bottom:657.645000px;}
.y181{bottom:668.625000px;}
.ye4{bottom:668.805000px;}
.y1c{bottom:669.345000px;}
.y50{bottom:670.965000px;}
.y156{bottom:672.585000px;}
.y1b{bottom:673.125000px;}
.y1a3{bottom:674.205000px;}
.y95{bottom:677.805000px;}
.ybd{bottom:681.945000px;}
.y180{bottom:688.065000px;}
.y1a{bottom:688.965000px;}
.y19f{bottom:689.685000px;}
.y4f{bottom:691.305000px;}
.y123{bottom:694.005000px;}
.y94{bottom:697.965000px;}
.ybe{bottom:706.245000px;}
.y17f{bottom:707.685000px;}
.y19{bottom:708.405000px;}
.y155{bottom:710.205000px;}
.y4e{bottom:711.465000px;}
.y18{bottom:712.185000px;}
.y121{bottom:712.365000px;}
.y93{bottom:718.125000px;}
.y17e{bottom:727.125000px;}
.y17{bottom:727.845000px;}
.y154{bottom:728.385000px;}
.ybb{bottom:730.365000px;}
.y10b{bottom:730.905000px;}
.y4d{bottom:731.805000px;}
.y92{bottom:738.465000px;}
.y153{bottom:746.565000px;}
.y16{bottom:747.465000px;}
.y120{bottom:748.725000px;}
.y10a{bottom:750.345000px;}
.y15{bottom:751.245000px;}
.y4c{bottom:751.965000px;}
.ybc{bottom:754.665000px;}
.y152{bottom:764.925000px;}
.y17d{bottom:766.185000px;}
.y14{bottom:766.905000px;}
.y91{bottom:767.625000px;}
.y109{bottom:769.965000px;}
.y19e{bottom:770.145000px;}
.y4b{bottom:772.125000px;}
.yb8{bottom:778.965000px;}
.y151{bottom:783.105000px;}
.y17c{bottom:785.625000px;}
.y13{bottom:786.345000px;}
.y19d{bottom:788.325000px;}
.y108{bottom:789.405000px;}
.y12{bottom:790.125000px;}
.y4a{bottom:792.465000px;}
.y150{bottom:801.285000px;}
.yba{bottom:803.265000px;}
.y11e{bottom:803.445000px;}
.y17b{bottom:805.065000px;}
.y11{bottom:805.965000px;}
.y49{bottom:812.625000px;}
.y107{bottom:813.885000px;}
.y14f{bottom:819.465000px;}
.y11d{bottom:821.625000px;}
.y17a{bottom:824.685000px;}
.y10{bottom:825.405000px;}
.y90{bottom:826.125000px;}
.yb6{bottom:827.565000px;}
.y48{bottom:832.965000px;}
.y11a{bottom:840.525000px;}
.y179{bottom:844.125000px;}
.yf{bottom:844.845000px;}
.y8f{bottom:846.465000px;}
.y14e{bottom:846.645000px;}
.yb7{bottom:851.865000px;}
.y47{bottom:853.125000px;}
.y105{bottom:858.240000px;}
.y178{bottom:863.565000px;}
.ye{bottom:864.465000px;}
.y14d{bottom:864.825000px;}
.y8e{bottom:866.625000px;}
.y46{bottom:873.510000px;}
.yb4{bottom:876.210000px;}
.y14c{bottom:883.230000px;}
.yd{bottom:883.950000px;}
.y8d{bottom:886.830000px;}
.yc{bottom:887.730000px;}
.y119{bottom:891.510000px;}
.y45{bottom:893.670000px;}
.yb5{bottom:900.510000px;}
.y14b{bottom:901.410000px;}
.y177{bottom:902.670000px;}
.y8c{bottom:907.170000px;}
.y118{bottom:910.950000px;}
.yb{bottom:913.110000px;}
.y44{bottom:913.830000px;}
.y14a{bottom:919.590000px;}
.y176{bottom:922.110000px;}
.yb0{bottom:924.810000px;}
.y75{bottom:925.170000px;}
.y8b{bottom:927.330000px;}
.ya{bottom:933.270000px;}
.y43{bottom:934.170000px;}
.y175{bottom:941.730000px;}
.y74{bottom:945.330000px;}
.y149{bottom:946.770000px;}
.y8a{bottom:947.670000px;}
.yb2{bottom:949.110000px;}
.y9{bottom:953.430000px;}
.y42{bottom:954.330000px;}
.y174{bottom:961.170000px;}
.y148{bottom:964.950000px;}
.y73{bottom:965.670000px;}
.y89{bottom:967.830000px;}
.y117{bottom:969.270000px;}
.y41{bottom:974.670000px;}
.yae{bottom:974.850000px;}
.y173{bottom:980.610000px;}
.y147{bottom:983.310000px;}
.y72{bottom:985.830000px;}
.y88{bottom:987.990000px;}
.y116{bottom:989.610000px;}
.y40{bottom:994.830000px;}
.y8{bottom:995.370000px;}
.y172{bottom:1000.230000px;}
.y146{bottom:1001.490000px;}
.y71{bottom:1005.990000px;}
.y87{bottom:1008.330000px;}
.y115{bottom:1009.770000px;}
.y3f{bottom:1014.990000px;}
.yad{bottom:1019.670000px;}
.yf0{bottom:1023.480000px;}
.y70{bottom:1026.330000px;}
.y86{bottom:1028.490000px;}
.y114{bottom:1030.110000px;}
.y7{bottom:1031.730000px;}
.y3e{bottom:1035.330000px;}
.y145{bottom:1037.850000px;}
.y171{bottom:1039.110000px;}
.yac{bottom:1039.290000px;}
.y6f{bottom:1046.490000px;}
.y113{bottom:1050.270000px;}
.y3d{bottom:1055.490000px;}
.y144{bottom:1056.030000px;}
.y85{bottom:1057.830000px;}
.yab{bottom:1058.730000px;}
.y6e{bottom:1066.830000px;}
.y6{bottom:1068.090000px;}
.y143{bottom:1074.390000px;}
.y3c{bottom:1075.830000px;}
.yaa{bottom:1078.170000px;}
.y112{bottom:1079.430000px;}
.y6d{bottom:1086.990000px;}
.y142{bottom:1092.570000px;}
.y3b{bottom:1095.990000px;}
.y170{bottom:1097.610000px;}
.y5{bottom:1101.030000px;}
.y1{bottom:1103.010000px;}
.y6c{bottom:1107.330000px;}
.y3a{bottom:1116.330000px;}
.ye3{bottom:1116.870000px;}
.y111{bottom:1117.230000px;}
.y141{bottom:1119.750000px;}
.ye0{bottom:1133.970000px;}
.y3{bottom:1134.690000px;}
.y39{bottom:1136.490000px;}
.y110{bottom:1136.670000px;}
.y140{bottom:1137.960000px;}
.y37{bottom:1173.780000px;}
.h16{height:18.180000px;}
.h19{height:18.216000px;}
.h18{height:18.360000px;}
.h15{height:24.120000px;}
.h11{height:24.300000px;}
.h13{height:24.336000px;}
.hf{height:30.420000px;}
.hb{height:33.105586px;}
.h20{height:36.360000px;}
.h1e{height:36.396000px;}
.h1f{height:36.540000px;}
.h1c{height:36.720000px;}
.h1a{height:36.900000px;}
.h17{height:39.603516px;}
.h5{height:43.081523px;}
.h6{height:43.798711px;}
.ha{height:43.827891px;}
.hc{height:48.225586px;}
.h14{height:48.420000px;}
.h10{height:48.600000px;}
.h12{height:48.636000px;}
.h4{height:52.769531px;}
.he{height:52.998047px;}
.hd{height:53.369648px;}
.h22{height:55.503491px;}
.h23{height:58.500000px;}
.h3{height:64.300781px;}
.h21{height:66.872812px;}
.h7{height:70.664062px;}
.h1b{height:71.613281px;}
.h1d{height:71.756508px;}
.h9{height:79.207031px;}
.h2{height:82.836000px;}
.h8{height:83.794922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:25.200000px;}
.w18{width:30.600000px;}
.w17{width:30.960000px;}
.wf{width:31.896000px;}
.w10{width:36.360000px;}
.w15{width:44.100000px;}
.we{width:47.160000px;}
.w1a{width:49.500000px;}
.w12{width:49.860000px;}
.w11{width:50.040000px;}
.w13{width:50.076000px;}
.w8{width:50.400000px;}
.w14{width:54.720000px;}
.w9{width:57.996000px;}
.wa{width:58.140000px;}
.w2{width:63.720000px;}
.w1c{width:94.860000px;}
.w1b{width:104.256000px;}
.wb{width:105.336000px;}
.w5{width:114.480000px;}
.w7{width:118.836000px;}
.w1f{width:129.060000px;}
.wd{width:149.076000px;}
.wc{width:150.120000px;}
.w1e{width:194.430000px;}
.w1d{width:220.350000px;}
.w6{width:234.570000px;}
.w19{width:414.795000px;}
.w20{width:534.345000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:1.800000px;}
.xd{left:8.100000px;}
.x18{left:9.720000px;}
.x2e{left:11.010000px;}
.x24{left:12.240000px;}
.x37{left:14.580000px;}
.x26{left:15.660000px;}
.x1c{left:16.740000px;}
.x42{left:18.000000px;}
.x20{left:19.440000px;}
.x28{left:21.105000px;}
.x25{left:22.320000px;}
.x23{left:25.245000px;}
.x27{left:26.460000px;}
.x2a{left:28.665000px;}
.x38{left:29.700000px;}
.x29{left:32.445000px;}
.x40{left:33.480000px;}
.x22{left:34.740000px;}
.x46{left:36.900000px;}
.x14{left:37.974000px;}
.x48{left:40.500000px;}
.x43{left:44.100000px;}
.x16{left:47.565000px;}
.x45{left:48.600000px;}
.x3d{left:52.020000px;}
.x3f{left:56.160000px;}
.x3a{left:57.234000px;}
.x2b{left:59.574000px;}
.xb{left:60.839973px;}
.x2{left:63.720000px;}
.x41{left:68.580000px;}
.x9{left:69.839973px;}
.x47{left:72.720000px;}
.x5{left:78.839973px;}
.x44{left:84.234000px;}
.x6{left:87.839987px;}
.x3c{left:97.200000px;}
.x3e{left:110.154000px;}
.x4{left:114.875987px;}
.x49{left:120.954000px;}
.x7{left:123.335987px;}
.x8{left:138.275987px;}
.xa{left:146.735987px;}
.x2d{left:149.220000px;}
.x36{left:150.654000px;}
.x30{left:153.720000px;}
.x34{left:182.909987px;}
.xe{left:229.350000px;}
.x4a{left:243.930000px;}
.x15{left:264.990000px;}
.x3{left:312.014987px;}
.x3b{left:335.235000px;}
.x35{left:411.734987px;}
.x17{left:414.075000px;}
.x19{left:461.235000px;}
.xf{left:463.935000px;}
.x2f{left:484.380000px;}
.x31{left:488.340000px;}
.x1a{left:493.125000px;}
.x1b{left:529.485000px;}
.x1d{left:579.525000px;}
.x10{left:582.765000px;}
.x1e{left:629.385000px;}
.x11{left:633.165000px;}
.x1f{left:679.470000px;}
.x39{left:683.430000px;}
.x12{left:691.170000px;}
.xc{left:710.069987px;}
.x1{left:712.950000px;}
.x33{left:724.829987px;}
.x21{left:734.190000px;}
.x13{left:749.310000px;}
.x32{left:778.649987px;}
.x2c{left:785.489987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls42{letter-spacing:-0.704000pt;}
.ls45{letter-spacing:-0.672000pt;}
.ls28{letter-spacing:-0.624000pt;}
.ls41{letter-spacing:-0.528000pt;}
.ls36{letter-spacing:-0.484267pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls43{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.288000pt;}
.ls3d{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.203733pt;}
.ls2a{letter-spacing:-0.195733pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.176000pt;}
.ls1c{letter-spacing:-0.141867pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.122667pt;}
.ls44{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:-0.098133pt;}
.ls2e{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.037120pt;}
.ls32{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.003072pt;}
.ls13{letter-spacing:0.005120pt;}
.ls26{letter-spacing:0.016000pt;}
.ls18{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.067733pt;}
.ls31{letter-spacing:0.087680pt;}
.ls39{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.099840pt;}
.ls38{letter-spacing:0.112000pt;}
.ls21{letter-spacing:0.135680pt;}
.ls1b{letter-spacing:0.137600pt;}
.ls1d{letter-spacing:0.155733pt;}
.ls20{letter-spacing:0.156267pt;}
.ls0{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.173056pt;}
.ls22{letter-spacing:0.174080pt;}
.lsd{letter-spacing:0.183467pt;}
.ls37{letter-spacing:0.183680pt;}
.lsf{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.272533pt;}
.ls14{letter-spacing:0.272640pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.318933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336000pt;}
.ls40{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.432640pt;}
.ls33{letter-spacing:0.436267pt;}
.ls25{letter-spacing:0.496000pt;}
.ls10{letter-spacing:0.544000pt;}
.ls1e{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls1{letter-spacing:4.640000pt;}
.ls3{letter-spacing:4.746667pt;}
.lsa{letter-spacing:9.120000pt;}
.ls3a{letter-spacing:12.800000pt;}
.ls3c{letter-spacing:39.776000pt;}
.ls3b{letter-spacing:64.096000pt;}
.ws11{word-spacing:-53.120000pt;}
.wsf{word-spacing:-13.824000pt;}
.ws23{word-spacing:-13.716267pt;}
.wse{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.ws12{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.435733pt;}
.ws16{word-spacing:-13.417600pt;}
.ws25{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.242880pt;}
.ws7{word-spacing:-13.181867pt;}
.ws13{word-spacing:-13.157333pt;}
.ws14{word-spacing:-13.152000pt;}
.ws17{word-spacing:-13.138133pt;}
.ws1e{word-spacing:-13.084267pt;}
.wsc{word-spacing:-13.076267pt;}
.ws1b{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws29{word-spacing:-12.160000pt;}
.ws24{word-spacing:-12.112000pt;}
.ws27{word-spacing:-12.032000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.936000pt;}
.ws2f{word-spacing:-11.888000pt;}
.ws22{word-spacing:-11.824000pt;}
.ws30{word-spacing:-11.808000pt;}
.ws1f{word-spacing:-11.776000pt;}
.ws2a{word-spacing:-11.744000pt;}
.ws2b{word-spacing:-11.712000pt;}
.ws26{word-spacing:-11.680000pt;}
.ws2e{word-spacing:-11.664000pt;}
.ws28{word-spacing:-11.520000pt;}
.ws2c{word-spacing:-11.472000pt;}
.ws31{word-spacing:-11.328000pt;}
.ws2d{word-spacing:-11.296000pt;}
.ws1d{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws19{word-spacing:-8.736000pt;}
.ws3{word-spacing:-8.320000pt;}
.ws15{word-spacing:-8.096000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws1c{word-spacing:-7.712000pt;}
.ws1a{word-spacing:-7.678933pt;}
.ws20{word-spacing:-7.427733pt;}
.ws4{word-spacing:-7.360000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-2.910080pt;}
._7{margin-left:-1.997440pt;}
._0{margin-left:-1.000533pt;}
._1{width:0.940160pt;}
._4{width:2.381867pt;}
._11{width:3.388160pt;}
._8{width:4.523307pt;}
._9{width:5.569280pt;}
._d{width:6.905600pt;}
._a{width:8.392960pt;}
._5{width:9.534080pt;}
._b{width:10.730240pt;}
._c{width:11.637547pt;}
._1b{width:13.008000pt;}
._e{width:14.172587pt;}
._12{width:15.298560pt;}
._13{width:16.251307pt;}
._1d{width:17.230293pt;}
._6{width:19.808000pt;}
._1a{width:20.750293pt;}
._19{width:21.672960pt;}
._18{width:23.016960pt;}
._14{width:24.222720pt;}
._15{width:25.362133pt;}
._3{width:26.400000pt;}
._16{width:30.915840pt;}
._17{width:32.010240pt;}
._1f{width:43.440000pt;}
._1e{width:44.880000pt;}
._2{width:806.306773pt;}
._1c{width:1400.593067pt;}
._f{width:1422.353067pt;}
.fs5{font-size:29.440000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs9{font-size:66.560000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:3.520000pt;}
.ye1{bottom:3.546667pt;}
.yd4{bottom:3.680000pt;}
.y1a0{bottom:7.040000pt;}
.ydf{bottom:8.000000pt;}
.ye2{bottom:8.026667pt;}
.ybf{bottom:10.240000pt;}
.yb3{bottom:10.400000pt;}
.y106{bottom:11.333333pt;}
.yf1{bottom:11.493333pt;}
.y122{bottom:11.520000pt;}
.y11b{bottom:11.680000pt;}
.yaf{bottom:12.960000pt;}
.y11c{bottom:19.680000pt;}
.y11f{bottom:19.840000pt;}
.y1a2{bottom:20.960000pt;}
.yb1{bottom:21.120000pt;}
.yc3{bottom:21.146667pt;}
.yb9{bottom:21.280000pt;}
.y2{bottom:36.026667pt;}
.y1a1{bottom:38.240000pt;}
.y38{bottom:59.200000pt;}
.y4{bottom:59.680000pt;}
.y6b{bottom:76.672000pt;}
.yef{bottom:79.232000pt;}
.y13d{bottom:79.392000pt;}
.yde{bottom:80.672000pt;}
.ya9{bottom:88.672000pt;}
.y84{bottom:90.272000pt;}
.ydd{bottom:96.832000pt;}
.yee{bottom:97.312000pt;}
.y36{bottom:98.432000pt;}
.y104{bottom:98.752000pt;}
.y10f{bottom:103.552000pt;}
.y16f{bottom:103.872000pt;}
.y13f{bottom:105.792000pt;}
.ya8{bottom:106.592000pt;}
.y83{bottom:108.192000pt;}
.y19c{bottom:108.992000pt;}
.y6a{bottom:110.752000pt;}
.ydc{bottom:112.992000pt;}
.yed{bottom:115.232000pt;}
.y13c{bottom:115.392000pt;}
.y103{bottom:116.672000pt;}
.y10e{bottom:120.992000pt;}
.y16e{bottom:121.312000pt;}
.y13e{bottom:121.952000pt;}
.ya7{bottom:124.672000pt;}
.y82{bottom:126.272000pt;}
.y69{bottom:128.672000pt;}
.ydb{bottom:129.152000pt;}
.y13b{bottom:133.312000pt;}
.y102{bottom:134.746667pt;}
.y10d{bottom:138.266667pt;}
.y16d{bottom:138.586667pt;}
.y19b{bottom:143.546667pt;}
.y81{bottom:144.186667pt;}
.yda{bottom:145.306667pt;}
.y68{bottom:146.746667pt;}
.yec{bottom:148.826667pt;}
.y35{bottom:150.426667pt;}
.ya6{bottom:150.586667pt;}
.y13a{bottom:151.386667pt;}
.y101{bottom:152.666667pt;}
.y16c{bottom:155.866667pt;}
.y10c{bottom:160.026667pt;}
.y19a{bottom:160.986667pt;}
.yd9{bottom:161.466667pt;}
.y80{bottom:162.266667pt;}
.y67{bottom:164.666667pt;}
.yeb{bottom:166.106667pt;}
.y34{bottom:168.346667pt;}
.y139{bottom:169.306667pt;}
.y100{bottom:170.746667pt;}
.y16b{bottom:173.306667pt;}
.yd8{bottom:177.786667pt;}
.y199{bottom:178.266667pt;}
.y7f{bottom:180.186667pt;}
.y66{bottom:182.586667pt;}
.yea{bottom:183.386667pt;}
.ya5{bottom:184.666667pt;}
.y138{bottom:187.226667pt;}
.yff{bottom:188.666667pt;}
.y16a{bottom:190.586667pt;}
.yd7{bottom:193.946667pt;}
.y198{bottom:195.546667pt;}
.y7e{bottom:198.106667pt;}
.y65{bottom:200.666667pt;}
.ye9{bottom:200.826667pt;}
.y33{bottom:202.426667pt;}
.y137{bottom:205.306667pt;}
.yfe{bottom:206.746667pt;}
.y169{bottom:207.866667pt;}
.yd6{bottom:210.106667pt;}
.y197{bottom:212.986667pt;}
.y7d{bottom:216.186667pt;}
.ye8{bottom:218.106667pt;}
.y64{bottom:218.586667pt;}
.y32{bottom:220.346667pt;}
.y136{bottom:223.226667pt;}
.yfd{bottom:224.666667pt;}
.y168{bottom:225.306667pt;}
.yd5{bottom:226.266667pt;}
.y196{bottom:230.266667pt;}
.y7c{bottom:234.106667pt;}
.ya4{bottom:236.506667pt;}
.y63{bottom:236.666667pt;}
.y31{bottom:238.426667pt;}
.ye7{bottom:239.866667pt;}
.y135{bottom:241.306667pt;}
.yd3{bottom:242.426667pt;}
.yfc{bottom:242.586667pt;}
.y195{bottom:247.546667pt;}
.y7b{bottom:252.186667pt;}
.y62{bottom:254.586667pt;}
.y30{bottom:256.346667pt;}
.y134{bottom:259.226667pt;}
.yd1{bottom:259.386667pt;}
.y167{bottom:259.866667pt;}
.yfb{bottom:260.666667pt;}
.y194{bottom:264.986667pt;}
.y7a{bottom:270.106667pt;}
.ya3{bottom:272.506667pt;}
.y61{bottom:272.666667pt;}
.y2f{bottom:274.266667pt;}
.y133{bottom:277.306667pt;}
.yfa{bottom:278.586667pt;}
.y193{bottom:282.266667pt;}
.yd0{bottom:288.506667pt;}
.y60{bottom:290.586667pt;}
.y2e{bottom:292.346667pt;}
.y166{bottom:294.586667pt;}
.y132{bottom:295.226667pt;}
.y79{bottom:296.186667pt;}
.yf9{bottom:296.666667pt;}
.y192{bottom:299.586667pt;}
.ycf{bottom:305.826667pt;}
.y5f{bottom:308.546667pt;}
.y2d{bottom:310.306667pt;}
.y165{bottom:311.906667pt;}
.y131{bottom:313.186667pt;}
.yf8{bottom:314.626667pt;}
.y191{bottom:317.026667pt;}
.yce{bottom:323.106667pt;}
.y5e{bottom:326.626667pt;}
.y2c{bottom:328.386667pt;}
.y164{bottom:329.346667pt;}
.y78{bottom:329.666667pt;}
.y130{bottom:331.266667pt;}
.yf7{bottom:332.706667pt;}
.y190{bottom:334.306667pt;}
.ycd{bottom:340.546667pt;}
.y5d{bottom:344.546667pt;}
.y2b{bottom:346.306667pt;}
.y163{bottom:346.626667pt;}
.y77{bottom:346.946667pt;}
.y12f{bottom:349.186667pt;}
.yf6{bottom:350.626667pt;}
.y18f{bottom:351.586667pt;}
.ya2{bottom:352.546667pt;}
.y5c{bottom:362.626667pt;}
.y162{bottom:363.906667pt;}
.y2a{bottom:364.386667pt;}
.y12e{bottom:367.266667pt;}
.y18e{bottom:369.026667pt;}
.ycc{bottom:374.306667pt;}
.yf5{bottom:377.506667pt;}
.y5b{bottom:380.546667pt;}
.y161{bottom:381.346667pt;}
.y29{bottom:382.306667pt;}
.y12d{bottom:385.186667pt;}
.y76{bottom:385.986667pt;}
.y18d{bottom:386.306667pt;}
.ya1{bottom:386.466667pt;}
.ycb{bottom:392.226667pt;}
.y5a{bottom:398.626667pt;}
.y28{bottom:400.226667pt;}
.y12c{bottom:403.266667pt;}
.y18c{bottom:403.586667pt;}
.ya0{bottom:404.546667pt;}
.yca{bottom:410.306667pt;}
.yf4{bottom:411.106667pt;}
.y160{bottom:415.906667pt;}
.y59{bottom:416.546667pt;}
.y27{bottom:418.306667pt;}
.y18b{bottom:421.026667pt;}
.y12b{bottom:421.186667pt;}
.y9f{bottom:422.466667pt;}
.yc9{bottom:428.226667pt;}
.yf3{bottom:428.386667pt;}
.y15f{bottom:433.346667pt;}
.y58{bottom:434.466667pt;}
.y18a{bottom:438.306667pt;}
.y12a{bottom:439.106667pt;}
.y9e{bottom:440.546667pt;}
.yc8{bottom:446.306667pt;}
.yf2{bottom:450.146667pt;}
.y15e{bottom:450.626667pt;}
.y26{bottom:451.746667pt;}
.y57{bottom:452.546667pt;}
.y189{bottom:455.586667pt;}
.y129{bottom:457.186667pt;}
.y9d{bottom:458.466667pt;}
.yc7{bottom:464.226667pt;}
.y15d{bottom:467.906667pt;}
.y56{bottom:470.466667pt;}
.y188{bottom:473.026667pt;}
.y128{bottom:475.106667pt;}
.y25{bottom:475.906667pt;}
.y9c{bottom:476.546667pt;}
.yc6{bottom:482.306667pt;}
.y15c{bottom:485.346667pt;}
.y55{bottom:488.546667pt;}
.y187{bottom:490.306667pt;}
.y24{bottom:492.066667pt;}
.y127{bottom:493.186667pt;}
.y9b{bottom:494.466667pt;}
.yc5{bottom:498.146667pt;}
.y15b{bottom:502.626667pt;}
.y54{bottom:506.466667pt;}
.y186{bottom:507.586667pt;}
.y23{bottom:508.386667pt;}
.y126{bottom:511.106667pt;}
.y9a{bottom:512.386667pt;}
.yc2{bottom:519.746667pt;}
.y15a{bottom:519.906667pt;}
.y53{bottom:524.546667pt;}
.y185{bottom:525.026667pt;}
.y22{bottom:525.666667pt;}
.y21{bottom:529.026667pt;}
.y99{bottom:530.466667pt;}
.y125{bottom:537.213333pt;}
.y159{bottom:537.373333pt;}
.yc4{bottom:541.373333pt;}
.y184{bottom:542.333333pt;}
.y52{bottom:542.493333pt;}
.y20{bottom:542.973333pt;}
.y98{bottom:548.413333pt;}
.y158{bottom:554.653333pt;}
.ye6{bottom:555.453333pt;}
.y183{bottom:559.613333pt;}
.y1f{bottom:560.413333pt;}
.yc0{bottom:562.973333pt;}
.y1e{bottom:563.773333pt;}
.y97{bottom:566.493333pt;}
.y124{bottom:568.413333pt;}
.y157{bottom:571.933333pt;}
.ye5{bottom:572.893333pt;}
.y182{bottom:577.053333pt;}
.y1d{bottom:577.693333pt;}
.y51{bottom:578.493333pt;}
.y96{bottom:584.413333pt;}
.yc1{bottom:584.573333pt;}
.y181{bottom:594.333333pt;}
.ye4{bottom:594.493333pt;}
.y1c{bottom:594.973333pt;}
.y50{bottom:596.413333pt;}
.y156{bottom:597.853333pt;}
.y1b{bottom:598.333333pt;}
.y1a3{bottom:599.293333pt;}
.y95{bottom:602.493333pt;}
.ybd{bottom:606.173333pt;}
.y180{bottom:611.613333pt;}
.y1a{bottom:612.413333pt;}
.y19f{bottom:613.053333pt;}
.y4f{bottom:614.493333pt;}
.y123{bottom:616.893333pt;}
.y94{bottom:620.413333pt;}
.ybe{bottom:627.773333pt;}
.y17f{bottom:629.053333pt;}
.y19{bottom:629.693333pt;}
.y155{bottom:631.293333pt;}
.y4e{bottom:632.413333pt;}
.y18{bottom:633.053333pt;}
.y121{bottom:633.213333pt;}
.y93{bottom:638.333333pt;}
.y17e{bottom:646.333333pt;}
.y17{bottom:646.973333pt;}
.y154{bottom:647.453333pt;}
.ybb{bottom:649.213333pt;}
.y10b{bottom:649.693333pt;}
.y4d{bottom:650.493333pt;}
.y92{bottom:656.413333pt;}
.y153{bottom:663.613333pt;}
.y16{bottom:664.413333pt;}
.y120{bottom:665.533333pt;}
.y10a{bottom:666.973333pt;}
.y15{bottom:667.773333pt;}
.y4c{bottom:668.413333pt;}
.ybc{bottom:670.813333pt;}
.y152{bottom:679.933333pt;}
.y17d{bottom:681.053333pt;}
.y14{bottom:681.693333pt;}
.y91{bottom:682.333333pt;}
.y109{bottom:684.413333pt;}
.y19e{bottom:684.573333pt;}
.y4b{bottom:686.333333pt;}
.yb8{bottom:692.413333pt;}
.y151{bottom:696.093333pt;}
.y17c{bottom:698.333333pt;}
.y13{bottom:698.973333pt;}
.y19d{bottom:700.733333pt;}
.y108{bottom:701.693333pt;}
.y12{bottom:702.333333pt;}
.y4a{bottom:704.413333pt;}
.y150{bottom:712.253333pt;}
.yba{bottom:714.013333pt;}
.y11e{bottom:714.173333pt;}
.y17b{bottom:715.613333pt;}
.y11{bottom:716.413333pt;}
.y49{bottom:722.333333pt;}
.y107{bottom:723.453333pt;}
.y14f{bottom:728.413333pt;}
.y11d{bottom:730.333333pt;}
.y17a{bottom:733.053333pt;}
.y10{bottom:733.693333pt;}
.y90{bottom:734.333333pt;}
.yb6{bottom:735.613333pt;}
.y48{bottom:740.413333pt;}
.y11a{bottom:747.133333pt;}
.y179{bottom:750.333333pt;}
.yf{bottom:750.973333pt;}
.y8f{bottom:752.413333pt;}
.y14e{bottom:752.573333pt;}
.yb7{bottom:757.213333pt;}
.y47{bottom:758.333333pt;}
.y105{bottom:762.880000pt;}
.y178{bottom:767.613333pt;}
.ye{bottom:768.413333pt;}
.y14d{bottom:768.733333pt;}
.y8e{bottom:770.333333pt;}
.y46{bottom:776.453333pt;}
.yb4{bottom:778.853333pt;}
.y14c{bottom:785.093333pt;}
.yd{bottom:785.733333pt;}
.y8d{bottom:788.293333pt;}
.yc{bottom:789.093333pt;}
.y119{bottom:792.453333pt;}
.y45{bottom:794.373333pt;}
.yb5{bottom:800.453333pt;}
.y14b{bottom:801.253333pt;}
.y177{bottom:802.373333pt;}
.y8c{bottom:806.373333pt;}
.y118{bottom:809.733333pt;}
.yb{bottom:811.653333pt;}
.y44{bottom:812.293333pt;}
.y14a{bottom:817.413333pt;}
.y176{bottom:819.653333pt;}
.yb0{bottom:822.053333pt;}
.y75{bottom:822.373333pt;}
.y8b{bottom:824.293333pt;}
.ya{bottom:829.573333pt;}
.y43{bottom:830.373333pt;}
.y175{bottom:837.093333pt;}
.y74{bottom:840.293333pt;}
.y149{bottom:841.573333pt;}
.y8a{bottom:842.373333pt;}
.yb2{bottom:843.653333pt;}
.y9{bottom:847.493333pt;}
.y42{bottom:848.293333pt;}
.y174{bottom:854.373333pt;}
.y148{bottom:857.733333pt;}
.y73{bottom:858.373333pt;}
.y89{bottom:860.293333pt;}
.y117{bottom:861.573333pt;}
.y41{bottom:866.373333pt;}
.yae{bottom:866.533333pt;}
.y173{bottom:871.653333pt;}
.y147{bottom:874.053333pt;}
.y72{bottom:876.293333pt;}
.y88{bottom:878.213333pt;}
.y116{bottom:879.653333pt;}
.y40{bottom:884.293333pt;}
.y8{bottom:884.773333pt;}
.y172{bottom:889.093333pt;}
.y146{bottom:890.213333pt;}
.y71{bottom:894.213333pt;}
.y87{bottom:896.293333pt;}
.y115{bottom:897.573333pt;}
.y3f{bottom:902.213333pt;}
.yad{bottom:906.373333pt;}
.yf0{bottom:909.760000pt;}
.y70{bottom:912.293333pt;}
.y86{bottom:914.213333pt;}
.y114{bottom:915.653333pt;}
.y7{bottom:917.093333pt;}
.y3e{bottom:920.293333pt;}
.y145{bottom:922.533333pt;}
.y171{bottom:923.653333pt;}
.yac{bottom:923.813333pt;}
.y6f{bottom:930.213333pt;}
.y113{bottom:933.573333pt;}
.y3d{bottom:938.213333pt;}
.y144{bottom:938.693333pt;}
.y85{bottom:940.293333pt;}
.yab{bottom:941.093333pt;}
.y6e{bottom:948.293333pt;}
.y6{bottom:949.413333pt;}
.y143{bottom:955.013333pt;}
.y3c{bottom:956.293333pt;}
.yaa{bottom:958.373333pt;}
.y112{bottom:959.493333pt;}
.y6d{bottom:966.213333pt;}
.y142{bottom:971.173333pt;}
.y3b{bottom:974.213333pt;}
.y170{bottom:975.653333pt;}
.y5{bottom:978.693333pt;}
.y1{bottom:980.453333pt;}
.y6c{bottom:984.293333pt;}
.y3a{bottom:992.293333pt;}
.ye3{bottom:992.773333pt;}
.y111{bottom:993.093333pt;}
.y141{bottom:995.333333pt;}
.ye0{bottom:1007.973333pt;}
.y3{bottom:1008.613333pt;}
.y39{bottom:1010.213333pt;}
.y110{bottom:1010.373333pt;}
.y140{bottom:1011.520000pt;}
.y37{bottom:1043.360000pt;}
.h16{height:16.160000pt;}
.h19{height:16.192000pt;}
.h18{height:16.320000pt;}
.h15{height:21.440000pt;}
.h11{height:21.600000pt;}
.h13{height:21.632000pt;}
.hf{height:27.040000pt;}
.hb{height:29.427188pt;}
.h20{height:32.320000pt;}
.h1e{height:32.352000pt;}
.h1f{height:32.480000pt;}
.h1c{height:32.640000pt;}
.h1a{height:32.800000pt;}
.h17{height:35.203125pt;}
.h5{height:38.294687pt;}
.h6{height:38.932188pt;}
.ha{height:38.958125pt;}
.hc{height:42.867188pt;}
.h14{height:43.040000pt;}
.h10{height:43.200000pt;}
.h12{height:43.232000pt;}
.h4{height:46.906250pt;}
.he{height:47.109375pt;}
.hd{height:47.439687pt;}
.h22{height:49.336436pt;}
.h23{height:52.000000pt;}
.h3{height:57.156250pt;}
.h21{height:59.442500pt;}
.h7{height:62.812500pt;}
.h1b{height:63.656250pt;}
.h1d{height:63.783562pt;}
.h9{height:70.406250pt;}
.h2{height:73.632000pt;}
.h8{height:74.484375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:22.400000pt;}
.w18{width:27.200000pt;}
.w17{width:27.520000pt;}
.wf{width:28.352000pt;}
.w10{width:32.320000pt;}
.w15{width:39.200000pt;}
.we{width:41.920000pt;}
.w1a{width:44.000000pt;}
.w12{width:44.320000pt;}
.w11{width:44.480000pt;}
.w13{width:44.512000pt;}
.w8{width:44.800000pt;}
.w14{width:48.640000pt;}
.w9{width:51.552000pt;}
.wa{width:51.680000pt;}
.w2{width:56.640000pt;}
.w1c{width:84.320000pt;}
.w1b{width:92.672000pt;}
.wb{width:93.632000pt;}
.w5{width:101.760000pt;}
.w7{width:105.632000pt;}
.w1f{width:114.720000pt;}
.wd{width:132.512000pt;}
.wc{width:133.440000pt;}
.w1e{width:172.826667pt;}
.w1d{width:195.866667pt;}
.w6{width:208.506667pt;}
.w19{width:368.706667pt;}
.w20{width:474.973333pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:1.600000pt;}
.xd{left:7.200000pt;}
.x18{left:8.640000pt;}
.x2e{left:9.786667pt;}
.x24{left:10.880000pt;}
.x37{left:12.960000pt;}
.x26{left:13.920000pt;}
.x1c{left:14.880000pt;}
.x42{left:16.000000pt;}
.x20{left:17.280000pt;}
.x28{left:18.760000pt;}
.x25{left:19.840000pt;}
.x23{left:22.440000pt;}
.x27{left:23.520000pt;}
.x2a{left:25.480000pt;}
.x38{left:26.400000pt;}
.x29{left:28.840000pt;}
.x40{left:29.760000pt;}
.x22{left:30.880000pt;}
.x46{left:32.800000pt;}
.x14{left:33.754667pt;}
.x48{left:36.000000pt;}
.x43{left:39.200000pt;}
.x16{left:42.280000pt;}
.x45{left:43.200000pt;}
.x3d{left:46.240000pt;}
.x3f{left:49.920000pt;}
.x3a{left:50.874667pt;}
.x2b{left:52.954667pt;}
.xb{left:54.079976pt;}
.x2{left:56.640000pt;}
.x41{left:60.960000pt;}
.x9{left:62.079976pt;}
.x47{left:64.640000pt;}
.x5{left:70.079976pt;}
.x44{left:74.874667pt;}
.x6{left:78.079988pt;}
.x3c{left:86.400000pt;}
.x3e{left:97.914667pt;}
.x4{left:102.111988pt;}
.x49{left:107.514667pt;}
.x7{left:109.631988pt;}
.x8{left:122.911988pt;}
.xa{left:130.431988pt;}
.x2d{left:132.640000pt;}
.x36{left:133.914667pt;}
.x30{left:136.640000pt;}
.x34{left:162.586655pt;}
.xe{left:203.866667pt;}
.x4a{left:216.826667pt;}
.x15{left:235.546667pt;}
.x3{left:277.346655pt;}
.x3b{left:297.986667pt;}
.x35{left:365.986655pt;}
.x17{left:368.066667pt;}
.x19{left:409.986667pt;}
.xf{left:412.386667pt;}
.x2f{left:430.560000pt;}
.x31{left:434.080000pt;}
.x1a{left:438.333333pt;}
.x1b{left:470.653333pt;}
.x1d{left:515.133333pt;}
.x10{left:518.013333pt;}
.x1e{left:559.453333pt;}
.x11{left:562.813333pt;}
.x1f{left:603.973333pt;}
.x39{left:607.493333pt;}
.x12{left:614.373333pt;}
.xc{left:631.173322pt;}
.x1{left:633.733333pt;}
.x33{left:644.293322pt;}
.x21{left:652.613333pt;}
.x13{left:666.053333pt;}
.x32{left:692.133322pt;}
.x2c{left:698.213322pt;}
}




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