
    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_36b4e75f6a32e8d565599886.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_16da42de0db36dacc4ed2a53.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_48fba6f2b22261f2ef5ded3d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_278174b8fa68f0d7742c81be.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_1f958c9fcfdc1361770616b5.woff')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_32412816e8075a493ca18c3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_013b321b382ae58da8407e7b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b09c1ff9fe8da9dbab464362.woff')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_130301694ab792f9947e2b7d.woff')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_89d6c9e3cdfbf53f53aa892d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_70576c347f73b881bf74f8ef.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.783691;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:ffd;src:url('chunks/assets/font_19f823a055dae94e57ef5880.woff')format("woff");}.ffd{font-family:ffd;line-height:1.090820;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:ffe;src:url('chunks/assets/font_587b1c71d36dc95b17e7502e.woff')format("woff");}.ffe{font-family:ffe;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;}
.m1{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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.440000px;}
.vc{vertical-align:4.320000px;}
.v4{vertical-align:15.840000px;}
.v6{vertical-align:18.720000px;}
.vb{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.ve{vertical-align:30.240000px;}
.v5{vertical-align:36.000000px;}
.v3{vertical-align:41.760000px;}
.vd{vertical-align:47.520000px;}
.v9{vertical-align:54.720000px;}
.v8{vertical-align:57.600000px;}
.va{vertical-align:80.640000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls22{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls1e{letter-spacing:-0.525600px;}
.ls7{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.381600px;}
.ls6{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.305400px;}
.ls2c{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.021600px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.043200px;}
.ls15{letter-spacing:0.064800px;}
.ls29{letter-spacing:0.080640px;}
.ls1c{letter-spacing:0.129600px;}
.ls21{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.152400px;}
.ls24{letter-spacing:0.178800px;}
.ls23{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.305400px;}
.ls1a{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.457800px;}
.ls1f{letter-spacing:0.468000px;}
.ls9{letter-spacing:0.504000px;}
.ls25{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.684000px;}
.ls1{letter-spacing:0.720000px;}
.lse{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.864000px;}
.ls2a{letter-spacing:1.584000px;}
.ls18{letter-spacing:2.217600px;}
.ls11{letter-spacing:2.370240px;}
.ls14{letter-spacing:3.810240px;}
.ls17{letter-spacing:10.872000px;}
.lsf{letter-spacing:31.968000px;}
.ls2{letter-spacing:33.276000px;}
.ls10{letter-spacing:157.080000px;}
.ls13{letter-spacing:327.012000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.648000px;}
.ws7{word-spacing:-18.504000px;}
.ws18{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws21{word-spacing:-17.352000px;}
.ws17{word-spacing:-17.208000px;}
.ws1a{word-spacing:-17.172000px;}
.ws1d{word-spacing:-17.017800px;}
.ws1b{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.128000px;}
.ws4{word-spacing:-16.102200px;}
.ws14{word-spacing:-15.984000px;}
.ws16{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.048000px;}
.ws0{word-spacing:-14.616000px;}
.ws20{word-spacing:-13.716000px;}
.ws1e{word-spacing:-13.680000px;}
.ws2{word-spacing:-11.880000px;}
.wsf{word-spacing:-11.556000px;}
.wsb{word-spacing:-11.217600px;}
.wsd{word-spacing:-11.131200px;}
.wse{word-spacing:-11.088000px;}
.ws10{word-spacing:-11.066400px;}
.ws19{word-spacing:-10.618800px;}
.wsc{word-spacing:-10.562400px;}
.ws6{word-spacing:0.000000px;}
.ws12{word-spacing:5.448000px;}
.ws1f{word-spacing:651.243360px;}
._17{margin-left:-7.704000px;}
._4{margin-left:-6.264000px;}
._7{margin-left:-5.088000px;}
._3{margin-left:-3.240000px;}
._1{margin-left:-1.368000px;}
._0{width:1.224000px;}
._2{width:2.400000px;}
._8{width:4.173120px;}
._9{width:5.253120px;}
._e{width:6.534720px;}
._a{width:8.412480px;}
._b{width:9.648000px;}
._15{width:10.797120px;}
._c{width:11.856960px;}
._d{width:12.911040px;}
._6{width:14.304000px;}
._f{width:15.544800px;}
._14{width:16.646400px;}
._5{width:19.944000px;}
._16{width:21.048000px;}
._10{width:22.248000px;}
._18{width:34.284000px;}
._11{width:322.788000px;}
._12{width:411.281760px;}
._13{width:432.699360px;}
.fc7{color:rgb(0,29,53);}
.fc4{color:rgb(255,0,0);}
.fc6{color:rgb(31,31,31);}
.fc3{color:rgb(17,17,17);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(4,12,40);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:50.400000px;}
.fs6{font-size:54.720000px;}
.fs7{font-size:54.864000px;}
.fs8{font-size:63.360000px;}
.fs9{font-size:63.504000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:3.600000px;}
.y11c{bottom:3.630000px;}
.yd8{bottom:3.645000px;}
.yb3{bottom:5.400000px;}
.yaa{bottom:5.760000px;}
.yac{bottom:6.840000px;}
.y11d{bottom:6.870000px;}
.yd9{bottom:6.885000px;}
.ya5{bottom:7.200000px;}
.y107{bottom:7.245000px;}
.y10f{bottom:7.560000px;}
.ye1{bottom:7.920000px;}
.yea{bottom:10.080000px;}
.y11b{bottom:10.110000px;}
.y139{bottom:10.440000px;}
.ya4{bottom:10.800000px;}
.y10e{bottom:11.160000px;}
.y17c{bottom:11.484000px;}
.y16f{bottom:12.570000px;}
.yd4{bottom:22.065000px;}
.ya1{bottom:22.680000px;}
.y16e{bottom:28.080000px;}
.y116{bottom:31.680000px;}
.yde{bottom:36.390000px;}
.yca{bottom:43.485000px;}
.y163{bottom:43.920000px;}
.ybf{bottom:46.470000px;}
.yc2{bottom:50.220000px;}
.yd0{bottom:50.970000px;}
.ybd{bottom:53.250000px;}
.yc0{bottom:55.470000px;}
.ycc{bottom:56.955000px;}
.yc5{bottom:56.985000px;}
.yc1{bottom:57.750000px;}
.y7{bottom:57.960000px;}
.y133{bottom:59.070000px;}
.yc3{bottom:59.970000px;}
.ya8{bottom:60.120000px;}
.y173{bottom:60.510000px;}
.y13b{bottom:60.525000px;}
.y10a{bottom:63.390000px;}
.y164{bottom:65.880000px;}
.yd2{bottom:67.500000px;}
.ybb{bottom:68.220000px;}
.yc9{bottom:68.970000px;}
.yc7{bottom:73.470000px;}
.yc4{bottom:74.235000px;}
.ycb{bottom:74.955000px;}
.ycf{bottom:76.470000px;}
.ybe{bottom:77.970000px;}
.yc8{bottom:78.735000px;}
.ybc{bottom:80.970000px;}
.ycd{bottom:83.985000px;}
.yc6{bottom:86.970000px;}
.yd1{bottom:87.735000px;}
.y165{bottom:87.840000px;}
.y17b{bottom:88.950000px;}
.y120{bottom:90.756000px;}
.y1d1{bottom:91.116000px;}
.yfd{bottom:92.916000px;}
.yce{bottom:92.955000px;}
.y4b{bottom:93.996000px;}
.y15d{bottom:95.076000px;}
.y7f{bottom:101.916000px;}
.y1b8{bottom:104.076000px;}
.yad{bottom:105.516000px;}
.yfe{bottom:108.354000px;}
.y171{bottom:108.390000px;}
.y166{bottom:109.800000px;}
.y111{bottom:113.805000px;}
.y4a{bottom:114.516000px;}
.y1d0{bottom:114.876000px;}
.y174{bottom:115.170000px;}
.y6d{bottom:115.236000px;}
.ye4{bottom:116.685000px;}
.y12d{bottom:117.036000px;}
.y102{bottom:119.196000px;}
.y23{bottom:123.516000px;}
.y15c{bottom:123.876000px;}
.y170{bottom:126.000000px;}
.y1b7{bottom:127.836000px;}
.yb2{bottom:129.276000px;}
.y167{bottom:131.760000px;}
.y7e{bottom:132.876000px;}
.y49{bottom:135.396000px;}
.y103{bottom:136.845000px;}
.y161{bottom:137.550000px;}
.yae{bottom:137.559000px;}
.y6c{bottom:139.356000px;}
.y12c{bottom:140.796000px;}
.yb5{bottom:141.195000px;}
.y175{bottom:142.530000px;}
.y101{bottom:143.316000px;}
.y168{bottom:153.720000px;}
.y1cf{bottom:153.750000px;}
.yb1{bottom:155.550000px;}
.y48{bottom:155.910000px;}
.yd3{bottom:156.165000px;}
.y22{bottom:160.590000px;}
.y1b6{bottom:163.830000px;}
.y7d{bottom:164.190000px;}
.y100{bottom:167.070000px;}
.y176{bottom:169.845000px;}
.y6b{bottom:175.350000px;}
.y169{bottom:175.680000px;}
.y47{bottom:176.790000px;}
.y1ce{bottom:177.510000px;}
.y162{bottom:179.280000px;}
.y196{bottom:179.310000px;}
.yb0{bottom:179.670000px;}
.y21{bottom:182.190000px;}
.y160{bottom:185.865000px;}
.yb6{bottom:186.300000px;}
.y1b5{bottom:187.950000px;}
.yec{bottom:189.390000px;}
.y6e{bottom:189.750000px;}
.yff{bottom:193.350000px;}
.y7c{bottom:195.150000px;}
.y177{bottom:197.175000px;}
.y46{bottom:197.310000px;}
.y6f{bottom:197.355000px;}
.y16a{bottom:197.640000px;}
.y195{bottom:203.070000px;}
.yaf{bottom:205.995000px;}
.y6a{bottom:211.395000px;}
.y1b4{bottom:211.755000px;}
.y1cd{bottom:216.435000px;}
.yf4{bottom:217.110000px;}
.yf3{bottom:217.515000px;}
.y20{bottom:219.315000px;}
.y16b{bottom:219.600000px;}
.y12b{bottom:219.675000px;}
.y178{bottom:224.490000px;}
.y7b{bottom:226.155000px;}
.y194{bottom:227.235000px;}
.y97{bottom:230.115000px;}
.yb7{bottom:231.450000px;}
.y45{bottom:232.995000px;}
.y1b3{bottom:235.875000px;}
.y1cc{bottom:240.195000px;}
.y15f{bottom:240.765000px;}
.y1f{bottom:240.915000px;}
.y16c{bottom:241.560000px;}
.yfc{bottom:241.635000px;}
.y12a{bottom:243.795000px;}
.y69{bottom:247.395000px;}
.y193{bottom:250.995000px;}
.y179{bottom:251.850000px;}
.y44{bottom:253.875000px;}
.ya7{bottom:259.275000px;}
.y1b2{bottom:259.995000px;}
.y96{bottom:261.075000px;}
.y1e{bottom:262.875000px;}
.y16d{bottom:263.520000px;}
.y129{bottom:267.915000px;}
.yfb{bottom:268.635000px;}
.y7a{bottom:269.355000px;}
.y172{bottom:273.960000px;}
.y43{bottom:274.755000px;}
.y192{bottom:275.115000px;}
.yb8{bottom:276.585000px;}
.y1cb{bottom:278.715000px;}
.y17a{bottom:279.180000px;}
.y68{bottom:283.395000px;}
.y1b1{bottom:283.755000px;}
.y1d{bottom:284.475000px;}
.yab{bottom:285.555000px;}
.y95{bottom:292.035000px;}
.y128{bottom:293.835000px;}
.yfa{bottom:294.915000px;}
.y42{bottom:295.275000px;}
.y1ca{bottom:302.835000px;}
.y1c{bottom:306.435000px;}
.y1b0{bottom:307.875000px;}
.y14d{bottom:311.115000px;}
.ya9{bottom:311.475000px;}
.y79{bottom:312.195000px;}
.y41{bottom:316.155000px;}
.y67{bottom:319.395000px;}
.y127{bottom:320.145000px;}
.yf9{bottom:320.865000px;}
.yb9{bottom:321.690000px;}
.y94{bottom:323.025000px;}
.y1b{bottom:328.425000px;}
.y14c{bottom:334.905000px;}
.y191{bottom:335.265000px;}
.ya6{bottom:335.625000px;}
.y40{bottom:336.705000px;}
.y1c9{bottom:341.385000px;}
.y78{bottom:343.185000px;}
.y1af{bottom:343.905000px;}
.y126{bottom:346.425000px;}
.yf8{bottom:347.145000px;}
.y1a{bottom:350.025000px;}
.y93{bottom:354.345000px;}
.y66{bottom:355.425000px;}
.y3f{bottom:357.585000px;}
.y14b{bottom:359.025000px;}
.ya3{bottom:362.625000px;}
.y1c8{bottom:365.145000px;}
.yba{bottom:366.840000px;}
.y1ae{bottom:367.665000px;}
.y125{bottom:372.705000px;}
.yf7{bottom:373.425000px;}
.y77{bottom:374.505000px;}
.y3e{bottom:378.105000px;}
.y14a{bottom:382.785000px;}
.y190{bottom:383.145000px;}
.y19{bottom:387.105000px;}
.y1c7{bottom:389.265000px;}
.ya0{bottom:389.625000px;}
.y65{bottom:391.425000px;}
.y1ad{bottom:391.785000px;}
.y121{bottom:395.754000px;}
.y92{bottom:397.185000px;}
.yf6{bottom:397.545000px;}
.y3d{bottom:398.985000px;}
.y149{bottom:406.905000px;}
.y18{bottom:408.705000px;}
.y76{bottom:410.505000px;}
.yf5{bottom:423.825000px;}
.y124{bottom:425.265000px;}
.y64{bottom:427.425000px;}
.y1ac{bottom:427.785000px;}
.y17{bottom:430.665000px;}
.y18f{bottom:431.025000px;}
.y3c{bottom:434.265000px;}
.y91{bottom:440.430000px;}
.y15b{bottom:441.510000px;}
.y148{bottom:442.950000px;}
.y9f{bottom:447.630000px;}
.y123{bottom:449.430000px;}
.yeb{bottom:450.870000px;}
.y1ab{bottom:451.590000px;}
.y3b{bottom:455.190000px;}
.y15a{bottom:462.750000px;}
.y63{bottom:463.110000px;}
.y75{bottom:466.350000px;}
.y16{bottom:467.430000px;}
.y1aa{bottom:475.710000px;}
.y3a{bottom:476.070000px;}
.y122{bottom:476.430000px;}
.yf2{bottom:477.150000px;}
.y147{bottom:478.950000px;}
.y90{bottom:483.270000px;}
.y15{bottom:489.390000px;}
.y18e{bottom:490.830000px;}
.y39{bottom:496.590000px;}
.y62{bottom:499.110000px;}
.y11f{bottom:502.710000px;}
.yf1{bottom:503.430000px;}
.y159{bottom:504.150000px;}
.y9e{bottom:507.390000px;}
.y1a9{bottom:511.710000px;}
.y1c6{bottom:514.230000px;}
.y8f{bottom:514.590000px;}
.y18d{bottom:514.950000px;}
.y146{bottom:516.390000px;}
.y38{bottom:517.470000px;}
.y158{bottom:524.670000px;}
.y14{bottom:526.110000px;}
.y11e{bottom:526.470000px;}
.yf0{bottom:529.710000px;}
.y9d{bottom:531.510000px;}
.y61{bottom:535.110000px;}
.y1a8{bottom:535.830000px;}
.y145{bottom:536.190000px;}
.y37{bottom:537.990000px;}
.y1de{bottom:538.350000px;}
.y18c{bottom:539.070000px;}
.y8e{bottom:545.550000px;}
.y13{bottom:548.070000px;}
.y11a{bottom:550.590000px;}
.y1c5{bottom:553.140000px;}
.yef{bottom:553.500000px;}
.y144{bottom:555.660000px;}
.y36{bottom:558.900000px;}
.y1a7{bottom:559.620000px;}
.y157{bottom:566.100000px;}
.y9c{bottom:567.540000px;}
.y12{bottom:569.700000px;}
.y60{bottom:571.140000px;}
.y1dd{bottom:574.380000px;}
.y18b{bottom:574.740000px;}
.y143{bottom:575.460000px;}
.y119{bottom:576.900000px;}
.yee{bottom:579.780000px;}
.y1a6{bottom:583.740000px;}
.y156{bottom:586.980000px;}
.y8d{bottom:589.140000px;}
.y1c4{bottom:592.020000px;}
.y35{bottom:594.180000px;}
.y142{bottom:595.260000px;}
.y18a{bottom:598.500000px;}
.y8c{bottom:601.020000px;}
.y118{bottom:603.180000px;}
.y5f{bottom:603.900000px;}
.y9b{bottom:604.980000px;}
.y11{bottom:607.140000px;}
.y1dc{bottom:613.260000px;}
.y1c3{bottom:615.780000px;}
.y155{bottom:616.140000px;}
.y1a5{bottom:619.740000px;}
.y189{bottom:622.260000px;}
.y5e{bottom:625.140000px;}
.y34{bottom:629.460000px;}
.yed{bottom:630.180000px;}
.y141{bottom:633.420000px;}
.y1db{bottom:637.020000px;}
.y154{bottom:637.380000px;}
.y1c2{bottom:639.540000px;}
.y9a{bottom:643.860000px;}
.y5d{bottom:645.660000px;}
.y10{bottom:652.140000px;}
.y117{bottom:653.220000px;}
.y140{bottom:655.380000px;}
.y1a4{bottom:655.740000px;}
.ye9{bottom:656.460000px;}
.y8b{bottom:656.820000px;}
.y153{bottom:657.900000px;}
.y188{bottom:658.260000px;}
.y33{bottom:663.660000px;}
.y99{bottom:670.530000px;}
.y1da{bottom:675.930000px;}
.y115{bottom:677.370000px;}
.y5c{bottom:678.090000px;}
.y1c1{bottom:678.450000px;}
.y152{bottom:678.810000px;}
.y187{bottom:682.050000px;}
.y32{bottom:682.770000px;}
.y8a{bottom:687.810000px;}
.yf{bottom:691.050000px;}
.y1a3{bottom:691.770000px;}
.y13f{bottom:699.330000px;}
.y1d9{bottom:699.690000px;}
.y1c0{bottom:702.210000px;}
.y98{bottom:702.570000px;}
.y110{bottom:703.650000px;}
.yb4{bottom:704.880000px;}
.y186{bottom:705.810000px;}
.ye8{bottom:709.050000px;}
.y5b{bottom:710.850000px;}
.y31{bottom:713.370000px;}
.y151{bottom:714.090000px;}
.y13e{bottom:715.530000px;}
.ye{bottom:723.450000px;}
.y185{bottom:729.570000px;}
.y89{bottom:729.930000px;}
.y114{bottom:730.650000px;}
.y30{bottom:732.450000px;}
.ye7{bottom:736.050000px;}
.y1d8{bottom:738.570000px;}
.y88{bottom:738.930000px;}
.y13a{bottom:739.650000px;}
.y1bf{bottom:741.090000px;}
.y5a{bottom:743.610000px;}
.yd{bottom:744.690000px;}
.y150{bottom:750.090000px;}
.y2f{bottom:751.530000px;}
.y184{bottom:753.330000px;}
.y113{bottom:756.930000px;}
.ye6{bottom:763.050000px;}
.y1a2{bottom:763.410000px;}
.y59{bottom:764.490000px;}
.y1be{bottom:764.850000px;}
.y13d{bottom:765.930000px;}
.y2e{bottom:770.610000px;}
.y14f{bottom:774.210000px;}
.y183{bottom:777.090000px;}
.y87{bottom:777.450000px;}
.yc{bottom:783.210000px;}
.y58{bottom:785.415000px;}
.y1a1{bottom:787.575000px;}
.y1bd{bottom:788.655000px;}
.ye5{bottom:789.015000px;}
.y2d{bottom:789.375000px;}
.y13c{bottom:792.255000px;}
.y1d7{bottom:800.895000px;}
.y57{bottom:805.935000px;}
.y14e{bottom:806.295000px;}
.yb{bottom:807.375000px;}
.y15e{bottom:808.200000px;}
.y2c{bottom:808.455000px;}
.y112{bottom:809.535000px;}
.y1a0{bottom:811.695000px;}
.y182{bottom:813.135000px;}
.ye3{bottom:815.295000px;}
.y138{bottom:816.015000px;}
.y86{bottom:816.375000px;}
.y1d6{bottom:825.015000px;}
.y56{bottom:826.815000px;}
.y2b{bottom:827.535000px;}
.y10d{bottom:833.295000px;}
.y19f{bottom:835.455000px;}
.y181{bottom:836.895000px;}
.ye2{bottom:839.415000px;}
.y137{bottom:842.295000px;}
.ya{bottom:844.095000px;}
.y55{bottom:858.855000px;}
.y109{bottom:860.295000px;}
.y180{bottom:860.655000px;}
.y2a{bottom:861.015000px;}
.ye0{bottom:863.535000px;}
.y85{bottom:864.975000px;}
.y136{bottom:866.415000px;}
.y9{bottom:868.215000px;}
.y19e{bottom:871.455000px;}
.y54{bottom:880.095000px;}
.y29{bottom:882.975000px;}
.y17f{bottom:884.415000px;}
.y10c{bottom:886.575000px;}
.ydd{bottom:887.295000px;}
.y1bc{bottom:890.175000px;}
.y8{bottom:892.335000px;}
.y132{bottom:893.415000px;}
.y19d{bottom:895.575000px;}
.y53{bottom:900.615000px;}
.y84{bottom:908.205000px;}
.y1d5{bottom:911.445000px;}
.y10b{bottom:912.885000px;}
.ydf{bottom:913.605000px;}
.y6{bottom:916.845000px;}
.y135{bottom:917.565000px;}
.y19c{bottom:919.365000px;}
.y52{bottom:921.525000px;}
.y1bb{bottom:929.085000px;}
.y5{bottom:938.805000px;}
.y83{bottom:939.165000px;}
.ydc{bottom:939.885000px;}
.y51{bottom:942.045000px;}
.y19b{bottom:943.485000px;}
.y74{bottom:944.205000px;}
.y134{bottom:944.565000px;}
.y1d4{bottom:949.965000px;}
.y1ba{bottom:952.845000px;}
.y28{bottom:960.405000px;}
.y4{bottom:963.645000px;}
.ydb{bottom:964.005000px;}
.y108{bottom:966.165000px;}
.y19a{bottom:967.245000px;}
.y73{bottom:967.965000px;}
.y131{bottom:968.325000px;}
.y82{bottom:970.125000px;}
.y1d3{bottom:973.725000px;}
.y1b9{bottom:976.605000px;}
.y50{bottom:977.685000px;}
.y3{bottom:985.605000px;}
.yda{bottom:990.285000px;}
.y199{bottom:991.365000px;}
.y72{bottom:991.725000px;}
.y27{bottom:994.245000px;}
.y130{bottom:994.605000px;}
.y4f{bottom:998.565000px;}
.y81{bottom:1001.085000px;}
.y2{bottom:1007.565000px;}
.y1d2{bottom:1012.605000px;}
.y106{bottom:1014.045000px;}
.y17e{bottom:1015.485000px;}
.y71{bottom:1015.845000px;}
.y26{bottom:1016.205000px;}
.yd7{bottom:1016.565000px;}
.y12f{bottom:1018.770000px;}
.y4e{bottom:1019.490000px;}
.y1{bottom:1024.890000px;}
.y198{bottom:1027.410000px;}
.y25{bottom:1037.850000px;}
.y17d{bottom:1039.290000px;}
.y70{bottom:1039.650000px;}
.y105{bottom:1040.370000px;}
.yd6{bottom:1042.890000px;}
.y80{bottom:1044.330000px;}
.y12e{bottom:1045.050000px;}
.y197{bottom:1051.530000px;}
.y4d{bottom:1054.770000px;}
.y104{bottom:1066.650000px;}
.yd5{bottom:1069.170000px;}
.y24{bottom:1075.290000px;}
.y4c{bottom:1075.650000px;}
.h31{height:18.720000px;}
.h30{height:18.756000px;}
.h2f{height:19.080000px;}
.h1c{height:23.040000px;}
.h24{height:23.076000px;}
.h1b{height:23.400000px;}
.h16{height:23.436000px;}
.h17{height:25.200000px;}
.h21{height:25.236000px;}
.h19{height:25.560000px;}
.h1a{height:25.596000px;}
.h22{height:25.920000px;}
.h13{height:26.280000px;}
.h26{height:26.316000px;}
.h10{height:38.160000px;}
.h35{height:39.623906px;}
.h36{height:39.728180px;}
.h37{height:45.880313px;}
.h38{height:45.984586px;}
.h2b{height:47.196000px;}
.h11{height:47.965781px;}
.h1e{height:48.013594px;}
.h1f{height:51.876000px;}
.h7{height:52.136719px;}
.h14{height:54.596250px;}
.h8{height:58.121719px;}
.h3{height:60.478594px;}
.h12{height:60.479297px;}
.h34{height:60.683906px;}
.h4{height:61.770234px;}
.h5{height:61.950234px;}
.h2{height:62.402344px;}
.h1{height:62.507812px;}
.h6{height:63.175781px;}
.h2e{height:64.001953px;}
.ha{height:69.056016px;}
.h2d{height:74.196000px;}
.h15{height:75.636000px;}
.h29{height:78.876000px;}
.hb{height:85.613906px;}
.hd{height:96.816094px;}
.hc{height:99.175781px;}
.hf{height:110.695781px;}
.h27{height:123.876000px;}
.he{height:124.493906px;}
.h2a{height:128.916000px;}
.h20{height:131.796000px;}
.h28{height:152.310000px;}
.h18{height:153.030000px;}
.h23{height:204.870000px;}
.h25{height:232.635000px;}
.h32{height:284.040000px;}
.h33{height:299.880000px;}
.h1d{height:387.360000px;}
.h9{height:391.470000px;}
.h2c{height:411.225000px;}
.h0{height:1188.000000px;}
.wb{width:32.040000px;}
.wa{width:33.876000px;}
.w7{width:37.080000px;}
.w8{width:37.116000px;}
.w9{width:38.520000px;}
.w5{width:39.240000px;}
.w6{width:41.796000px;}
.wc{width:43.596000px;}
.wd{width:51.480000px;}
.wf{width:69.516000px;}
.w3{width:134.712000px;}
.w4{width:200.235000px;}
.w2{width:453.060000px;}
.w11{width:502.200000px;}
.w10{width:588.495000px;}
.we{width:659.880000px;}
.w12{width:663.480000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:5.040000px;}
.x23{left:6.840000px;}
.x1f{left:7.920000px;}
.x2a{left:9.000000px;}
.x20{left:10.080000px;}
.x1d{left:12.270000px;}
.x2b{left:13.365000px;}
.x28{left:14.400000px;}
.x2c{left:15.480000px;}
.x29{left:16.590000px;}
.x2d{left:17.685000px;}
.x55{left:23.325000px;}
.x4c{left:27.795000px;}
.x63{left:33.630000px;}
.x61{left:41.475000px;}
.x30{left:44.100000px;}
.x56{left:48.960000px;}
.x2f{left:50.865000px;}
.x57{left:72.900000px;}
.x31{left:92.730000px;}
.x6{left:108.035986px;}
.x17{left:109.115986px;}
.x32{left:110.955000px;}
.x9{left:113.075986px;}
.x8{left:114.515986px;}
.x5e{left:127.080000px;}
.x2e{left:128.160000px;}
.x33{left:129.165000px;}
.xb{left:135.071986px;}
.x62{left:137.445000px;}
.x12{left:140.111986px;}
.x13{left:144.071986px;}
.x34{left:147.390000px;}
.x5f{left:159.555000px;}
.x58{left:162.975000px;}
.x35{left:165.600000px;}
.x10{left:171.794986px;}
.x14{left:175.754986px;}
.x36{left:183.810000px;}
.x59{left:186.225000px;}
.x4e{left:199.875000px;}
.x37{left:202.035000px;}
.x52{left:207.000000px;}
.x38{left:220.245000px;}
.xe{left:226.140000px;}
.x15{left:234.824986px;}
.x39{left:238.470000px;}
.x1a{left:243.825000px;}
.x2{left:254.624986px;}
.x3a{left:256.680000px;}
.x5a{left:268.890000px;}
.x4d{left:271.950000px;}
.x3b{left:274.890000px;}
.x3c{left:293.115000px;}
.x5b{left:297.390000px;}
.xa{left:307.904986px;}
.x3d{left:311.325000px;}
.x3e{left:329.550000px;}
.x53{left:332.175000px;}
.x5{left:344.669986px;}
.xd{left:346.830000px;}
.x18{left:348.629986px;}
.x3f{left:365.970000px;}
.xc{left:372.029986px;}
.x5c{left:381.210000px;}
.x11{left:383.549986px;}
.x4{left:391.469986px;}
.x40{left:402.405000px;}
.x5d{left:408.570000px;}
.x3{left:411.659986px;}
.x41{left:420.630000px;}
.x50{left:424.259986px;}
.x7{left:439.739986px;}
.x54{left:443.340000px;}
.x1b{left:444.420000px;}
.xf{left:447.659986px;}
.x42{left:457.050000px;}
.x43{left:475.275000px;}
.x1c{left:484.020000px;}
.x44{left:493.485000px;}
.x45{left:511.710000px;}
.x1e{left:526.170000px;}
.x46{left:529.920000px;}
.x60{left:540.255000px;}
.x47{left:548.130000px;}
.x21{left:563.610000px;}
.x48{left:566.355000px;}
.x49{left:584.565000px;}
.x22{left:601.095000px;}
.x4a{left:602.790000px;}
.x4b{left:621.000000px;}
.x24{left:639.975000px;}
.x25{left:674.205000px;}
.x4f{left:711.284986px;}
.x26{left:713.805000px;}
.x27{left:746.205000px;}
.x16{left:789.809986px;}
.x51{left:790.889986px;}
.x1{left:799.529986px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.280000pt;}
.vc{vertical-align:3.840000pt;}
.v4{vertical-align:14.080000pt;}
.v6{vertical-align:16.640000pt;}
.vb{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.ve{vertical-align:26.880000pt;}
.v5{vertical-align:32.000000pt;}
.v3{vertical-align:37.120000pt;}
.vd{vertical-align:42.240000pt;}
.v9{vertical-align:48.640000pt;}
.v8{vertical-align:51.200000pt;}
.va{vertical-align:71.680000pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls22{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls1e{letter-spacing:-0.467200pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.339200pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.271467pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.038400pt;}
.ls15{letter-spacing:0.057600pt;}
.ls29{letter-spacing:0.071680pt;}
.ls1c{letter-spacing:0.115200pt;}
.ls21{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.135467pt;}
.ls24{letter-spacing:0.158933pt;}
.ls23{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.271467pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.406933pt;}
.ls1f{letter-spacing:0.416000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls25{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.608000pt;}
.ls1{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.768000pt;}
.ls2a{letter-spacing:1.408000pt;}
.ls18{letter-spacing:1.971200pt;}
.ls11{letter-spacing:2.106880pt;}
.ls14{letter-spacing:3.386880pt;}
.ls17{letter-spacing:9.664000pt;}
.lsf{letter-spacing:28.416000pt;}
.ls2{letter-spacing:29.578667pt;}
.ls10{letter-spacing:139.626667pt;}
.ls13{letter-spacing:290.677333pt;}
.wsa{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.576000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws21{word-spacing:-15.424000pt;}
.ws17{word-spacing:-15.296000pt;}
.ws1a{word-spacing:-15.264000pt;}
.ws1d{word-spacing:-15.126933pt;}
.ws1b{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.336000pt;}
.ws4{word-spacing:-14.313067pt;}
.ws14{word-spacing:-14.208000pt;}
.ws16{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.376000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws20{word-spacing:-12.192000pt;}
.ws1e{word-spacing:-12.160000pt;}
.ws2{word-spacing:-10.560000pt;}
.wsf{word-spacing:-10.272000pt;}
.wsb{word-spacing:-9.971200pt;}
.wsd{word-spacing:-9.894400pt;}
.wse{word-spacing:-9.856000pt;}
.ws10{word-spacing:-9.836800pt;}
.ws19{word-spacing:-9.438933pt;}
.wsc{word-spacing:-9.388800pt;}
.ws6{word-spacing:0.000000pt;}
.ws12{word-spacing:4.842667pt;}
.ws1f{word-spacing:578.882987pt;}
._17{margin-left:-6.848000pt;}
._4{margin-left:-5.568000pt;}
._7{margin-left:-4.522667pt;}
._3{margin-left:-2.880000pt;}
._1{margin-left:-1.216000pt;}
._0{width:1.088000pt;}
._2{width:2.133333pt;}
._8{width:3.709440pt;}
._9{width:4.669440pt;}
._e{width:5.808640pt;}
._a{width:7.477760pt;}
._b{width:8.576000pt;}
._15{width:9.597440pt;}
._c{width:10.539520pt;}
._d{width:11.476480pt;}
._6{width:12.714667pt;}
._f{width:13.817600pt;}
._14{width:14.796800pt;}
._5{width:17.728000pt;}
._16{width:18.709333pt;}
._10{width:19.776000pt;}
._18{width:30.474667pt;}
._11{width:286.922667pt;}
._12{width:365.583787pt;}
._13{width:384.621653pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:44.800000pt;}
.fs6{font-size:48.640000pt;}
.fs7{font-size:48.768000pt;}
.fs8{font-size:56.320000pt;}
.fs9{font-size:56.448000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:3.200000pt;}
.y11c{bottom:3.226667pt;}
.yd8{bottom:3.240000pt;}
.yb3{bottom:4.800000pt;}
.yaa{bottom:5.120000pt;}
.yac{bottom:6.080000pt;}
.y11d{bottom:6.106667pt;}
.yd9{bottom:6.120000pt;}
.ya5{bottom:6.400000pt;}
.y107{bottom:6.440000pt;}
.y10f{bottom:6.720000pt;}
.ye1{bottom:7.040000pt;}
.yea{bottom:8.960000pt;}
.y11b{bottom:8.986667pt;}
.y139{bottom:9.280000pt;}
.ya4{bottom:9.600000pt;}
.y10e{bottom:9.920000pt;}
.y17c{bottom:10.208000pt;}
.y16f{bottom:11.173333pt;}
.yd4{bottom:19.613333pt;}
.ya1{bottom:20.160000pt;}
.y16e{bottom:24.960000pt;}
.y116{bottom:28.160000pt;}
.yde{bottom:32.346667pt;}
.yca{bottom:38.653333pt;}
.y163{bottom:39.040000pt;}
.ybf{bottom:41.306667pt;}
.yc2{bottom:44.640000pt;}
.yd0{bottom:45.306667pt;}
.ybd{bottom:47.333333pt;}
.yc0{bottom:49.306667pt;}
.ycc{bottom:50.626667pt;}
.yc5{bottom:50.653333pt;}
.yc1{bottom:51.333333pt;}
.y7{bottom:51.520000pt;}
.y133{bottom:52.506667pt;}
.yc3{bottom:53.306667pt;}
.ya8{bottom:53.440000pt;}
.y173{bottom:53.786667pt;}
.y13b{bottom:53.800000pt;}
.y10a{bottom:56.346667pt;}
.y164{bottom:58.560000pt;}
.yd2{bottom:60.000000pt;}
.ybb{bottom:60.640000pt;}
.yc9{bottom:61.306667pt;}
.yc7{bottom:65.306667pt;}
.yc4{bottom:65.986667pt;}
.ycb{bottom:66.626667pt;}
.ycf{bottom:67.973333pt;}
.ybe{bottom:69.306667pt;}
.yc8{bottom:69.986667pt;}
.ybc{bottom:71.973333pt;}
.ycd{bottom:74.653333pt;}
.yc6{bottom:77.306667pt;}
.yd1{bottom:77.986667pt;}
.y165{bottom:78.080000pt;}
.y17b{bottom:79.066667pt;}
.y120{bottom:80.672000pt;}
.y1d1{bottom:80.992000pt;}
.yfd{bottom:82.592000pt;}
.yce{bottom:82.626667pt;}
.y4b{bottom:83.552000pt;}
.y15d{bottom:84.512000pt;}
.y7f{bottom:90.592000pt;}
.y1b8{bottom:92.512000pt;}
.yad{bottom:93.792000pt;}
.yfe{bottom:96.314667pt;}
.y171{bottom:96.346667pt;}
.y166{bottom:97.600000pt;}
.y111{bottom:101.160000pt;}
.y4a{bottom:101.792000pt;}
.y1d0{bottom:102.112000pt;}
.y174{bottom:102.373333pt;}
.y6d{bottom:102.432000pt;}
.ye4{bottom:103.720000pt;}
.y12d{bottom:104.032000pt;}
.y102{bottom:105.952000pt;}
.y23{bottom:109.792000pt;}
.y15c{bottom:110.112000pt;}
.y170{bottom:112.000000pt;}
.y1b7{bottom:113.632000pt;}
.yb2{bottom:114.912000pt;}
.y167{bottom:117.120000pt;}
.y7e{bottom:118.112000pt;}
.y49{bottom:120.352000pt;}
.y103{bottom:121.640000pt;}
.y161{bottom:122.266667pt;}
.yae{bottom:122.274667pt;}
.y6c{bottom:123.872000pt;}
.y12c{bottom:125.152000pt;}
.yb5{bottom:125.506667pt;}
.y175{bottom:126.693333pt;}
.y101{bottom:127.392000pt;}
.y168{bottom:136.640000pt;}
.y1cf{bottom:136.666667pt;}
.yb1{bottom:138.266667pt;}
.y48{bottom:138.586667pt;}
.yd3{bottom:138.813333pt;}
.y22{bottom:142.746667pt;}
.y1b6{bottom:145.626667pt;}
.y7d{bottom:145.946667pt;}
.y100{bottom:148.506667pt;}
.y176{bottom:150.973333pt;}
.y6b{bottom:155.866667pt;}
.y169{bottom:156.160000pt;}
.y47{bottom:157.146667pt;}
.y1ce{bottom:157.786667pt;}
.y162{bottom:159.360000pt;}
.y196{bottom:159.386667pt;}
.yb0{bottom:159.706667pt;}
.y21{bottom:161.946667pt;}
.y160{bottom:165.213333pt;}
.yb6{bottom:165.600000pt;}
.y1b5{bottom:167.066667pt;}
.yec{bottom:168.346667pt;}
.y6e{bottom:168.666667pt;}
.yff{bottom:171.866667pt;}
.y7c{bottom:173.466667pt;}
.y177{bottom:175.266667pt;}
.y46{bottom:175.386667pt;}
.y6f{bottom:175.426667pt;}
.y16a{bottom:175.680000pt;}
.y195{bottom:180.506667pt;}
.yaf{bottom:183.106667pt;}
.y6a{bottom:187.906667pt;}
.y1b4{bottom:188.226667pt;}
.y1cd{bottom:192.386667pt;}
.yf4{bottom:192.986667pt;}
.yf3{bottom:193.346667pt;}
.y20{bottom:194.946667pt;}
.y16b{bottom:195.200000pt;}
.y12b{bottom:195.266667pt;}
.y178{bottom:199.546667pt;}
.y7b{bottom:201.026667pt;}
.y194{bottom:201.986667pt;}
.y97{bottom:204.546667pt;}
.yb7{bottom:205.733333pt;}
.y45{bottom:207.106667pt;}
.y1b3{bottom:209.666667pt;}
.y1cc{bottom:213.506667pt;}
.y15f{bottom:214.013333pt;}
.y1f{bottom:214.146667pt;}
.y16c{bottom:214.720000pt;}
.yfc{bottom:214.786667pt;}
.y12a{bottom:216.706667pt;}
.y69{bottom:219.906667pt;}
.y193{bottom:223.106667pt;}
.y179{bottom:223.866667pt;}
.y44{bottom:225.666667pt;}
.ya7{bottom:230.466667pt;}
.y1b2{bottom:231.106667pt;}
.y96{bottom:232.066667pt;}
.y1e{bottom:233.666667pt;}
.y16d{bottom:234.240000pt;}
.y129{bottom:238.146667pt;}
.yfb{bottom:238.786667pt;}
.y7a{bottom:239.426667pt;}
.y172{bottom:243.520000pt;}
.y43{bottom:244.226667pt;}
.y192{bottom:244.546667pt;}
.yb8{bottom:245.853333pt;}
.y1cb{bottom:247.746667pt;}
.y17a{bottom:248.160000pt;}
.y68{bottom:251.906667pt;}
.y1b1{bottom:252.226667pt;}
.y1d{bottom:252.866667pt;}
.yab{bottom:253.826667pt;}
.y95{bottom:259.586667pt;}
.y128{bottom:261.186667pt;}
.yfa{bottom:262.146667pt;}
.y42{bottom:262.466667pt;}
.y1ca{bottom:269.186667pt;}
.y1c{bottom:272.386667pt;}
.y1b0{bottom:273.666667pt;}
.y14d{bottom:276.546667pt;}
.ya9{bottom:276.866667pt;}
.y79{bottom:277.506667pt;}
.y41{bottom:281.026667pt;}
.y67{bottom:283.906667pt;}
.y127{bottom:284.573333pt;}
.yf9{bottom:285.213333pt;}
.yb9{bottom:285.946667pt;}
.y94{bottom:287.133333pt;}
.y1b{bottom:291.933333pt;}
.y14c{bottom:297.693333pt;}
.y191{bottom:298.013333pt;}
.ya6{bottom:298.333333pt;}
.y40{bottom:299.293333pt;}
.y1c9{bottom:303.453333pt;}
.y78{bottom:305.053333pt;}
.y1af{bottom:305.693333pt;}
.y126{bottom:307.933333pt;}
.yf8{bottom:308.573333pt;}
.y1a{bottom:311.133333pt;}
.y93{bottom:314.973333pt;}
.y66{bottom:315.933333pt;}
.y3f{bottom:317.853333pt;}
.y14b{bottom:319.133333pt;}
.ya3{bottom:322.333333pt;}
.y1c8{bottom:324.573333pt;}
.yba{bottom:326.080000pt;}
.y1ae{bottom:326.813333pt;}
.y125{bottom:331.293333pt;}
.yf7{bottom:331.933333pt;}
.y77{bottom:332.893333pt;}
.y3e{bottom:336.093333pt;}
.y14a{bottom:340.253333pt;}
.y190{bottom:340.573333pt;}
.y19{bottom:344.093333pt;}
.y1c7{bottom:346.013333pt;}
.ya0{bottom:346.333333pt;}
.y65{bottom:347.933333pt;}
.y1ad{bottom:348.253333pt;}
.y121{bottom:351.781333pt;}
.y92{bottom:353.053333pt;}
.yf6{bottom:353.373333pt;}
.y3d{bottom:354.653333pt;}
.y149{bottom:361.693333pt;}
.y18{bottom:363.293333pt;}
.y76{bottom:364.893333pt;}
.yf5{bottom:376.733333pt;}
.y124{bottom:378.013333pt;}
.y64{bottom:379.933333pt;}
.y1ac{bottom:380.253333pt;}
.y17{bottom:382.813333pt;}
.y18f{bottom:383.133333pt;}
.y3c{bottom:386.013333pt;}
.y91{bottom:391.493333pt;}
.y15b{bottom:392.453333pt;}
.y148{bottom:393.733333pt;}
.y9f{bottom:397.893333pt;}
.y123{bottom:399.493333pt;}
.yeb{bottom:400.773333pt;}
.y1ab{bottom:401.413333pt;}
.y3b{bottom:404.613333pt;}
.y15a{bottom:411.333333pt;}
.y63{bottom:411.653333pt;}
.y75{bottom:414.533333pt;}
.y16{bottom:415.493333pt;}
.y1aa{bottom:422.853333pt;}
.y3a{bottom:423.173333pt;}
.y122{bottom:423.493333pt;}
.yf2{bottom:424.133333pt;}
.y147{bottom:425.733333pt;}
.y90{bottom:429.573333pt;}
.y15{bottom:435.013333pt;}
.y18e{bottom:436.293333pt;}
.y39{bottom:441.413333pt;}
.y62{bottom:443.653333pt;}
.y11f{bottom:446.853333pt;}
.yf1{bottom:447.493333pt;}
.y159{bottom:448.133333pt;}
.y9e{bottom:451.013333pt;}
.y1a9{bottom:454.853333pt;}
.y1c6{bottom:457.093333pt;}
.y8f{bottom:457.413333pt;}
.y18d{bottom:457.733333pt;}
.y146{bottom:459.013333pt;}
.y38{bottom:459.973333pt;}
.y158{bottom:466.373333pt;}
.y14{bottom:467.653333pt;}
.y11e{bottom:467.973333pt;}
.yf0{bottom:470.853333pt;}
.y9d{bottom:472.453333pt;}
.y61{bottom:475.653333pt;}
.y1a8{bottom:476.293333pt;}
.y145{bottom:476.613333pt;}
.y37{bottom:478.213333pt;}
.y1de{bottom:478.533333pt;}
.y18c{bottom:479.173333pt;}
.y8e{bottom:484.933333pt;}
.y13{bottom:487.173333pt;}
.y11a{bottom:489.413333pt;}
.y1c5{bottom:491.680000pt;}
.yef{bottom:492.000000pt;}
.y144{bottom:493.920000pt;}
.y36{bottom:496.800000pt;}
.y1a7{bottom:497.440000pt;}
.y157{bottom:503.200000pt;}
.y9c{bottom:504.480000pt;}
.y12{bottom:506.400000pt;}
.y60{bottom:507.680000pt;}
.y1dd{bottom:510.560000pt;}
.y18b{bottom:510.880000pt;}
.y143{bottom:511.520000pt;}
.y119{bottom:512.800000pt;}
.yee{bottom:515.360000pt;}
.y1a6{bottom:518.880000pt;}
.y156{bottom:521.760000pt;}
.y8d{bottom:523.680000pt;}
.y1c4{bottom:526.240000pt;}
.y35{bottom:528.160000pt;}
.y142{bottom:529.120000pt;}
.y18a{bottom:532.000000pt;}
.y8c{bottom:534.240000pt;}
.y118{bottom:536.160000pt;}
.y5f{bottom:536.800000pt;}
.y9b{bottom:537.760000pt;}
.y11{bottom:539.680000pt;}
.y1dc{bottom:545.120000pt;}
.y1c3{bottom:547.360000pt;}
.y155{bottom:547.680000pt;}
.y1a5{bottom:550.880000pt;}
.y189{bottom:553.120000pt;}
.y5e{bottom:555.680000pt;}
.y34{bottom:559.520000pt;}
.yed{bottom:560.160000pt;}
.y141{bottom:563.040000pt;}
.y1db{bottom:566.240000pt;}
.y154{bottom:566.560000pt;}
.y1c2{bottom:568.480000pt;}
.y9a{bottom:572.320000pt;}
.y5d{bottom:573.920000pt;}
.y10{bottom:579.680000pt;}
.y117{bottom:580.640000pt;}
.y140{bottom:582.560000pt;}
.y1a4{bottom:582.880000pt;}
.ye9{bottom:583.520000pt;}
.y8b{bottom:583.840000pt;}
.y153{bottom:584.800000pt;}
.y188{bottom:585.120000pt;}
.y33{bottom:589.920000pt;}
.y99{bottom:596.026667pt;}
.y1da{bottom:600.826667pt;}
.y115{bottom:602.106667pt;}
.y5c{bottom:602.746667pt;}
.y1c1{bottom:603.066667pt;}
.y152{bottom:603.386667pt;}
.y187{bottom:606.266667pt;}
.y32{bottom:606.906667pt;}
.y8a{bottom:611.386667pt;}
.yf{bottom:614.266667pt;}
.y1a3{bottom:614.906667pt;}
.y13f{bottom:621.626667pt;}
.y1d9{bottom:621.946667pt;}
.y1c0{bottom:624.186667pt;}
.y98{bottom:624.506667pt;}
.y110{bottom:625.466667pt;}
.yb4{bottom:626.560000pt;}
.y186{bottom:627.386667pt;}
.ye8{bottom:630.266667pt;}
.y5b{bottom:631.866667pt;}
.y31{bottom:634.106667pt;}
.y151{bottom:634.746667pt;}
.y13e{bottom:636.026667pt;}
.ye{bottom:643.066667pt;}
.y185{bottom:648.506667pt;}
.y89{bottom:648.826667pt;}
.y114{bottom:649.466667pt;}
.y30{bottom:651.066667pt;}
.ye7{bottom:654.266667pt;}
.y1d8{bottom:656.506667pt;}
.y88{bottom:656.826667pt;}
.y13a{bottom:657.466667pt;}
.y1bf{bottom:658.746667pt;}
.y5a{bottom:660.986667pt;}
.yd{bottom:661.946667pt;}
.y150{bottom:666.746667pt;}
.y2f{bottom:668.026667pt;}
.y184{bottom:669.626667pt;}
.y113{bottom:672.826667pt;}
.ye6{bottom:678.266667pt;}
.y1a2{bottom:678.586667pt;}
.y59{bottom:679.546667pt;}
.y1be{bottom:679.866667pt;}
.y13d{bottom:680.826667pt;}
.y2e{bottom:684.986667pt;}
.y14f{bottom:688.186667pt;}
.y183{bottom:690.746667pt;}
.y87{bottom:691.066667pt;}
.yc{bottom:696.186667pt;}
.y58{bottom:698.146667pt;}
.y1a1{bottom:700.066667pt;}
.y1bd{bottom:701.026667pt;}
.ye5{bottom:701.346667pt;}
.y2d{bottom:701.666667pt;}
.y13c{bottom:704.226667pt;}
.y1d7{bottom:711.906667pt;}
.y57{bottom:716.386667pt;}
.y14e{bottom:716.706667pt;}
.yb{bottom:717.666667pt;}
.y15e{bottom:718.400000pt;}
.y2c{bottom:718.626667pt;}
.y112{bottom:719.586667pt;}
.y1a0{bottom:721.506667pt;}
.y182{bottom:722.786667pt;}
.ye3{bottom:724.706667pt;}
.y138{bottom:725.346667pt;}
.y86{bottom:725.666667pt;}
.y1d6{bottom:733.346667pt;}
.y56{bottom:734.946667pt;}
.y2b{bottom:735.586667pt;}
.y10d{bottom:740.706667pt;}
.y19f{bottom:742.626667pt;}
.y181{bottom:743.906667pt;}
.ye2{bottom:746.146667pt;}
.y137{bottom:748.706667pt;}
.ya{bottom:750.306667pt;}
.y55{bottom:763.426667pt;}
.y109{bottom:764.706667pt;}
.y180{bottom:765.026667pt;}
.y2a{bottom:765.346667pt;}
.ye0{bottom:767.586667pt;}
.y85{bottom:768.866667pt;}
.y136{bottom:770.146667pt;}
.y9{bottom:771.746667pt;}
.y19e{bottom:774.626667pt;}
.y54{bottom:782.306667pt;}
.y29{bottom:784.866667pt;}
.y17f{bottom:786.146667pt;}
.y10c{bottom:788.066667pt;}
.ydd{bottom:788.706667pt;}
.y1bc{bottom:791.266667pt;}
.y8{bottom:793.186667pt;}
.y132{bottom:794.146667pt;}
.y19d{bottom:796.066667pt;}
.y53{bottom:800.546667pt;}
.y84{bottom:807.293333pt;}
.y1d5{bottom:810.173333pt;}
.y10b{bottom:811.453333pt;}
.ydf{bottom:812.093333pt;}
.y6{bottom:814.973333pt;}
.y135{bottom:815.613333pt;}
.y19c{bottom:817.213333pt;}
.y52{bottom:819.133333pt;}
.y1bb{bottom:825.853333pt;}
.y5{bottom:834.493333pt;}
.y83{bottom:834.813333pt;}
.ydc{bottom:835.453333pt;}
.y51{bottom:837.373333pt;}
.y19b{bottom:838.653333pt;}
.y74{bottom:839.293333pt;}
.y134{bottom:839.613333pt;}
.y1d4{bottom:844.413333pt;}
.y1ba{bottom:846.973333pt;}
.y28{bottom:853.693333pt;}
.y4{bottom:856.573333pt;}
.ydb{bottom:856.893333pt;}
.y108{bottom:858.813333pt;}
.y19a{bottom:859.773333pt;}
.y73{bottom:860.413333pt;}
.y131{bottom:860.733333pt;}
.y82{bottom:862.333333pt;}
.y1d3{bottom:865.533333pt;}
.y1b9{bottom:868.093333pt;}
.y50{bottom:869.053333pt;}
.y3{bottom:876.093333pt;}
.yda{bottom:880.253333pt;}
.y199{bottom:881.213333pt;}
.y72{bottom:881.533333pt;}
.y27{bottom:883.773333pt;}
.y130{bottom:884.093333pt;}
.y4f{bottom:887.613333pt;}
.y81{bottom:889.853333pt;}
.y2{bottom:895.613333pt;}
.y1d2{bottom:900.093333pt;}
.y106{bottom:901.373333pt;}
.y17e{bottom:902.653333pt;}
.y71{bottom:902.973333pt;}
.y26{bottom:903.293333pt;}
.yd7{bottom:903.613333pt;}
.y12f{bottom:905.573333pt;}
.y4e{bottom:906.213333pt;}
.y1{bottom:911.013333pt;}
.y198{bottom:913.253333pt;}
.y25{bottom:922.533333pt;}
.y17d{bottom:923.813333pt;}
.y70{bottom:924.133333pt;}
.y105{bottom:924.773333pt;}
.yd6{bottom:927.013333pt;}
.y80{bottom:928.293333pt;}
.y12e{bottom:928.933333pt;}
.y197{bottom:934.693333pt;}
.y4d{bottom:937.573333pt;}
.y104{bottom:948.133333pt;}
.yd5{bottom:950.373333pt;}
.y24{bottom:955.813333pt;}
.y4c{bottom:956.133333pt;}
.h31{height:16.640000pt;}
.h30{height:16.672000pt;}
.h2f{height:16.960000pt;}
.h1c{height:20.480000pt;}
.h24{height:20.512000pt;}
.h1b{height:20.800000pt;}
.h16{height:20.832000pt;}
.h17{height:22.400000pt;}
.h21{height:22.432000pt;}
.h19{height:22.720000pt;}
.h1a{height:22.752000pt;}
.h22{height:23.040000pt;}
.h13{height:23.360000pt;}
.h26{height:23.392000pt;}
.h10{height:33.920000pt;}
.h35{height:35.221250pt;}
.h36{height:35.313937pt;}
.h37{height:40.782500pt;}
.h38{height:40.875187pt;}
.h2b{height:41.952000pt;}
.h11{height:42.636250pt;}
.h1e{height:42.678750pt;}
.h1f{height:46.112000pt;}
.h7{height:46.343750pt;}
.h14{height:48.530000pt;}
.h8{height:51.663750pt;}
.h3{height:53.758750pt;}
.h12{height:53.759375pt;}
.h34{height:53.941250pt;}
.h4{height:54.906875pt;}
.h5{height:55.066875pt;}
.h2{height:55.468750pt;}
.h1{height:55.562500pt;}
.h6{height:56.156250pt;}
.h2e{height:56.890625pt;}
.ha{height:61.383125pt;}
.h2d{height:65.952000pt;}
.h15{height:67.232000pt;}
.h29{height:70.112000pt;}
.hb{height:76.101250pt;}
.hd{height:86.058750pt;}
.hc{height:88.156250pt;}
.hf{height:98.396250pt;}
.h27{height:110.112000pt;}
.he{height:110.661250pt;}
.h2a{height:114.592000pt;}
.h20{height:117.152000pt;}
.h28{height:135.386667pt;}
.h18{height:136.026667pt;}
.h23{height:182.106667pt;}
.h25{height:206.786667pt;}
.h32{height:252.480000pt;}
.h33{height:266.560000pt;}
.h1d{height:344.320000pt;}
.h9{height:347.973333pt;}
.h2c{height:365.533333pt;}
.h0{height:1056.000000pt;}
.wb{width:28.480000pt;}
.wa{width:30.112000pt;}
.w7{width:32.960000pt;}
.w8{width:32.992000pt;}
.w9{width:34.240000pt;}
.w5{width:34.880000pt;}
.w6{width:37.152000pt;}
.wc{width:38.752000pt;}
.wd{width:45.760000pt;}
.wf{width:61.792000pt;}
.w3{width:119.744000pt;}
.w4{width:177.986667pt;}
.w2{width:402.720000pt;}
.w11{width:446.400000pt;}
.w10{width:523.106667pt;}
.we{width:586.560000pt;}
.w12{width:589.760000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:4.480000pt;}
.x23{left:6.080000pt;}
.x1f{left:7.040000pt;}
.x2a{left:8.000000pt;}
.x20{left:8.960000pt;}
.x1d{left:10.906667pt;}
.x2b{left:11.880000pt;}
.x28{left:12.800000pt;}
.x2c{left:13.760000pt;}
.x29{left:14.746667pt;}
.x2d{left:15.720000pt;}
.x55{left:20.733333pt;}
.x4c{left:24.706667pt;}
.x63{left:29.893333pt;}
.x61{left:36.866667pt;}
.x30{left:39.200000pt;}
.x56{left:43.520000pt;}
.x2f{left:45.213333pt;}
.x57{left:64.800000pt;}
.x31{left:82.426667pt;}
.x6{left:96.031988pt;}
.x17{left:96.991988pt;}
.x32{left:98.626667pt;}
.x9{left:100.511988pt;}
.x8{left:101.791988pt;}
.x5e{left:112.960000pt;}
.x2e{left:113.920000pt;}
.x33{left:114.813333pt;}
.xb{left:120.063988pt;}
.x62{left:122.173333pt;}
.x12{left:124.543988pt;}
.x13{left:128.063988pt;}
.x34{left:131.013333pt;}
.x5f{left:141.826667pt;}
.x58{left:144.866667pt;}
.x35{left:147.200000pt;}
.x10{left:152.706655pt;}
.x14{left:156.226655pt;}
.x36{left:163.386667pt;}
.x59{left:165.533333pt;}
.x4e{left:177.666667pt;}
.x37{left:179.586667pt;}
.x52{left:184.000000pt;}
.x38{left:195.773333pt;}
.xe{left:201.013333pt;}
.x15{left:208.733321pt;}
.x39{left:211.973333pt;}
.x1a{left:216.733333pt;}
.x2{left:226.333321pt;}
.x3a{left:228.160000pt;}
.x5a{left:239.013333pt;}
.x4d{left:241.733333pt;}
.x3b{left:244.346667pt;}
.x3c{left:260.546667pt;}
.x5b{left:264.346667pt;}
.xa{left:273.693321pt;}
.x3d{left:276.733333pt;}
.x3e{left:292.933333pt;}
.x53{left:295.266667pt;}
.x5{left:306.373321pt;}
.xd{left:308.293333pt;}
.x18{left:309.893321pt;}
.x3f{left:325.306667pt;}
.xc{left:330.693321pt;}
.x5c{left:338.853333pt;}
.x11{left:340.933321pt;}
.x4{left:347.973321pt;}
.x40{left:357.693333pt;}
.x5d{left:363.173333pt;}
.x3{left:365.919988pt;}
.x41{left:373.893333pt;}
.x50{left:377.119988pt;}
.x7{left:390.879988pt;}
.x54{left:394.080000pt;}
.x1b{left:395.040000pt;}
.xf{left:397.919988pt;}
.x42{left:406.266667pt;}
.x43{left:422.466667pt;}
.x1c{left:430.240000pt;}
.x44{left:438.653333pt;}
.x45{left:454.853333pt;}
.x1e{left:467.706667pt;}
.x46{left:471.040000pt;}
.x60{left:480.226667pt;}
.x47{left:487.226667pt;}
.x21{left:500.986667pt;}
.x48{left:503.426667pt;}
.x49{left:519.613333pt;}
.x22{left:534.306667pt;}
.x4a{left:535.813333pt;}
.x4b{left:552.000000pt;}
.x24{left:568.866667pt;}
.x25{left:599.293333pt;}
.x4f{left:632.253321pt;}
.x26{left:634.493333pt;}
.x27{left:663.293333pt;}
.x16{left:702.053321pt;}
.x51{left:703.013321pt;}
.x1{left:710.693321pt;}
}




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