
    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_841b5f7a31db4e46ec7336bc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5dfa7c972b3bd5c5231d665d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24734775a1f7cd35b70758f5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d4cb216711ebc86107407e38.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89ed9404811078561880e2c4.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_421a15fc9d6dbee03ab1a900.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9bbf248b08654c8d95b2aea7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.887695;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_7680939c05bd379dddc50748.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898438;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_96030b4d0acbdbfe54b86138.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v6{vertical-align:-72.000000px;}
.v8{vertical-align:-69.840000px;}
.v4{vertical-align:-62.760003px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls22{letter-spacing:-0.846000px;}
.ls23{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.594000px;}
.lsf{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.486600px;}
.ls2a{letter-spacing:-0.450600px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.226200px;}
.ls14{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.206400px;}
.ls21{letter-spacing:-0.126000px;}
.ls17{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.010080px;}
.ls1{letter-spacing:0.012960px;}
.ls7{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.157680px;}
.ls3{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.223800px;}
.ls16{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.305400px;}
.ls25{letter-spacing:0.312000px;}
.ls2{letter-spacing:0.315360px;}
.ls1d{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.666000px;}
.ls18{letter-spacing:0.702000px;}
.ls2b{letter-spacing:0.732000px;}
.ls15{letter-spacing:0.900000px;}
.ls26{letter-spacing:1.620000px;}
.ls28{letter-spacing:52.740000px;}
.ls6{letter-spacing:62.640000px;}
.ls4{letter-spacing:63.336000px;}
.ls5{letter-spacing:63.360000px;}
.ls24{letter-spacing:93.060000px;}
.ls1a{letter-spacing:984.576000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-41.760000px;}
.ws6{word-spacing:-31.500000px;}
.ws4{word-spacing:-18.000000px;}
.wse{word-spacing:-16.865400px;}
.ws14{word-spacing:-15.606000px;}
.ws16{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.238800px;}
.ws1c{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.906000px;}
.ws3{word-spacing:-12.420000px;}
.ws20{word-spacing:-12.283800px;}
.ws22{word-spacing:-12.241200px;}
.wsa{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.836200px;}
.ws9{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.520000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws7{word-spacing:-9.720000px;}
.ws18{word-spacing:-9.000000px;}
.ws1d{word-spacing:-8.928000px;}
.ws21{word-spacing:-8.292000px;}
.ws1e{word-spacing:-7.570080px;}
.ws8{word-spacing:-7.560000px;}
.ws1f{word-spacing:-7.073400px;}
.ws12{word-spacing:0.000000px;}
._24{margin-left:-2.181840px;}
._3{margin-left:-1.075200px;}
._1{width:1.044000px;}
._4{width:2.183520px;}
._e{width:3.864480px;}
._0{width:5.804640px;}
._2{width:7.010400px;}
._c{width:8.262000px;}
._d{width:9.648000px;}
._16{width:11.007840px;}
._12{width:12.465600px;}
._a{width:13.860000px;}
._9{width:15.222000px;}
._1a{width:16.245360px;}
._f{width:17.280000px;}
._15{width:18.764640px;}
._13{width:20.258640px;}
._14{width:21.274560px;}
._1e{width:22.740000px;}
._28{width:24.025440px;}
._20{width:25.278480px;}
._23{width:26.712720px;}
._29{width:32.127840px;}
._19{width:33.764400px;}
._1f{width:35.051040px;}
._1b{width:36.632880px;}
._17{width:37.708560px;}
._18{width:39.265920px;}
._26{width:43.266240px;}
._25{width:44.521200px;}
._10{width:46.019997px;}
._2f{width:47.192895px;}
._1d{width:48.644640px;}
._1c{width:49.720320px;}
._2c{width:52.388640px;}
._7{width:54.396000px;}
._6{width:55.440000px;}
._8{width:56.598000px;}
._21{width:60.477120px;}
._22{width:61.485840px;}
._b{width:62.635200px;}
._27{width:64.839600px;}
._2e{width:120.179760px;}
._2a{width:413.416800px;}
._2b{width:414.620160px;}
._11{width:1834.296000px;}
._5{width:2055.532320px;}
._2d{width:2613.305520px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(4,50,255);}
.fc3{color:rgb(255,0,0);}
.fc8{color:rgb(28,28,28);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fsa{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y123{bottom:3.045000px;}
.y125{bottom:3.225000px;}
.y12b{bottom:3.240000px;}
.y127{bottom:3.405000px;}
.y44{bottom:4.320000px;}
.y9a{bottom:5.220000px;}
.y14a{bottom:5.385000px;}
.yc9{bottom:5.400000px;}
.yb9{bottom:5.565000px;}
.y2e{bottom:5.580000px;}
.y9f{bottom:5.610000px;}
.yc1{bottom:5.745000px;}
.ya5{bottom:5.760000px;}
.y14e{bottom:5.925000px;}
.yb5{bottom:6.105000px;}
.y14c{bottom:6.825000px;}
.ybf{bottom:7.365000px;}
.yb3{bottom:7.545000px;}
.ycc{bottom:8.100000px;}
.yb7{bottom:8.445000px;}
.y121{bottom:10.785000px;}
.y148{bottom:14.205000px;}
.y9c{bottom:14.220000px;}
.ya3{bottom:14.400000px;}
.ybc{bottom:14.565000px;}
.yb1{bottom:16.365000px;}
.y43{bottom:18.180000px;}
.y122{bottom:18.525000px;}
.y47{bottom:18.900000px;}
.y80{bottom:19.260000px;}
.y2d{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.y149{bottom:23.205000px;}
.y98{bottom:23.220000px;}
.ya2{bottom:23.400000px;}
.ybb{bottom:23.565000px;}
.yb2{bottom:25.365000px;}
.y2c{bottom:29.340000px;}
.y9b{bottom:32.040000px;}
.y2{bottom:33.840000px;}
.y99{bottom:41.040000px;}
.y1{bottom:46.620000px;}
.y2b{bottom:47.340000px;}
.y2a{bottom:65.160000px;}
.yc7{bottom:71.460000px;}
.y1ac{bottom:72.000000px;}
.y7d{bottom:76.140000px;}
.y1e6{bottom:76.320000px;}
.y12f{bottom:81.540000px;}
.y159{bottom:82.440000px;}
.y29{bottom:82.980000px;}
.y1ab{bottom:90.180000px;}
.y41{bottom:90.900000px;}
.yc6{bottom:91.260000px;}
.y12e{bottom:95.400000px;}
.y7c{bottom:95.940000px;}
.y28{bottom:100.800000px;}
.yfb{bottom:102.060000px;}
.y158{bottom:102.240000px;}
.y17d{bottom:103.140000px;}
.y1e5{bottom:103.860000px;}
.y1aa{bottom:104.040000px;}
.yc5{bottom:106.020000px;}
.y12d{bottom:106.920000px;}
.y40{bottom:110.700000px;}
.y7b{bottom:115.740000px;}
.y1e4{bottom:117.720000px;}
.y27{bottom:118.620000px;}
.y157{bottom:122.040000px;}
.yfa{bottom:122.220000px;}
.y12c{bottom:122.400000px;}
.y17c{bottom:122.940000px;}
.yc4{bottom:124.560000px;}
.y3f{bottom:130.500000px;}
.y1e3{bottom:131.580000px;}
.y7a{bottom:135.540000px;}
.y1a9{bottom:136.080000px;}
.y26{bottom:136.440000px;}
.y12a{bottom:137.880000px;}
.y156{bottom:141.840000px;}
.yf9{bottom:142.200000px;}
.y17b{bottom:143.100000px;}
.yc3{bottom:143.280000px;}
.y1e2{bottom:145.260000px;}
.y1a8{bottom:149.976000px;}
.y3e{bottom:150.330000px;}
.y129{bottom:154.305000px;}
.y25{bottom:154.440000px;}
.y79{bottom:155.370000px;}
.y155{bottom:158.610000px;}
.y1e1{bottom:159.150000px;}
.yc2{bottom:161.865000px;}
.yf8{bottom:162.030000px;}
.y17a{bottom:163.110000px;}
.y1a7{bottom:168.330000px;}
.y3d{bottom:170.310000px;}
.y128{bottom:170.505000px;}
.y24{bottom:172.260000px;}
.y154{bottom:172.470000px;}
.y1e0{bottom:173.010000px;}
.y78{bottom:175.350000px;}
.yc0{bottom:180.405000px;}
.yf7{bottom:181.830000px;}
.y1a6{bottom:182.010000px;}
.y179{bottom:182.910000px;}
.y30{bottom:183.780000px;}
.y153{bottom:184.005000px;}
.y1df{bottom:186.690000px;}
.y126{bottom:186.705000px;}
.y23{bottom:190.080000px;}
.y3c{bottom:190.110000px;}
.y77{bottom:195.150000px;}
.y1a5{bottom:195.870000px;}
.ybe{bottom:199.125000px;}
.y1de{bottom:200.550000px;}
.yf6{bottom:201.630000px;}
.y152{bottom:201.825000px;}
.y178{bottom:202.710000px;}
.y124{bottom:203.085000px;}
.y22{bottom:207.900000px;}
.y3b{bottom:209.910000px;}
.y1a4{bottom:214.230000px;}
.y76{bottom:214.950000px;}
.y1dd{bottom:217.470000px;}
.y120{bottom:219.285000px;}
.y151{bottom:220.365000px;}
.yf5{bottom:221.430000px;}
.ybd{bottom:221.445000px;}
.y21{bottom:225.750000px;}
.y1a3{bottom:227.910000px;}
.y3a{bottom:229.710000px;}
.y75{bottom:234.750000px;}
.y1dc{bottom:237.270000px;}
.y177{bottom:239.610000px;}
.yba{bottom:239.985000px;}
.yf4{bottom:241.410000px;}
.y150{bottom:241.425000px;}
.y1a2{bottom:241.770000px;}
.y20{bottom:243.750000px;}
.y39{bottom:249.510000px;}
.y74{bottom:254.550000px;}
.y11f{bottom:257.250000px;}
.y176{bottom:259.230000px;}
.y1a1{bottom:260.130000px;}
.y14f{bottom:260.685000px;}
.yf3{bottom:261.210000px;}
.y1f{bottom:261.570000px;}
.y38{bottom:269.490000px;}
.y1a0{bottom:273.810000px;}
.y73{bottom:274.530000px;}
.yb8{bottom:276.525000px;}
.y11e{bottom:277.050000px;}
.y1e{bottom:279.390000px;}
.y14d{bottom:280.125000px;}
.y175{bottom:280.830000px;}
.yf2{bottom:281.010000px;}
.y37{bottom:289.290000px;}
.y19f{bottom:292.170000px;}
.y72{bottom:294.330000px;}
.yb6{bottom:295.065000px;}
.y11d{bottom:296.670000px;}
.y1db{bottom:296.850000px;}
.y1d{bottom:297.210000px;}
.y14b{bottom:299.385000px;}
.yf1{bottom:300.810000px;}
.y174{bottom:303.330000px;}
.y19e{bottom:306.030000px;}
.y36{bottom:309.090000px;}
.y71{bottom:314.130000px;}
.y1c{bottom:315.030000px;}
.y1da{bottom:316.650000px;}
.y11c{bottom:316.830000px;}
.yb4{bottom:319.185000px;}
.y147{bottom:320.265000px;}
.yf0{bottom:320.610000px;}
.y173{bottom:323.130000px;}
.y19d{bottom:324.210000px;}
.y35{bottom:328.890000px;}
.y1b{bottom:332.850000px;}
.y70{bottom:333.570000px;}
.y1d9{bottom:336.450000px;}
.y11b{bottom:336.630000px;}
.y19c{bottom:338.070000px;}
.yb0{bottom:338.805000px;}
.yef{bottom:340.590000px;}
.y172{bottom:342.930000px;}
.y34{bottom:348.690000px;}
.y19b{bottom:351.930000px;}
.y6f{bottom:353.370000px;}
.y1a{bottom:354.990000px;}
.y11a{bottom:356.430000px;}
.yee{bottom:360.390000px;}
.y146{bottom:360.570000px;}
.y171{bottom:362.730000px;}
.y2f{bottom:367.590000px;}
.y33{bottom:368.670000px;}
.y19a{bottom:370.110000px;}
.y6e{bottom:373.710000px;}
.y119{bottom:376.230000px;}
.y145{bottom:377.850000px;}
.yed{bottom:380.190000px;}
.y170{bottom:382.710000px;}
.yaf{bottom:383.610000px;}
.y199{bottom:383.970000px;}
.y32{bottom:388.110000px;}
.y6d{bottom:393.510000px;}
.y118{bottom:395.850000px;}
.y1d8{bottom:396.030000px;}
.y144{bottom:397.110000px;}
.y198{bottom:397.830000px;}
.yec{bottom:400.035000px;}
.yae{bottom:400.935000px;}
.y16f{bottom:402.555000px;}
.y31{bottom:409.035000px;}
.y6c{bottom:413.355000px;}
.y117{bottom:415.695000px;}
.y1d7{bottom:415.875000px;}
.y197{bottom:416.055000px;}
.y143{bottom:417.315000px;}
.yad{bottom:419.115000px;}
.yeb{bottom:419.835000px;}
.y16e{bottom:422.355000px;}
.y19{bottom:423.975000px;}
.y196{bottom:429.915000px;}
.y6b{bottom:433.155000px;}
.y1d6{bottom:435.675000px;}
.y116{bottom:435.855000px;}
.y142{bottom:437.115000px;}
.yea{bottom:439.815000px;}
.y16d{bottom:441.795000px;}
.yac{bottom:443.235000px;}
.y195{bottom:448.275000px;}
.y6a{bottom:452.955000px;}
.y115{bottom:455.655000px;}
.y141{bottom:456.915000px;}
.ye9{bottom:459.615000px;}
.y16c{bottom:461.595000px;}
.y194{bottom:461.955000px;}
.yab{bottom:467.535000px;}
.y69{bottom:472.935000px;}
.y114{bottom:475.455000px;}
.y193{bottom:475.815000px;}
.y140{bottom:476.895000px;}
.yaa{bottom:479.415000px;}
.y16b{bottom:483.195000px;}
.y68{bottom:492.735000px;}
.y192{bottom:494.175000px;}
.y1d5{bottom:495.255000px;}
.y113{bottom:495.435000px;}
.y13f{bottom:496.695000px;}
.ya9{bottom:497.955000px;}
.ye8{bottom:499.215000px;}
.y16a{bottom:505.695000px;}
.y191{bottom:507.855000px;}
.y67{bottom:512.535000px;}
.y1d4{bottom:515.055000px;}
.y112{bottom:515.235000px;}
.ya8{bottom:516.495000px;}
.ye7{bottom:519.015000px;}
.y169{bottom:525.495000px;}
.y190{bottom:526.215000px;}
.y66{bottom:532.335000px;}
.y111{bottom:534.675000px;}
.y1d3{bottom:534.855000px;}
.ya7{bottom:535.215000px;}
.y13e{bottom:536.295000px;}
.ye6{bottom:538.995000px;}
.y18f{bottom:540.075000px;}
.y168{bottom:545.295000px;}
.y65{bottom:552.135000px;}
.y110{bottom:552.315000px;}
.ya6{bottom:553.755000px;}
.y1d2{bottom:554.835000px;}
.y13d{bottom:556.095000px;}
.y18e{bottom:558.255000px;}
.ye5{bottom:558.795000px;}
.y167{bottom:565.095000px;}
.y10f{bottom:566.175000px;}
.y64{bottom:572.115000px;}
.ya4{bottom:572.295000px;}
.y1d1{bottom:574.635000px;}
.y13c{bottom:576.075000px;}
.ye4{bottom:578.775000px;}
.y10e{bottom:584.535000px;}
.y166{bottom:585.075000px;}
.y18d{bottom:585.975000px;}
.ya1{bottom:591.015000px;}
.y63{bottom:591.915000px;}
.y1d0{bottom:594.435000px;}
.y13b{bottom:595.875000px;}
.ye3{bottom:598.755000px;}
.y18c{bottom:604.155000px;}
.y10d{bottom:604.515000px;}
.y165{bottom:604.875000px;}
.y62{bottom:611.355000px;}
.y1cf{bottom:614.235000px;}
.y13a{bottom:615.675000px;}
.y18b{bottom:618.015000px;}
.ye2{bottom:618.555000px;}
.y10c{bottom:624.315000px;}
.y164{bottom:624.675000px;}
.ya0{bottom:627.375000px;}
.y61{bottom:631.515000px;}
.y139{bottom:635.475000px;}
.y18a{bottom:636.375000px;}
.ye1{bottom:638.535000px;}
.y10b{bottom:644.115000px;}
.y163{bottom:644.475000px;}
.y9e{bottom:646.095000px;}
.y1ce{bottom:649.365000px;}
.y189{bottom:650.085000px;}
.y60{bottom:651.345000px;}
.y138{bottom:655.305000px;}
.ye0{bottom:658.365000px;}
.y1cd{bottom:663.045000px;}
.y10a{bottom:663.945000px;}
.y162{bottom:664.305000px;}
.y9d{bottom:664.665000px;}
.y5f{bottom:671.325000px;}
.y137{bottom:675.285000px;}
.y188{bottom:677.805000px;}
.ydf{bottom:678.165000px;}
.y1cc{bottom:681.405000px;}
.y97{bottom:683.205000px;}
.y109{bottom:683.745000px;}
.y161{bottom:684.285000px;}
.y5e{bottom:691.125000px;}
.y136{bottom:695.085000px;}
.y1cb{bottom:695.265000px;}
.y187{bottom:695.985000px;}
.yde{bottom:697.965000px;}
.y108{bottom:703.725000px;}
.y160{bottom:704.085000px;}
.y186{bottom:709.845000px;}
.y5d{bottom:710.925000px;}
.y1ca{bottom:713.445000px;}
.y135{bottom:714.885000px;}
.ydd{bottom:717.765000px;}
.y107{bottom:723.525000px;}
.y15f{bottom:723.885000px;}
.y185{bottom:726.765000px;}
.y1c9{bottom:727.305000px;}
.y5c{bottom:730.725000px;}
.y134{bottom:734.685000px;}
.ydc{bottom:737.745000px;}
.y106{bottom:743.325000px;}
.y96{bottom:743.685000px;}
.y1c8{bottom:745.665000px;}
.y184{bottom:746.205000px;}
.y5b{bottom:750.165000px;}
.y133{bottom:754.485000px;}
.ydb{bottom:757.545000px;}
.y1c7{bottom:759.345000px;}
.y105{bottom:763.125000px;}
.y95{bottom:763.485000px;}
.y183{bottom:768.705000px;}
.y5a{bottom:770.145000px;}
.y1c6{bottom:773.205000px;}
.y132{bottom:774.465000px;}
.yda{bottom:777.345000px;}
.y104{bottom:782.925000px;}
.y94{bottom:783.105000px;}
.y15e{bottom:783.465000px;}
.y59{bottom:789.945000px;}
.y1c5{bottom:791.565000px;}
.y131{bottom:794.265000px;}
.yd9{bottom:797.145000px;}
.y18{bottom:797.325000px;}
.y93{bottom:802.905000px;}
.y15d{bottom:803.265000px;}
.y1c4{bottom:805.245000px;}
.y58{bottom:811.365000px;}
.y182{bottom:813.705000px;}
.y130{bottom:814.065000px;}
.y17{bottom:816.225000px;}
.yd8{bottom:816.945000px;}
.y1c3{bottom:819.105000px;}
.y103{bottom:822.705000px;}
.y92{bottom:823.065000px;}
.y16{bottom:832.065000px;}
.y57{bottom:833.865000px;}
.yd7{bottom:836.925000px;}
.y1c2{bottom:837.285000px;}
.y102{bottom:842.505000px;}
.y91{bottom:842.865000px;}
.y1c1{bottom:851.145000px;}
.y15{bottom:853.125000px;}
.y56{bottom:853.665000px;}
.yd6{bottom:856.725000px;}
.y90{bottom:862.305000px;}
.y15c{bottom:862.665000px;}
.y1c0{bottom:865.005000px;}
.y14{bottom:867.165000px;}
.y55{bottom:873.645000px;}
.y13{bottom:875.805000px;}
.yd5{bottom:876.165000px;}
.y101{bottom:882.105000px;}
.y8f{bottom:882.285000px;}
.y15b{bottom:882.645000px;}
.y1bf{bottom:883.185000px;}
.y54{bottom:893.445000px;}
.y12{bottom:894.705000px;}
.y1be{bottom:897.090000px;}
.yd4{bottom:898.530000px;}
.y100{bottom:902.130000px;}
.y8e{bottom:902.490000px;}
.y11{bottom:908.610000px;}
.y181{bottom:912.930000px;}
.y53{bottom:913.290000px;}
.y1bd{bottom:915.450000px;}
.y10{bottom:917.070000px;}
.yff{bottom:921.930000px;}
.y8d{bottom:922.290000px;}
.yd3{bottom:923.010000px;}
.y1bc{bottom:929.130000px;}
.yf{bottom:930.030000px;}
.y180{bottom:932.730000px;}
.y52{bottom:933.090000px;}
.yd2{bottom:934.710000px;}
.yfe{bottom:941.730000px;}
.y8c{bottom:942.090000px;}
.y1bb{bottom:947.490000px;}
.ye{bottom:951.630000px;}
.y51{bottom:952.890000px;}
.yd1{bottom:953.250000px;}
.y1ba{bottom:961.350000px;}
.yfd{bottom:961.530000px;}
.y8b{bottom:961.890000px;}
.yd0{bottom:971.790000px;}
.y17f{bottom:972.510000px;}
.y50{bottom:972.870000px;}
.yd{bottom:973.770000px;}
.y1b9{bottom:975.030000px;}
.yfc{bottom:981.690000px;}
.y8a{bottom:981.870000px;}
.ycf{bottom:990.510000px;}
.y4f{bottom:992.670000px;}
.y1b8{bottom:993.390000px;}
.yc{bottom:995.910000px;}
.y89{bottom:1001.670000px;}
.y1b7{bottom:1007.250000px;}
.yce{bottom:1009.050000px;}
.y4e{bottom:1012.470000px;}
.y88{bottom:1021.470000px;}
.y1b6{bottom:1025.430000px;}
.ycd{bottom:1027.590000px;}
.y17e{bottom:1031.910000px;}
.yb{bottom:1032.270000px;}
.y1b5{bottom:1039.290000px;}
.y87{bottom:1041.270000px;}
.ycb{bottom:1046.310000px;}
.y4d{bottom:1052.070000px;}
.y1b4{bottom:1053.150000px;}
.y86{bottom:1061.070000px;}
.ya{bottom:1068.450000px;}
.yca{bottom:1069.890000px;}
.y1b3{bottom:1071.330000px;}
.y4c{bottom:1072.050000px;}
.y85{bottom:1081.050000px;}
.y1b2{bottom:1085.190000px;}
.yc8{bottom:1088.790000px;}
.y4b{bottom:1091.850000px;}
.y1b1{bottom:1099.050000px;}
.y84{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y4a{bottom:1111.650000px;}
.y42{bottom:1112.730000px;}
.y1b0{bottom:1117.230000px;}
.y8{bottom:1117.950000px;}
.y83{bottom:1120.650000px;}
.y1af{bottom:1131.090000px;}
.y49{bottom:1131.450000px;}
.y82{bottom:1140.450000px;}
.y1ae{bottom:1149.480000px;}
.y48{bottom:1151.280000px;}
.y7{bottom:1155.960000px;}
.y81{bottom:1159.920000px;}
.y15a{bottom:1160.280000px;}
.y1ad{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y46{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y7f{bottom:1178.460000px;}
.y45{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y7e{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h2c{height:15.465000px;}
.h2f{height:15.478500px;}
.h2e{height:15.516000px;}
.h2d{height:15.645000px;}
.h1d{height:17.805000px;}
.h27{height:17.818500px;}
.h1a{height:17.820000px;}
.h1c{height:17.850000px;}
.h26{height:17.856000px;}
.h1f{height:17.985000px;}
.h11{height:18.140625px;}
.h28{height:18.165000px;}
.h32{height:18.525000px;}
.h22{height:18.705000px;}
.h31{height:20.145000px;}
.h25{height:21.585000px;}
.h29{height:22.665000px;}
.h23{height:23.385000px;}
.h15{height:27.705000px;}
.he{height:29.664141px;}
.hd{height:30.476250px;}
.h2b{height:31.125000px;}
.h1e{height:35.625000px;}
.h24{height:35.805000px;}
.h2a{height:36.281250px;}
.h21{height:40.305000px;}
.h3{height:40.985156px;}
.h16{height:42.922699px;}
.hf{height:47.321367px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h33{height:50.534906px;}
.h30{height:50.558906px;}
.h2{height:52.998047px;}
.h18{height:53.640000px;}
.h8{height:54.421875px;}
.h12{height:55.503472px;}
.h14{height:58.651172px;}
.h1b{height:59.092031px;}
.h19{height:60.041250px;}
.h9{height:60.226875px;}
.h13{height:65.010937px;}
.hc{height:66.543750px;}
.hb{height:66.757500px;}
.h17{height:70.664062px;}
.h5{height:72.562500px;}
.h20{height:84.898125px;}
.ha{height:126.984375px;}
.h10{height:367.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:56.685000px;}
.w7{width:60.660000px;}
.w9{width:64.965000px;}
.w6{width:67.521000px;}
.w8{width:67.536000px;}
.wc{width:82.065000px;}
.wa{width:87.681000px;}
.wd{width:100.110000px;}
.w13{width:101.190000px;}
.w11{width:101.361000px;}
.w17{width:101.541000px;}
.w19{width:101.550000px;}
.w3{width:101.730000px;}
.w12{width:107.985000px;}
.w10{width:108.036000px;}
.w18{width:108.165000px;}
.w16{width:108.396000px;}
.wf{width:114.660000px;}
.w15{width:115.020000px;}
.w1d{width:134.310000px;}
.w5{width:141.829500px;}
.w1f{width:150.870000px;}
.w1c{width:154.455000px;}
.w20{width:158.055000px;}
.w21{width:165.270000px;}
.w1b{width:168.870000px;}
.we{width:195.859500px;}
.w14{width:196.219500px;}
.w4{width:232.050000px;}
.w1e{width:253.279500px;}
.w1a{width:268.399500px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x11{left:8.089500px;}
.x17{left:9.540000px;}
.x9{left:10.650000px;}
.x14{left:12.585000px;}
.x33{left:13.860000px;}
.x13{left:15.285000px;}
.x1f{left:16.920000px;}
.x23{left:18.540000px;}
.x19{left:19.980000px;}
.x1b{left:21.225000px;}
.x15{left:22.350000px;}
.x26{left:24.840000px;}
.x8{left:26.850000px;}
.x24{left:28.110000px;}
.x21{left:29.700000px;}
.x3c{left:30.765000px;}
.x1d{left:32.565000px;}
.x3d{left:34.200000px;}
.x2f{left:35.265000px;}
.x27{left:37.440000px;}
.x2c{left:39.225000px;}
.x25{left:40.305000px;}
.x7{left:42.510000px;}
.x30{left:45.360000px;}
.x28{left:46.650000px;}
.x43{left:48.420000px;}
.x39{left:50.070000px;}
.x41{left:51.840000px;}
.x3b{left:53.280000px;}
.x40{left:55.260000px;}
.x37{left:57.450000px;}
.x6{left:58.710000px;}
.x48{left:60.120000px;}
.x3f{left:61.770000px;}
.x46{left:63.540000px;}
.x49{left:67.320000px;}
.x3e{left:69.150000px;}
.x47{left:70.740000px;}
.x5{left:78.150000px;}
.x35{left:79.246500px;}
.x2{left:81.036000px;}
.xc{left:108.036000px;}
.x4a{left:158.250000px;}
.x12{left:222.885000px;}
.x29{left:276.915000px;}
.x16{left:290.415000px;}
.x42{left:335.415000px;}
.x36{left:348.375000px;}
.x18{left:351.075000px;}
.xf{left:359.715000px;}
.x2a{left:391.575000px;}
.xe{left:396.435000px;}
.x1a{left:418.620000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x1c{left:483.600000px;}
.x44{left:487.020000px;}
.x2b{left:499.620000px;}
.x31{left:500.700000px;}
.x38{left:518.160000px;}
.x34{left:527.865000px;}
.x1e{left:571.290000px;}
.xd{left:590.370000px;}
.x2d{left:600.990000px;}
.x32{left:602.250000px;}
.x20{left:627.990000px;}
.x45{left:645.810000px;}
.x3a{left:673.350000px;}
.x2e{left:708.990000px;}
.x22{left:710.070000px;}
.x4{left:721.950000px;}
@media print{
.v6{vertical-align:-64.000000pt;}
.v8{vertical-align:-62.080000pt;}
.v4{vertical-align:-55.786669pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls22{letter-spacing:-0.752000pt;}
.ls23{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.528000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.432533pt;}
.ls2a{letter-spacing:-0.400533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls14{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls21{letter-spacing:-0.112000pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.008960pt;}
.ls1{letter-spacing:0.011520pt;}
.ls7{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.140160pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.198933pt;}
.ls16{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.271467pt;}
.ls25{letter-spacing:0.277333pt;}
.ls2{letter-spacing:0.280320pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.624000pt;}
.ls2b{letter-spacing:0.650667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls28{letter-spacing:46.880000pt;}
.ls6{letter-spacing:55.680000pt;}
.ls4{letter-spacing:56.298667pt;}
.ls5{letter-spacing:56.320000pt;}
.ls24{letter-spacing:82.720000pt;}
.ls1a{letter-spacing:875.178667pt;}
.ws11{word-spacing:-37.120000pt;}
.ws6{word-spacing:-28.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.991467pt;}
.ws14{word-spacing:-13.872000pt;}
.ws16{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.545600pt;}
.ws1c{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.232640pt;}
.ws17{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.472000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws20{word-spacing:-10.918933pt;}
.ws22{word-spacing:-10.881067pt;}
.wsa{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.521067pt;}
.ws9{word-spacing:-10.400000pt;}
.ws13{word-spacing:-10.240000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws7{word-spacing:-8.640000pt;}
.ws18{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-7.936000pt;}
.ws21{word-spacing:-7.370667pt;}
.ws1e{word-spacing:-6.728960pt;}
.ws8{word-spacing:-6.720000pt;}
.ws1f{word-spacing:-6.287467pt;}
.ws12{word-spacing:0.000000pt;}
._24{margin-left:-1.939413pt;}
._3{margin-left:-0.955733pt;}
._1{width:0.928000pt;}
._4{width:1.940907pt;}
._e{width:3.435093pt;}
._0{width:5.159680pt;}
._2{width:6.231467pt;}
._c{width:7.344000pt;}
._d{width:8.576000pt;}
._16{width:9.784747pt;}
._12{width:11.080533pt;}
._a{width:12.320000pt;}
._9{width:13.530667pt;}
._1a{width:14.440320pt;}
._f{width:15.360000pt;}
._15{width:16.679680pt;}
._13{width:18.007680pt;}
._14{width:18.910720pt;}
._1e{width:20.213333pt;}
._28{width:21.355947pt;}
._20{width:22.469760pt;}
._23{width:23.744640pt;}
._29{width:28.558080pt;}
._19{width:30.012800pt;}
._1f{width:31.156480pt;}
._1b{width:32.562560pt;}
._17{width:33.518720pt;}
._18{width:34.903040pt;}
._26{width:38.458880pt;}
._25{width:39.574400pt;}
._10{width:40.906664pt;}
._2f{width:41.949240pt;}
._1d{width:43.239680pt;}
._1c{width:44.195840pt;}
._2c{width:46.567680pt;}
._7{width:48.352000pt;}
._6{width:49.280000pt;}
._8{width:50.309333pt;}
._21{width:53.757440pt;}
._22{width:54.654080pt;}
._b{width:55.675733pt;}
._27{width:57.635200pt;}
._2e{width:106.826453pt;}
._2a{width:367.481600pt;}
._2b{width:368.551253pt;}
._11{width:1630.485333pt;}
._5{width:1827.139840pt;}
._2d{width:2322.938240pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fsa{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:2.706667pt;}
.y125{bottom:2.866667pt;}
.y12b{bottom:2.880000pt;}
.y127{bottom:3.026667pt;}
.y44{bottom:3.840000pt;}
.y9a{bottom:4.640000pt;}
.y14a{bottom:4.786667pt;}
.yc9{bottom:4.800000pt;}
.yb9{bottom:4.946667pt;}
.y2e{bottom:4.960000pt;}
.y9f{bottom:4.986667pt;}
.yc1{bottom:5.106667pt;}
.ya5{bottom:5.120000pt;}
.y14e{bottom:5.266667pt;}
.yb5{bottom:5.426667pt;}
.y14c{bottom:6.066667pt;}
.ybf{bottom:6.546667pt;}
.yb3{bottom:6.706667pt;}
.ycc{bottom:7.200000pt;}
.yb7{bottom:7.506667pt;}
.y121{bottom:9.586667pt;}
.y148{bottom:12.626667pt;}
.y9c{bottom:12.640000pt;}
.ya3{bottom:12.800000pt;}
.ybc{bottom:12.946667pt;}
.yb1{bottom:14.546667pt;}
.y43{bottom:16.160000pt;}
.y122{bottom:16.466667pt;}
.y47{bottom:16.800000pt;}
.y80{bottom:17.120000pt;}
.y2d{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.y149{bottom:20.626667pt;}
.y98{bottom:20.640000pt;}
.ya2{bottom:20.800000pt;}
.ybb{bottom:20.946667pt;}
.yb2{bottom:22.546667pt;}
.y2c{bottom:26.080000pt;}
.y9b{bottom:28.480000pt;}
.y2{bottom:30.080000pt;}
.y99{bottom:36.480000pt;}
.y1{bottom:41.440000pt;}
.y2b{bottom:42.080000pt;}
.y2a{bottom:57.920000pt;}
.yc7{bottom:63.520000pt;}
.y1ac{bottom:64.000000pt;}
.y7d{bottom:67.680000pt;}
.y1e6{bottom:67.840000pt;}
.y12f{bottom:72.480000pt;}
.y159{bottom:73.280000pt;}
.y29{bottom:73.760000pt;}
.y1ab{bottom:80.160000pt;}
.y41{bottom:80.800000pt;}
.yc6{bottom:81.120000pt;}
.y12e{bottom:84.800000pt;}
.y7c{bottom:85.280000pt;}
.y28{bottom:89.600000pt;}
.yfb{bottom:90.720000pt;}
.y158{bottom:90.880000pt;}
.y17d{bottom:91.680000pt;}
.y1e5{bottom:92.320000pt;}
.y1aa{bottom:92.480000pt;}
.yc5{bottom:94.240000pt;}
.y12d{bottom:95.040000pt;}
.y40{bottom:98.400000pt;}
.y7b{bottom:102.880000pt;}
.y1e4{bottom:104.640000pt;}
.y27{bottom:105.440000pt;}
.y157{bottom:108.480000pt;}
.yfa{bottom:108.640000pt;}
.y12c{bottom:108.800000pt;}
.y17c{bottom:109.280000pt;}
.yc4{bottom:110.720000pt;}
.y3f{bottom:116.000000pt;}
.y1e3{bottom:116.960000pt;}
.y7a{bottom:120.480000pt;}
.y1a9{bottom:120.960000pt;}
.y26{bottom:121.280000pt;}
.y12a{bottom:122.560000pt;}
.y156{bottom:126.080000pt;}
.yf9{bottom:126.400000pt;}
.y17b{bottom:127.200000pt;}
.yc3{bottom:127.360000pt;}
.y1e2{bottom:129.120000pt;}
.y1a8{bottom:133.312000pt;}
.y3e{bottom:133.626667pt;}
.y129{bottom:137.160000pt;}
.y25{bottom:137.280000pt;}
.y79{bottom:138.106667pt;}
.y155{bottom:140.986667pt;}
.y1e1{bottom:141.466667pt;}
.yc2{bottom:143.880000pt;}
.yf8{bottom:144.026667pt;}
.y17a{bottom:144.986667pt;}
.y1a7{bottom:149.626667pt;}
.y3d{bottom:151.386667pt;}
.y128{bottom:151.560000pt;}
.y24{bottom:153.120000pt;}
.y154{bottom:153.306667pt;}
.y1e0{bottom:153.786667pt;}
.y78{bottom:155.866667pt;}
.yc0{bottom:160.360000pt;}
.yf7{bottom:161.626667pt;}
.y1a6{bottom:161.786667pt;}
.y179{bottom:162.586667pt;}
.y30{bottom:163.360000pt;}
.y153{bottom:163.560000pt;}
.y1df{bottom:165.946667pt;}
.y126{bottom:165.960000pt;}
.y23{bottom:168.960000pt;}
.y3c{bottom:168.986667pt;}
.y77{bottom:173.466667pt;}
.y1a5{bottom:174.106667pt;}
.ybe{bottom:177.000000pt;}
.y1de{bottom:178.266667pt;}
.yf6{bottom:179.226667pt;}
.y152{bottom:179.400000pt;}
.y178{bottom:180.186667pt;}
.y124{bottom:180.520000pt;}
.y22{bottom:184.800000pt;}
.y3b{bottom:186.586667pt;}
.y1a4{bottom:190.426667pt;}
.y76{bottom:191.066667pt;}
.y1dd{bottom:193.306667pt;}
.y120{bottom:194.920000pt;}
.y151{bottom:195.880000pt;}
.yf5{bottom:196.826667pt;}
.ybd{bottom:196.840000pt;}
.y21{bottom:200.666667pt;}
.y1a3{bottom:202.586667pt;}
.y3a{bottom:204.186667pt;}
.y75{bottom:208.666667pt;}
.y1dc{bottom:210.906667pt;}
.y177{bottom:212.986667pt;}
.yba{bottom:213.320000pt;}
.yf4{bottom:214.586667pt;}
.y150{bottom:214.600000pt;}
.y1a2{bottom:214.906667pt;}
.y20{bottom:216.666667pt;}
.y39{bottom:221.786667pt;}
.y74{bottom:226.266667pt;}
.y11f{bottom:228.666667pt;}
.y176{bottom:230.426667pt;}
.y1a1{bottom:231.226667pt;}
.y14f{bottom:231.720000pt;}
.yf3{bottom:232.186667pt;}
.y1f{bottom:232.506667pt;}
.y38{bottom:239.546667pt;}
.y1a0{bottom:243.386667pt;}
.y73{bottom:244.026667pt;}
.yb8{bottom:245.800000pt;}
.y11e{bottom:246.266667pt;}
.y1e{bottom:248.346667pt;}
.y14d{bottom:249.000000pt;}
.y175{bottom:249.626667pt;}
.yf2{bottom:249.786667pt;}
.y37{bottom:257.146667pt;}
.y19f{bottom:259.706667pt;}
.y72{bottom:261.626667pt;}
.yb6{bottom:262.280000pt;}
.y11d{bottom:263.706667pt;}
.y1db{bottom:263.866667pt;}
.y1d{bottom:264.186667pt;}
.y14b{bottom:266.120000pt;}
.yf1{bottom:267.386667pt;}
.y174{bottom:269.626667pt;}
.y19e{bottom:272.026667pt;}
.y36{bottom:274.746667pt;}
.y71{bottom:279.226667pt;}
.y1c{bottom:280.026667pt;}
.y1da{bottom:281.466667pt;}
.y11c{bottom:281.626667pt;}
.yb4{bottom:283.720000pt;}
.y147{bottom:284.680000pt;}
.yf0{bottom:284.986667pt;}
.y173{bottom:287.226667pt;}
.y19d{bottom:288.186667pt;}
.y35{bottom:292.346667pt;}
.y1b{bottom:295.866667pt;}
.y70{bottom:296.506667pt;}
.y1d9{bottom:299.066667pt;}
.y11b{bottom:299.226667pt;}
.y19c{bottom:300.506667pt;}
.yb0{bottom:301.160000pt;}
.yef{bottom:302.746667pt;}
.y172{bottom:304.826667pt;}
.y34{bottom:309.946667pt;}
.y19b{bottom:312.826667pt;}
.y6f{bottom:314.106667pt;}
.y1a{bottom:315.546667pt;}
.y11a{bottom:316.826667pt;}
.yee{bottom:320.346667pt;}
.y146{bottom:320.506667pt;}
.y171{bottom:322.426667pt;}
.y2f{bottom:326.746667pt;}
.y33{bottom:327.706667pt;}
.y19a{bottom:328.986667pt;}
.y6e{bottom:332.186667pt;}
.y119{bottom:334.426667pt;}
.y145{bottom:335.866667pt;}
.yed{bottom:337.946667pt;}
.y170{bottom:340.186667pt;}
.yaf{bottom:340.986667pt;}
.y199{bottom:341.306667pt;}
.y32{bottom:344.986667pt;}
.y6d{bottom:349.786667pt;}
.y118{bottom:351.866667pt;}
.y1d8{bottom:352.026667pt;}
.y144{bottom:352.986667pt;}
.y198{bottom:353.626667pt;}
.yec{bottom:355.586667pt;}
.yae{bottom:356.386667pt;}
.y16f{bottom:357.826667pt;}
.y31{bottom:363.586667pt;}
.y6c{bottom:367.426667pt;}
.y117{bottom:369.506667pt;}
.y1d7{bottom:369.666667pt;}
.y197{bottom:369.826667pt;}
.y143{bottom:370.946667pt;}
.yad{bottom:372.546667pt;}
.yeb{bottom:373.186667pt;}
.y16e{bottom:375.426667pt;}
.y19{bottom:376.866667pt;}
.y196{bottom:382.146667pt;}
.y6b{bottom:385.026667pt;}
.y1d6{bottom:387.266667pt;}
.y116{bottom:387.426667pt;}
.y142{bottom:388.546667pt;}
.yea{bottom:390.946667pt;}
.y16d{bottom:392.706667pt;}
.yac{bottom:393.986667pt;}
.y195{bottom:398.466667pt;}
.y6a{bottom:402.626667pt;}
.y115{bottom:405.026667pt;}
.y141{bottom:406.146667pt;}
.ye9{bottom:408.546667pt;}
.y16c{bottom:410.306667pt;}
.y194{bottom:410.626667pt;}
.yab{bottom:415.586667pt;}
.y69{bottom:420.386667pt;}
.y114{bottom:422.626667pt;}
.y193{bottom:422.946667pt;}
.y140{bottom:423.906667pt;}
.yaa{bottom:426.146667pt;}
.y16b{bottom:429.506667pt;}
.y68{bottom:437.986667pt;}
.y192{bottom:439.266667pt;}
.y1d5{bottom:440.226667pt;}
.y113{bottom:440.386667pt;}
.y13f{bottom:441.506667pt;}
.ya9{bottom:442.626667pt;}
.ye8{bottom:443.746667pt;}
.y16a{bottom:449.506667pt;}
.y191{bottom:451.426667pt;}
.y67{bottom:455.586667pt;}
.y1d4{bottom:457.826667pt;}
.y112{bottom:457.986667pt;}
.ya8{bottom:459.106667pt;}
.ye7{bottom:461.346667pt;}
.y169{bottom:467.106667pt;}
.y190{bottom:467.746667pt;}
.y66{bottom:473.186667pt;}
.y111{bottom:475.266667pt;}
.y1d3{bottom:475.426667pt;}
.ya7{bottom:475.746667pt;}
.y13e{bottom:476.706667pt;}
.ye6{bottom:479.106667pt;}
.y18f{bottom:480.066667pt;}
.y168{bottom:484.706667pt;}
.y65{bottom:490.786667pt;}
.y110{bottom:490.946667pt;}
.ya6{bottom:492.226667pt;}
.y1d2{bottom:493.186667pt;}
.y13d{bottom:494.306667pt;}
.y18e{bottom:496.226667pt;}
.ye5{bottom:496.706667pt;}
.y167{bottom:502.306667pt;}
.y10f{bottom:503.266667pt;}
.y64{bottom:508.546667pt;}
.ya4{bottom:508.706667pt;}
.y1d1{bottom:510.786667pt;}
.y13c{bottom:512.066667pt;}
.ye4{bottom:514.466667pt;}
.y10e{bottom:519.586667pt;}
.y166{bottom:520.066667pt;}
.y18d{bottom:520.866667pt;}
.ya1{bottom:525.346667pt;}
.y63{bottom:526.146667pt;}
.y1d0{bottom:528.386667pt;}
.y13b{bottom:529.666667pt;}
.ye3{bottom:532.226667pt;}
.y18c{bottom:537.026667pt;}
.y10d{bottom:537.346667pt;}
.y165{bottom:537.666667pt;}
.y62{bottom:543.426667pt;}
.y1cf{bottom:545.986667pt;}
.y13a{bottom:547.266667pt;}
.y18b{bottom:549.346667pt;}
.ye2{bottom:549.826667pt;}
.y10c{bottom:554.946667pt;}
.y164{bottom:555.266667pt;}
.ya0{bottom:557.666667pt;}
.y61{bottom:561.346667pt;}
.y139{bottom:564.866667pt;}
.y18a{bottom:565.666667pt;}
.ye1{bottom:567.586667pt;}
.y10b{bottom:572.546667pt;}
.y163{bottom:572.866667pt;}
.y9e{bottom:574.306667pt;}
.y1ce{bottom:577.213333pt;}
.y189{bottom:577.853333pt;}
.y60{bottom:578.973333pt;}
.y138{bottom:582.493333pt;}
.ye0{bottom:585.213333pt;}
.y1cd{bottom:589.373333pt;}
.y10a{bottom:590.173333pt;}
.y162{bottom:590.493333pt;}
.y9d{bottom:590.813333pt;}
.y5f{bottom:596.733333pt;}
.y137{bottom:600.253333pt;}
.y188{bottom:602.493333pt;}
.ydf{bottom:602.813333pt;}
.y1cc{bottom:605.693333pt;}
.y97{bottom:607.293333pt;}
.y109{bottom:607.773333pt;}
.y161{bottom:608.253333pt;}
.y5e{bottom:614.333333pt;}
.y136{bottom:617.853333pt;}
.y1cb{bottom:618.013333pt;}
.y187{bottom:618.653333pt;}
.yde{bottom:620.413333pt;}
.y108{bottom:625.533333pt;}
.y160{bottom:625.853333pt;}
.y186{bottom:630.973333pt;}
.y5d{bottom:631.933333pt;}
.y1ca{bottom:634.173333pt;}
.y135{bottom:635.453333pt;}
.ydd{bottom:638.013333pt;}
.y107{bottom:643.133333pt;}
.y15f{bottom:643.453333pt;}
.y185{bottom:646.013333pt;}
.y1c9{bottom:646.493333pt;}
.y5c{bottom:649.533333pt;}
.y134{bottom:653.053333pt;}
.ydc{bottom:655.773333pt;}
.y106{bottom:660.733333pt;}
.y96{bottom:661.053333pt;}
.y1c8{bottom:662.813333pt;}
.y184{bottom:663.293333pt;}
.y5b{bottom:666.813333pt;}
.y133{bottom:670.653333pt;}
.ydb{bottom:673.373333pt;}
.y1c7{bottom:674.973333pt;}
.y105{bottom:678.333333pt;}
.y95{bottom:678.653333pt;}
.y183{bottom:683.293333pt;}
.y5a{bottom:684.573333pt;}
.y1c6{bottom:687.293333pt;}
.y132{bottom:688.413333pt;}
.yda{bottom:690.973333pt;}
.y104{bottom:695.933333pt;}
.y94{bottom:696.093333pt;}
.y15e{bottom:696.413333pt;}
.y59{bottom:702.173333pt;}
.y1c5{bottom:703.613333pt;}
.y131{bottom:706.013333pt;}
.yd9{bottom:708.573333pt;}
.y18{bottom:708.733333pt;}
.y93{bottom:713.693333pt;}
.y15d{bottom:714.013333pt;}
.y1c4{bottom:715.773333pt;}
.y58{bottom:721.213333pt;}
.y182{bottom:723.293333pt;}
.y130{bottom:723.613333pt;}
.y17{bottom:725.533333pt;}
.yd8{bottom:726.173333pt;}
.y1c3{bottom:728.093333pt;}
.y103{bottom:731.293333pt;}
.y92{bottom:731.613333pt;}
.y16{bottom:739.613333pt;}
.y57{bottom:741.213333pt;}
.yd7{bottom:743.933333pt;}
.y1c2{bottom:744.253333pt;}
.y102{bottom:748.893333pt;}
.y91{bottom:749.213333pt;}
.y1c1{bottom:756.573333pt;}
.y15{bottom:758.333333pt;}
.y56{bottom:758.813333pt;}
.yd6{bottom:761.533333pt;}
.y90{bottom:766.493333pt;}
.y15c{bottom:766.813333pt;}
.y1c0{bottom:768.893333pt;}
.y14{bottom:770.813333pt;}
.y55{bottom:776.573333pt;}
.y13{bottom:778.493333pt;}
.yd5{bottom:778.813333pt;}
.y101{bottom:784.093333pt;}
.y8f{bottom:784.253333pt;}
.y15b{bottom:784.573333pt;}
.y1bf{bottom:785.053333pt;}
.y54{bottom:794.173333pt;}
.y12{bottom:795.293333pt;}
.y1be{bottom:797.413333pt;}
.yd4{bottom:798.693333pt;}
.y100{bottom:801.893333pt;}
.y8e{bottom:802.213333pt;}
.y11{bottom:807.653333pt;}
.y181{bottom:811.493333pt;}
.y53{bottom:811.813333pt;}
.y1bd{bottom:813.733333pt;}
.y10{bottom:815.173333pt;}
.yff{bottom:819.493333pt;}
.y8d{bottom:819.813333pt;}
.yd3{bottom:820.453333pt;}
.y1bc{bottom:825.893333pt;}
.yf{bottom:826.693333pt;}
.y180{bottom:829.093333pt;}
.y52{bottom:829.413333pt;}
.yd2{bottom:830.853333pt;}
.yfe{bottom:837.093333pt;}
.y8c{bottom:837.413333pt;}
.y1bb{bottom:842.213333pt;}
.ye{bottom:845.893333pt;}
.y51{bottom:847.013333pt;}
.yd1{bottom:847.333333pt;}
.y1ba{bottom:854.533333pt;}
.yfd{bottom:854.693333pt;}
.y8b{bottom:855.013333pt;}
.yd0{bottom:863.813333pt;}
.y17f{bottom:864.453333pt;}
.y50{bottom:864.773333pt;}
.yd{bottom:865.573333pt;}
.y1b9{bottom:866.693333pt;}
.yfc{bottom:872.613333pt;}
.y8a{bottom:872.773333pt;}
.ycf{bottom:880.453333pt;}
.y4f{bottom:882.373333pt;}
.y1b8{bottom:883.013333pt;}
.yc{bottom:885.253333pt;}
.y89{bottom:890.373333pt;}
.y1b7{bottom:895.333333pt;}
.yce{bottom:896.933333pt;}
.y4e{bottom:899.973333pt;}
.y88{bottom:907.973333pt;}
.y1b6{bottom:911.493333pt;}
.ycd{bottom:913.413333pt;}
.y17e{bottom:917.253333pt;}
.yb{bottom:917.573333pt;}
.y1b5{bottom:923.813333pt;}
.y87{bottom:925.573333pt;}
.ycb{bottom:930.053333pt;}
.y4d{bottom:935.173333pt;}
.y1b4{bottom:936.133333pt;}
.y86{bottom:943.173333pt;}
.ya{bottom:949.733333pt;}
.yca{bottom:951.013333pt;}
.y1b3{bottom:952.293333pt;}
.y4c{bottom:952.933333pt;}
.y85{bottom:960.933333pt;}
.y1b2{bottom:964.613333pt;}
.yc8{bottom:967.813333pt;}
.y4b{bottom:970.533333pt;}
.y1b1{bottom:976.933333pt;}
.y84{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y4a{bottom:988.133333pt;}
.y42{bottom:989.093333pt;}
.y1b0{bottom:993.093333pt;}
.y8{bottom:993.733333pt;}
.y83{bottom:996.133333pt;}
.y1af{bottom:1005.413333pt;}
.y49{bottom:1005.733333pt;}
.y82{bottom:1013.733333pt;}
.y1ae{bottom:1021.760000pt;}
.y48{bottom:1023.360000pt;}
.y7{bottom:1027.520000pt;}
.y81{bottom:1031.040000pt;}
.y15a{bottom:1031.360000pt;}
.y1ad{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y46{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y7f{bottom:1047.520000pt;}
.y45{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y7e{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h2c{height:13.746667pt;}
.h2f{height:13.758667pt;}
.h2e{height:13.792000pt;}
.h2d{height:13.906667pt;}
.h1d{height:15.826667pt;}
.h27{height:15.838667pt;}
.h1a{height:15.840000pt;}
.h1c{height:15.866667pt;}
.h26{height:15.872000pt;}
.h1f{height:15.986667pt;}
.h11{height:16.125000pt;}
.h28{height:16.146667pt;}
.h32{height:16.466667pt;}
.h22{height:16.626667pt;}
.h31{height:17.906667pt;}
.h25{height:19.186667pt;}
.h29{height:20.146667pt;}
.h23{height:20.786667pt;}
.h15{height:24.626667pt;}
.he{height:26.368125pt;}
.hd{height:27.090000pt;}
.h2b{height:27.666667pt;}
.h1e{height:31.666667pt;}
.h24{height:31.826667pt;}
.h2a{height:32.250000pt;}
.h21{height:35.826667pt;}
.h3{height:36.431250pt;}
.h16{height:38.153511pt;}
.hf{height:42.063437pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h33{height:44.919917pt;}
.h30{height:44.941250pt;}
.h2{height:47.109375pt;}
.h18{height:47.680000pt;}
.h8{height:48.375000pt;}
.h12{height:49.336419pt;}
.h14{height:52.134375pt;}
.h1b{height:52.526250pt;}
.h19{height:53.370000pt;}
.h9{height:53.535000pt;}
.h13{height:57.787500pt;}
.hc{height:59.150000pt;}
.hb{height:59.340000pt;}
.h17{height:62.812500pt;}
.h5{height:64.500000pt;}
.h20{height:75.465000pt;}
.ha{height:112.875000pt;}
.h10{height:326.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:50.386667pt;}
.w7{width:53.920000pt;}
.w9{width:57.746667pt;}
.w6{width:60.018667pt;}
.w8{width:60.032000pt;}
.wc{width:72.946667pt;}
.wa{width:77.938667pt;}
.wd{width:88.986667pt;}
.w13{width:89.946667pt;}
.w11{width:90.098667pt;}
.w17{width:90.258667pt;}
.w19{width:90.266667pt;}
.w3{width:90.426667pt;}
.w12{width:95.986667pt;}
.w10{width:96.032000pt;}
.w18{width:96.146667pt;}
.w16{width:96.352000pt;}
.wf{width:101.920000pt;}
.w15{width:102.240000pt;}
.w1d{width:119.386667pt;}
.w5{width:126.070667pt;}
.w1f{width:134.106667pt;}
.w1c{width:137.293333pt;}
.w20{width:140.493333pt;}
.w21{width:146.906667pt;}
.w1b{width:150.106667pt;}
.we{width:174.097333pt;}
.w14{width:174.417333pt;}
.w4{width:206.266667pt;}
.w1e{width:225.137333pt;}
.w1a{width:238.577333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x11{left:7.190667pt;}
.x17{left:8.480000pt;}
.x9{left:9.466667pt;}
.x14{left:11.186667pt;}
.x33{left:12.320000pt;}
.x13{left:13.586667pt;}
.x1f{left:15.040000pt;}
.x23{left:16.480000pt;}
.x19{left:17.760000pt;}
.x1b{left:18.866667pt;}
.x15{left:19.866667pt;}
.x26{left:22.080000pt;}
.x8{left:23.866667pt;}
.x24{left:24.986667pt;}
.x21{left:26.400000pt;}
.x3c{left:27.346667pt;}
.x1d{left:28.946667pt;}
.x3d{left:30.400000pt;}
.x2f{left:31.346667pt;}
.x27{left:33.280000pt;}
.x2c{left:34.866667pt;}
.x25{left:35.826667pt;}
.x7{left:37.786667pt;}
.x30{left:40.320000pt;}
.x28{left:41.466667pt;}
.x43{left:43.040000pt;}
.x39{left:44.506667pt;}
.x41{left:46.080000pt;}
.x3b{left:47.360000pt;}
.x40{left:49.120000pt;}
.x37{left:51.066667pt;}
.x6{left:52.186667pt;}
.x48{left:53.440000pt;}
.x3f{left:54.906667pt;}
.x46{left:56.480000pt;}
.x49{left:59.840000pt;}
.x3e{left:61.466667pt;}
.x47{left:62.880000pt;}
.x5{left:69.466667pt;}
.x35{left:70.441333pt;}
.x2{left:72.032000pt;}
.xc{left:96.032000pt;}
.x4a{left:140.666667pt;}
.x12{left:198.120000pt;}
.x29{left:246.146667pt;}
.x16{left:258.146667pt;}
.x42{left:298.146667pt;}
.x36{left:309.666667pt;}
.x18{left:312.066667pt;}
.xf{left:319.746667pt;}
.x2a{left:348.066667pt;}
.xe{left:352.386667pt;}
.x1a{left:372.106667pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x1c{left:429.866667pt;}
.x44{left:432.906667pt;}
.x2b{left:444.106667pt;}
.x31{left:445.066667pt;}
.x38{left:460.586667pt;}
.x34{left:469.213333pt;}
.x1e{left:507.813333pt;}
.xd{left:524.773333pt;}
.x2d{left:534.213333pt;}
.x32{left:535.333333pt;}
.x20{left:558.213333pt;}
.x45{left:574.053333pt;}
.x3a{left:598.533333pt;}
.x2e{left:630.213333pt;}
.x22{left:631.173333pt;}
.x4{left:641.733333pt;}
}




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