
    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_33d0256b9204899ca3846429.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_688c7993100d478ba21fd673.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_73f0f85539c68fac27373510.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8ef27b1ab0e79bc426e87676.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5781e63357c35b6ef6628eb9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_abd4425ca9f00225b695be9a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_7c654ce4efd6f18da5bc5b02.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_9b1dcbba3af62353e1a16e54.woff')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_ca2924568644de6070a90ba7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6037d2278ac9e48db0ebcea8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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);}
.vf{vertical-align:-84.240000px;}
.ve{vertical-align:-79.200000px;}
.vc{vertical-align:-63.660000px;}
.vd{vertical-align:-58.440000px;}
.v12{vertical-align:-32.820000px;}
.v2{vertical-align:-20.880000px;}
.v13{vertical-align:-14.520000px;}
.v5{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:4.320000px;}
.v8{vertical-align:5.760000px;}
.v14{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v11{vertical-align:26.100000px;}
.v7{vertical-align:30.240000px;}
.v4{vertical-align:33.840000px;}
.v6{vertical-align:35.280000px;}
.v3{vertical-align:46.080000px;}
.va{vertical-align:60.720000px;}
.v9{vertical-align:71.400000px;}
.vb{vertical-align:102.960000px;}
.lsb{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.208200px;}
.ls5{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.097800px;}
.ls15{letter-spacing:-0.059040px;}
.ls1f{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.220800px;}
.ls6{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.329040px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:0.460080px;}
.ls24{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.666000px;}
.ls11{letter-spacing:1.180080px;}
.ls21{letter-spacing:1.386720px;}
.ls26{letter-spacing:1.620000px;}
.ls25{letter-spacing:16.506720px;}
.ls8{letter-spacing:20.826720px;}
.ls20{letter-spacing:46.026720px;}
.ls17{letter-spacing:60.426720px;}
.lsa{letter-spacing:90.810720px;}
.ls16{letter-spacing:105.930720px;}
.ls18{letter-spacing:133.290720px;}
.ls1e{letter-spacing:143.202720px;}
.ls19{letter-spacing:187.842720px;}
.ls12{letter-spacing:318.215280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.580000px;}
.ws26{word-spacing:-14.440800px;}
.ws15{word-spacing:-14.004000px;}
.ws5{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.392000px;}
.ws23{word-spacing:-12.236544px;}
.ws25{word-spacing:-12.204000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.259200px;}
.wsc{word-spacing:-9.187200px;}
.ws12{word-spacing:-9.128160px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.532080px;}
.wsf{word-spacing:3.412080px;}
.wsd{word-spacing:4.055760px;}
.ws9{word-spacing:4.094640px;}
.ws11{word-spacing:4.824240px;}
.ws10{word-spacing:6.907680px;}
.wse{word-spacing:7.050240px;}
.wsa{word-spacing:7.051680px;}
.ws1a{word-spacing:160.596000px;}
.ws16{word-spacing:170.640000px;}
.ws17{word-spacing:170.736000px;}
.ws18{word-spacing:170.760000px;}
.ws1b{word-spacing:174.936000px;}
.ws19{word-spacing:175.620000px;}
.ws1c{word-spacing:185.820000px;}
.ws1e{word-spacing:202.380960px;}
.ws20{word-spacing:324.156000px;}
.ws1f{word-spacing:324.336000px;}
.ws24{word-spacing:337.914000px;}
.ws21{word-spacing:351.534000px;}
.ws22{word-spacing:351.714000px;}
._1b{margin-left:-8.928000px;}
._19{margin-left:-3.839280px;}
._14{margin-left:-2.710320px;}
._0{margin-left:-1.080000px;}
._f{width:1.156560px;}
._1{width:2.220000px;}
._11{width:3.336480px;}
._16{width:4.460880px;}
._18{width:5.801040px;}
._17{width:6.872400px;}
._12{width:7.926960px;}
._13{width:9.143280px;}
._6{width:10.800000px;}
._10{width:12.351120px;}
._1a{width:13.558560px;}
._15{width:16.152720px;}
._21{width:17.620560px;}
._1c{width:22.888080px;}
._28{width:24.701760px;}
._26{width:25.935840px;}
._2a{width:32.210640px;}
._29{width:33.286320px;}
._2b{width:40.457520px;}
._20{width:46.692720px;}
._1e{width:47.867760px;}
._1f{width:51.453360px;}
._27{width:55.457280px;}
._22{width:63.781440px;}
._7{width:76.284960px;}
._25{width:107.676000px;}
._1d{width:110.496240px;}
._23{width:114.386400px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
._2c{width:2559.660000px;}
._24{width:2699.880000px;}
.fc4{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fsb{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs9{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y11d{bottom:-3.135000px;}
.y10d{bottom:-2.010000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:1.905000px;}
.yd8{bottom:3.165000px;}
.ye2{bottom:3.345000px;}
.ye6{bottom:3.495000px;}
.y110{bottom:4.065000px;}
.ye4{bottom:4.215000px;}
.ydd{bottom:4.245000px;}
.y69{bottom:5.760000px;}
.y13e{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y119{bottom:6.585000px;}
.y113{bottom:6.765000px;}
.y109{bottom:6.990000px;}
.ya9{bottom:7.200000px;}
.y191{bottom:7.740000px;}
.y188{bottom:7.920000px;}
.yda{bottom:10.545000px;}
.yd3{bottom:10.590000px;}
.yd5{bottom:10.905000px;}
.y106{bottom:11.670000px;}
.y6{bottom:12.420000px;}
.yd1{bottom:12.930000px;}
.y115{bottom:13.290000px;}
.y11f{bottom:13.785000px;}
.y11c{bottom:13.965000px;}
.y6a{bottom:15.660000px;}
.y18e{bottom:15.690000px;}
.y142{bottom:15.840000px;}
.y15b{bottom:16.890000px;}
.yaa{bottom:17.100000px;}
.y186{bottom:17.610000px;}
.y8d{bottom:17.640000px;}
.y94{bottom:18.045000px;}
.y8{bottom:18.180000px;}
.y6c{bottom:18.720000px;}
.y18a{bottom:19.800000px;}
.y11a{bottom:19.905000px;}
.ydf{bottom:20.265000px;}
.y10f{bottom:20.985000px;}
.yd7{bottom:21.525000px;}
.ye1{bottom:21.570000px;}
.ydc{bottom:22.605000px;}
.y77{bottom:23.250000px;}
.y118{bottom:23.505000px;}
.y112{bottom:23.685000px;}
.y108{bottom:23.910000px;}
.y68{bottom:25.560000px;}
.y18f{bottom:25.590000px;}
.y143{bottom:25.740000px;}
.y8b{bottom:26.100000px;}
.y92{bottom:26.505000px;}
.y8f{bottom:26.640000px;}
.ya8{bottom:27.180000px;}
.y8c{bottom:27.720000px;}
.y93{bottom:28.125000px;}
.y90{bottom:28.260000px;}
.ya5{bottom:28.440000px;}
.y105{bottom:28.590000px;}
.y72{bottom:28.620000px;}
.y10b{bottom:31.650000px;}
.y78{bottom:33.150000px;}
.y71{bottom:36.210000px;}
.ya6{bottom:38.340000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y76{bottom:43.050000px;}
.y75{bottom:46.110000px;}
.ya4{bottom:48.420000px;}
.y70{bottom:56.010000px;}
.y15a{bottom:56.160000px;}
.y185{bottom:56.520000px;}
.yb{bottom:60.300000px;}
.y73{bottom:65.910000px;}
.y4{bottom:68.400000px;}
.y6f{bottom:75.810000px;}
.y183{bottom:77.475000px;}
.yd{bottom:77.940000px;}
.y158{bottom:78.015000px;}
.ya{bottom:82.080000px;}
.y74{bottom:85.710000px;}
.y178{bottom:95.040000px;}
.y14f{bottom:95.610000px;}
.y6e{bottom:95.790000px;}
.y3{bottom:96.330000px;}
.y1a1{bottom:103.680000px;}
.y101{bottom:106.740000px;}
.y1ae{bottom:108.540000px;}
.ycf{bottom:115.740000px;}
.y103{bottom:116.280000px;}
.ya2{bottom:116.460000px;}
.y190{bottom:117.000000px;}
.y1af{bottom:117.540000px;}
.y3a{bottom:121.320000px;}
.y170{bottom:122.400000px;}
.y1a0{bottom:123.480000px;}
.y179{bottom:124.095000px;}
.y150{bottom:124.350000px;}
.y13a{bottom:125.460000px;}
.y2{bottom:125.670000px;}
.y100{bottom:126.540000px;}
.y1ad{bottom:128.340000px;}
.y102{bottom:132.660000px;}
.yce{bottom:135.720000px;}
.ya1{bottom:136.260000px;}
.y14b{bottom:137.340000px;}
.y6d{bottom:139.860000px;}
.y18d{bottom:140.940000px;}
.y39{bottom:141.300000px;}
.y16f{bottom:142.200000px;}
.y19f{bottom:143.280000px;}
.y1b5{bottom:144.720000px;}
.y139{bottom:145.260000px;}
.yff{bottom:146.340000px;}
.y1ac{bottom:148.320000px;}
.y159{bottom:149.685000px;}
.y151{bottom:153.030000px;}
.y17a{bottom:153.150000px;}
.ycd{bottom:155.730000px;}
.ya0{bottom:156.090000px;}
.y14a{bottom:157.350000px;}
.y38{bottom:161.130000px;}
.y16e{bottom:162.030000px;}
.y1b4{bottom:162.930000px;}
.y19e{bottom:163.290000px;}
.y138{bottom:165.090000px;}
.y184{bottom:165.210000px;}
.yfe{bottom:166.170000px;}
.y1ab{bottom:168.150000px;}
.ycc{bottom:174.990000px;}
.y9f{bottom:175.890000px;}
.y149{bottom:177.150000px;}
.y14e{bottom:177.585000px;}
.y18c{bottom:180.570000px;}
.y37{bottom:180.930000px;}
.y152{bottom:181.725000px;}
.y16d{bottom:181.830000px;}
.y17b{bottom:182.235000px;}
.ycb{bottom:182.550000px;}
.y19d{bottom:183.090000px;}
.y137{bottom:184.890000px;}
.yfd{bottom:186.150000px;}
.y1aa{bottom:187.950000px;}
.y9e{bottom:195.870000px;}
.y1b3{bottom:196.410000px;}
.y148{bottom:196.950000px;}
.y36{bottom:200.730000px;}
.y16c{bottom:201.810000px;}
.y19c{bottom:202.890000px;}
.y176{bottom:204.015000px;}
.y136{bottom:204.690000px;}
.yfc{bottom:205.950000px;}
.yca{bottom:206.670000px;}
.y1a9{bottom:207.750000px;}
.y153{bottom:210.420000px;}
.y17c{bottom:211.290000px;}
.y6b{bottom:214.410000px;}
.y9d{bottom:215.670000px;}
.y147{bottom:216.750000px;}
.y177{bottom:219.960000px;}
.y18b{bottom:220.350000px;}
.y35{bottom:220.530000px;}
.y16b{bottom:221.610000px;}
.y19b{bottom:222.690000px;}
.y135{bottom:224.670000px;}
.yfb{bottom:225.750000px;}
.yc9{bottom:226.470000px;}
.y1a8{bottom:227.550000px;}
.y1b2{bottom:228.270000px;}
.y9c{bottom:235.470000px;}
.y146{bottom:236.550000px;}
.y154{bottom:239.115000px;}
.y17d{bottom:240.330000px;}
.y34{bottom:240.510000px;}
.y16a{bottom:241.410000px;}
.y19a{bottom:242.490000px;}
.y134{bottom:244.470000px;}
.yfa{bottom:244.650000px;}
.y189{bottom:245.010000px;}
.yc8{bottom:246.270000px;}
.y1a7{bottom:247.530000px;}
.y175{bottom:247.650000px;}
.yf9{bottom:252.210000px;}
.y9b{bottom:255.270000px;}
.y145{bottom:256.530000px;}
.y1b1{bottom:260.130000px;}
.y33{bottom:260.310000px;}
.y169{bottom:261.210000px;}
.y199{bottom:262.470000px;}
.y133{bottom:264.270000px;}
.yc7{bottom:266.070000px;}
.y1a6{bottom:267.330000px;}
.y155{bottom:267.810000px;}
.y17e{bottom:269.385000px;}
.y9a{bottom:275.070000px;}
.y14d{bottom:276.270000px;}
.yf8{bottom:276.330000px;}
.y32{bottom:280.110000px;}
.y168{bottom:281.010000px;}
.y67{bottom:281.550000px;}
.y198{bottom:282.270000px;}
.y132{bottom:284.070000px;}
.y187{bottom:285.510000px;}
.yc6{bottom:286.050000px;}
.y1a5{bottom:287.130000px;}
.y1b0{bottom:291.990000px;}
.y99{bottom:295.050000px;}
.yf7{bottom:296.130000px;}
.y156{bottom:296.490000px;}
.y17f{bottom:298.440000px;}
.y31{bottom:299.910000px;}
.y167{bottom:300.990000px;}
.y197{bottom:302.070000px;}
.y131{bottom:303.870000px;}
.yc5{bottom:305.850000px;}
.y1a4{bottom:306.930000px;}
.y98{bottom:314.850000px;}
.yf6{bottom:315.930000px;}
.y30{bottom:319.710000px;}
.y166{bottom:320.790000px;}
.y196{bottom:321.870000px;}
.y130{bottom:323.850000px;}
.y157{bottom:325.185000px;}
.yc4{bottom:325.650000px;}
.y1a3{bottom:326.730000px;}
.y180{bottom:327.495000px;}
.y173{bottom:329.730000px;}
.y97{bottom:334.650000px;}
.yf5{bottom:335.730000px;}
.y2f{bottom:339.690000px;}
.y66{bottom:340.230000px;}
.y165{bottom:340.590000px;}
.y195{bottom:341.670000px;}
.y12f{bottom:343.650000px;}
.yc3{bottom:345.450000px;}
.y1a2{bottom:346.710000px;}
.y174{bottom:347.070000px;}
.y172{bottom:348.015000px;}
.y96{bottom:354.450000px;}
.yf4{bottom:355.710000px;}
.y181{bottom:356.580000px;}
.y2e{bottom:359.490000px;}
.y65{bottom:360.030000px;}
.y164{bottom:360.390000px;}
.y194{bottom:361.650000px;}
.y12e{bottom:363.450000px;}
.yc2{bottom:365.250000px;}
.y5c{bottom:366.510000px;}
.y95{bottom:374.250000px;}
.yf3{bottom:375.510000px;}
.y2d{bottom:379.290000px;}
.y64{bottom:379.830000px;}
.y163{bottom:380.190000px;}
.y193{bottom:381.450000px;}
.y12d{bottom:383.250000px;}
.yc1{bottom:385.230000px;}
.y182{bottom:385.635000px;}
.y5b{bottom:386.310000px;}
.y91{bottom:389.910000px;}
.yf2{bottom:395.310000px;}
.y2c{bottom:399.090000px;}
.y63{bottom:399.810000px;}
.y162{bottom:400.170000px;}
.y12c{bottom:403.095000px;}
.yc0{bottom:405.075000px;}
.y5a{bottom:406.155000px;}
.y192{bottom:413.535000px;}
.yf1{bottom:415.155000px;}
.y2b{bottom:418.935000px;}
.y62{bottom:419.655000px;}
.y161{bottom:420.015000px;}
.y12b{bottom:423.075000px;}
.ybf{bottom:424.875000px;}
.y59{bottom:425.955000px;}
.yf0{bottom:434.955000px;}
.y2a{bottom:438.915000px;}
.y61{bottom:439.455000px;}
.y160{bottom:439.815000px;}
.y12a{bottom:442.875000px;}
.ybe{bottom:444.675000px;}
.y58{bottom:445.935000px;}
.y8e{bottom:451.335000px;}
.yef{bottom:454.935000px;}
.y29{bottom:458.715000px;}
.y60{bottom:459.255000px;}
.y129{bottom:462.675000px;}
.ybd{bottom:464.475000px;}
.y57{bottom:465.735000px;}
.y15f{bottom:471.855000px;}
.yee{bottom:474.735000px;}
.y28{bottom:478.515000px;}
.y5f{bottom:479.415000px;}
.y128{bottom:482.475000px;}
.ybc{bottom:484.455000px;}
.y56{bottom:485.535000px;}
.y15e{bottom:493.455000px;}
.yed{bottom:494.535000px;}
.y27{bottom:498.315000px;}
.y5e{bottom:500.835000px;}
.y127{bottom:502.275000px;}
.ybb{bottom:504.255000px;}
.y55{bottom:505.335000px;}
.y8a{bottom:512.715000px;}
.y15d{bottom:513.255000px;}
.yec{bottom:514.335000px;}
.y5d{bottom:517.395000px;}
.y26{bottom:518.115000px;}
.y126{bottom:522.255000px;}
.y54{bottom:525.135000px;}
.y15c{bottom:529.635000px;}
.y171{bottom:530.100000px;}
.yeb{bottom:534.135000px;}
.y25{bottom:538.095000px;}
.y125{bottom:542.055000px;}
.ye5{bottom:544.140000px;}
.y53{bottom:545.115000px;}
.yea{bottom:554.115000px;}
.y24{bottom:557.895000px;}
.y124{bottom:561.855000px;}
.y52{bottom:564.915000px;}
.ye9{bottom:573.915000px;}
.y89{bottom:574.635000px;}
.y23{bottom:577.695000px;}
.y123{bottom:581.655000px;}
.y51{bottom:584.715000px;}
.ye8{bottom:593.715000px;}
.y22{bottom:597.495000px;}
.y122{bottom:601.455000px;}
.y88{bottom:601.815000px;}
.y50{bottom:604.515000px;}
.ye3{bottom:612.900000px;}
.ye7{bottom:613.515000px;}
.y21{bottom:617.295000px;}
.y121{bottom:621.435000px;}
.y87{bottom:621.615000px;}
.yba{bottom:624.315000px;}
.y4f{bottom:633.315000px;}
.y20{bottom:637.275000px;}
.y86{bottom:641.415000px;}
.yb9{bottom:644.295000px;}
.y4e{bottom:653.325000px;}
.y1f{bottom:657.105000px;}
.y120{bottom:659.265000px;}
.y85{bottom:661.245000px;}
.yb8{bottom:664.125000px;}
.y4d{bottom:673.125000px;}
.y144{bottom:674.745000px;}
.y1e{bottom:676.905000px;}
.yde{bottom:679.500000px;}
.y84{bottom:681.225000px;}
.yb7{bottom:683.925000px;}
.y117{bottom:692.640000px;}
.y4c{bottom:692.925000px;}
.y1d{bottom:696.705000px;}
.y14c{bottom:696.780000px;}
.y11e{bottom:700.380000px;}
.y83{bottom:701.025000px;}
.yb6{bottom:703.725000px;}
.y4b{bottom:712.725000px;}
.y141{bottom:714.345000px;}
.y1c{bottom:716.505000px;}
.y82{bottom:720.825000px;}
.yb5{bottom:723.525000px;}
.ydb{bottom:730.980000px;}
.y4a{bottom:732.525000px;}
.yd6{bottom:732.600000px;}
.y1b{bottom:736.485000px;}
.yd9{bottom:736.560000px;}
.y81{bottom:740.625000px;}
.yb4{bottom:743.505000px;}
.y49{bottom:752.505000px;}
.y140{bottom:754.125000px;}
.y1a{bottom:756.285000px;}
.y80{bottom:760.425000px;}
.yb3{bottom:763.305000px;}
.y48{bottom:772.305000px;}
.y19{bottom:776.085000px;}
.y7f{bottom:780.405000px;}
.yb2{bottom:783.105000px;}
.y116{bottom:783.180000px;}
.y111{bottom:785.160000px;}
.y11b{bottom:789.480000px;}
.y47{bottom:792.105000px;}
.y13f{bottom:793.725000px;}
.y18{bottom:795.885000px;}
.y7e{bottom:800.205000px;}
.yb1{bottom:802.905000px;}
.yd4{bottom:809.280000px;}
.y46{bottom:811.905000px;}
.y13d{bottom:813.525000px;}
.y7d{bottom:820.005000px;}
.y17{bottom:820.905000px;}
.yb0{bottom:822.705000px;}
.y45{bottom:831.705000px;}
.y13c{bottom:833.505000px;}
.y7c{bottom:839.805000px;}
.y16{bottom:840.885000px;}
.yaf{bottom:842.685000px;}
.y44{bottom:851.685000px;}
.y13b{bottom:854.745000px;}
.y15{bottom:855.465000px;}
.y7b{bottom:859.605000px;}
.yae{bottom:862.485000px;}
.y10e{bottom:866.160000px;}
.y43{bottom:871.485000px;}
.y7a{bottom:879.585000px;}
.y14{bottom:880.485000px;}
.yad{bottom:882.285000px;}
.yd0{bottom:887.940000px;}
.yd2{bottom:891.000000px;}
.y42{bottom:891.285000px;}
.y13{bottom:895.605000px;}
.y79{bottom:899.430000px;}
.yac{bottom:902.130000px;}
.y41{bottom:911.130000px;}
.ya7{bottom:914.910000px;}
.y12{bottom:916.890000px;}
.yab{bottom:921.930000px;}
.y40{bottom:930.930000px;}
.y11{bottom:940.470000px;}
.y3f{bottom:950.910000px;}
.ya3{bottom:957.570000px;}
.y3e{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y10a{bottom:986.400000px;}
.y104{bottom:989.460000px;}
.y3d{bottom:990.510000px;}
.y107{bottom:994.140000px;}
.y114{bottom:996.840000px;}
.y10c{bottom:1001.310000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.581875px;}
.h28{height:18.180000px;}
.h27{height:19.440000px;}
.h15{height:19.800000px;}
.h32{height:19.980000px;}
.ha{height:21.780000px;}
.h3b{height:23.940000px;}
.h2f{height:26.280000px;}
.h31{height:26.460000px;}
.h30{height:26.820000px;}
.h22{height:32.040000px;}
.h8{height:33.480000px;}
.h2d{height:33.840000px;}
.h26{height:34.740000px;}
.hd{height:34.855313px;}
.h24{height:35.820000px;}
.h20{height:36.000000px;}
.h2e{height:36.360000px;}
.h2b{height:36.540000px;}
.h25{height:37.620000px;}
.h2a{height:38.100586px;}
.h11{height:39.600000px;}
.h3c{height:39.636000px;}
.h33{height:39.780000px;}
.h29{height:41.220000px;}
.he{height:42.164648px;}
.h1c{height:42.660000px;}
.hf{height:43.506914px;}
.h1d{height:44.265586px;}
.h2c{height:44.280000px;}
.h3f{height:46.159453px;}
.h4{height:46.736719px;}
.h18{height:50.364141px;}
.h3e{height:50.992031px;}
.h5{height:53.573906px;}
.h38{height:53.709961px;}
.h3a{height:53.853187px;}
.h3d{height:55.735313px;}
.h36{height:56.801250px;}
.h9{height:59.383125px;}
.h16{height:60.480000px;}
.h23{height:61.189805px;}
.h21{height:61.337250px;}
.hc{height:61.377187px;}
.h19{height:61.380000px;}
.h1a{height:61.416000px;}
.h3{height:63.500977px;}
.h12{height:65.700000px;}
.h10{height:65.884219px;}
.hb{height:67.565039px;}
.h1e{height:70.474219px;}
.h1f{height:72.404648px;}
.h14{height:74.556000px;}
.h39{height:79.809961px;}
.h1b{height:85.140000px;}
.h17{height:96.444141px;}
.h6{height:112.536000px;}
.h13{height:140.256000px;}
.h2{height:146.736000px;}
.h35{height:156.533906px;}
.h34{height:346.500000px;}
.h37{height:405.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wf{width:64.620000px;}
.w12{width:76.320000px;}
.w8{width:76.680000px;}
.w22{width:79.200000px;}
.w28{width:85.140000px;}
.w16{width:96.480000px;}
.w14{width:99.540000px;}
.w27{width:99.576000px;}
.w1c{width:101.160000px;}
.w1d{width:101.376000px;}
.w9{width:102.816000px;}
.w24{width:106.776000px;}
.w1e{width:109.476000px;}
.w26{width:111.960000px;}
.w15{width:112.500000px;}
.w17{width:112.860000px;}
.wa{width:113.220000px;}
.w1f{width:117.036000px;}
.w7{width:122.256000px;}
.w19{width:122.580000px;}
.w18{width:123.120000px;}
.w6{width:123.336000px;}
.w3{width:131.796000px;}
.w25{width:139.896000px;}
.w11{width:146.340000px;}
.w10{width:152.640000px;}
.we{width:152.820000px;}
.w1a{width:161.100000px;}
.w13{width:171.540000px;}
.wb{width:195.555000px;}
.wc{width:210.990000px;}
.w1b{width:211.755000px;}
.wd{width:362.055000px;}
.w20{width:529.560000px;}
.w23{width:543.345000px;}
.w2{width:654.630000px;}
.w21{width:673.920000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x2e{left:11.775000px;}
.x28{left:13.935000px;}
.x49{left:15.735000px;}
.x3f{left:16.815000px;}
.x2c{left:18.030000px;}
.x37{left:20.595000px;}
.x32{left:23.115000px;}
.x34{left:26.745000px;}
.x17{left:29.340000px;}
.x26{left:30.630000px;}
.x61{left:31.752000px;}
.x4d{left:33.045000px;}
.x47{left:34.305000px;}
.x4b{left:38.085000px;}
.x5f{left:39.924000px;}
.x35{left:42.405000px;}
.x2b{left:46.830000px;}
.x30{left:50.145000px;}
.x1{left:53.280000px;}
.x3a{left:58.319987px;}
.x58{left:71.490000px;}
.x10{left:75.239987px;}
.x13{left:79.020000px;}
.x68{left:80.999987px;}
.xb{left:83.699987px;}
.x6{left:93.635987px;}
.x7{left:96.335987px;}
.xe{left:98.315987px;}
.x56{left:99.645000px;}
.x5a{left:103.320000px;}
.x1e{left:104.970000px;}
.x69{left:108.035987px;}
.x1c{left:111.990000px;}
.x4{left:118.290000px;}
.x52{left:121.355987px;}
.x23{left:123.335987px;}
.x60{left:127.005000px;}
.x57{left:134.100000px;}
.x2a{left:149.220000px;}
.x40{left:150.840000px;}
.x3c{left:152.129987px;}
.x1a{left:160.050000px;}
.x25{left:163.080000px;}
.x21{left:164.730000px;}
.x1f{left:168.510000px;}
.x1d{left:170.490000px;}
.x41{left:173.009987px;}
.x55{left:180.900000px;}
.x38{left:188.489987px;}
.x12{left:191.549987px;}
.xd{left:200.729987px;}
.x14{left:202.350000px;}
.x63{left:213.870000px;}
.x5b{left:218.235000px;}
.x54{left:228.629987px;}
.xa{left:230.609987px;}
.x8{left:239.789987px;}
.x42{left:241.020000px;}
.xc{left:250.409987px;}
.x62{left:255.990000px;}
.x20{left:257.115000px;}
.x45{left:259.380000px;}
.x48{left:261.000000px;}
.x5d{left:265.605000px;}
.x3d{left:272.520000px;}
.x59{left:278.070000px;}
.x22{left:286.814987px;}
.x53{left:291.494987px;}
.x67{left:293.654987px;}
.x39{left:309.854987px;}
.x29{left:320.940000px;}
.x15{left:324.615000px;}
.x31{left:327.960000px;}
.x5c{left:333.105000px;}
.x2d{left:335.160000px;}
.x27{left:352.620000px;}
.xf{left:360.434987px;}
.x36{left:367.920000px;}
.x1b{left:371.055000px;}
.x5e{left:380.520000px;}
.x4e{left:387.975000px;}
.x3e{left:390.960000px;}
.x16{left:401.295000px;}
.x4a{left:421.560000px;}
.x46{left:428.580000px;}
.x24{left:446.504987px;}
.x33{left:451.980000px;}
.x9{left:457.124987px;}
.x64{left:460.545000px;}
.x4f{left:489.345000px;}
.x18{left:504.105000px;}
.x2f{left:519.840000px;}
.x65{left:572.505000px;}
.x4c{left:580.860000px;}
.x50{left:590.505000px;}
.x44{left:612.900000px;}
.x43{left:615.060000px;}
.x19{left:617.325000px;}
.x11{left:658.949987px;}
.x66{left:672.090000px;}
.x51{left:699.990000px;}
.x3{left:707.910000px;}
.x3b{left:807.269987px;}
.x5{left:829.260000px;}
@media print{
.vf{vertical-align:-74.880000pt;}
.ve{vertical-align:-70.400000pt;}
.vc{vertical-align:-56.586667pt;}
.vd{vertical-align:-51.946667pt;}
.v12{vertical-align:-29.173333pt;}
.v2{vertical-align:-18.560000pt;}
.v13{vertical-align:-12.906667pt;}
.v5{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:3.840000pt;}
.v8{vertical-align:5.120000pt;}
.v14{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v11{vertical-align:23.200000pt;}
.v7{vertical-align:26.880000pt;}
.v4{vertical-align:30.080000pt;}
.v6{vertical-align:31.360000pt;}
.v3{vertical-align:40.960000pt;}
.va{vertical-align:53.973333pt;}
.v9{vertical-align:63.466667pt;}
.vb{vertical-align:91.520000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.185067pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.086933pt;}
.ls15{letter-spacing:-0.052480pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.196267pt;}
.ls6{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.292480pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.408960pt;}
.ls24{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.592000pt;}
.ls11{letter-spacing:1.048960pt;}
.ls21{letter-spacing:1.232640pt;}
.ls26{letter-spacing:1.440000pt;}
.ls25{letter-spacing:14.672640pt;}
.ls8{letter-spacing:18.512640pt;}
.ls20{letter-spacing:40.912640pt;}
.ls17{letter-spacing:53.712640pt;}
.lsa{letter-spacing:80.720640pt;}
.ls16{letter-spacing:94.160640pt;}
.ls18{letter-spacing:118.480640pt;}
.ls1e{letter-spacing:127.291307pt;}
.ls19{letter-spacing:166.971307pt;}
.ls12{letter-spacing:282.858027pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws27{word-spacing:-12.960000pt;}
.ws26{word-spacing:-12.836267pt;}
.ws15{word-spacing:-12.448000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.904000pt;}
.ws23{word-spacing:-10.876928pt;}
.ws25{word-spacing:-10.848000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.230400pt;}
.wsc{word-spacing:-8.166400pt;}
.ws12{word-spacing:-8.113920pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.472960pt;}
.wsf{word-spacing:3.032960pt;}
.wsd{word-spacing:3.605120pt;}
.ws9{word-spacing:3.639680pt;}
.ws11{word-spacing:4.288213pt;}
.ws10{word-spacing:6.140160pt;}
.wse{word-spacing:6.266880pt;}
.wsa{word-spacing:6.268160pt;}
.ws1a{word-spacing:142.752000pt;}
.ws16{word-spacing:151.680000pt;}
.ws17{word-spacing:151.765333pt;}
.ws18{word-spacing:151.786667pt;}
.ws1b{word-spacing:155.498667pt;}
.ws19{word-spacing:156.106667pt;}
.ws1c{word-spacing:165.173333pt;}
.ws1e{word-spacing:179.894187pt;}
.ws20{word-spacing:288.138667pt;}
.ws1f{word-spacing:288.298667pt;}
.ws24{word-spacing:300.368000pt;}
.ws21{word-spacing:312.474667pt;}
.ws22{word-spacing:312.634667pt;}
._1b{margin-left:-7.936000pt;}
._19{margin-left:-3.412693pt;}
._14{margin-left:-2.409173pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.028053pt;}
._1{width:1.973333pt;}
._11{width:2.965760pt;}
._16{width:3.965227pt;}
._18{width:5.156480pt;}
._17{width:6.108800pt;}
._12{width:7.046187pt;}
._13{width:8.127360pt;}
._6{width:9.600000pt;}
._10{width:10.978773pt;}
._1a{width:12.052053pt;}
._15{width:14.357973pt;}
._21{width:15.662720pt;}
._1c{width:20.344960pt;}
._28{width:21.957120pt;}
._26{width:23.054080pt;}
._2a{width:28.631680pt;}
._29{width:29.587840pt;}
._2b{width:35.962240pt;}
._20{width:41.504640pt;}
._1e{width:42.549120pt;}
._1f{width:45.736320pt;}
._27{width:49.295360pt;}
._22{width:56.694613pt;}
._7{width:67.808853pt;}
._25{width:95.712000pt;}
._1d{width:98.218880pt;}
._23{width:101.676800pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
._2c{width:2275.253333pt;}
._24{width:2399.893333pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fsb{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs9{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y11d{bottom:-2.786667pt;}
.y10d{bottom:-1.786667pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:1.693333pt;}
.yd8{bottom:2.813333pt;}
.ye2{bottom:2.973333pt;}
.ye6{bottom:3.106667pt;}
.y110{bottom:3.613333pt;}
.ye4{bottom:3.746667pt;}
.ydd{bottom:3.773333pt;}
.y69{bottom:5.120000pt;}
.y13e{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y119{bottom:5.853333pt;}
.y113{bottom:6.013333pt;}
.y109{bottom:6.213333pt;}
.ya9{bottom:6.400000pt;}
.y191{bottom:6.880000pt;}
.y188{bottom:7.040000pt;}
.yda{bottom:9.373333pt;}
.yd3{bottom:9.413333pt;}
.yd5{bottom:9.693333pt;}
.y106{bottom:10.373333pt;}
.y6{bottom:11.040000pt;}
.yd1{bottom:11.493333pt;}
.y115{bottom:11.813333pt;}
.y11f{bottom:12.253333pt;}
.y11c{bottom:12.413333pt;}
.y6a{bottom:13.920000pt;}
.y18e{bottom:13.946667pt;}
.y142{bottom:14.080000pt;}
.y15b{bottom:15.013333pt;}
.yaa{bottom:15.200000pt;}
.y186{bottom:15.653333pt;}
.y8d{bottom:15.680000pt;}
.y94{bottom:16.040000pt;}
.y8{bottom:16.160000pt;}
.y6c{bottom:16.640000pt;}
.y18a{bottom:17.600000pt;}
.y11a{bottom:17.693333pt;}
.ydf{bottom:18.013333pt;}
.y10f{bottom:18.653333pt;}
.yd7{bottom:19.133333pt;}
.ye1{bottom:19.173333pt;}
.ydc{bottom:20.093333pt;}
.y77{bottom:20.666667pt;}
.y118{bottom:20.893333pt;}
.y112{bottom:21.053333pt;}
.y108{bottom:21.253333pt;}
.y68{bottom:22.720000pt;}
.y18f{bottom:22.746667pt;}
.y143{bottom:22.880000pt;}
.y8b{bottom:23.200000pt;}
.y92{bottom:23.560000pt;}
.y8f{bottom:23.680000pt;}
.ya8{bottom:24.160000pt;}
.y8c{bottom:24.640000pt;}
.y93{bottom:25.000000pt;}
.y90{bottom:25.120000pt;}
.ya5{bottom:25.280000pt;}
.y105{bottom:25.413333pt;}
.y72{bottom:25.440000pt;}
.y10b{bottom:28.133333pt;}
.y78{bottom:29.466667pt;}
.y71{bottom:32.186667pt;}
.ya6{bottom:34.080000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y76{bottom:38.266667pt;}
.y75{bottom:40.986667pt;}
.ya4{bottom:43.040000pt;}
.y70{bottom:49.786667pt;}
.y15a{bottom:49.920000pt;}
.y185{bottom:50.240000pt;}
.yb{bottom:53.600000pt;}
.y73{bottom:58.586667pt;}
.y4{bottom:60.800000pt;}
.y6f{bottom:67.386667pt;}
.y183{bottom:68.866667pt;}
.yd{bottom:69.280000pt;}
.y158{bottom:69.346667pt;}
.ya{bottom:72.960000pt;}
.y74{bottom:76.186667pt;}
.y178{bottom:84.480000pt;}
.y14f{bottom:84.986667pt;}
.y6e{bottom:85.146667pt;}
.y3{bottom:85.626667pt;}
.y1a1{bottom:92.160000pt;}
.y101{bottom:94.880000pt;}
.y1ae{bottom:96.480000pt;}
.ycf{bottom:102.880000pt;}
.y103{bottom:103.360000pt;}
.ya2{bottom:103.520000pt;}
.y190{bottom:104.000000pt;}
.y1af{bottom:104.480000pt;}
.y3a{bottom:107.840000pt;}
.y170{bottom:108.800000pt;}
.y1a0{bottom:109.760000pt;}
.y179{bottom:110.306667pt;}
.y150{bottom:110.533333pt;}
.y13a{bottom:111.520000pt;}
.y2{bottom:111.706667pt;}
.y100{bottom:112.480000pt;}
.y1ad{bottom:114.080000pt;}
.y102{bottom:117.920000pt;}
.yce{bottom:120.640000pt;}
.ya1{bottom:121.120000pt;}
.y14b{bottom:122.080000pt;}
.y6d{bottom:124.320000pt;}
.y18d{bottom:125.280000pt;}
.y39{bottom:125.600000pt;}
.y16f{bottom:126.400000pt;}
.y19f{bottom:127.360000pt;}
.y1b5{bottom:128.640000pt;}
.y139{bottom:129.120000pt;}
.yff{bottom:130.080000pt;}
.y1ac{bottom:131.840000pt;}
.y159{bottom:133.053333pt;}
.y151{bottom:136.026667pt;}
.y17a{bottom:136.133333pt;}
.ycd{bottom:138.426667pt;}
.ya0{bottom:138.746667pt;}
.y14a{bottom:139.866667pt;}
.y38{bottom:143.226667pt;}
.y16e{bottom:144.026667pt;}
.y1b4{bottom:144.826667pt;}
.y19e{bottom:145.146667pt;}
.y138{bottom:146.746667pt;}
.y184{bottom:146.853333pt;}
.yfe{bottom:147.706667pt;}
.y1ab{bottom:149.466667pt;}
.ycc{bottom:155.546667pt;}
.y9f{bottom:156.346667pt;}
.y149{bottom:157.466667pt;}
.y14e{bottom:157.853333pt;}
.y18c{bottom:160.506667pt;}
.y37{bottom:160.826667pt;}
.y152{bottom:161.533333pt;}
.y16d{bottom:161.626667pt;}
.y17b{bottom:161.986667pt;}
.ycb{bottom:162.266667pt;}
.y19d{bottom:162.746667pt;}
.y137{bottom:164.346667pt;}
.yfd{bottom:165.466667pt;}
.y1aa{bottom:167.066667pt;}
.y9e{bottom:174.106667pt;}
.y1b3{bottom:174.586667pt;}
.y148{bottom:175.066667pt;}
.y36{bottom:178.426667pt;}
.y16c{bottom:179.386667pt;}
.y19c{bottom:180.346667pt;}
.y176{bottom:181.346667pt;}
.y136{bottom:181.946667pt;}
.yfc{bottom:183.066667pt;}
.yca{bottom:183.706667pt;}
.y1a9{bottom:184.666667pt;}
.y153{bottom:187.040000pt;}
.y17c{bottom:187.813333pt;}
.y6b{bottom:190.586667pt;}
.y9d{bottom:191.706667pt;}
.y147{bottom:192.666667pt;}
.y177{bottom:195.520000pt;}
.y18b{bottom:195.866667pt;}
.y35{bottom:196.026667pt;}
.y16b{bottom:196.986667pt;}
.y19b{bottom:197.946667pt;}
.y135{bottom:199.706667pt;}
.yfb{bottom:200.666667pt;}
.yc9{bottom:201.306667pt;}
.y1a8{bottom:202.266667pt;}
.y1b2{bottom:202.906667pt;}
.y9c{bottom:209.306667pt;}
.y146{bottom:210.266667pt;}
.y154{bottom:212.546667pt;}
.y17d{bottom:213.626667pt;}
.y34{bottom:213.786667pt;}
.y16a{bottom:214.586667pt;}
.y19a{bottom:215.546667pt;}
.y134{bottom:217.306667pt;}
.yfa{bottom:217.466667pt;}
.y189{bottom:217.786667pt;}
.yc8{bottom:218.906667pt;}
.y1a7{bottom:220.026667pt;}
.y175{bottom:220.133333pt;}
.yf9{bottom:224.186667pt;}
.y9b{bottom:226.906667pt;}
.y145{bottom:228.026667pt;}
.y1b1{bottom:231.226667pt;}
.y33{bottom:231.386667pt;}
.y169{bottom:232.186667pt;}
.y199{bottom:233.306667pt;}
.y133{bottom:234.906667pt;}
.yc7{bottom:236.506667pt;}
.y1a6{bottom:237.626667pt;}
.y155{bottom:238.053333pt;}
.y17e{bottom:239.453333pt;}
.y9a{bottom:244.506667pt;}
.y14d{bottom:245.573333pt;}
.yf8{bottom:245.626667pt;}
.y32{bottom:248.986667pt;}
.y168{bottom:249.786667pt;}
.y67{bottom:250.266667pt;}
.y198{bottom:250.906667pt;}
.y132{bottom:252.506667pt;}
.y187{bottom:253.786667pt;}
.yc6{bottom:254.266667pt;}
.y1a5{bottom:255.226667pt;}
.y1b0{bottom:259.546667pt;}
.y99{bottom:262.266667pt;}
.yf7{bottom:263.226667pt;}
.y156{bottom:263.546667pt;}
.y17f{bottom:265.280000pt;}
.y31{bottom:266.586667pt;}
.y167{bottom:267.546667pt;}
.y197{bottom:268.506667pt;}
.y131{bottom:270.106667pt;}
.yc5{bottom:271.866667pt;}
.y1a4{bottom:272.826667pt;}
.y98{bottom:279.866667pt;}
.yf6{bottom:280.826667pt;}
.y30{bottom:284.186667pt;}
.y166{bottom:285.146667pt;}
.y196{bottom:286.106667pt;}
.y130{bottom:287.866667pt;}
.y157{bottom:289.053333pt;}
.yc4{bottom:289.466667pt;}
.y1a3{bottom:290.426667pt;}
.y180{bottom:291.106667pt;}
.y173{bottom:293.093333pt;}
.y97{bottom:297.466667pt;}
.yf5{bottom:298.426667pt;}
.y2f{bottom:301.946667pt;}
.y66{bottom:302.426667pt;}
.y165{bottom:302.746667pt;}
.y195{bottom:303.706667pt;}
.y12f{bottom:305.466667pt;}
.yc3{bottom:307.066667pt;}
.y1a2{bottom:308.186667pt;}
.y174{bottom:308.506667pt;}
.y172{bottom:309.346667pt;}
.y96{bottom:315.066667pt;}
.yf4{bottom:316.186667pt;}
.y181{bottom:316.960000pt;}
.y2e{bottom:319.546667pt;}
.y65{bottom:320.026667pt;}
.y164{bottom:320.346667pt;}
.y194{bottom:321.466667pt;}
.y12e{bottom:323.066667pt;}
.yc2{bottom:324.666667pt;}
.y5c{bottom:325.786667pt;}
.y95{bottom:332.666667pt;}
.yf3{bottom:333.786667pt;}
.y2d{bottom:337.146667pt;}
.y64{bottom:337.626667pt;}
.y163{bottom:337.946667pt;}
.y193{bottom:339.066667pt;}
.y12d{bottom:340.666667pt;}
.yc1{bottom:342.426667pt;}
.y182{bottom:342.786667pt;}
.y5b{bottom:343.386667pt;}
.y91{bottom:346.586667pt;}
.yf2{bottom:351.386667pt;}
.y2c{bottom:354.746667pt;}
.y63{bottom:355.386667pt;}
.y162{bottom:355.706667pt;}
.y12c{bottom:358.306667pt;}
.yc0{bottom:360.066667pt;}
.y5a{bottom:361.026667pt;}
.y192{bottom:367.586667pt;}
.yf1{bottom:369.026667pt;}
.y2b{bottom:372.386667pt;}
.y62{bottom:373.026667pt;}
.y161{bottom:373.346667pt;}
.y12b{bottom:376.066667pt;}
.ybf{bottom:377.666667pt;}
.y59{bottom:378.626667pt;}
.yf0{bottom:386.626667pt;}
.y2a{bottom:390.146667pt;}
.y61{bottom:390.626667pt;}
.y160{bottom:390.946667pt;}
.y12a{bottom:393.666667pt;}
.ybe{bottom:395.266667pt;}
.y58{bottom:396.386667pt;}
.y8e{bottom:401.186667pt;}
.yef{bottom:404.386667pt;}
.y29{bottom:407.746667pt;}
.y60{bottom:408.226667pt;}
.y129{bottom:411.266667pt;}
.ybd{bottom:412.866667pt;}
.y57{bottom:413.986667pt;}
.y15f{bottom:419.426667pt;}
.yee{bottom:421.986667pt;}
.y28{bottom:425.346667pt;}
.y5f{bottom:426.146667pt;}
.y128{bottom:428.866667pt;}
.ybc{bottom:430.626667pt;}
.y56{bottom:431.586667pt;}
.y15e{bottom:438.626667pt;}
.yed{bottom:439.586667pt;}
.y27{bottom:442.946667pt;}
.y5e{bottom:445.186667pt;}
.y127{bottom:446.466667pt;}
.ybb{bottom:448.226667pt;}
.y55{bottom:449.186667pt;}
.y8a{bottom:455.746667pt;}
.y15d{bottom:456.226667pt;}
.yec{bottom:457.186667pt;}
.y5d{bottom:459.906667pt;}
.y26{bottom:460.546667pt;}
.y126{bottom:464.226667pt;}
.y54{bottom:466.786667pt;}
.y15c{bottom:470.786667pt;}
.y171{bottom:471.200000pt;}
.yeb{bottom:474.786667pt;}
.y25{bottom:478.306667pt;}
.y125{bottom:481.826667pt;}
.ye5{bottom:483.680000pt;}
.y53{bottom:484.546667pt;}
.yea{bottom:492.546667pt;}
.y24{bottom:495.906667pt;}
.y124{bottom:499.426667pt;}
.y52{bottom:502.146667pt;}
.ye9{bottom:510.146667pt;}
.y89{bottom:510.786667pt;}
.y23{bottom:513.506667pt;}
.y123{bottom:517.026667pt;}
.y51{bottom:519.746667pt;}
.ye8{bottom:527.746667pt;}
.y22{bottom:531.106667pt;}
.y122{bottom:534.626667pt;}
.y88{bottom:534.946667pt;}
.y50{bottom:537.346667pt;}
.ye3{bottom:544.800000pt;}
.ye7{bottom:545.346667pt;}
.y21{bottom:548.706667pt;}
.y121{bottom:552.386667pt;}
.y87{bottom:552.546667pt;}
.yba{bottom:554.946667pt;}
.y4f{bottom:562.946667pt;}
.y20{bottom:566.466667pt;}
.y86{bottom:570.146667pt;}
.yb9{bottom:572.706667pt;}
.y4e{bottom:580.733333pt;}
.y1f{bottom:584.093333pt;}
.y120{bottom:586.013333pt;}
.y85{bottom:587.773333pt;}
.yb8{bottom:590.333333pt;}
.y4d{bottom:598.333333pt;}
.y144{bottom:599.773333pt;}
.y1e{bottom:601.693333pt;}
.yde{bottom:604.000000pt;}
.y84{bottom:605.533333pt;}
.yb7{bottom:607.933333pt;}
.y117{bottom:615.680000pt;}
.y4c{bottom:615.933333pt;}
.y1d{bottom:619.293333pt;}
.y14c{bottom:619.360000pt;}
.y11e{bottom:622.560000pt;}
.y83{bottom:623.133333pt;}
.yb6{bottom:625.533333pt;}
.y4b{bottom:633.533333pt;}
.y141{bottom:634.973333pt;}
.y1c{bottom:636.893333pt;}
.y82{bottom:640.733333pt;}
.yb5{bottom:643.133333pt;}
.ydb{bottom:649.760000pt;}
.y4a{bottom:651.133333pt;}
.yd6{bottom:651.200000pt;}
.y1b{bottom:654.653333pt;}
.yd9{bottom:654.720000pt;}
.y81{bottom:658.333333pt;}
.yb4{bottom:660.893333pt;}
.y49{bottom:668.893333pt;}
.y140{bottom:670.333333pt;}
.y1a{bottom:672.253333pt;}
.y80{bottom:675.933333pt;}
.yb3{bottom:678.493333pt;}
.y48{bottom:686.493333pt;}
.y19{bottom:689.853333pt;}
.y7f{bottom:693.693333pt;}
.yb2{bottom:696.093333pt;}
.y116{bottom:696.160000pt;}
.y111{bottom:697.920000pt;}
.y11b{bottom:701.760000pt;}
.y47{bottom:704.093333pt;}
.y13f{bottom:705.533333pt;}
.y18{bottom:707.453333pt;}
.y7e{bottom:711.293333pt;}
.yb1{bottom:713.693333pt;}
.yd4{bottom:719.360000pt;}
.y46{bottom:721.693333pt;}
.y13d{bottom:723.133333pt;}
.y7d{bottom:728.893333pt;}
.y17{bottom:729.693333pt;}
.yb0{bottom:731.293333pt;}
.y45{bottom:739.293333pt;}
.y13c{bottom:740.893333pt;}
.y7c{bottom:746.493333pt;}
.y16{bottom:747.453333pt;}
.yaf{bottom:749.053333pt;}
.y44{bottom:757.053333pt;}
.y13b{bottom:759.773333pt;}
.y15{bottom:760.413333pt;}
.y7b{bottom:764.093333pt;}
.yae{bottom:766.653333pt;}
.y10e{bottom:769.920000pt;}
.y43{bottom:774.653333pt;}
.y7a{bottom:781.853333pt;}
.y14{bottom:782.653333pt;}
.yad{bottom:784.253333pt;}
.yd0{bottom:789.280000pt;}
.yd2{bottom:792.000000pt;}
.y42{bottom:792.253333pt;}
.y13{bottom:796.093333pt;}
.y79{bottom:799.493333pt;}
.yac{bottom:801.893333pt;}
.y41{bottom:809.893333pt;}
.ya7{bottom:813.253333pt;}
.y12{bottom:815.013333pt;}
.yab{bottom:819.493333pt;}
.y40{bottom:827.493333pt;}
.y11{bottom:835.973333pt;}
.y3f{bottom:845.253333pt;}
.ya3{bottom:851.173333pt;}
.y3e{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y10a{bottom:876.800000pt;}
.y104{bottom:879.520000pt;}
.y3d{bottom:880.453333pt;}
.y107{bottom:883.680000pt;}
.y114{bottom:886.080000pt;}
.y10c{bottom:890.053333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.295000pt;}
.h28{height:16.160000pt;}
.h27{height:17.280000pt;}
.h15{height:17.600000pt;}
.h32{height:17.760000pt;}
.ha{height:19.360000pt;}
.h3b{height:21.280000pt;}
.h2f{height:23.360000pt;}
.h31{height:23.520000pt;}
.h30{height:23.840000pt;}
.h22{height:28.480000pt;}
.h8{height:29.760000pt;}
.h2d{height:30.080000pt;}
.h26{height:30.880000pt;}
.hd{height:30.982500pt;}
.h24{height:31.840000pt;}
.h20{height:32.000000pt;}
.h2e{height:32.320000pt;}
.h2b{height:32.480000pt;}
.h25{height:33.440000pt;}
.h2a{height:33.867188pt;}
.h11{height:35.200000pt;}
.h3c{height:35.232000pt;}
.h33{height:35.360000pt;}
.h29{height:36.640000pt;}
.he{height:37.479688pt;}
.h1c{height:37.920000pt;}
.hf{height:38.672812pt;}
.h1d{height:39.347188pt;}
.h2c{height:39.360000pt;}
.h3f{height:41.030625pt;}
.h4{height:41.543750pt;}
.h18{height:44.768125pt;}
.h3e{height:45.326250pt;}
.h5{height:47.621250pt;}
.h38{height:47.742188pt;}
.h3a{height:47.869500pt;}
.h3d{height:49.542500pt;}
.h36{height:50.490000pt;}
.h9{height:52.785000pt;}
.h16{height:53.760000pt;}
.h23{height:54.390938pt;}
.h21{height:54.522000pt;}
.hc{height:54.557500pt;}
.h19{height:54.560000pt;}
.h1a{height:54.592000pt;}
.h3{height:56.445312pt;}
.h12{height:58.400000pt;}
.h10{height:58.563750pt;}
.hb{height:60.057813pt;}
.h1e{height:62.643750pt;}
.h1f{height:64.359688pt;}
.h14{height:66.272000pt;}
.h39{height:70.942187pt;}
.h1b{height:75.680000pt;}
.h17{height:85.728125pt;}
.h6{height:100.032000pt;}
.h13{height:124.672000pt;}
.h2{height:130.432000pt;}
.h35{height:139.141250pt;}
.h34{height:308.000000pt;}
.h37{height:360.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wf{width:57.440000pt;}
.w12{width:67.840000pt;}
.w8{width:68.160000pt;}
.w22{width:70.400000pt;}
.w28{width:75.680000pt;}
.w16{width:85.760000pt;}
.w14{width:88.480000pt;}
.w27{width:88.512000pt;}
.w1c{width:89.920000pt;}
.w1d{width:90.112000pt;}
.w9{width:91.392000pt;}
.w24{width:94.912000pt;}
.w1e{width:97.312000pt;}
.w26{width:99.520000pt;}
.w15{width:100.000000pt;}
.w17{width:100.320000pt;}
.wa{width:100.640000pt;}
.w1f{width:104.032000pt;}
.w7{width:108.672000pt;}
.w19{width:108.960000pt;}
.w18{width:109.440000pt;}
.w6{width:109.632000pt;}
.w3{width:117.152000pt;}
.w25{width:124.352000pt;}
.w11{width:130.080000pt;}
.w10{width:135.680000pt;}
.we{width:135.840000pt;}
.w1a{width:143.200000pt;}
.w13{width:152.480000pt;}
.wb{width:173.826667pt;}
.wc{width:187.546667pt;}
.w1b{width:188.226667pt;}
.wd{width:321.826667pt;}
.w20{width:470.720000pt;}
.w23{width:482.973333pt;}
.w2{width:581.893333pt;}
.w21{width:599.040000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x2e{left:10.466667pt;}
.x28{left:12.386667pt;}
.x49{left:13.986667pt;}
.x3f{left:14.946667pt;}
.x2c{left:16.026667pt;}
.x37{left:18.306667pt;}
.x32{left:20.546667pt;}
.x34{left:23.773333pt;}
.x17{left:26.080000pt;}
.x26{left:27.226667pt;}
.x61{left:28.224000pt;}
.x4d{left:29.373333pt;}
.x47{left:30.493333pt;}
.x4b{left:33.853333pt;}
.x5f{left:35.488000pt;}
.x35{left:37.693333pt;}
.x2b{left:41.626667pt;}
.x30{left:44.573333pt;}
.x1{left:47.360000pt;}
.x3a{left:51.839988pt;}
.x58{left:63.546667pt;}
.x10{left:66.879988pt;}
.x13{left:70.240000pt;}
.x68{left:71.999988pt;}
.xb{left:74.399988pt;}
.x6{left:83.231988pt;}
.x7{left:85.631988pt;}
.xe{left:87.391988pt;}
.x56{left:88.573333pt;}
.x5a{left:91.840000pt;}
.x1e{left:93.306667pt;}
.x69{left:96.031988pt;}
.x1c{left:99.546667pt;}
.x4{left:105.146667pt;}
.x52{left:107.871988pt;}
.x23{left:109.631988pt;}
.x60{left:112.893333pt;}
.x57{left:119.200000pt;}
.x2a{left:132.640000pt;}
.x40{left:134.080000pt;}
.x3c{left:135.226655pt;}
.x1a{left:142.266667pt;}
.x25{left:144.960000pt;}
.x21{left:146.426667pt;}
.x1f{left:149.786667pt;}
.x1d{left:151.546667pt;}
.x41{left:153.786655pt;}
.x55{left:160.800000pt;}
.x38{left:167.546655pt;}
.x12{left:170.266655pt;}
.xd{left:178.426655pt;}
.x14{left:179.866667pt;}
.x63{left:190.106667pt;}
.x5b{left:193.986667pt;}
.x54{left:203.226655pt;}
.xa{left:204.986655pt;}
.x8{left:213.146655pt;}
.x42{left:214.240000pt;}
.xc{left:222.586655pt;}
.x62{left:227.546667pt;}
.x20{left:228.546667pt;}
.x45{left:230.560000pt;}
.x48{left:232.000000pt;}
.x5d{left:236.093333pt;}
.x3d{left:242.240000pt;}
.x59{left:247.173333pt;}
.x22{left:254.946655pt;}
.x53{left:259.106655pt;}
.x67{left:261.026655pt;}
.x39{left:275.426655pt;}
.x29{left:285.280000pt;}
.x15{left:288.546667pt;}
.x31{left:291.520000pt;}
.x5c{left:296.093333pt;}
.x2d{left:297.920000pt;}
.x27{left:313.440000pt;}
.xf{left:320.386655pt;}
.x36{left:327.040000pt;}
.x1b{left:329.826667pt;}
.x5e{left:338.240000pt;}
.x4e{left:344.866667pt;}
.x3e{left:347.520000pt;}
.x16{left:356.706667pt;}
.x4a{left:374.720000pt;}
.x46{left:380.960000pt;}
.x24{left:396.893322pt;}
.x33{left:401.760000pt;}
.x9{left:406.333322pt;}
.x64{left:409.373333pt;}
.x4f{left:434.973333pt;}
.x18{left:448.093333pt;}
.x2f{left:462.080000pt;}
.x65{left:508.893333pt;}
.x4c{left:516.320000pt;}
.x50{left:524.893333pt;}
.x44{left:544.800000pt;}
.x43{left:546.720000pt;}
.x19{left:548.733333pt;}
.x11{left:585.733322pt;}
.x66{left:597.413333pt;}
.x51{left:622.213333pt;}
.x3{left:629.253333pt;}
.x3b{left:717.573322pt;}
.x5{left:737.120000pt;}
}




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