
    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_d52ce596f59f17d573f1fda3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_0dcb89eec72ead3c25f228ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_82cd933c85c02ed5cbc071ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_3c308d6250481d1c27bde336.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_209edf3177300d15640620e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8d465787abe805763b0de224.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_878f10c0f9610139aa960d0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_239484891290e920f3c31190.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_207f6e001601df9a866137ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953125;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_a551956def8eb571eae2fd1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_ecb0665961beea3173a96e19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;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_ac9721c168c0fe93b36460cb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_689059bbfacf00d59fad88f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_422d10b35d12c5aa11344e49.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-48.120000px;}
.v8{vertical-align:-22.620000px;}
.v4{vertical-align:-11.820000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:11.400000px;}
.v1{vertical-align:19.980000px;}
.v6{vertical-align:25.020000px;}
.v2{vertical-align:30.120000px;}
.v5{vertical-align:37.440000px;}
.v3{vertical-align:73.320000px;}
.lsf{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.296000px;}
.ls10{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.467400px;}
.ls2{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.435000px;}
.lsc{letter-spacing:-0.382800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.394800px;}
.lsa{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.468000px;}
.ls4{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.574200px;}
.ls6{letter-spacing:0.612000px;}
.ls5{letter-spacing:0.720000px;}
.lse{letter-spacing:0.756000px;}
.ls12{letter-spacing:1.152000px;}
.ls14{letter-spacing:17.424000px;}
.ls13{letter-spacing:53.424000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws10{word-spacing:-54.864000px;}
.wsd{word-spacing:-54.720000px;}
.ws5{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.504000px;}
.ws17{word-spacing:-18.036000px;}
.ws1{word-spacing:-18.000000px;}
.ws21{word-spacing:-16.704000px;}
.ws22{word-spacing:-16.560000px;}
.ws14{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws16{word-spacing:-13.701024px;}
.ws15{word-spacing:-13.668480px;}
.ws7{word-spacing:-12.399264px;}
.ws6{word-spacing:-12.366720px;}
.ws1a{word-spacing:-8.568000px;}
.wsa{word-spacing:-8.168544px;}
.ws8{word-spacing:-8.136000px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:44.493600px;}
.ws1b{word-spacing:148.136160px;}
.ws18{word-spacing:150.284640px;}
.wsb{word-spacing:154.196160px;}
.ws1d{word-spacing:154.616160px;}
.ws1c{word-spacing:159.261600px;}
.ws19{word-spacing:162.141600px;}
.wsc{word-spacing:165.261600px;}
.ws1e{word-spacing:165.861600px;}
.ws11{word-spacing:272.853600px;}
.ws9{word-spacing:299.490912px;}
.ws12{word-spacing:300.213600px;}
.ws1f{word-spacing:313.173600px;}
.wse{word-spacing:314.181120px;}
.ws13{word-spacing:327.468048px;}
.wsf{word-spacing:327.573600px;}
._10{margin-left:-5.546880px;}
._c{margin-left:-3.565440px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.393280px;}
._4{width:3.574080px;}
._f{width:5.034240px;}
._5{width:6.298560px;}
._6{width:7.868160px;}
._11{width:9.789120px;}
._22{width:10.800000px;}
._d{width:11.808000px;}
._e{width:13.078080px;}
._9{width:14.290560px;}
._8{width:15.750720px;}
._7{width:16.948800px;}
._15{width:19.618560px;}
._12{width:21.381600px;}
._13{width:23.025120px;}
._14{width:24.283200px;}
._b{width:26.136000px;}
._a{width:27.149280px;}
._1d{width:29.148000px;}
._17{width:30.778560px;}
._18{width:32.333760px;}
._1b{width:36.360000px;}
._1c{width:37.608000px;}
._23{width:38.729280px;}
._16{width:39.960000px;}
._21{width:53.458560px;}
._20{width:54.576000px;}
._1e{width:68.053440px;}
._1f{width:78.396960px;}
._19{width:177.189120px;}
._1a{width:245.760000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:36.144000px;}
.fs2{font-size:54.720000px;}
.fs4{font-size:54.864000px;}
.fs7{font-size:60.480000px;}
.fs8{font-size:60.624000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y16a{bottom:6.735000px;}
.y66{bottom:7.560000px;}
.y6f{bottom:7.920000px;}
.ye2{bottom:8.970000px;}
.y1b6{bottom:9.000000px;}
.ycb{bottom:9.030000px;}
.ybd{bottom:9.075000px;}
.y98{bottom:9.150000px;}
.y156{bottom:9.900000px;}
.y158{bottom:10.005000px;}
.y15a{bottom:10.080000px;}
.y166{bottom:10.110000px;}
.y15c{bottom:10.185000px;}
.y15e{bottom:10.260000px;}
.y163{bottom:10.290000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y6b{bottom:15.480000px;}
.y69{bottom:15.840000px;}
.y13c{bottom:15.945000px;}
.y182{bottom:16.170000px;}
.y173{bottom:16.230000px;}
.yb3{bottom:16.275000px;}
.ya5{bottom:16.350000px;}
.y64{bottom:19.440000px;}
.y70{bottom:19.800000px;}
.y68{bottom:23.760000px;}
.y7b{bottom:23.790000px;}
.y77{bottom:23.805000px;}
.y148{bottom:27.870000px;}
.y65{bottom:31.320000px;}
.y6e{bottom:31.680000px;}
.yd9{bottom:35.025000px;}
.y180{bottom:35.070000px;}
.yc2{bottom:35.100000px;}
.yaa{bottom:35.175000px;}
.y8d{bottom:35.250000px;}
.y1ad{bottom:35.430000px;}
.y186{bottom:47.625000px;}
.y9c{bottom:47.805000px;}
.y1d4{bottom:47.880000px;}
.y12e{bottom:49.110000px;}
.y13d{bottom:49.170000px;}
.y8e{bottom:49.215000px;}
.ycf{bottom:50.835000px;}
.yab{bottom:50.910000px;}
.y1ae{bottom:51.150000px;}
.yda{bottom:53.025000px;}
.yc3{bottom:53.100000px;}
.yb6{bottom:53.130000px;}
.y16f{bottom:56.085000px;}
.y8{bottom:57.240000px;}
.y187{bottom:60.225000px;}
.y177{bottom:60.270000px;}
.y124{bottom:60.330000px;}
.y9d{bottom:60.405000px;}
.y149{bottom:61.050000px;}
.y12f{bottom:63.075000px;}
.y8f{bottom:63.180000px;}
.yd0{bottom:66.570000px;}
.yac{bottom:66.630000px;}
.y1af{bottom:66.885000px;}
.ydb{bottom:70.995000px;}
.yc4{bottom:71.070000px;}
.yb7{bottom:71.130000px;}
.y16c{bottom:71.175000px;}
.y174{bottom:71.490000px;}
.y188{bottom:72.795000px;}
.y9e{bottom:72.975000px;}
.y5{bottom:73.476000px;}
.ye4{bottom:74.730000px;}
.y130{bottom:77.040000px;}
.y170{bottom:77.070000px;}
.y90{bottom:77.190000px;}
.yd1{bottom:82.290000px;}
.yad{bottom:82.365000px;}
.y1b0{bottom:82.620000px;}
.y17f{bottom:83.910000px;}
.y189{bottom:85.395000px;}
.y178{bottom:85.470000px;}
.y125{bottom:85.500000px;}
.y9f{bottom:85.575000px;}
.y1c5{bottom:87.015000px;}
.y1d5{bottom:87.840000px;}
.ydc{bottom:88.950000px;}
.y181{bottom:88.995000px;}
.yc5{bottom:89.025000px;}
.yb8{bottom:89.100000px;}
.y131{bottom:91.050000px;}
.y91{bottom:91.155000px;}
.ya7{bottom:91.830000px;}
.y11d{bottom:92.190000px;}
.y128{bottom:93.705000px;}
.y14a{bottom:94.290000px;}
.y18a{bottom:97.950000px;}
.yd2{bottom:98.025000px;}
.yae{bottom:98.100000px;}
.ya0{bottom:98.130000px;}
.y1b1{bottom:98.355000px;}
.y122{bottom:98.430000px;}
.y16d{bottom:103.860000px;}
.y132{bottom:105.015000px;}
.y92{bottom:105.150000px;}
.y185{bottom:105.480000px;}
.y81{bottom:106.596000px;}
.ydd{bottom:106.950000px;}
.yc6{bottom:107.025000px;}
.yb9{bottom:107.070000px;}
.y1e8{bottom:108.036000px;}
.y114{bottom:110.196000px;}
.y18b{bottom:110.550000px;}
.y179{bottom:110.625000px;}
.y126{bottom:110.670000px;}
.ya1{bottom:110.730000px;}
.ybf{bottom:110.955000px;}
.yd3{bottom:113.760000px;}
.yaf{bottom:113.835000px;}
.y1b2{bottom:114.090000px;}
.y13e{bottom:115.590000px;}
.y12a{bottom:115.740000px;}
.y34{bottom:115.956000px;}
.y175{bottom:117.390000px;}
.y133{bottom:118.980000px;}
.y171{bottom:119.010000px;}
.y93{bottom:119.130000px;}
.y17e{bottom:119.880000px;}
.y1c3{bottom:122.076000px;}
.y12b{bottom:122.145000px;}
.y18c{bottom:123.120000px;}
.ya2{bottom:123.330000px;}
.ya9{bottom:124.530000px;}
.y136{bottom:124.635000px;}
.ye5{bottom:124.740000px;}
.yde{bottom:124.920000px;}
.yc7{bottom:124.995000px;}
.yba{bottom:125.070000px;}
.y88{bottom:125.316000px;}
.y14b{bottom:127.470000px;}
.y120{bottom:128.055000px;}
.y123{bottom:128.625000px;}
.yd4{bottom:129.495000px;}
.yb0{bottom:129.570000px;}
.y1b3{bottom:129.810000px;}
.y1ac{bottom:130.140000px;}
.y60{bottom:130.356000px;}
.ycd{bottom:130.530000px;}
.y80{bottom:130.716000px;}
.y1e7{bottom:131.796000px;}
.y1c6{bottom:132.660000px;}
.y134{bottom:132.990000px;}
.y94{bottom:133.095000px;}
.y1d6{bottom:133.485000px;}
.y113{bottom:133.956000px;}
.yb5{bottom:134.025000px;}
.yc0{bottom:134.250000px;}
.y18d{bottom:135.720000px;}
.y17a{bottom:135.795000px;}
.y127{bottom:135.825000px;}
.ya3{bottom:135.900000px;}
.yd7{bottom:136.230000px;}
.y9a{bottom:138.750000px;}
.y8a{bottom:139.035000px;}
.y33{bottom:139.716000px;}
.y172{bottom:139.965000px;}
.ydf{bottom:142.920000px;}
.yc8{bottom:142.950000px;}
.ybb{bottom:143.025000px;}
.yd5{bottom:145.230000px;}
.yb1{bottom:145.260000px;}
.y1b4{bottom:145.545000px;}
.y1c2{bottom:145.836000px;}
.y12c{bottom:145.905000px;}
.y135{bottom:146.955000px;}
.y95{bottom:147.090000px;}
.y8c{bottom:147.420000px;}
.y87{bottom:147.636000px;}
.y18e{bottom:148.320000px;}
.ya4{bottom:148.500000px;}
.y13f{bottom:148.785000px;}
.y11f{bottom:148.830000px;}
.y5f{bottom:154.470000px;}
.y1e6{bottom:155.550000px;}
.yce{bottom:155.805000px;}
.y17d{bottom:155.850000px;}
.yc1{bottom:156.030000px;}
.y184{bottom:156.570000px;}
.y129{bottom:156.630000px;}
.ye6{bottom:156.705000px;}
.y176{bottom:157.575000px;}
.y112{bottom:157.710000px;}
.yd8{bottom:158.685000px;}
.y9b{bottom:158.910000px;}
.y12d{bottom:159.870000px;}
.y1ab{bottom:160.350000px;}
.y14c{bottom:160.710000px;}
.ye0{bottom:160.890000px;}
.yc9{bottom:160.950000px;}
.yb2{bottom:160.995000px;}
.y96{bottom:161.070000px;}
.y137{bottom:161.280000px;}
.y8b{bottom:161.430000px;}
.y32{bottom:163.470000px;}
.y121{bottom:163.875000px;}
.ya8{bottom:165.420000px;}
.y11e{bottom:166.425000px;}
.y16e{bottom:166.860000px;}
.y86{bottom:169.590000px;}
.y7f{bottom:178.230000px;}
.y1c7{bottom:178.305000px;}
.y5e{bottom:178.590000px;}
.y1d7{bottom:179.130000px;}
.y1e5{bottom:179.310000px;}
.y111{bottom:181.470000px;}
.y140{bottom:182.010000px;}
.y31{bottom:187.230000px;}
.y85{bottom:189.390000px;}
.yd6{bottom:190.080000px;}
.ye3{bottom:191.670000px;}
.y183{bottom:191.700000px;}
.ycc{bottom:191.730000px;}
.yb4{bottom:191.805000px;}
.y99{bottom:191.880000px;}
.y1b7{bottom:192.060000px;}
.y1c1{bottom:193.350000px;}
.y14d{bottom:193.890000px;}
.ye1{bottom:197.280000px;}
.y7e{bottom:202.035000px;}
.y5d{bottom:202.755000px;}
.y1e4{bottom:203.115000px;}
.y110{bottom:205.275000px;}
.y30{bottom:211.035000px;}
.y141{bottom:215.250000px;}
.y1c0{bottom:217.155000px;}
.y7d{bottom:218.955000px;}
.y1c8{bottom:223.995000px;}
.y1d8{bottom:224.820000px;}
.y11c{bottom:226.155000px;}
.y5c{bottom:226.875000px;}
.y14e{bottom:227.130000px;}
.y13a{bottom:228.675000px;}
.y10f{bottom:229.035000px;}
.y17c{bottom:229.320000px;}
.y2f{bottom:234.795000px;}
.y1bf{bottom:240.915000px;}
.y142{bottom:248.430000px;}
.y11b{bottom:249.915000px;}
.y5b{bottom:250.635000px;}
.y10e{bottom:253.155000px;}
.y2e{bottom:258.555000px;}
.y7c{bottom:259.635000px;}
.y14f{bottom:260.355000px;}
.y1be{bottom:264.675000px;}
.y1c9{bottom:269.640000px;}
.y1d9{bottom:270.465000px;}
.y11a{bottom:273.675000px;}
.y5a{bottom:274.395000px;}
.y10d{bottom:276.915000px;}
.y143{bottom:281.670000px;}
.y2d{bottom:282.315000px;}
.y1bd{bottom:288.435000px;}
.y150{bottom:293.550000px;}
.y119{bottom:297.435000px;}
.y59{bottom:298.515000px;}
.y7a{bottom:300.315000px;}
.y10c{bottom:300.675000px;}
.y2c{bottom:306.435000px;}
.y1bc{bottom:312.555000px;}
.y1a9{bottom:313.995000px;}
.y144{bottom:314.850000px;}
.y1ca{bottom:315.285000px;}
.y1da{bottom:316.110000px;}
.y118{bottom:321.225000px;}
.y58{bottom:322.305000px;}
.y10b{bottom:324.465000px;}
.y151{bottom:326.775000px;}
.y2b{bottom:330.225000px;}
.y1bb{bottom:336.345000px;}
.y1a8{bottom:337.785000px;}
.y79{bottom:341.025000px;}
.y117{bottom:344.985000px;}
.y57{bottom:346.065000px;}
.y145{bottom:348.090000px;}
.y10a{bottom:348.225000px;}
.y2a{bottom:353.985000px;}
.y152{bottom:359.970000px;}
.y1ba{bottom:360.105000px;}
.y1cb{bottom:360.930000px;}
.y1a7{bottom:361.545000px;}
.y1db{bottom:361.770000px;}
.y116{bottom:368.745000px;}
.y56{bottom:369.825000px;}
.y109{bottom:371.985000px;}
.y29{bottom:377.745000px;}
.y146{bottom:381.270000px;}
.y78{bottom:382.065000px;}
.y1b9{bottom:383.505000px;}
.y1a6{bottom:385.305000px;}
.y115{bottom:392.145000px;}
.y153{bottom:393.195000px;}
.y55{bottom:393.585000px;}
.y108{bottom:395.745000px;}
.y28{bottom:401.505000px;}
.y1b8{bottom:403.305000px;}
.y1c4{bottom:403.560000px;}
.y1cc{bottom:406.590000px;}
.y1dc{bottom:407.415000px;}
.y1a5{bottom:409.065000px;}
.y84{bottom:411.945000px;}
.ybe{bottom:412.560000px;}
.y147{bottom:414.510000px;}
.y54{bottom:417.345000px;}
.y107{bottom:418.065000px;}
.yca{bottom:419.760000px;}
.y76{bottom:422.745000px;}
.y27{bottom:425.265000px;}
.y154{bottom:426.390000px;}
.y1a4{bottom:432.825000px;}
.y106{bottom:440.385000px;}
.y53{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.y139{bottom:451.230000px;}
.y16b{bottom:451.800000px;}
.y1cd{bottom:452.265000px;}
.y1dd{bottom:453.090000px;}
.y1a3{bottom:456.630000px;}
.y17b{bottom:459.000000px;}
.y105{bottom:462.750000px;}
.y75{bottom:463.470000px;}
.y52{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.y1a2{bottom:480.750000px;}
.y104{bottom:485.070000px;}
.y51{bottom:489.030000px;}
.y24{bottom:496.950000px;}
.y1ce{bottom:497.910000px;}
.y1de{bottom:498.750000px;}
.y74{bottom:504.150000px;}
.y1a1{bottom:504.510000px;}
.y103{bottom:507.750000px;}
.y50{bottom:512.790000px;}
.y23{bottom:520.710000px;}
.y1a0{bottom:528.270000px;}
.y102{bottom:530.070000px;}
.y4f{bottom:536.550000px;}
.y1cf{bottom:543.570000px;}
.y1df{bottom:544.395000px;}
.y22{bottom:544.470000px;}
.y73{bottom:544.830000px;}
.y19f{bottom:552.030000px;}
.y101{bottom:552.390000px;}
.y4e{bottom:560.310000px;}
.y21{bottom:568.230000px;}
.y100{bottom:574.740000px;}
.y19e{bottom:575.820000px;}
.y1ea{bottom:583.740000px;}
.y4d{bottom:584.100000px;}
.y72{bottom:585.540000px;}
.y1d0{bottom:589.215000px;}
.y1e0{bottom:590.040000px;}
.y20{bottom:592.020000px;}
.yff{bottom:597.060000px;}
.y19d{bottom:599.580000px;}
.y1e9{bottom:607.500000px;}
.y4c{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.yfe{bottom:619.380000px;}
.y19c{bottom:623.340000px;}
.y71{bottom:626.220000px;}
.y4b{bottom:631.620000px;}
.y83{bottom:634.500000px;}
.y1d1{bottom:634.890000px;}
.ya6{bottom:635.040000px;}
.y1e1{bottom:635.730000px;}
.y1e{bottom:639.540000px;}
.yfd{bottom:641.700000px;}
.ybc{bottom:642.240000px;}
.y19b{bottom:647.100000px;}
.y4a{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.yfc{bottom:664.020000px;}
.y6d{bottom:666.900000px;}
.y19a{bottom:671.220000px;}
.y138{bottom:678.060000px;}
.y49{bottom:679.140000px;}
.y1d2{bottom:680.550000px;}
.y1e2{bottom:681.375000px;}
.yfb{bottom:686.340000px;}
.y1c{bottom:687.420000px;}
.y199{bottom:694.980000px;}
.y13b{bottom:698.040000px;}
.y48{bottom:703.290000px;}
.yfa{bottom:708.690000px;}
.y155{bottom:709.200000px;}
.y1b{bottom:711.210000px;}
.y6c{bottom:715.530000px;}
.y198{bottom:718.770000px;}
.y1d3{bottom:726.195000px;}
.y1e3{bottom:727.020000px;}
.y47{bottom:727.050000px;}
.yf9{bottom:731.010000px;}
.y1a{bottom:734.970000px;}
.y157{bottom:742.320000px;}
.y197{bottom:742.530000px;}
.y46{bottom:750.810000px;}
.yf8{bottom:753.330000px;}
.y6a{bottom:756.210000px;}
.y19{bottom:758.730000px;}
.y196{bottom:766.290000px;}
.y45{bottom:774.570000px;}
.y159{bottom:775.440000px;}
.yf7{bottom:775.650000px;}
.y18{bottom:782.490000px;}
.y195{bottom:790.050000px;}
.y67{bottom:796.890000px;}
.yf6{bottom:797.970000px;}
.y44{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.y15b{bottom:808.560000px;}
.y194{bottom:813.810000px;}
.yf5{bottom:820.290000px;}
.y43{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y63{bottom:837.615000px;}
.y15d{bottom:841.680000px;}
.yf4{bottom:842.655000px;}
.y42{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y82{bottom:857.055000px;}
.y89{bottom:857.520000px;}
.y193{bottom:861.735000px;}
.y97{bottom:864.720000px;}
.yf3{bottom:864.975000px;}
.y41{bottom:869.655000px;}
.y15f{bottom:875.160000px;}
.y14{bottom:877.575000px;}
.y192{bottom:885.495000px;}
.yf2{bottom:887.295000px;}
.y62{bottom:893.415000px;}
.y40{bottom:893.775000px;}
.y13{bottom:901.695000px;}
.y160{bottom:908.280000px;}
.y191{bottom:909.255000px;}
.yf1{bottom:909.615000px;}
.y61{bottom:917.175000px;}
.y3f{bottom:917.535000px;}
.y12{bottom:925.455000px;}
.yf0{bottom:931.935000px;}
.y190{bottom:932.655000px;}
.y3e{bottom:941.295000px;}
.y161{bottom:941.400000px;}
.y11{bottom:949.215000px;}
.y18f{bottom:952.485000px;}
.y1aa{bottom:952.560000px;}
.yef{bottom:954.285000px;}
.y1b5{bottom:960.120000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.y162{bottom:974.520000px;}
.yee{bottom:976.605000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.765000px;}
.yed{bottom:999.285000px;}
.y164{bottom:1008.000000px;}
.y3b{bottom:1012.605000px;}
.y169{bottom:1019.520000px;}
.ye{bottom:1020.165000px;}
.yec{bottom:1021.605000px;}
.y3a{bottom:1036.365000px;}
.y165{bottom:1041.120000px;}
.yeb{bottom:1043.925000px;}
.yd{bottom:1044.285000px;}
.y39{bottom:1060.125000px;}
.yea{bottom:1066.245000px;}
.yc{bottom:1067.685000px;}
.y167{bottom:1074.240000px;}
.y38{bottom:1084.290000px;}
.ye9{bottom:1088.610000px;}
.yb{bottom:1091.850000px;}
.y168{bottom:1107.360000px;}
.y37{bottom:1108.050000px;}
.ye8{bottom:1110.930000px;}
.ya{bottom:1117.770000px;}
.y36{bottom:1131.810000px;}
.ye7{bottom:1133.250000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h5{height:27.000000px;}
.h11{height:27.333984px;}
.h15{height:27.443320px;}
.h24{height:27.720000px;}
.h12{height:28.080000px;}
.h20{height:31.320000px;}
.h1c{height:33.480000px;}
.h1f{height:33.840000px;}
.hc{height:39.960000px;}
.hb{height:39.996000px;}
.hf{height:41.547656px;}
.h10{height:41.656992px;}
.h1a{height:46.866094px;}
.h1b{height:46.977680px;}
.ha{height:47.520000px;}
.hd{height:47.916000px;}
.h7{height:50.294531px;}
.h1d{height:50.800781px;}
.h1e{height:50.902383px;}
.h13{height:51.329531px;}
.h23{height:52.947656px;}
.h4{height:55.147500px;}
.h14{height:61.527656px;}
.h18{height:66.567656px;}
.h3{height:66.757500px;}
.h21{height:70.240078px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h26{height:74.004654px;}
.h17{height:78.987656px;}
.h8{height:97.233750px;}
.h16{height:114.867656px;}
.he{height:218.880000px;}
.h22{height:219.240000px;}
.h19{height:450.000000px;}
.h25{height:768.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:73.080000px;}
.w4{width:104.076000px;}
.w6{width:117.036000px;}
.w7{width:137.952000px;}
.w8{width:153.075000px;}
.w12{width:174.240000px;}
.w5{width:188.355000px;}
.wc{width:201.960000px;}
.w1e{width:222.480000px;}
.wf{width:222.840000px;}
.wd{width:264.240000px;}
.wb{width:271.440000px;}
.w13{width:279.360000px;}
.w18{width:290.160000px;}
.w3{width:298.905000px;}
.w1d{width:312.840000px;}
.we{width:313.200000px;}
.wa{width:333.000000px;}
.w16{width:343.440000px;}
.w1a{width:415.440000px;}
.w17{width:429.120000px;}
.w14{width:460.440000px;}
.w1b{width:471.600000px;}
.w11{width:476.280000px;}
.w1c{width:496.080000px;}
.w1f{width:645.840000px;}
.w15{width:673.560000px;}
.w19{width:683.280000px;}
.w10{width:704.160000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:1.800000px;}
.x1f{left:3.132000px;}
.x34{left:5.328000px;}
.x29{left:6.765000px;}
.x2b{left:8.856000px;}
.x1e{left:10.152000px;}
.x5d{left:11.268000px;}
.x28{left:13.785000px;}
.x63{left:16.164000px;}
.x6a{left:18.216000px;}
.x84{left:19.620000px;}
.x80{left:25.704000px;}
.x82{left:29.415000px;}
.x85{left:32.910000px;}
.x20{left:35.712000px;}
.x83{left:38.265000px;}
.x2a{left:39.345000px;}
.x81{left:40.395000px;}
.x8{left:43.590000px;}
.x7e{left:45.255000px;}
.x2e{left:46.650000px;}
.x6e{left:47.910000px;}
.x2c{left:50.040000px;}
.x64{left:52.164000px;}
.x6b{left:53.850000px;}
.x7f{left:56.880000px;}
.x38{left:58.890000px;}
.x1b{left:62.025000px;}
.x6c{left:63.390000px;}
.x26{left:65.595000px;}
.x62{left:69.405000px;}
.x5b{left:74.550000px;}
.x41{left:78.045000px;}
.x7d{left:85.470000px;}
.x3e{left:94.605000px;}
.x5{left:95.796000px;}
.x3d{left:98.070000px;}
.x5e{left:100.080000px;}
.x2d{left:104.190000px;}
.x59{left:109.110000px;}
.x12{left:110.556000px;}
.x1a{left:113.400000px;}
.xb{left:116.315987px;}
.x5c{left:119.595000px;}
.x68{left:120.750000px;}
.x40{left:123.300000px;}
.x24{left:124.740000px;}
.x23{left:126.615000px;}
.x86{left:127.835987px;}
.x60{left:129.345000px;}
.x39{left:131.580000px;}
.x35{left:133.200000px;}
.x30{left:134.205000px;}
.x3a{left:137.445000px;}
.xa{left:139.391987px;}
.x6f{left:142.485000px;}
.x31{left:144.390000px;}
.x5f{left:147.420000px;}
.xf{left:149.111987px;}
.x37{left:152.100000px;}
.x21{left:154.080000px;}
.x32{left:161.100000px;}
.x1c{left:164.370000px;}
.x6d{left:165.750000px;}
.x27{left:167.835000px;}
.x69{left:169.950000px;}
.xd{left:180.794987px;}
.x3{left:190.874987px;}
.x5a{left:196.920000px;}
.x51{left:212.220000px;}
.x77{left:214.635000px;}
.x58{left:220.680000px;}
.x36{left:223.560000px;}
.x46{left:224.925000px;}
.x4f{left:226.365000px;}
.x11{left:229.394987px;}
.x4d{left:233.355000px;}
.x45{left:235.470000px;}
.x50{left:238.710000px;}
.x22{left:244.440000px;}
.x55{left:254.805000px;}
.x4a{left:256.605000px;}
.x33{left:263.445000px;}
.x1d{left:266.685000px;}
.x3f{left:269.895000px;}
.x3c{left:275.325000px;}
.x72{left:279.720000px;}
.x6{left:290.634000px;}
.x14{left:299.625000px;}
.x61{left:303.480000px;}
.xe{left:322.664987px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x71{left:348.269987px;}
.x19{left:354.389987px;}
.x56{left:365.685000px;}
.x3b{left:371.669987px;}
.x7a{left:378.435000px;}
.xc{left:381.749987px;}
.x73{left:390.240000px;}
.x54{left:391.500000px;}
.x7{left:394.710000px;}
.x4b{left:406.080000px;}
.x49{left:407.370000px;}
.x15{left:417.390000px;}
.x43{left:419.940000px;}
.x65{left:428.400000px;}
.x53{left:429.480000px;}
.x79{left:441.570000px;}
.x25{left:446.400000px;}
.x66{left:448.560000px;}
.x2f{left:466.200000px;}
.x76{left:470.595000px;}
.x75{left:476.610000px;}
.x48{left:479.670000px;}
.x78{left:485.430000px;}
.x9{left:498.780000px;}
.x7c{left:507.210000px;}
.x4c{left:524.625000px;}
.x44{left:534.750000px;}
.x67{left:538.920000px;}
.x16{left:556.050000px;}
.x4e{left:561.420000px;}
.x7b{left:570.315000px;}
.x57{left:587.700000px;}
.x47{left:591.870000px;}
.x70{left:613.334987px;}
.x52{left:654.840000px;}
.x17{left:709.845000px;}
.x10{left:737.564987px;}
.x42{left:762.044987px;}
.x74{left:769.604987px;}
.x18{left:779.684987px;}
.x1{left:797.684987px;}
@media print{
.v7{vertical-align:-42.773333pt;}
.v8{vertical-align:-20.106667pt;}
.v4{vertical-align:-10.506667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:10.133333pt;}
.v1{vertical-align:17.760000pt;}
.v6{vertical-align:22.240000pt;}
.v2{vertical-align:26.773333pt;}
.v5{vertical-align:33.280000pt;}
.v3{vertical-align:65.173333pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls10{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.415467pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.386667pt;}
.lsc{letter-spacing:-0.340267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.350933pt;}
.lsa{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.416000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.510400pt;}
.ls6{letter-spacing:0.544000pt;}
.ls5{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.672000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls14{letter-spacing:15.488000pt;}
.ls13{letter-spacing:47.488000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws10{word-spacing:-48.768000pt;}
.wsd{word-spacing:-48.640000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws17{word-spacing:-16.032000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws21{word-spacing:-14.848000pt;}
.ws22{word-spacing:-14.720000pt;}
.ws14{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.178688pt;}
.ws15{word-spacing:-12.149760pt;}
.ws7{word-spacing:-11.021568pt;}
.ws6{word-spacing:-10.992640pt;}
.ws1a{word-spacing:-7.616000pt;}
.wsa{word-spacing:-7.260928pt;}
.ws8{word-spacing:-7.232000pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:39.549867pt;}
.ws1b{word-spacing:131.676587pt;}
.ws18{word-spacing:133.586347pt;}
.wsb{word-spacing:137.063253pt;}
.ws1d{word-spacing:137.436587pt;}
.ws1c{word-spacing:141.565867pt;}
.ws19{word-spacing:144.125867pt;}
.wsc{word-spacing:146.899200pt;}
.ws1e{word-spacing:147.432533pt;}
.ws11{word-spacing:242.536533pt;}
.ws9{word-spacing:266.214144pt;}
.ws12{word-spacing:266.856533pt;}
.ws1f{word-spacing:278.376533pt;}
.wse{word-spacing:279.272107pt;}
.ws13{word-spacing:291.082709pt;}
.wsf{word-spacing:291.176533pt;}
._10{margin-left:-4.930560pt;}
._c{margin-left:-3.169280pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.127360pt;}
._4{width:3.176960pt;}
._f{width:4.474880pt;}
._5{width:5.598720pt;}
._6{width:6.993920pt;}
._11{width:8.701440pt;}
._22{width:9.600000pt;}
._d{width:10.496000pt;}
._e{width:11.624960pt;}
._9{width:12.702720pt;}
._8{width:14.000640pt;}
._7{width:15.065600pt;}
._15{width:17.438720pt;}
._12{width:19.005867pt;}
._13{width:20.466773pt;}
._14{width:21.585067pt;}
._b{width:23.232000pt;}
._a{width:24.132693pt;}
._1d{width:25.909333pt;}
._17{width:27.358720pt;}
._18{width:28.741120pt;}
._1b{width:32.320000pt;}
._1c{width:33.429333pt;}
._23{width:34.426027pt;}
._16{width:35.520000pt;}
._21{width:47.518720pt;}
._20{width:48.512000pt;}
._1e{width:60.491947pt;}
._1f{width:69.686187pt;}
._19{width:157.501440pt;}
._1a{width:218.453333pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:32.128000pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:48.768000pt;}
.fs7{font-size:53.760000pt;}
.fs8{font-size:53.888000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y16a{bottom:5.986667pt;}
.y66{bottom:6.720000pt;}
.y6f{bottom:7.040000pt;}
.ye2{bottom:7.973333pt;}
.y1b6{bottom:8.000000pt;}
.ycb{bottom:8.026667pt;}
.ybd{bottom:8.066667pt;}
.y98{bottom:8.133333pt;}
.y156{bottom:8.800000pt;}
.y158{bottom:8.893333pt;}
.y15a{bottom:8.960000pt;}
.y166{bottom:8.986667pt;}
.y15c{bottom:9.053333pt;}
.y15e{bottom:9.120000pt;}
.y163{bottom:9.146667pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y6b{bottom:13.760000pt;}
.y69{bottom:14.080000pt;}
.y13c{bottom:14.173333pt;}
.y182{bottom:14.373333pt;}
.y173{bottom:14.426667pt;}
.yb3{bottom:14.466667pt;}
.ya5{bottom:14.533333pt;}
.y64{bottom:17.280000pt;}
.y70{bottom:17.600000pt;}
.y68{bottom:21.120000pt;}
.y7b{bottom:21.146667pt;}
.y77{bottom:21.160000pt;}
.y148{bottom:24.773333pt;}
.y65{bottom:27.840000pt;}
.y6e{bottom:28.160000pt;}
.yd9{bottom:31.133333pt;}
.y180{bottom:31.173333pt;}
.yc2{bottom:31.200000pt;}
.yaa{bottom:31.266667pt;}
.y8d{bottom:31.333333pt;}
.y1ad{bottom:31.493333pt;}
.y186{bottom:42.333333pt;}
.y9c{bottom:42.493333pt;}
.y1d4{bottom:42.560000pt;}
.y12e{bottom:43.653333pt;}
.y13d{bottom:43.706667pt;}
.y8e{bottom:43.746667pt;}
.ycf{bottom:45.186667pt;}
.yab{bottom:45.253333pt;}
.y1ae{bottom:45.466667pt;}
.yda{bottom:47.133333pt;}
.yc3{bottom:47.200000pt;}
.yb6{bottom:47.226667pt;}
.y16f{bottom:49.853333pt;}
.y8{bottom:50.880000pt;}
.y187{bottom:53.533333pt;}
.y177{bottom:53.573333pt;}
.y124{bottom:53.626667pt;}
.y9d{bottom:53.693333pt;}
.y149{bottom:54.266667pt;}
.y12f{bottom:56.066667pt;}
.y8f{bottom:56.160000pt;}
.yd0{bottom:59.173333pt;}
.yac{bottom:59.226667pt;}
.y1af{bottom:59.453333pt;}
.ydb{bottom:63.106667pt;}
.yc4{bottom:63.173333pt;}
.yb7{bottom:63.226667pt;}
.y16c{bottom:63.266667pt;}
.y174{bottom:63.546667pt;}
.y188{bottom:64.706667pt;}
.y9e{bottom:64.866667pt;}
.y5{bottom:65.312000pt;}
.ye4{bottom:66.426667pt;}
.y130{bottom:68.480000pt;}
.y170{bottom:68.506667pt;}
.y90{bottom:68.613333pt;}
.yd1{bottom:73.146667pt;}
.yad{bottom:73.213333pt;}
.y1b0{bottom:73.440000pt;}
.y17f{bottom:74.586667pt;}
.y189{bottom:75.906667pt;}
.y178{bottom:75.973333pt;}
.y125{bottom:76.000000pt;}
.y9f{bottom:76.066667pt;}
.y1c5{bottom:77.346667pt;}
.y1d5{bottom:78.080000pt;}
.ydc{bottom:79.066667pt;}
.y181{bottom:79.106667pt;}
.yc5{bottom:79.133333pt;}
.yb8{bottom:79.200000pt;}
.y131{bottom:80.933333pt;}
.y91{bottom:81.026667pt;}
.ya7{bottom:81.626667pt;}
.y11d{bottom:81.946667pt;}
.y128{bottom:83.293333pt;}
.y14a{bottom:83.813333pt;}
.y18a{bottom:87.066667pt;}
.yd2{bottom:87.133333pt;}
.yae{bottom:87.200000pt;}
.ya0{bottom:87.226667pt;}
.y1b1{bottom:87.426667pt;}
.y122{bottom:87.493333pt;}
.y16d{bottom:92.320000pt;}
.y132{bottom:93.346667pt;}
.y92{bottom:93.466667pt;}
.y185{bottom:93.760000pt;}
.y81{bottom:94.752000pt;}
.ydd{bottom:95.066667pt;}
.yc6{bottom:95.133333pt;}
.yb9{bottom:95.173333pt;}
.y1e8{bottom:96.032000pt;}
.y114{bottom:97.952000pt;}
.y18b{bottom:98.266667pt;}
.y179{bottom:98.333333pt;}
.y126{bottom:98.373333pt;}
.ya1{bottom:98.426667pt;}
.ybf{bottom:98.626667pt;}
.yd3{bottom:101.120000pt;}
.yaf{bottom:101.186667pt;}
.y1b2{bottom:101.413333pt;}
.y13e{bottom:102.746667pt;}
.y12a{bottom:102.880000pt;}
.y34{bottom:103.072000pt;}
.y175{bottom:104.346667pt;}
.y133{bottom:105.760000pt;}
.y171{bottom:105.786667pt;}
.y93{bottom:105.893333pt;}
.y17e{bottom:106.560000pt;}
.y1c3{bottom:108.512000pt;}
.y12b{bottom:108.573333pt;}
.y18c{bottom:109.440000pt;}
.ya2{bottom:109.626667pt;}
.ya9{bottom:110.693333pt;}
.y136{bottom:110.786667pt;}
.ye5{bottom:110.880000pt;}
.yde{bottom:111.040000pt;}
.yc7{bottom:111.106667pt;}
.yba{bottom:111.173333pt;}
.y88{bottom:111.392000pt;}
.y14b{bottom:113.306667pt;}
.y120{bottom:113.826667pt;}
.y123{bottom:114.333333pt;}
.yd4{bottom:115.106667pt;}
.yb0{bottom:115.173333pt;}
.y1b3{bottom:115.386667pt;}
.y1ac{bottom:115.680000pt;}
.y60{bottom:115.872000pt;}
.ycd{bottom:116.026667pt;}
.y80{bottom:116.192000pt;}
.y1e7{bottom:117.152000pt;}
.y1c6{bottom:117.920000pt;}
.y134{bottom:118.213333pt;}
.y94{bottom:118.306667pt;}
.y1d6{bottom:118.653333pt;}
.y113{bottom:119.072000pt;}
.yb5{bottom:119.133333pt;}
.yc0{bottom:119.333333pt;}
.y18d{bottom:120.640000pt;}
.y17a{bottom:120.706667pt;}
.y127{bottom:120.733333pt;}
.ya3{bottom:120.800000pt;}
.yd7{bottom:121.093333pt;}
.y9a{bottom:123.333333pt;}
.y8a{bottom:123.586667pt;}
.y33{bottom:124.192000pt;}
.y172{bottom:124.413333pt;}
.ydf{bottom:127.040000pt;}
.yc8{bottom:127.066667pt;}
.ybb{bottom:127.133333pt;}
.yd5{bottom:129.093333pt;}
.yb1{bottom:129.120000pt;}
.y1b4{bottom:129.373333pt;}
.y1c2{bottom:129.632000pt;}
.y12c{bottom:129.693333pt;}
.y135{bottom:130.626667pt;}
.y95{bottom:130.746667pt;}
.y8c{bottom:131.040000pt;}
.y87{bottom:131.232000pt;}
.y18e{bottom:131.840000pt;}
.ya4{bottom:132.000000pt;}
.y13f{bottom:132.253333pt;}
.y11f{bottom:132.293333pt;}
.y5f{bottom:137.306667pt;}
.y1e6{bottom:138.266667pt;}
.yce{bottom:138.493333pt;}
.y17d{bottom:138.533333pt;}
.yc1{bottom:138.693333pt;}
.y184{bottom:139.173333pt;}
.y129{bottom:139.226667pt;}
.ye6{bottom:139.293333pt;}
.y176{bottom:140.066667pt;}
.y112{bottom:140.186667pt;}
.yd8{bottom:141.053333pt;}
.y9b{bottom:141.253333pt;}
.y12d{bottom:142.106667pt;}
.y1ab{bottom:142.533333pt;}
.y14c{bottom:142.853333pt;}
.ye0{bottom:143.013333pt;}
.yc9{bottom:143.066667pt;}
.yb2{bottom:143.106667pt;}
.y96{bottom:143.173333pt;}
.y137{bottom:143.360000pt;}
.y8b{bottom:143.493333pt;}
.y32{bottom:145.306667pt;}
.y121{bottom:145.666667pt;}
.ya8{bottom:147.040000pt;}
.y11e{bottom:147.933333pt;}
.y16e{bottom:148.320000pt;}
.y86{bottom:150.746667pt;}
.y7f{bottom:158.426667pt;}
.y1c7{bottom:158.493333pt;}
.y5e{bottom:158.746667pt;}
.y1d7{bottom:159.226667pt;}
.y1e5{bottom:159.386667pt;}
.y111{bottom:161.306667pt;}
.y140{bottom:161.786667pt;}
.y31{bottom:166.426667pt;}
.y85{bottom:168.346667pt;}
.yd6{bottom:168.960000pt;}
.ye3{bottom:170.373333pt;}
.y183{bottom:170.400000pt;}
.ycc{bottom:170.426667pt;}
.yb4{bottom:170.493333pt;}
.y99{bottom:170.560000pt;}
.y1b7{bottom:170.720000pt;}
.y1c1{bottom:171.866667pt;}
.y14d{bottom:172.346667pt;}
.ye1{bottom:175.360000pt;}
.y7e{bottom:179.586667pt;}
.y5d{bottom:180.226667pt;}
.y1e4{bottom:180.546667pt;}
.y110{bottom:182.466667pt;}
.y30{bottom:187.586667pt;}
.y141{bottom:191.333333pt;}
.y1c0{bottom:193.026667pt;}
.y7d{bottom:194.626667pt;}
.y1c8{bottom:199.106667pt;}
.y1d8{bottom:199.840000pt;}
.y11c{bottom:201.026667pt;}
.y5c{bottom:201.666667pt;}
.y14e{bottom:201.893333pt;}
.y13a{bottom:203.266667pt;}
.y10f{bottom:203.586667pt;}
.y17c{bottom:203.840000pt;}
.y2f{bottom:208.706667pt;}
.y1bf{bottom:214.146667pt;}
.y142{bottom:220.826667pt;}
.y11b{bottom:222.146667pt;}
.y5b{bottom:222.786667pt;}
.y10e{bottom:225.026667pt;}
.y2e{bottom:229.826667pt;}
.y7c{bottom:230.786667pt;}
.y14f{bottom:231.426667pt;}
.y1be{bottom:235.266667pt;}
.y1c9{bottom:239.680000pt;}
.y1d9{bottom:240.413333pt;}
.y11a{bottom:243.266667pt;}
.y5a{bottom:243.906667pt;}
.y10d{bottom:246.146667pt;}
.y143{bottom:250.373333pt;}
.y2d{bottom:250.946667pt;}
.y1bd{bottom:256.386667pt;}
.y150{bottom:260.933333pt;}
.y119{bottom:264.386667pt;}
.y59{bottom:265.346667pt;}
.y7a{bottom:266.946667pt;}
.y10c{bottom:267.266667pt;}
.y2c{bottom:272.386667pt;}
.y1bc{bottom:277.826667pt;}
.y1a9{bottom:279.106667pt;}
.y144{bottom:279.866667pt;}
.y1ca{bottom:280.253333pt;}
.y1da{bottom:280.986667pt;}
.y118{bottom:285.533333pt;}
.y58{bottom:286.493333pt;}
.y10b{bottom:288.413333pt;}
.y151{bottom:290.466667pt;}
.y2b{bottom:293.533333pt;}
.y1bb{bottom:298.973333pt;}
.y1a8{bottom:300.253333pt;}
.y79{bottom:303.133333pt;}
.y117{bottom:306.653333pt;}
.y57{bottom:307.613333pt;}
.y145{bottom:309.413333pt;}
.y10a{bottom:309.533333pt;}
.y2a{bottom:314.653333pt;}
.y152{bottom:319.973333pt;}
.y1ba{bottom:320.093333pt;}
.y1cb{bottom:320.826667pt;}
.y1a7{bottom:321.373333pt;}
.y1db{bottom:321.573333pt;}
.y116{bottom:327.773333pt;}
.y56{bottom:328.733333pt;}
.y109{bottom:330.653333pt;}
.y29{bottom:335.773333pt;}
.y146{bottom:338.906667pt;}
.y78{bottom:339.613333pt;}
.y1b9{bottom:340.893333pt;}
.y1a6{bottom:342.493333pt;}
.y115{bottom:348.573333pt;}
.y153{bottom:349.506667pt;}
.y55{bottom:349.853333pt;}
.y108{bottom:351.773333pt;}
.y28{bottom:356.893333pt;}
.y1b8{bottom:358.493333pt;}
.y1c4{bottom:358.720000pt;}
.y1cc{bottom:361.413333pt;}
.y1dc{bottom:362.146667pt;}
.y1a5{bottom:363.613333pt;}
.y84{bottom:366.173333pt;}
.ybe{bottom:366.720000pt;}
.y147{bottom:368.453333pt;}
.y54{bottom:370.973333pt;}
.y107{bottom:371.613333pt;}
.yca{bottom:373.120000pt;}
.y76{bottom:375.773333pt;}
.y27{bottom:378.013333pt;}
.y154{bottom:379.013333pt;}
.y1a4{bottom:384.733333pt;}
.y106{bottom:391.453333pt;}
.y53{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.y139{bottom:401.093333pt;}
.y16b{bottom:401.600000pt;}
.y1cd{bottom:402.013333pt;}
.y1dd{bottom:402.746667pt;}
.y1a3{bottom:405.893333pt;}
.y17b{bottom:408.000000pt;}
.y105{bottom:411.333333pt;}
.y75{bottom:411.973333pt;}
.y52{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.y1a2{bottom:427.333333pt;}
.y104{bottom:431.173333pt;}
.y51{bottom:434.693333pt;}
.y24{bottom:441.733333pt;}
.y1ce{bottom:442.586667pt;}
.y1de{bottom:443.333333pt;}
.y74{bottom:448.133333pt;}
.y1a1{bottom:448.453333pt;}
.y103{bottom:451.333333pt;}
.y50{bottom:455.813333pt;}
.y23{bottom:462.853333pt;}
.y1a0{bottom:469.573333pt;}
.y102{bottom:471.173333pt;}
.y4f{bottom:476.933333pt;}
.y1cf{bottom:483.173333pt;}
.y1df{bottom:483.906667pt;}
.y22{bottom:483.973333pt;}
.y73{bottom:484.293333pt;}
.y19f{bottom:490.693333pt;}
.y101{bottom:491.013333pt;}
.y4e{bottom:498.053333pt;}
.y21{bottom:505.093333pt;}
.y100{bottom:510.880000pt;}
.y19e{bottom:511.840000pt;}
.y1ea{bottom:518.880000pt;}
.y4d{bottom:519.200000pt;}
.y72{bottom:520.480000pt;}
.y1d0{bottom:523.746667pt;}
.y1e0{bottom:524.480000pt;}
.y20{bottom:526.240000pt;}
.yff{bottom:530.720000pt;}
.y19d{bottom:532.960000pt;}
.y1e9{bottom:540.000000pt;}
.y4c{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.yfe{bottom:550.560000pt;}
.y19c{bottom:554.080000pt;}
.y71{bottom:556.640000pt;}
.y4b{bottom:561.440000pt;}
.y83{bottom:564.000000pt;}
.y1d1{bottom:564.346667pt;}
.ya6{bottom:564.480000pt;}
.y1e1{bottom:565.093333pt;}
.y1e{bottom:568.480000pt;}
.yfd{bottom:570.400000pt;}
.ybc{bottom:570.880000pt;}
.y19b{bottom:575.200000pt;}
.y4a{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.yfc{bottom:590.240000pt;}
.y6d{bottom:592.800000pt;}
.y19a{bottom:596.640000pt;}
.y138{bottom:602.720000pt;}
.y49{bottom:603.680000pt;}
.y1d2{bottom:604.933333pt;}
.y1e2{bottom:605.666667pt;}
.yfb{bottom:610.080000pt;}
.y1c{bottom:611.040000pt;}
.y199{bottom:617.760000pt;}
.y13b{bottom:620.480000pt;}
.y48{bottom:625.146667pt;}
.yfa{bottom:629.946667pt;}
.y155{bottom:630.400000pt;}
.y1b{bottom:632.186667pt;}
.y6c{bottom:636.026667pt;}
.y198{bottom:638.906667pt;}
.y1d3{bottom:645.506667pt;}
.y1e3{bottom:646.240000pt;}
.y47{bottom:646.266667pt;}
.yf9{bottom:649.786667pt;}
.y1a{bottom:653.306667pt;}
.y157{bottom:659.840000pt;}
.y197{bottom:660.026667pt;}
.y46{bottom:667.386667pt;}
.yf8{bottom:669.626667pt;}
.y6a{bottom:672.186667pt;}
.y19{bottom:674.426667pt;}
.y196{bottom:681.146667pt;}
.y45{bottom:688.506667pt;}
.y159{bottom:689.280000pt;}
.yf7{bottom:689.466667pt;}
.y18{bottom:695.546667pt;}
.y195{bottom:702.266667pt;}
.y67{bottom:708.346667pt;}
.yf6{bottom:709.306667pt;}
.y44{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.y15b{bottom:718.720000pt;}
.y194{bottom:723.386667pt;}
.yf5{bottom:729.146667pt;}
.y43{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y63{bottom:744.546667pt;}
.y15d{bottom:748.160000pt;}
.yf4{bottom:749.026667pt;}
.y42{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y82{bottom:761.826667pt;}
.y89{bottom:762.240000pt;}
.y193{bottom:765.986667pt;}
.y97{bottom:768.640000pt;}
.yf3{bottom:768.866667pt;}
.y41{bottom:773.026667pt;}
.y15f{bottom:777.920000pt;}
.y14{bottom:780.066667pt;}
.y192{bottom:787.106667pt;}
.yf2{bottom:788.706667pt;}
.y62{bottom:794.146667pt;}
.y40{bottom:794.466667pt;}
.y13{bottom:801.506667pt;}
.y160{bottom:807.360000pt;}
.y191{bottom:808.226667pt;}
.yf1{bottom:808.546667pt;}
.y61{bottom:815.266667pt;}
.y3f{bottom:815.586667pt;}
.y12{bottom:822.626667pt;}
.yf0{bottom:828.386667pt;}
.y190{bottom:829.026667pt;}
.y3e{bottom:836.706667pt;}
.y161{bottom:836.800000pt;}
.y11{bottom:843.746667pt;}
.y18f{bottom:846.653333pt;}
.y1aa{bottom:846.720000pt;}
.yef{bottom:848.253333pt;}
.y1b5{bottom:853.440000pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.y162{bottom:866.240000pt;}
.yee{bottom:868.093333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:886.013333pt;}
.yed{bottom:888.253333pt;}
.y164{bottom:896.000000pt;}
.y3b{bottom:900.093333pt;}
.y169{bottom:906.240000pt;}
.ye{bottom:906.813333pt;}
.yec{bottom:908.093333pt;}
.y3a{bottom:921.213333pt;}
.y165{bottom:925.440000pt;}
.yeb{bottom:927.933333pt;}
.yd{bottom:928.253333pt;}
.y39{bottom:942.333333pt;}
.yea{bottom:947.773333pt;}
.yc{bottom:949.053333pt;}
.y167{bottom:954.880000pt;}
.y38{bottom:963.813333pt;}
.ye9{bottom:967.653333pt;}
.yb{bottom:970.533333pt;}
.y168{bottom:984.320000pt;}
.y37{bottom:984.933333pt;}
.ye8{bottom:987.493333pt;}
.ya{bottom:993.573333pt;}
.y36{bottom:1006.053333pt;}
.ye7{bottom:1007.333333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h5{height:24.000000pt;}
.h11{height:24.296875pt;}
.h15{height:24.394062pt;}
.h24{height:24.640000pt;}
.h12{height:24.960000pt;}
.h20{height:27.840000pt;}
.h1c{height:29.760000pt;}
.h1f{height:30.080000pt;}
.hc{height:35.520000pt;}
.hb{height:35.552000pt;}
.hf{height:36.931250pt;}
.h10{height:37.028437pt;}
.h1a{height:41.658750pt;}
.h1b{height:41.757937pt;}
.ha{height:42.240000pt;}
.hd{height:42.592000pt;}
.h7{height:44.706250pt;}
.h1d{height:45.156250pt;}
.h1e{height:45.246562pt;}
.h13{height:45.626250pt;}
.h23{height:47.064583pt;}
.h4{height:49.020000pt;}
.h14{height:54.691250pt;}
.h18{height:59.171250pt;}
.h3{height:59.340000pt;}
.h21{height:62.435625pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h26{height:65.781915pt;}
.h17{height:70.211250pt;}
.h8{height:86.430000pt;}
.h16{height:102.104583pt;}
.he{height:194.560000pt;}
.h22{height:194.880000pt;}
.h19{height:400.000000pt;}
.h25{height:682.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:64.960000pt;}
.w4{width:92.512000pt;}
.w6{width:104.032000pt;}
.w7{width:122.624000pt;}
.w8{width:136.066667pt;}
.w12{width:154.880000pt;}
.w5{width:167.426667pt;}
.wc{width:179.520000pt;}
.w1e{width:197.760000pt;}
.wf{width:198.080000pt;}
.wd{width:234.880000pt;}
.wb{width:241.280000pt;}
.w13{width:248.320000pt;}
.w18{width:257.920000pt;}
.w3{width:265.693333pt;}
.w1d{width:278.080000pt;}
.we{width:278.400000pt;}
.wa{width:296.000000pt;}
.w16{width:305.280000pt;}
.w1a{width:369.280000pt;}
.w17{width:381.440000pt;}
.w14{width:409.280000pt;}
.w1b{width:419.200000pt;}
.w11{width:423.360000pt;}
.w1c{width:440.960000pt;}
.w1f{width:574.080000pt;}
.w15{width:598.720000pt;}
.w19{width:607.360000pt;}
.w10{width:625.920000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:1.600000pt;}
.x1f{left:2.784000pt;}
.x34{left:4.736000pt;}
.x29{left:6.013333pt;}
.x2b{left:7.872000pt;}
.x1e{left:9.024000pt;}
.x5d{left:10.016000pt;}
.x28{left:12.253333pt;}
.x63{left:14.368000pt;}
.x6a{left:16.192000pt;}
.x84{left:17.440000pt;}
.x80{left:22.848000pt;}
.x82{left:26.146667pt;}
.x85{left:29.253333pt;}
.x20{left:31.744000pt;}
.x83{left:34.013333pt;}
.x2a{left:34.973333pt;}
.x81{left:35.906667pt;}
.x8{left:38.746667pt;}
.x7e{left:40.226667pt;}
.x2e{left:41.466667pt;}
.x6e{left:42.586667pt;}
.x2c{left:44.480000pt;}
.x64{left:46.368000pt;}
.x6b{left:47.866667pt;}
.x7f{left:50.560000pt;}
.x38{left:52.346667pt;}
.x1b{left:55.133333pt;}
.x6c{left:56.346667pt;}
.x26{left:58.306667pt;}
.x62{left:61.693333pt;}
.x5b{left:66.266667pt;}
.x41{left:69.373333pt;}
.x7d{left:75.973333pt;}
.x3e{left:84.093333pt;}
.x5{left:85.152000pt;}
.x3d{left:87.173333pt;}
.x5e{left:88.960000pt;}
.x2d{left:92.613333pt;}
.x59{left:96.986667pt;}
.x12{left:98.272000pt;}
.x1a{left:100.800000pt;}
.xb{left:103.391988pt;}
.x5c{left:106.306667pt;}
.x68{left:107.333333pt;}
.x40{left:109.600000pt;}
.x24{left:110.880000pt;}
.x23{left:112.546667pt;}
.x86{left:113.631988pt;}
.x60{left:114.973333pt;}
.x39{left:116.960000pt;}
.x35{left:118.400000pt;}
.x30{left:119.293333pt;}
.x3a{left:122.173333pt;}
.xa{left:123.903988pt;}
.x6f{left:126.653333pt;}
.x31{left:128.346667pt;}
.x5f{left:131.040000pt;}
.xf{left:132.543988pt;}
.x37{left:135.200000pt;}
.x21{left:136.960000pt;}
.x32{left:143.200000pt;}
.x1c{left:146.106667pt;}
.x6d{left:147.333333pt;}
.x27{left:149.186667pt;}
.x69{left:151.066667pt;}
.xd{left:160.706655pt;}
.x3{left:169.666655pt;}
.x5a{left:175.040000pt;}
.x51{left:188.640000pt;}
.x77{left:190.786667pt;}
.x58{left:196.160000pt;}
.x36{left:198.720000pt;}
.x46{left:199.933333pt;}
.x4f{left:201.213333pt;}
.x11{left:203.906655pt;}
.x4d{left:207.426667pt;}
.x45{left:209.306667pt;}
.x50{left:212.186667pt;}
.x22{left:217.280000pt;}
.x55{left:226.493333pt;}
.x4a{left:228.093333pt;}
.x33{left:234.173333pt;}
.x1d{left:237.053333pt;}
.x3f{left:239.906667pt;}
.x3c{left:244.733333pt;}
.x72{left:248.640000pt;}
.x6{left:258.341333pt;}
.x14{left:266.333333pt;}
.x61{left:269.760000pt;}
.xe{left:286.813322pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x71{left:309.573322pt;}
.x19{left:315.013322pt;}
.x56{left:325.053333pt;}
.x3b{left:330.373322pt;}
.x7a{left:336.386667pt;}
.xc{left:339.333322pt;}
.x73{left:346.880000pt;}
.x54{left:348.000000pt;}
.x7{left:350.853333pt;}
.x4b{left:360.960000pt;}
.x49{left:362.106667pt;}
.x15{left:371.013333pt;}
.x43{left:373.280000pt;}
.x65{left:380.800000pt;}
.x53{left:381.760000pt;}
.x79{left:392.506667pt;}
.x25{left:396.800000pt;}
.x66{left:398.720000pt;}
.x2f{left:414.400000pt;}
.x76{left:418.306667pt;}
.x75{left:423.653333pt;}
.x48{left:426.373333pt;}
.x78{left:431.493333pt;}
.x9{left:443.360000pt;}
.x7c{left:450.853333pt;}
.x4c{left:466.333333pt;}
.x44{left:475.333333pt;}
.x67{left:479.040000pt;}
.x16{left:494.266667pt;}
.x4e{left:499.040000pt;}
.x7b{left:506.946667pt;}
.x57{left:522.400000pt;}
.x47{left:526.106667pt;}
.x70{left:545.186655pt;}
.x52{left:582.080000pt;}
.x17{left:630.973333pt;}
.x10{left:655.613322pt;}
.x42{left:677.373322pt;}
.x74{left:684.093322pt;}
.x18{left:693.053322pt;}
.x1{left:709.053322pt;}
}




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