
    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_425264b4a02c82a8c03184d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9e0d1fac05188aac1a86b636.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_27616223da67f34b41af566c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_2a6f8adba5e84ed8d0b537a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_01fe888e51d59bea213e7768.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_b6c89d799ecdc37041c98ecf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a13ea01e620a0591e6472577.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4d66a36a88d3b230b4ab2cdf.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.760000px;}
.vb{vertical-align:-4.320000px;}
.vd{vertical-align:-2.880000px;}
.ve{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.va{vertical-align:2.880000px;}
.v5{vertical-align:4.320000px;}
.v3{vertical-align:5.760000px;}
.v9{vertical-align:14.520000px;}
.v8{vertical-align:18.840000px;}
.v7{vertical-align:23.040000px;}
.v1{vertical-align:24.480000px;}
.vf{vertical-align:37.440000px;}
.vc{vertical-align:46.080000px;}
.v6{vertical-align:49.080000px;}
.ls7{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.422000px;}
.ls23{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.954000px;}
.ls2c{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.505800px;}
.lsb{letter-spacing:-0.472200px;}
.ls3{letter-spacing:-0.463800px;}
.ls27{letter-spacing:-0.457800px;}
.ls2b{letter-spacing:-0.382800px;}
.ls22{letter-spacing:-0.238800px;}
.ls28{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.057600px;}
.lsf{letter-spacing:-0.020160px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.020160px;}
.ls16{letter-spacing:0.099840px;}
.ls2a{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.207600px;}
.ls15{letter-spacing:0.319680px;}
.ls29{letter-spacing:0.423360px;}
.ls17{letter-spacing:0.466560px;}
.ls6{letter-spacing:0.466800px;}
.ls8{letter-spacing:0.486600px;}
.ls9{letter-spacing:0.507000px;}
.ls12{letter-spacing:0.711360px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.870000px;}
.ls1e{letter-spacing:1.048320px;}
.ls18{letter-spacing:1.074240px;}
.ls2d{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.205120px;}
.ls24{letter-spacing:3.600000px;}
.ls11{letter-spacing:5.040000px;}
.ls1c{letter-spacing:12.594240px;}
.ls1d{letter-spacing:13.184640px;}
.ls1f{letter-spacing:13.304640px;}
.ls25{letter-spacing:13.824000px;}
.lse{letter-spacing:15.010560px;}
.ls1a{letter-spacing:16.914240px;}
.ls1b{letter-spacing:36.901440px;}
.lsc{letter-spacing:46.558560px;}
.ls10{letter-spacing:79.678560px;}
.ls13{letter-spacing:81.083520px;}
.ls14{letter-spacing:135.799680px;}
.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;}
}
.ws1{word-spacing:-119.520000px;}
.ws14{word-spacing:-60.687600px;}
.wse{word-spacing:-60.480000px;}
.ws13{word-spacing:-60.422400px;}
.ws15{word-spacing:-60.241200px;}
.wsf{word-spacing:-41.760000px;}
.ws2{word-spacing:-23.425920px;}
.ws16{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.627000px;}
.ws8{word-spacing:-15.606600px;}
.ws6{word-spacing:-15.586800px;}
.ws17{word-spacing:-15.543360px;}
.ws5{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.099840px;}
.wsa{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws1a{word-spacing:-14.184000px;}
.ws4{word-spacing:-14.166000px;}
.ws18{word-spacing:-14.148000px;}
.ws19{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.698000px;}
.ws7{word-spacing:-13.680000px;}
.ws3{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:33.420960px;}
.ws12{word-spacing:50.700960px;}
.ws10{word-spacing:230.820960px;}
._8{margin-left:-4.584480px;}
._d{margin-left:-3.569280px;}
._5{margin-left:-2.556000px;}
._0{margin-left:-1.192320px;}
._1{width:1.525920px;}
._4{width:2.690400px;}
._6{width:4.534560px;}
._7{width:6.516480px;}
._b{width:8.373600px;}
._a{width:9.823680px;}
._2{width:11.712960px;}
._3{width:12.963840px;}
._9{width:14.031360px;}
._c{width:16.433280px;}
._e{width:18.126720px;}
._f{width:19.198080px;}
._10{width:20.278560px;}
._12{width:28.002240px;}
._13{width:29.617920px;}
._14{width:31.422240px;}
._11{width:258.823200px;}
.fc3{color:transparent;}
.fc2{color:rgb(118,113,113);}
.fc1{color:rgb(83,129,53);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs9{font-size:54.720000px;}
.fsa{font-size:54.864000px;}
.fs4{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y157{bottom:3.240000px;}
.y7d{bottom:4.320000px;}
.y79{bottom:4.680000px;}
.y73{bottom:5.400000px;}
.y9a{bottom:5.445000px;}
.y84{bottom:5.760000px;}
.y155{bottom:6.120000px;}
.y158{bottom:6.480000px;}
.yd{bottom:9.000000px;}
.y97{bottom:16.560000px;}
.ya5{bottom:17.280000px;}
.y96{bottom:19.800000px;}
.ya4{bottom:20.520000px;}
.y10a{bottom:21.750000px;}
.y7b{bottom:22.320000px;}
.y77{bottom:25.200000px;}
.y151{bottom:28.485000px;}
.y153{bottom:30.600000px;}
.y86{bottom:34.560000px;}
.y95{bottom:36.720000px;}
.y85{bottom:37.800000px;}
.y142{bottom:39.450000px;}
.y132{bottom:40.215000px;}
.y108{bottom:41.730000px;}
.y12f{bottom:42.405000px;}
.y76{bottom:42.480000px;}
.y14a{bottom:43.380000px;}
.y13d{bottom:44.820000px;}
.yc{bottom:47.160000px;}
.y13a{bottom:48.570000px;}
.y90{bottom:53.280000px;}
.y94{bottom:54.000000px;}
.y82{bottom:55.074000px;}
.ya2{bottom:55.080000px;}
.y9{bottom:57.240000px;}
.y75{bottom:59.760000px;}
.y136{bottom:60.660000px;}
.y146{bottom:62.895000px;}
.y135{bottom:64.365000px;}
.y8f{bottom:70.605000px;}
.y93{bottom:71.325000px;}
.y13e{bottom:71.925000px;}
.y81{bottom:72.354000px;}
.ya1{bottom:72.360000px;}
.y145{bottom:73.590000px;}
.y141{bottom:78.765000px;}
.y103{bottom:79.380000px;}
.y149{bottom:80.205000px;}
.y131{bottom:82.155000px;}
.yb{bottom:85.680000px;}
.y139{bottom:85.890000px;}
.y8e{bottom:87.885000px;}
.y92{bottom:88.605000px;}
.ya0{bottom:89.670000px;}
.y80{bottom:89.679000px;}
.y13c{bottom:91.440000px;}
.y134{bottom:104.190000px;}
.y8d{bottom:105.165000px;}
.y9f{bottom:106.950000px;}
.y7f{bottom:106.959000px;}
.y104{bottom:108.360000px;}
.y144{bottom:109.590000px;}
.y7e{bottom:110.556000px;}
.y17c{bottom:111.276000px;}
.y12e{bottom:111.750000px;}
.yce{bottom:111.996000px;}
.y148{bottom:117.030000px;}
.y140{bottom:118.110000px;}
.y12d{bottom:119.190000px;}
.y138{bottom:123.195000px;}
.y130{bottom:124.125000px;}
.y3b{bottom:124.596000px;}
.ycd{bottom:129.276000px;}
.y17b{bottom:129.636000px;}
.y109{bottom:129.780000px;}
.y8a{bottom:130.356000px;}
.y105{bottom:137.340000px;}
.y3a{bottom:147.996000px;}
.y17a{bottom:148.356000px;}
.y1a3{bottom:148.716000px;}
.y89{bottom:150.510000px;}
.ye5{bottom:160.230000px;}
.ycc{bottom:165.990000px;}
.y106{bottom:166.320000px;}
.y179{bottom:167.070000px;}
.y39{bottom:169.950000px;}
.y88{bottom:170.310000px;}
.y137{bottom:170.970000px;}
.y147{bottom:173.010000px;}
.y13f{bottom:174.885000px;}
.ye4{bottom:178.590000px;}
.y178{bottom:185.430000px;}
.y1a2{bottom:185.790000px;}
.y38{bottom:187.230000px;}
.y87{bottom:190.110000px;}
.ycb{bottom:195.150000px;}
.y107{bottom:195.300000px;}
.ye3{bottom:197.310000px;}
.y177{bottom:204.195000px;}
.y37{bottom:204.555000px;}
.y83{bottom:211.755000px;}
.y116{bottom:213.915000px;}
.y14f{bottom:216.075000px;}
.y1a1{bottom:216.435000px;}
.y36{bottom:221.835000px;}
.y176{bottom:222.915000px;}
.y101{bottom:223.635000px;}
.yca{bottom:224.355000px;}
.y10b{bottom:225.510000px;}
.ye2{bottom:227.955000px;}
.y74{bottom:232.995000px;}
.y115{bottom:233.715000px;}
.y14e{bottom:234.435000px;}
.y1a0{bottom:235.155000px;}
.y35{bottom:238.755000px;}
.ye1{bottom:246.675000px;}
.y7a{bottom:251.355000px;}
.y14d{bottom:253.155000px;}
.yc9{bottom:253.515000px;}
.y19f{bottom:253.875000px;}
.y100{bottom:254.235000px;}
.y34{bottom:256.035000px;}
.y7c{bottom:269.715000px;}
.y14c{bottom:271.875000px;}
.y175{bottom:272.235000px;}
.y33{bottom:273.315000px;}
.ye0{bottom:277.275000px;}
.yc8{bottom:282.675000px;}
.y19e{bottom:284.475000px;}
.yff{bottom:286.635000px;}
.y78{bottom:288.075000px;}
.y32{bottom:290.595000px;}
.yc7{bottom:292.755000px;}
.y63{bottom:293.115000px;}
.ydf{bottom:295.995000px;}
.y12b{bottom:297.435000px;}
.y19d{bottom:302.835000px;}
.yfe{bottom:303.915000px;}
.y72{bottom:308.955000px;}
.y174{bottom:309.315000px;}
.y31{bottom:312.195000px;}
.y62{bottom:312.915000px;}
.yde{bottom:314.355000px;}
.y12a{bottom:314.715000px;}
.yfd{bottom:321.195000px;}
.y19c{bottom:321.555000px;}
.y14b{bottom:322.635000px;}
.y114{bottom:325.185000px;}
.y173{bottom:328.065000px;}
.y30{bottom:329.505000px;}
.y129{bottom:332.025000px;}
.y61{bottom:332.745000px;}
.yc6{bottom:333.105000px;}
.yfc{bottom:338.505000px;}
.y113{bottom:344.985000px;}
.y2f{bottom:346.785000px;}
.y71{bottom:347.505000px;}
.y128{bottom:349.305000px;}
.yc5{bottom:350.385000px;}
.ydd{bottom:351.825000px;}
.y19b{bottom:352.185000px;}
.y60{bottom:352.545000px;}
.yfb{bottom:355.425000px;}
.y172{bottom:358.665000px;}
.y2e{bottom:364.065000px;}
.y112{bottom:364.785000px;}
.y127{bottom:366.585000px;}
.yc4{bottom:367.305000px;}
.ydc{bottom:370.185000px;}
.y19a{bottom:370.905000px;}
.y5f{bottom:372.345000px;}
.y171{bottom:377.025000px;}
.y70{bottom:378.105000px;}
.y126{bottom:383.865000px;}
.yc3{bottom:384.585000px;}
.y2d{bottom:386.025000px;}
.y199{bottom:389.265000px;}
.y5e{bottom:392.145000px;}
.y170{bottom:395.745000px;}
.y6f{bottom:396.825000px;}
.ydb{bottom:400.785000px;}
.yc2{bottom:401.865000px;}
.y2c{bottom:403.305000px;}
.yfa{bottom:404.745000px;}
.y5d{bottom:411.945000px;}
.y6e{bottom:415.185000px;}
.yc1{bottom:419.145000px;}
.yda{bottom:419.505000px;}
.y198{bottom:419.865000px;}
.y125{bottom:420.225000px;}
.y2b{bottom:420.585000px;}
.yf9{bottom:423.465000px;}
.y16f{bottom:426.345000px;}
.y5c{bottom:431.745000px;}
.y6d{bottom:433.905000px;}
.yc0{bottom:436.425000px;}
.y2a{bottom:437.505000px;}
.y197{bottom:438.585000px;}
.y124{bottom:438.945000px;}
.y16e{bottom:445.065000px;}
.yd9{bottom:450.150000px;}
.y111{bottom:452.310000px;}
.ybf{bottom:453.750000px;}
.yf8{bottom:454.110000px;}
.y123{bottom:457.710000px;}
.y29{bottom:459.510000px;}
.y16d{bottom:463.830000px;}
.y6c{bottom:464.550000px;}
.y196{bottom:469.230000px;}
.y5b{bottom:469.950000px;}
.ybe{bottom:471.030000px;}
.yf7{bottom:472.830000px;}
.y122{bottom:476.070000px;}
.yd8{bottom:477.870000px;}
.y28{bottom:481.110000px;}
.y6b{bottom:483.270000px;}
.y195{bottom:487.950000px;}
.yf6{bottom:491.190000px;}
.y16c{bottom:494.430000px;}
.y27{bottom:498.390000px;}
.y6a{bottom:501.630000px;}
.y121{bottom:506.670000px;}
.y5a{bottom:507.750000px;}
.yf5{bottom:509.910000px;}
.y16b{bottom:512.790000px;}
.y26{bottom:515.670000px;}
.y69{bottom:520.350000px;}
.y120{bottom:525.390000px;}
.y59{bottom:527.550000px;}
.y16a{bottom:531.510000px;}
.y25{bottom:532.950000px;}
.ybd{bottom:536.910000px;}
.y194{bottom:537.270000px;}
.y68{bottom:539.070000px;}
.yf4{bottom:540.510000px;}
.y11f{bottom:544.110000px;}
.y58{bottom:547.350000px;}
.y24{bottom:550.230000px;}
.ybc{bottom:554.190000px;}
.y110{bottom:557.430000px;}
.yf3{bottom:559.230000px;}
.y11e{bottom:562.470000px;}
.y23{bottom:567.510000px;}
.y193{bottom:567.870000px;}
.y169{bottom:568.590000px;}
.y67{bottom:569.670000px;}
.y57{bottom:570.030000px;}
.ybb{bottom:571.470000px;}
.yf2{bottom:577.620000px;}
.y11d{bottom:581.220000px;}
.y22{bottom:584.820000px;}
.y192{bottom:586.260000px;}
.y168{bottom:587.340000px;}
.y10f{bottom:588.060000px;}
.y66{bottom:588.420000px;}
.yba{bottom:588.780000px;}
.y56{bottom:589.860000px;}
.y11c{bottom:599.940000px;}
.y21{bottom:602.100000px;}
.y191{bottom:604.980000px;}
.yb9{bottom:605.700000px;}
.y10e{bottom:606.780000px;}
.yf1{bottom:608.220000px;}
.y55{bottom:610.020000px;}
.y167{bottom:617.940000px;}
.y1b4{bottom:619.020000px;}
.y20{bottom:619.380000px;}
.y65{bottom:620.460000px;}
.yb8{bottom:622.980000px;}
.y190{bottom:623.700000px;}
.y10d{bottom:625.500000px;}
.yf0{bottom:626.940000px;}
.y54{bottom:629.820000px;}
.y11b{bottom:630.540000px;}
.y1b3{bottom:636.300000px;}
.y166{bottom:636.660000px;}
.yb7{bottom:640.260000px;}
.y1f{bottom:640.980000px;}
.yef{bottom:645.660000px;}
.y64{bottom:647.820000px;}
.y11a{bottom:649.260000px;}
.y53{bottom:649.620000px;}
.y1b2{bottom:653.220000px;}
.y18f{bottom:654.300000px;}
.y165{bottom:655.380000px;}
.yb6{bottom:657.540000px;}
.y1e{bottom:658.260000px;}
.yee{bottom:664.380000px;}
.y52{bottom:669.420000px;}
.y18e{bottom:673.020000px;}
.y164{bottom:673.740000px;}
.yb5{bottom:674.820000px;}
.y1d{bottom:675.540000px;}
.y119{bottom:679.860000px;}
.y1b1{bottom:682.740000px;}
.y10c{bottom:685.260000px;}
.y51{bottom:689.220000px;}
.y18d{bottom:691.380000px;}
.y163{bottom:692.460000px;}
.y1c{bottom:692.820000px;}
.yed{bottom:694.980000px;}
.yb3{bottom:697.860000px;}
.y1b0{bottom:700.020000px;}
.yb1{bottom:701.490000px;}
.yb2{bottom:707.250000px;}
.y50{bottom:709.050000px;}
.y118{bottom:711.930000px;}
.y1b{bottom:714.450000px;}
.yb4{bottom:716.970000px;}
.y18c{bottom:722.010000px;}
.y162{bottom:723.090000px;}
.yec{bottom:725.610000px;}
.yb0{bottom:728.490000px;}
.y4f{bottom:728.850000px;}
.y117{bottom:729.210000px;}
.y1a{bottom:731.730000px;}
.y1af{bottom:734.250000px;}
.y18b{bottom:740.730000px;}
.y161{bottom:741.810000px;}
.yaf{bottom:745.770000px;}
.y4e{bottom:748.650000px;}
.y19{bottom:749.010000px;}
.yeb{bottom:757.650000px;}
.y13b{bottom:758.880000px;}
.y143{bottom:759.240000px;}
.y18a{bottom:759.450000px;}
.y160{bottom:760.170000px;}
.yae{bottom:763.050000px;}
.y18{bottom:766.290000px;}
.y4d{bottom:768.450000px;}
.y1ae{bottom:769.530000px;}
.y189{bottom:777.810000px;}
.yad{bottom:780.330000px;}
.y17{bottom:783.570000px;}
.yea{bottom:785.370000px;}
.y102{bottom:786.240000px;}
.y1ad{bottom:786.810000px;}
.y4c{bottom:788.250000px;}
.y15f{bottom:791.130000px;}
.y188{bottom:796.530000px;}
.y1ac{bottom:804.090000px;}
.y4b{bottom:808.410000px;}
.yac{bottom:810.930000px;}
.y187{bottom:815.250000px;}
.y16{bottom:815.970000px;}
.y15e{bottom:821.730000px;}
.y4a{bottom:828.255000px;}
.yab{bottom:829.335000px;}
.y15{bottom:830.775000px;}
.y1ab{bottom:833.295000px;}
.y186{bottom:834.015000px;}
.y15c{bottom:836.535000px;}
.y14{bottom:845.535000px;}
.y49{bottom:848.055000px;}
.y1aa{bottom:850.575000px;}
.y185{bottom:852.375000px;}
.yaa{bottom:859.935000px;}
.y13{bottom:860.655000px;}
.y48{bottom:867.855000px;}
.y184{bottom:871.095000px;}
.y12{bottom:874.335000px;}
.y9e{bottom:874.695000px;}
.y15d{bottom:885.135000px;}
.y1a9{bottom:885.855000px;}
.y47{bottom:887.655000px;}
.ya9{bottom:895.215000px;}
.y11{bottom:900.615000px;}
.y183{bottom:901.695000px;}
.y1a8{bottom:903.135000px;}
.y46{bottom:907.455000px;}
.y159{bottom:909.615000px;}
.ya8{bottom:915.375000px;}
.y182{bottom:920.415000px;}
.y45{bottom:927.255000px;}
.y1a7{bottom:932.295000px;}
.y15b{bottom:933.735000px;}
.ya7{bottom:935.535000px;}
.yd7{bottom:939.135000px;}
.y10{bottom:942.375000px;}
.y44{bottom:947.055000px;}
.y181{bottom:951.015000px;}
.ya6{bottom:955.725000px;}
.y15a{bottom:958.245000px;}
.y1a6{bottom:961.845000px;}
.y12c{bottom:964.440000px;}
.y133{bottom:964.800000px;}
.y43{bottom:966.885000px;}
.yd6{bottom:969.765000px;}
.yf{bottom:971.925000px;}
.ya3{bottom:976.245000px;}
.y1a5{bottom:979.125000px;}
.y180{bottom:981.645000px;}
.y152{bottom:982.725000px;}
.y42{bottom:986.685000px;}
.yd5{bottom:988.485000px;}
.y9d{bottom:996.405000px;}
.y17f{bottom:1000.365000px;}
.ye{bottom:1001.805000px;}
.y41{bottom:1006.845000px;}
.y156{bottom:1007.205000px;}
.y1a4{bottom:1008.285000px;}
.y8c{bottom:1016.565000px;}
.y17e{bottom:1018.725000px;}
.yd4{bottom:1025.565000px;}
.y40{bottom:1026.645000px;}
.y8{bottom:1028.805000px;}
.y154{bottom:1031.325000px;}
.y9c{bottom:1036.365000px;}
.y17d{bottom:1037.445000px;}
.yd3{bottom:1044.285000px;}
.y3f{bottom:1046.445000px;}
.y7{bottom:1048.965000px;}
.y150{bottom:1055.445000px;}
.ye9{bottom:1056.165000px;}
.y9b{bottom:1056.525000px;}
.y3e{bottom:1066.245000px;}
.y6{bottom:1069.125000px;}
.yd2{bottom:1073.445000px;}
.ye8{bottom:1074.525000px;}
.y99{bottom:1076.325000px;}
.y3d{bottom:1086.090000px;}
.ya{bottom:1088.610000px;}
.yd1{bottom:1090.770000px;}
.y5{bottom:1092.570000px;}
.y98{bottom:1096.170000px;}
.ye7{bottom:1105.170000px;}
.y3c{bottom:1105.890000px;}
.yd0{bottom:1108.050000px;}
.y91{bottom:1115.970000px;}
.y4{bottom:1117.410000px;}
.ye6{bottom:1123.890000px;}
.ycf{bottom:1125.330000px;}
.y8b{bottom:1136.490000px;}
.y3{bottom:1142.610000px;}
.y2{bottom:1167.450000px;}
.y1{bottom:1192.650000px;}
.h11{height:18.360000px;}
.hf{height:18.720000px;}
.h14{height:19.440000px;}
.hc{height:19.476000px;}
.h13{height:19.800000px;}
.h2c{height:23.040000px;}
.h2d{height:23.400000px;}
.h2e{height:23.760000px;}
.h30{height:23.796000px;}
.h8{height:41.696016px;}
.hd{height:43.794844px;}
.hb{height:44.031094px;}
.h20{height:47.965781px;}
.h22{height:48.013594px;}
.h24{height:48.139945px;}
.h17{height:51.792187px;}
.h23{height:52.136719px;}
.h28{height:52.240992px;}
.h7{height:52.633828px;}
.h9{height:53.067656px;}
.h26{height:54.426094px;}
.h10{height:55.440000px;}
.h1d{height:58.121719px;}
.h1f{height:58.248070px;}
.h3{height:65.884219px;}
.h1a{height:67.587656px;}
.ha{height:67.824844px;}
.h2a{height:68.076000px;}
.h6{height:69.863203px;}
.h2b{height:71.640000px;}
.h31{height:72.360000px;}
.h2f{height:72.396000px;}
.h2{height:73.722656px;}
.he{height:73.800000px;}
.h16{height:79.329375px;}
.h1c{height:93.387656px;}
.h19{height:93.849375px;}
.h5{height:95.300859px;}
.h4{height:115.200000px;}
.h15{height:118.836000px;}
.h12{height:120.996000px;}
.h1b{height:125.409375px;}
.h18{height:128.409375px;}
.h25{height:191.880000px;}
.h21{height:192.240000px;}
.h29{height:201.600000px;}
.h27{height:201.960000px;}
.h1e{height:253.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:99.396000px;}
.w11{width:102.276000px;}
.w17{width:102.636000px;}
.w16{width:108.756000px;}
.w4{width:111.996000px;}
.w6{width:112.032000px;}
.w12{width:112.356000px;}
.w18{width:112.716000px;}
.w8{width:113.472000px;}
.w14{width:115.956000px;}
.w13{width:115.992000px;}
.w1a{width:116.316000px;}
.w19{width:116.352000px;}
.w15{width:120.672000px;}
.w5{width:168.195000px;}
.w9{width:170.310000px;}
.w7{width:175.755000px;}
.wa{width:177.915000px;}
.w10{width:229.785000px;}
.wf{width:304.560000px;}
.we{width:306.720000px;}
.wd{width:316.800000px;}
.w3{width:566.130000px;}
.wc{width:650.520000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4f{left:5.040000px;}
.x9{left:8.280000px;}
.x5{left:10.800000px;}
.x51{left:18.720000px;}
.x5c{left:19.800000px;}
.x53{left:23.760000px;}
.x55{left:25.605000px;}
.x57{left:27.360000px;}
.x58{left:28.440000px;}
.x17{left:30.600000px;}
.x5a{left:32.400000px;}
.x16{left:33.840000px;}
.x59{left:36.000000px;}
.x5b{left:37.845000px;}
.x1c{left:39.960000px;}
.xf{left:41.436000px;}
.x1d{left:42.516000px;}
.x18{left:43.959000px;}
.x27{left:47.850000px;}
.x1a{left:50.070000px;}
.x1b{left:55.800000px;}
.xe{left:56.919000px;}
.x44{left:58.140000px;}
.x4c{left:62.670000px;}
.x12{left:70.200000px;}
.x40{left:73.110000px;}
.x28{left:80.175000px;}
.x19{left:84.270000px;}
.x11{left:85.320000px;}
.x3e{left:101.445000px;}
.x1{left:106.235987px;}
.x48{left:110.010000px;}
.x3f{left:117.930000px;}
.x43{left:125.070000px;}
.x47{left:127.050000px;}
.x7{left:133.271987px;}
.x46{left:134.640000px;}
.x4b{left:136.110000px;}
.x6{left:150.194987px;}
.x29{left:159.510000px;}
.x1f{left:177.554987px;}
.x45{left:183.780000px;}
.x2a{left:185.970000px;}
.x4d{left:189.105000px;}
.x41{left:192.030000px;}
.x1e{left:208.514987px;}
.x2b{left:212.430000px;}
.xa{left:218.235000px;}
.x10{left:219.705000px;}
.x42{left:220.755000px;}
.x49{left:228.780000px;}
.x3c{left:233.385000px;}
.x2c{left:238.860000px;}
.x4{left:248.865000px;}
.x2d{left:265.320000px;}
.x2e{left:291.750000px;}
.x2f{left:318.210000px;}
.x3b{left:327.315000px;}
.x24{left:333.509987px;}
.x50{left:337.470000px;}
.x30{left:344.670000px;}
.x22{left:350.789987px;}
.x20{left:359.429987px;}
.x31{left:371.085000px;}
.xb{left:386.430000px;}
.x13{left:390.030000px;}
.x32{left:397.545000px;}
.x21{left:406.619987px;}
.x33{left:424.005000px;}
.x23{left:427.139987px;}
.x3{left:429.659987px;}
.x52{left:440.460000px;}
.x2{left:446.579987px;}
.x34{left:450.435000px;}
.x4a{left:451.800000px;}
.x35{left:476.895000px;}
.xc{left:498.450000px;}
.x14{left:503.490000px;}
.x36{left:529.770000px;}
.x54{left:553.530000px;}
.x37{left:556.230000px;}
.x38{left:582.660000px;}
.x39{left:609.120000px;}
.x3a{left:635.580000px;}
.x56{left:670.245000px;}
.xd{left:674.205000px;}
.x15{left:681.405000px;}
.x25{left:757.049987px;}
.x26{left:758.849987px;}
.x3d{left:772.529987px;}
.x8{left:781.529987px;}
.x4e{left:786.929987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.vb{vertical-align:-3.840000pt;}
.vd{vertical-align:-2.560000pt;}
.ve{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.va{vertical-align:2.560000pt;}
.v5{vertical-align:3.840000pt;}
.v3{vertical-align:5.120000pt;}
.v9{vertical-align:12.906667pt;}
.v8{vertical-align:16.746667pt;}
.v7{vertical-align:20.480000pt;}
.v1{vertical-align:21.760000pt;}
.vf{vertical-align:33.280000pt;}
.vc{vertical-align:40.960000pt;}
.v6{vertical-align:43.626667pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.264000pt;}
.ls23{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.848000pt;}
.ls2c{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.449600pt;}
.lsb{letter-spacing:-0.419733pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls27{letter-spacing:-0.406933pt;}
.ls2b{letter-spacing:-0.340267pt;}
.ls22{letter-spacing:-0.212267pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.051200pt;}
.lsf{letter-spacing:-0.017920pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.017920pt;}
.ls16{letter-spacing:0.088747pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.184533pt;}
.ls15{letter-spacing:0.284160pt;}
.ls29{letter-spacing:0.376320pt;}
.ls17{letter-spacing:0.414720pt;}
.ls6{letter-spacing:0.414933pt;}
.ls8{letter-spacing:0.432533pt;}
.ls9{letter-spacing:0.450667pt;}
.ls12{letter-spacing:0.632320pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773333pt;}
.ls1e{letter-spacing:0.931840pt;}
.ls18{letter-spacing:0.954880pt;}
.ls2d{letter-spacing:1.920000pt;}
.ls19{letter-spacing:1.960107pt;}
.ls24{letter-spacing:3.200000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:11.194880pt;}
.ls1d{letter-spacing:11.719680pt;}
.ls1f{letter-spacing:11.826347pt;}
.ls25{letter-spacing:12.288000pt;}
.lse{letter-spacing:13.342720pt;}
.ls1a{letter-spacing:15.034880pt;}
.ls1b{letter-spacing:32.801280pt;}
.lsc{letter-spacing:41.385387pt;}
.ls10{letter-spacing:70.825387pt;}
.ls13{letter-spacing:72.074240pt;}
.ls14{letter-spacing:120.710827pt;}
.ws1{word-spacing:-106.240000pt;}
.ws14{word-spacing:-53.944533pt;}
.wse{word-spacing:-53.760000pt;}
.ws13{word-spacing:-53.708800pt;}
.ws15{word-spacing:-53.547733pt;}
.wsf{word-spacing:-37.120000pt;}
.ws2{word-spacing:-20.823040pt;}
.ws16{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.890667pt;}
.ws8{word-spacing:-13.872533pt;}
.ws6{word-spacing:-13.854933pt;}
.ws17{word-spacing:-13.816320pt;}
.ws5{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.422080pt;}
.wsa{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1a{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.592000pt;}
.ws18{word-spacing:-12.576000pt;}
.ws19{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.176000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:29.707520pt;}
.ws12{word-spacing:45.067520pt;}
.ws10{word-spacing:205.174187pt;}
._8{margin-left:-4.075093pt;}
._d{margin-left:-3.172693pt;}
._5{margin-left:-2.272000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.356373pt;}
._4{width:2.391467pt;}
._6{width:4.030720pt;}
._7{width:5.792427pt;}
._b{width:7.443200pt;}
._a{width:8.732160pt;}
._2{width:10.411520pt;}
._3{width:11.523413pt;}
._9{width:12.472320pt;}
._c{width:14.607360pt;}
._e{width:16.112640pt;}
._f{width:17.064960pt;}
._10{width:18.025387pt;}
._12{width:24.890880pt;}
._13{width:26.327040pt;}
._14{width:27.930880pt;}
._11{width:230.065067pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs9{font-size:48.640000pt;}
.fsa{font-size:48.768000pt;}
.fs4{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:2.880000pt;}
.y7d{bottom:3.840000pt;}
.y79{bottom:4.160000pt;}
.y73{bottom:4.800000pt;}
.y9a{bottom:4.840000pt;}
.y84{bottom:5.120000pt;}
.y155{bottom:5.440000pt;}
.y158{bottom:5.760000pt;}
.yd{bottom:8.000000pt;}
.y97{bottom:14.720000pt;}
.ya5{bottom:15.360000pt;}
.y96{bottom:17.600000pt;}
.ya4{bottom:18.240000pt;}
.y10a{bottom:19.333333pt;}
.y7b{bottom:19.840000pt;}
.y77{bottom:22.400000pt;}
.y151{bottom:25.320000pt;}
.y153{bottom:27.200000pt;}
.y86{bottom:30.720000pt;}
.y95{bottom:32.640000pt;}
.y85{bottom:33.600000pt;}
.y142{bottom:35.066667pt;}
.y132{bottom:35.746667pt;}
.y108{bottom:37.093333pt;}
.y12f{bottom:37.693333pt;}
.y76{bottom:37.760000pt;}
.y14a{bottom:38.560000pt;}
.y13d{bottom:39.840000pt;}
.yc{bottom:41.920000pt;}
.y13a{bottom:43.173333pt;}
.y90{bottom:47.360000pt;}
.y94{bottom:48.000000pt;}
.y82{bottom:48.954667pt;}
.ya2{bottom:48.960000pt;}
.y9{bottom:50.880000pt;}
.y75{bottom:53.120000pt;}
.y136{bottom:53.920000pt;}
.y146{bottom:55.906667pt;}
.y135{bottom:57.213333pt;}
.y8f{bottom:62.760000pt;}
.y93{bottom:63.400000pt;}
.y13e{bottom:63.933333pt;}
.y81{bottom:64.314667pt;}
.ya1{bottom:64.320000pt;}
.y145{bottom:65.413333pt;}
.y141{bottom:70.013333pt;}
.y103{bottom:70.560000pt;}
.y149{bottom:71.293333pt;}
.y131{bottom:73.026667pt;}
.yb{bottom:76.160000pt;}
.y139{bottom:76.346667pt;}
.y8e{bottom:78.120000pt;}
.y92{bottom:78.760000pt;}
.ya0{bottom:79.706667pt;}
.y80{bottom:79.714667pt;}
.y13c{bottom:81.280000pt;}
.y134{bottom:92.613333pt;}
.y8d{bottom:93.480000pt;}
.y9f{bottom:95.066667pt;}
.y7f{bottom:95.074667pt;}
.y104{bottom:96.320000pt;}
.y144{bottom:97.413333pt;}
.y7e{bottom:98.272000pt;}
.y17c{bottom:98.912000pt;}
.y12e{bottom:99.333333pt;}
.yce{bottom:99.552000pt;}
.y148{bottom:104.026667pt;}
.y140{bottom:104.986667pt;}
.y12d{bottom:105.946667pt;}
.y138{bottom:109.506667pt;}
.y130{bottom:110.333333pt;}
.y3b{bottom:110.752000pt;}
.ycd{bottom:114.912000pt;}
.y17b{bottom:115.232000pt;}
.y109{bottom:115.360000pt;}
.y8a{bottom:115.872000pt;}
.y105{bottom:122.080000pt;}
.y3a{bottom:131.552000pt;}
.y17a{bottom:131.872000pt;}
.y1a3{bottom:132.192000pt;}
.y89{bottom:133.786667pt;}
.ye5{bottom:142.426667pt;}
.ycc{bottom:147.546667pt;}
.y106{bottom:147.840000pt;}
.y179{bottom:148.506667pt;}
.y39{bottom:151.066667pt;}
.y88{bottom:151.386667pt;}
.y137{bottom:151.973333pt;}
.y147{bottom:153.786667pt;}
.y13f{bottom:155.453333pt;}
.ye4{bottom:158.746667pt;}
.y178{bottom:164.826667pt;}
.y1a2{bottom:165.146667pt;}
.y38{bottom:166.426667pt;}
.y87{bottom:168.986667pt;}
.ycb{bottom:173.466667pt;}
.y107{bottom:173.600000pt;}
.ye3{bottom:175.386667pt;}
.y177{bottom:181.506667pt;}
.y37{bottom:181.826667pt;}
.y83{bottom:188.226667pt;}
.y116{bottom:190.146667pt;}
.y14f{bottom:192.066667pt;}
.y1a1{bottom:192.386667pt;}
.y36{bottom:197.186667pt;}
.y176{bottom:198.146667pt;}
.y101{bottom:198.786667pt;}
.yca{bottom:199.426667pt;}
.y10b{bottom:200.453333pt;}
.ye2{bottom:202.626667pt;}
.y74{bottom:207.106667pt;}
.y115{bottom:207.746667pt;}
.y14e{bottom:208.386667pt;}
.y1a0{bottom:209.026667pt;}
.y35{bottom:212.226667pt;}
.ye1{bottom:219.266667pt;}
.y7a{bottom:223.426667pt;}
.y14d{bottom:225.026667pt;}
.yc9{bottom:225.346667pt;}
.y19f{bottom:225.666667pt;}
.y100{bottom:225.986667pt;}
.y34{bottom:227.586667pt;}
.y7c{bottom:239.746667pt;}
.y14c{bottom:241.666667pt;}
.y175{bottom:241.986667pt;}
.y33{bottom:242.946667pt;}
.ye0{bottom:246.466667pt;}
.yc8{bottom:251.266667pt;}
.y19e{bottom:252.866667pt;}
.yff{bottom:254.786667pt;}
.y78{bottom:256.066667pt;}
.y32{bottom:258.306667pt;}
.yc7{bottom:260.226667pt;}
.y63{bottom:260.546667pt;}
.ydf{bottom:263.106667pt;}
.y12b{bottom:264.386667pt;}
.y19d{bottom:269.186667pt;}
.yfe{bottom:270.146667pt;}
.y72{bottom:274.626667pt;}
.y174{bottom:274.946667pt;}
.y31{bottom:277.506667pt;}
.y62{bottom:278.146667pt;}
.yde{bottom:279.426667pt;}
.y12a{bottom:279.746667pt;}
.yfd{bottom:285.506667pt;}
.y19c{bottom:285.826667pt;}
.y14b{bottom:286.786667pt;}
.y114{bottom:289.053333pt;}
.y173{bottom:291.613333pt;}
.y30{bottom:292.893333pt;}
.y129{bottom:295.133333pt;}
.y61{bottom:295.773333pt;}
.yc6{bottom:296.093333pt;}
.yfc{bottom:300.893333pt;}
.y113{bottom:306.653333pt;}
.y2f{bottom:308.253333pt;}
.y71{bottom:308.893333pt;}
.y128{bottom:310.493333pt;}
.yc5{bottom:311.453333pt;}
.ydd{bottom:312.733333pt;}
.y19b{bottom:313.053333pt;}
.y60{bottom:313.373333pt;}
.yfb{bottom:315.933333pt;}
.y172{bottom:318.813333pt;}
.y2e{bottom:323.613333pt;}
.y112{bottom:324.253333pt;}
.y127{bottom:325.853333pt;}
.yc4{bottom:326.493333pt;}
.ydc{bottom:329.053333pt;}
.y19a{bottom:329.693333pt;}
.y5f{bottom:330.973333pt;}
.y171{bottom:335.133333pt;}
.y70{bottom:336.093333pt;}
.y126{bottom:341.213333pt;}
.yc3{bottom:341.853333pt;}
.y2d{bottom:343.133333pt;}
.y199{bottom:346.013333pt;}
.y5e{bottom:348.573333pt;}
.y170{bottom:351.773333pt;}
.y6f{bottom:352.733333pt;}
.ydb{bottom:356.253333pt;}
.yc2{bottom:357.213333pt;}
.y2c{bottom:358.493333pt;}
.yfa{bottom:359.773333pt;}
.y5d{bottom:366.173333pt;}
.y6e{bottom:369.053333pt;}
.yc1{bottom:372.573333pt;}
.yda{bottom:372.893333pt;}
.y198{bottom:373.213333pt;}
.y125{bottom:373.533333pt;}
.y2b{bottom:373.853333pt;}
.yf9{bottom:376.413333pt;}
.y16f{bottom:378.973333pt;}
.y5c{bottom:383.773333pt;}
.y6d{bottom:385.693333pt;}
.yc0{bottom:387.933333pt;}
.y2a{bottom:388.893333pt;}
.y197{bottom:389.853333pt;}
.y124{bottom:390.173333pt;}
.y16e{bottom:395.613333pt;}
.yd9{bottom:400.133333pt;}
.y111{bottom:402.053333pt;}
.ybf{bottom:403.333333pt;}
.yf8{bottom:403.653333pt;}
.y123{bottom:406.853333pt;}
.y29{bottom:408.453333pt;}
.y16d{bottom:412.293333pt;}
.y6c{bottom:412.933333pt;}
.y196{bottom:417.093333pt;}
.y5b{bottom:417.733333pt;}
.ybe{bottom:418.693333pt;}
.yf7{bottom:420.293333pt;}
.y122{bottom:423.173333pt;}
.yd8{bottom:424.773333pt;}
.y28{bottom:427.653333pt;}
.y6b{bottom:429.573333pt;}
.y195{bottom:433.733333pt;}
.yf6{bottom:436.613333pt;}
.y16c{bottom:439.493333pt;}
.y27{bottom:443.013333pt;}
.y6a{bottom:445.893333pt;}
.y121{bottom:450.373333pt;}
.y5a{bottom:451.333333pt;}
.yf5{bottom:453.253333pt;}
.y16b{bottom:455.813333pt;}
.y26{bottom:458.373333pt;}
.y69{bottom:462.533333pt;}
.y120{bottom:467.013333pt;}
.y59{bottom:468.933333pt;}
.y16a{bottom:472.453333pt;}
.y25{bottom:473.733333pt;}
.ybd{bottom:477.253333pt;}
.y194{bottom:477.573333pt;}
.y68{bottom:479.173333pt;}
.yf4{bottom:480.453333pt;}
.y11f{bottom:483.653333pt;}
.y58{bottom:486.533333pt;}
.y24{bottom:489.093333pt;}
.ybc{bottom:492.613333pt;}
.y110{bottom:495.493333pt;}
.yf3{bottom:497.093333pt;}
.y11e{bottom:499.973333pt;}
.y23{bottom:504.453333pt;}
.y193{bottom:504.773333pt;}
.y169{bottom:505.413333pt;}
.y67{bottom:506.373333pt;}
.y57{bottom:506.693333pt;}
.ybb{bottom:507.973333pt;}
.yf2{bottom:513.440000pt;}
.y11d{bottom:516.640000pt;}
.y22{bottom:519.840000pt;}
.y192{bottom:521.120000pt;}
.y168{bottom:522.080000pt;}
.y10f{bottom:522.720000pt;}
.y66{bottom:523.040000pt;}
.yba{bottom:523.360000pt;}
.y56{bottom:524.320000pt;}
.y11c{bottom:533.280000pt;}
.y21{bottom:535.200000pt;}
.y191{bottom:537.760000pt;}
.yb9{bottom:538.400000pt;}
.y10e{bottom:539.360000pt;}
.yf1{bottom:540.640000pt;}
.y55{bottom:542.240000pt;}
.y167{bottom:549.280000pt;}
.y1b4{bottom:550.240000pt;}
.y20{bottom:550.560000pt;}
.y65{bottom:551.520000pt;}
.yb8{bottom:553.760000pt;}
.y190{bottom:554.400000pt;}
.y10d{bottom:556.000000pt;}
.yf0{bottom:557.280000pt;}
.y54{bottom:559.840000pt;}
.y11b{bottom:560.480000pt;}
.y1b3{bottom:565.600000pt;}
.y166{bottom:565.920000pt;}
.yb7{bottom:569.120000pt;}
.y1f{bottom:569.760000pt;}
.yef{bottom:573.920000pt;}
.y64{bottom:575.840000pt;}
.y11a{bottom:577.120000pt;}
.y53{bottom:577.440000pt;}
.y1b2{bottom:580.640000pt;}
.y18f{bottom:581.600000pt;}
.y165{bottom:582.560000pt;}
.yb6{bottom:584.480000pt;}
.y1e{bottom:585.120000pt;}
.yee{bottom:590.560000pt;}
.y52{bottom:595.040000pt;}
.y18e{bottom:598.240000pt;}
.y164{bottom:598.880000pt;}
.yb5{bottom:599.840000pt;}
.y1d{bottom:600.480000pt;}
.y119{bottom:604.320000pt;}
.y1b1{bottom:606.880000pt;}
.y10c{bottom:609.120000pt;}
.y51{bottom:612.640000pt;}
.y18d{bottom:614.560000pt;}
.y163{bottom:615.520000pt;}
.y1c{bottom:615.840000pt;}
.yed{bottom:617.760000pt;}
.yb3{bottom:620.320000pt;}
.y1b0{bottom:622.240000pt;}
.yb1{bottom:623.546667pt;}
.yb2{bottom:628.666667pt;}
.y50{bottom:630.266667pt;}
.y118{bottom:632.826667pt;}
.y1b{bottom:635.066667pt;}
.yb4{bottom:637.306667pt;}
.y18c{bottom:641.786667pt;}
.y162{bottom:642.746667pt;}
.yec{bottom:644.986667pt;}
.yb0{bottom:647.546667pt;}
.y4f{bottom:647.866667pt;}
.y117{bottom:648.186667pt;}
.y1a{bottom:650.426667pt;}
.y1af{bottom:652.666667pt;}
.y18b{bottom:658.426667pt;}
.y161{bottom:659.386667pt;}
.yaf{bottom:662.906667pt;}
.y4e{bottom:665.466667pt;}
.y19{bottom:665.786667pt;}
.yeb{bottom:673.466667pt;}
.y13b{bottom:674.560000pt;}
.y143{bottom:674.880000pt;}
.y18a{bottom:675.066667pt;}
.y160{bottom:675.706667pt;}
.yae{bottom:678.266667pt;}
.y18{bottom:681.146667pt;}
.y4d{bottom:683.066667pt;}
.y1ae{bottom:684.026667pt;}
.y189{bottom:691.386667pt;}
.yad{bottom:693.626667pt;}
.y17{bottom:696.506667pt;}
.yea{bottom:698.106667pt;}
.y102{bottom:698.880000pt;}
.y1ad{bottom:699.386667pt;}
.y4c{bottom:700.666667pt;}
.y15f{bottom:703.226667pt;}
.y188{bottom:708.026667pt;}
.y1ac{bottom:714.746667pt;}
.y4b{bottom:718.586667pt;}
.yac{bottom:720.826667pt;}
.y187{bottom:724.666667pt;}
.y16{bottom:725.306667pt;}
.y15e{bottom:730.426667pt;}
.y4a{bottom:736.226667pt;}
.yab{bottom:737.186667pt;}
.y15{bottom:738.466667pt;}
.y1ab{bottom:740.706667pt;}
.y186{bottom:741.346667pt;}
.y15c{bottom:743.586667pt;}
.y14{bottom:751.586667pt;}
.y49{bottom:753.826667pt;}
.y1aa{bottom:756.066667pt;}
.y185{bottom:757.666667pt;}
.yaa{bottom:764.386667pt;}
.y13{bottom:765.026667pt;}
.y48{bottom:771.426667pt;}
.y184{bottom:774.306667pt;}
.y12{bottom:777.186667pt;}
.y9e{bottom:777.506667pt;}
.y15d{bottom:786.786667pt;}
.y1a9{bottom:787.426667pt;}
.y47{bottom:789.026667pt;}
.ya9{bottom:795.746667pt;}
.y11{bottom:800.546667pt;}
.y183{bottom:801.506667pt;}
.y1a8{bottom:802.786667pt;}
.y46{bottom:806.626667pt;}
.y159{bottom:808.546667pt;}
.ya8{bottom:813.666667pt;}
.y182{bottom:818.146667pt;}
.y45{bottom:824.226667pt;}
.y1a7{bottom:828.706667pt;}
.y15b{bottom:829.986667pt;}
.ya7{bottom:831.586667pt;}
.yd7{bottom:834.786667pt;}
.y10{bottom:837.666667pt;}
.y44{bottom:841.826667pt;}
.y181{bottom:845.346667pt;}
.ya6{bottom:849.533333pt;}
.y15a{bottom:851.773333pt;}
.y1a6{bottom:854.973333pt;}
.y12c{bottom:857.280000pt;}
.y133{bottom:857.600000pt;}
.y43{bottom:859.453333pt;}
.yd6{bottom:862.013333pt;}
.yf{bottom:863.933333pt;}
.ya3{bottom:867.773333pt;}
.y1a5{bottom:870.333333pt;}
.y180{bottom:872.573333pt;}
.y152{bottom:873.533333pt;}
.y42{bottom:877.053333pt;}
.yd5{bottom:878.653333pt;}
.y9d{bottom:885.693333pt;}
.y17f{bottom:889.213333pt;}
.ye{bottom:890.493333pt;}
.y41{bottom:894.973333pt;}
.y156{bottom:895.293333pt;}
.y1a4{bottom:896.253333pt;}
.y8c{bottom:903.613333pt;}
.y17e{bottom:905.533333pt;}
.yd4{bottom:911.613333pt;}
.y40{bottom:912.573333pt;}
.y8{bottom:914.493333pt;}
.y154{bottom:916.733333pt;}
.y9c{bottom:921.213333pt;}
.y17d{bottom:922.173333pt;}
.yd3{bottom:928.253333pt;}
.y3f{bottom:930.173333pt;}
.y7{bottom:932.413333pt;}
.y150{bottom:938.173333pt;}
.ye9{bottom:938.813333pt;}
.y9b{bottom:939.133333pt;}
.y3e{bottom:947.773333pt;}
.y6{bottom:950.333333pt;}
.yd2{bottom:954.173333pt;}
.ye8{bottom:955.133333pt;}
.y99{bottom:956.733333pt;}
.y3d{bottom:965.413333pt;}
.ya{bottom:967.653333pt;}
.yd1{bottom:969.573333pt;}
.y5{bottom:971.173333pt;}
.y98{bottom:974.373333pt;}
.ye7{bottom:982.373333pt;}
.y3c{bottom:983.013333pt;}
.yd0{bottom:984.933333pt;}
.y91{bottom:991.973333pt;}
.y4{bottom:993.253333pt;}
.ye6{bottom:999.013333pt;}
.ycf{bottom:1000.293333pt;}
.y8b{bottom:1010.213333pt;}
.y3{bottom:1015.653333pt;}
.y2{bottom:1037.733333pt;}
.y1{bottom:1060.133333pt;}
.h11{height:16.320000pt;}
.hf{height:16.640000pt;}
.h14{height:17.280000pt;}
.hc{height:17.312000pt;}
.h13{height:17.600000pt;}
.h2c{height:20.480000pt;}
.h2d{height:20.800000pt;}
.h2e{height:21.120000pt;}
.h30{height:21.152000pt;}
.h8{height:37.063125pt;}
.hd{height:38.928750pt;}
.hb{height:39.138750pt;}
.h20{height:42.636250pt;}
.h22{height:42.678750pt;}
.h24{height:42.791062pt;}
.h17{height:46.037500pt;}
.h23{height:46.343750pt;}
.h28{height:46.436437pt;}
.h7{height:46.785625pt;}
.h9{height:47.171250pt;}
.h26{height:48.378750pt;}
.h10{height:49.280000pt;}
.h1d{height:51.663750pt;}
.h1f{height:51.776062pt;}
.h3{height:58.563750pt;}
.h1a{height:60.077917pt;}
.ha{height:60.288750pt;}
.h2a{height:60.512000pt;}
.h6{height:62.100625pt;}
.h2b{height:63.680000pt;}
.h31{height:64.320000pt;}
.h2f{height:64.352000pt;}
.h2{height:65.531250pt;}
.he{height:65.600000pt;}
.h16{height:70.515000pt;}
.h1c{height:83.011250pt;}
.h19{height:83.421667pt;}
.h5{height:84.711875pt;}
.h4{height:102.400000pt;}
.h15{height:105.632000pt;}
.h12{height:107.552000pt;}
.h1b{height:111.475000pt;}
.h18{height:114.141667pt;}
.h25{height:170.560000pt;}
.h21{height:170.880000pt;}
.h29{height:179.200000pt;}
.h27{height:179.520000pt;}
.h1e{height:225.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:88.352000pt;}
.w11{width:90.912000pt;}
.w17{width:91.232000pt;}
.w16{width:96.672000pt;}
.w4{width:99.552000pt;}
.w6{width:99.584000pt;}
.w12{width:99.872000pt;}
.w18{width:100.192000pt;}
.w8{width:100.864000pt;}
.w14{width:103.072000pt;}
.w13{width:103.104000pt;}
.w1a{width:103.392000pt;}
.w19{width:103.424000pt;}
.w15{width:107.264000pt;}
.w5{width:149.506667pt;}
.w9{width:151.386667pt;}
.w7{width:156.226667pt;}
.wa{width:158.146667pt;}
.w10{width:204.253333pt;}
.wf{width:270.720000pt;}
.we{width:272.640000pt;}
.wd{width:281.600000pt;}
.w3{width:503.226667pt;}
.wc{width:578.240000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4f{left:4.480000pt;}
.x9{left:7.360000pt;}
.x5{left:9.600000pt;}
.x51{left:16.640000pt;}
.x5c{left:17.600000pt;}
.x53{left:21.120000pt;}
.x55{left:22.760000pt;}
.x57{left:24.320000pt;}
.x58{left:25.280000pt;}
.x17{left:27.200000pt;}
.x5a{left:28.800000pt;}
.x16{left:30.080000pt;}
.x59{left:32.000000pt;}
.x5b{left:33.640000pt;}
.x1c{left:35.520000pt;}
.xf{left:36.832000pt;}
.x1d{left:37.792000pt;}
.x18{left:39.074667pt;}
.x27{left:42.533333pt;}
.x1a{left:44.506667pt;}
.x1b{left:49.600000pt;}
.xe{left:50.594667pt;}
.x44{left:51.680000pt;}
.x4c{left:55.706667pt;}
.x12{left:62.400000pt;}
.x40{left:64.986667pt;}
.x28{left:71.266667pt;}
.x19{left:74.906667pt;}
.x11{left:75.840000pt;}
.x3e{left:90.173333pt;}
.x1{left:94.431988pt;}
.x48{left:97.786667pt;}
.x3f{left:104.826667pt;}
.x43{left:111.173333pt;}
.x47{left:112.933333pt;}
.x7{left:118.463988pt;}
.x46{left:119.680000pt;}
.x4b{left:120.986667pt;}
.x6{left:133.506655pt;}
.x29{left:141.786667pt;}
.x1f{left:157.826655pt;}
.x45{left:163.360000pt;}
.x2a{left:165.306667pt;}
.x4d{left:168.093333pt;}
.x41{left:170.693333pt;}
.x1e{left:185.346655pt;}
.x2b{left:188.826667pt;}
.xa{left:193.986667pt;}
.x10{left:195.293333pt;}
.x42{left:196.226667pt;}
.x49{left:203.360000pt;}
.x3c{left:207.453333pt;}
.x2c{left:212.320000pt;}
.x4{left:221.213333pt;}
.x2d{left:235.840000pt;}
.x2e{left:259.333333pt;}
.x2f{left:282.853333pt;}
.x3b{left:290.946667pt;}
.x24{left:296.453322pt;}
.x50{left:299.973333pt;}
.x30{left:306.373333pt;}
.x22{left:311.813322pt;}
.x20{left:319.493322pt;}
.x31{left:329.853333pt;}
.xb{left:343.493333pt;}
.x13{left:346.693333pt;}
.x32{left:353.373333pt;}
.x21{left:361.439988pt;}
.x33{left:376.893333pt;}
.x23{left:379.679988pt;}
.x3{left:381.919988pt;}
.x52{left:391.520000pt;}
.x2{left:396.959988pt;}
.x34{left:400.386667pt;}
.x4a{left:401.600000pt;}
.x35{left:423.906667pt;}
.xc{left:443.066667pt;}
.x14{left:447.546667pt;}
.x36{left:470.906667pt;}
.x54{left:492.026667pt;}
.x37{left:494.426667pt;}
.x38{left:517.920000pt;}
.x39{left:541.440000pt;}
.x3a{left:564.960000pt;}
.x56{left:595.773333pt;}
.xd{left:599.293333pt;}
.x15{left:605.693333pt;}
.x25{left:672.933322pt;}
.x26{left:674.533322pt;}
.x3d{left:686.693322pt;}
.x8{left:694.693322pt;}
.x4e{left:699.493322pt;}
}




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