
    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_42d5e6c7efe943ee2b8715fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ff3a6a6225ac3600d0d7efec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_3d031b536944f89c56cea4e1.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_1f5c241c2086fd742899d6be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f71e5cbf1eec400d2cc1fe98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_b0fe5f30f04f5454b6c1d7f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_629be45d772e6672be4b1ec5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_40f7ad5a359877f2b06791d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.100200px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.069840px;}
.lsc{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.504000px;}
.lsf{letter-spacing:9.540000px;}
.lse{letter-spacing:16.506720px;}
.ls7{letter-spacing:19.821600px;}
.lsd{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._22{margin-left:-6.454080px;}
._18{margin-left:-3.911280px;}
._15{margin-left:-2.613360px;}
._1{margin-left:-1.260000px;}
._0{width:1.020000px;}
._11{width:2.797680px;}
._16{width:4.445040px;}
._17{width:5.896560px;}
._19{width:7.529760px;}
._65{width:8.601360px;}
._14{width:9.792960px;}
._6{width:10.800000px;}
._3d{width:12.053280px;}
._28{width:13.446000px;}
._1a{width:16.524960px;}
._38{width:18.038640px;}
._f{width:19.128000px;}
._25{width:20.740800px;}
._12{width:23.063280px;}
._13{width:24.206880px;}
._1d{width:25.696800px;}
._37{width:27.131040px;}
._1b{width:28.146960px;}
._2c{width:29.309280px;}
._51{width:30.354000px;}
._40{width:31.769280px;}
._2b{width:32.987520px;}
._21{width:34.242480px;}
._42{width:35.557200px;}
._2f{width:36.692640px;}
._3e{width:38.421600px;}
._30{width:39.501360px;}
._1e{width:40.696560px;}
._4a{width:43.086960px;}
._1c{width:45.238320px;}
._4f{width:49.421520px;}
._4d{width:51.094800px;}
._48{width:53.242080px;}
._20{width:54.799920px;}
._36{width:55.935360px;}
._3f{width:58.546080px;}
._33{width:59.640480px;}
._44{width:60.656400px;}
._39{width:61.791840px;}
._23{width:63.345600px;}
._2a{width:65.078640px;}
._47{width:67.469040px;}
._3b{width:69.500880px;}
._2d{width:70.755840px;}
._1f{width:72.181920px;}
._43{width:75.323280px;}
._7{width:77.004960px;}
._3c{width:79.540560px;}
._46{width:80.731680px;}
._53{width:82.106160px;}
._31{width:84.556320px;}
._35{width:86.771520px;}
._45{width:87.906960px;}
._2e{width:91.368960px;}
._24{width:92.448720px;}
._32{width:94.600080px;}
._29{width:95.970480px;}
._5d{width:102.428640px;}
._34{width:105.480000px;}
._27{width:107.269200px;}
._57{width:109.719360px;}
._5f{width:114.529200px;}
._59{width:116.620800px;}
._4c{width:123.045840px;}
._10{width:132.780000px;}
._66{width:135.117360px;}
._63{width:138.161040px;}
._5e{width:140.555520px;}
._26{width:145.216800px;}
._68{width:149.280480px;}
._50{width:150.714720px;}
._8{width:154.080000px;}
._54{width:155.854080px;}
._5c{width:158.838000px;}
._4b{width:160.037280px;}
._4e{width:162.846000px;}
._5a{width:175.750080px;}
._61{width:178.801920px;}
._49{width:186.510960px;}
._58{width:189.558720px;}
._c{width:195.120000px;}
._55{width:196.192080px;}
._e{width:199.584000px;}
._3a{width:212.446800px;}
._56{width:216.032400px;}
._5b{width:218.781360px;}
._41{width:222.601920px;}
._60{width:234.020160px;}
._52{width:252.067680px;}
._2{width:255.692640px;}
._62{width:271.489680px;}
._64{width:274.896000px;}
._67{width:354.854880px;}
._3{width:357.300000px;}
._4{width:388.414560px;}
._5{width:436.440000px;}
._9{width:604.544160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:7.200000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y198{bottom:2.340000px;}
.y79{bottom:2.520000px;}
.ya3{bottom:2.700000px;}
.yc9{bottom:3.240000px;}
.yf0{bottom:3.420000px;}
.y118{bottom:4.320000px;}
.y13e{bottom:4.680000px;}
.ycd{bottom:4.860000px;}
.y6e{bottom:5.040000px;}
.y193{bottom:5.220000px;}
.ye{bottom:5.760000px;}
.yc3{bottom:5.940000px;}
.y92{bottom:5.985000px;}
.yd9{bottom:6.120000px;}
.ya4{bottom:6.300000px;}
.yf8{bottom:6.660000px;}
.y153{bottom:6.840000px;}
.y7a{bottom:7.020000px;}
.y143{bottom:7.380000px;}
.yec{bottom:9.000000px;}
.y197{bottom:9.585000px;}
.y188{bottom:10.260000px;}
.y185{bottom:10.440000px;}
.y6b{bottom:10.620000px;}
.y105{bottom:11.520000px;}
.y6{bottom:12.420000px;}
.yb5{bottom:13.320000px;}
.y6d{bottom:13.680000px;}
.ya7{bottom:15.300000px;}
.y131{bottom:15.660000px;}
.y9f{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y8e{bottom:25.560000px;}
.y14d{bottom:25.590000px;}
.ye5{bottom:25.605000px;}
.ybc{bottom:25.740000px;}
.y9a{bottom:25.770000px;}
.y91{bottom:25.785000px;}
.ya0{bottom:31.140000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.y8d{bottom:45.360000px;}
.ye0{bottom:45.390000px;}
.ye4{bottom:45.405000px;}
.y97{bottom:45.540000px;}
.y99{bottom:45.570000px;}
.yc0{bottom:45.585000px;}
.yb{bottom:57.780000px;}
.y8c{bottom:65.160000px;}
.ye3{bottom:65.205000px;}
.y96{bottom:65.340000px;}
.yc5{bottom:65.370000px;}
.ybf{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.960000px;}
.ya{bottom:79.560000px;}
.ybb{bottom:85.140000px;}
.ydf{bottom:85.170000px;}
.ybe{bottom:85.185000px;}
.y3{bottom:96.330000px;}
.y149{bottom:98.460000px;}
.y9c{bottom:101.340000px;}
.y19b{bottom:101.880000px;}
.yc7{bottom:103.320000px;}
.yba{bottom:104.940000px;}
.y14c{bottom:104.970000px;}
.y14a{bottom:104.985000px;}
.y148{bottom:105.120000px;}
.y18d{bottom:105.150000px;}
.y11f{bottom:105.660000px;}
.y192{bottom:106.740000px;}
.y3a{bottom:108.360000px;}
.y106{bottom:108.900000px;}
.y169{bottom:109.440000px;}
.y173{bottom:109.620000px;}
.y135{bottom:111.240000px;}
.y1d9{bottom:113.220000px;}
.y12b{bottom:115.020000px;}
.y186{bottom:115.740000px;}
.y5e{bottom:117.360000px;}
.y15f{bottom:118.800000px;}
.y76{bottom:120.960000px;}
.y9b{bottom:121.140000px;}
.y1b0{bottom:121.680000px;}
.yde{bottom:122.580000px;}
.yf6{bottom:122.760000px;}
.yc6{bottom:123.120000px;}
.yd8{bottom:123.300000px;}
.y104{bottom:123.660000px;}
.y156{bottom:124.200000px;}
.yb3{bottom:124.380000px;}
.y164{bottom:124.770000px;}
.y161{bottom:124.785000px;}
.y162{bottom:124.920000px;}
.y11e{bottom:125.460000px;}
.y2{bottom:125.670000px;}
.y134{bottom:126.000000px;}
.y17c{bottom:127.080000px;}
.y39{bottom:128.160000px;}
.y168{bottom:129.240000px;}
.y172{bottom:129.420000px;}
.y10d{bottom:129.600000px;}
.y184{bottom:130.500000px;}
.y1d8{bottom:133.020000px;}
.y12a{bottom:135.000000px;}
.y8a{bottom:135.180000px;}
.y98{bottom:135.900000px;}
.y5d{bottom:137.160000px;}
.yc4{bottom:137.880000px;}
.y15e{bottom:138.780000px;}
.y75{bottom:140.760000px;}
.y1af{bottom:141.480000px;}
.yf5{bottom:142.740000px;}
.yd7{bottom:143.100000px;}
.y155{bottom:144.000000px;}
.yb2{bottom:144.360000px;}
.y11d{bottom:145.440000px;}
.y38{bottom:147.960000px;}
.y167{bottom:149.040000px;}
.y171{bottom:149.220000px;}
.y1d7{bottom:152.850000px;}
.y129{bottom:154.830000px;}
.y5c{bottom:156.990000px;}
.y15d{bottom:158.610000px;}
.y74{bottom:160.590000px;}
.y1ae{bottom:161.310000px;}
.yf4{bottom:162.570000px;}
.yd6{bottom:162.930000px;}
.y154{bottom:164.010000px;}
.yb1{bottom:164.190000px;}
.y11c{bottom:165.270000px;}
.y37{bottom:167.790000px;}
.y170{bottom:169.230000px;}
.y128{bottom:169.590000px;}
.y10c{bottom:170.130000px;}
.y1d6{bottom:174.990000px;}
.y5b{bottom:176.790000px;}
.y15c{bottom:178.410000px;}
.y152{bottom:178.770000px;}
.y73{bottom:180.390000px;}
.y1ad{bottom:181.110000px;}
.yf3{bottom:182.370000px;}
.yd5{bottom:182.730000px;}
.yb0{bottom:183.990000px;}
.y11b{bottom:185.070000px;}
.y191{bottom:186.870000px;}
.y36{bottom:187.590000px;}
.y16f{bottom:189.030000px;}
.y1d5{bottom:194.790000px;}
.y95{bottom:196.230000px;}
.y5a{bottom:196.590000px;}
.y15b{bottom:198.210000px;}
.y147{bottom:198.390000px;}
.y72{bottom:200.190000px;}
.yf2{bottom:202.170000px;}
.yd4{bottom:202.710000px;}
.yaf{bottom:203.790000px;}
.y11a{bottom:204.870000px;}
.y35{bottom:207.570000px;}
.y16e{bottom:208.830000px;}
.y10b{bottom:210.450000px;}
.y15a{bottom:212.970000px;}
.y1d4{bottom:214.590000px;}
.y59{bottom:216.570000px;}
.yc2{bottom:218.010000px;}
.y71{bottom:219.990000px;}
.yf1{bottom:221.970000px;}
.yd3{bottom:222.510000px;}
.yae{bottom:223.590000px;}
.y119{bottom:224.670000px;}
.y17b{bottom:227.010000px;}
.y1ac{bottom:227.190000px;}
.y34{bottom:227.370000px;}
.y16d{bottom:228.630000px;}
.y1d3{bottom:234.570000px;}
.y58{bottom:236.370000px;}
.yef{bottom:236.910000px;}
.y117{bottom:239.610000px;}
.y70{bottom:239.970000px;}
.yd2{bottom:242.310000px;}
.y16c{bottom:243.390000px;}
.yad{bottom:243.570000px;}
.y1ab{bottom:247.170000px;}
.y127{bottom:249.690000px;}
.y1d2{bottom:254.370000px;}
.y33{bottom:256.170000px;}
.y6f{bottom:259.770000px;}
.yd1{bottom:262.110000px;}
.yac{bottom:263.370000px;}
.y190{bottom:266.970000px;}
.y1d1{bottom:274.170000px;}
.y6c{bottom:274.530000px;}
.y32{bottom:275.970000px;}
.y94{bottom:276.330000px;}
.y10a{bottom:276.510000px;}
.yd0{bottom:281.910000px;}
.yab{bottom:283.170000px;}
.y166{bottom:283.710000px;}
.y1aa{bottom:286.770000px;}
.y109{bottom:291.270000px;}
.y1d0{bottom:293.970000px;}
.y31{bottom:295.770000px;}
.yc1{bottom:298.110000px;}
.ycf{bottom:301.890000px;}
.yaa{bottom:302.970000px;}
.y1a9{bottom:304.050000px;}
.y17a{bottom:307.110000px;}
.y1cf{bottom:313.770000px;}
.y30{bottom:315.750000px;}
.y146{bottom:318.270000px;}
.yce{bottom:321.690000px;}
.ydd{bottom:322.410000px;}
.ya9{bottom:322.770000px;}
.y126{bottom:329.790000px;}
.y1a8{bottom:332.850000px;}
.y1ce{bottom:333.750000px;}
.y2f{bottom:335.550000px;}
.ycc{bottom:336.450000px;}
.y93{bottom:336.630000px;}
.ya8{bottom:342.750000px;}
.y18f{bottom:347.070000px;}
.y1a7{bottom:352.650000px;}
.y1cd{bottom:353.550000px;}
.y103{bottom:354.630000px;}
.y2e{bottom:355.350000px;}
.y19a{bottom:355.890000px;}
.ya6{bottom:357.510000px;}
.ybd{bottom:358.410000px;}
.y1a6{bottom:372.450000px;}
.y1cc{bottom:373.350000px;}
.y2d{bottom:375.150000px;}
.y102{bottom:381.090000px;}
.y133{bottom:381.270000px;}
.y199{bottom:382.350000px;}
.y145{bottom:384.330000px;}
.y179{bottom:387.210000px;}
.y1a5{bottom:392.430000px;}
.y1cb{bottom:393.150000px;}
.y2c{bottom:394.950000px;}
.y90{bottom:396.750000px;}
.y196{bottom:397.110000px;}
.y101{bottom:400.935000px;}
.y165{bottom:403.455000px;}
.y144{bottom:404.175000px;}
.y132{bottom:407.775000px;}
.y125{bottom:409.935000px;}
.y1a4{bottom:412.275000px;}
.y1ca{bottom:412.995000px;}
.y2b{bottom:414.975000px;}
.y100{bottom:415.695000px;}
.y142{bottom:418.935000px;}
.ydc{bottom:422.355000px;}
.y130{bottom:422.535000px;}
.y18e{bottom:427.215000px;}
.y1a3{bottom:432.075000px;}
.y1c9{bottom:432.975000px;}
.y2a{bottom:434.775000px;}
.y8f{bottom:437.295000px;}
.y13d{bottom:440.175000px;}
.y183{bottom:447.735000px;}
.y1a2{bottom:451.875000px;}
.y1c8{bottom:452.775000px;}
.y29{bottom:454.575000px;}
.yff{bottom:456.195000px;}
.yb9{bottom:458.355000px;}
.y57{bottom:463.575000px;}
.y13c{bottom:466.635000px;}
.y1a1{bottom:471.675000px;}
.y1c7{bottom:472.575000px;}
.y6a{bottom:473.835000px;}
.y182{bottom:474.195000px;}
.y28{bottom:474.375000px;}
.y8b{bottom:477.795000px;}
.y151{bottom:481.395000px;}
.y56{bottom:483.375000px;}
.y13b{bottom:486.435000px;}
.y178{bottom:487.155000px;}
.ydb{bottom:488.415000px;}
.yee{bottom:488.595000px;}
.y181{bottom:488.955000px;}
.y124{bottom:490.035000px;}
.y1c6{bottom:492.375000px;}
.y27{bottom:494.175000px;}
.yfe{bottom:496.515000px;}
.y13a{bottom:501.195000px;}
.y55{bottom:503.175000px;}
.y69{bottom:505.155000px;}
.y150{bottom:507.675000px;}
.yda{bottom:508.215000px;}
.y1a0{bottom:508.755000px;}
.y1c5{bottom:512.175000px;}
.y26{bottom:514.155000px;}
.yed{bottom:515.055000px;}
.y54{bottom:523.155000px;}
.y68{bottom:524.955000px;}
.y19f{bottom:526.035000px;}
.y14f{bottom:527.655000px;}
.yeb{bottom:529.815000px;}
.y1c4{bottom:532.155000px;}
.y25{bottom:533.955000px;}
.yfd{bottom:537.015000px;}
.y159{bottom:540.435000px;}
.y19e{bottom:540.795000px;}
.y14e{bottom:542.415000px;}
.y53{bottom:542.955000px;}
.y163{bottom:543.135000px;}
.y67{bottom:544.755000px;}
.y18c{bottom:546.915000px;}
.y116{bottom:548.895000px;}
.y1c3{bottom:551.955000px;}
.y24{bottom:553.755000px;}
.y52{bottom:562.755000px;}
.y89{bottom:563.655000px;}
.y66{bottom:564.555000px;}
.y158{bottom:566.715000px;}
.y1c2{bottom:571.755000px;}
.y23{bottom:573.555000px;}
.y115{bottom:575.355000px;}
.yfc{bottom:577.335000px;}
.yb8{bottom:578.235000px;}
.y139{bottom:581.295000px;}
.y157{bottom:581.655000px;}
.y51{bottom:582.555000px;}
.y88{bottom:583.455000px;}
.y65{bottom:584.355000px;}
.y16b{bottom:586.515000px;}
.y9e{bottom:589.395000px;}
.y114{bottom:590.115000px;}
.y1c1{bottom:591.555000px;}
.y22{bottom:593.355000px;}
.y19d{bottom:601.095000px;}
.y50{bottom:602.355000px;}
.y87{bottom:603.255000px;}
.y64{bottom:604.335000px;}
.y108{bottom:604.515000px;}
.y177{bottom:606.855000px;}
.y16a{bottom:607.215000px;}
.y123{bottom:609.735000px;}
.y1c0{bottom:611.355000px;}
.y21{bottom:613.335000px;}
.yfb{bottom:617.835000px;}
.y107{bottom:619.455000px;}
.ycb{bottom:621.075000px;}
.y4f{bottom:622.335000px;}
.y86{bottom:623.055000px;}
.y63{bottom:624.135000px;}
.y1bf{bottom:631.335000px;}
.y20{bottom:633.135000px;}
.y4e{bottom:642.135000px;}
.y14b{bottom:642.315000px;}
.y85{bottom:643.035000px;}
.y62{bottom:643.935000px;}
.yca{bottom:647.535000px;}
.y141{bottom:649.905000px;}
.y1be{bottom:651.165000px;}
.y1f{bottom:652.965000px;}
.yfa{bottom:658.185000px;}
.yb7{bottom:658.365000px;}
.y138{bottom:661.425000px;}
.y4d{bottom:661.965000px;}
.yc8{bottom:662.325000px;}
.y84{bottom:662.865000px;}
.y61{bottom:663.765000px;}
.y195{bottom:666.645000px;}
.y18b{bottom:666.825000px;}
.ya5{bottom:668.445000px;}
.y1bd{bottom:670.965000px;}
.y1e{bottom:672.765000px;}
.y176{bottom:672.945000px;}
.y140{bottom:676.185000px;}
.y4c{bottom:681.765000px;}
.y83{bottom:682.665000px;}
.ya2{bottom:683.205000px;}
.y60{bottom:683.565000px;}
.y1bc{bottom:690.765000px;}
.y13f{bottom:691.125000px;}
.y1d{bottom:692.565000px;}
.y175{bottom:692.745000px;}
.y194{bottom:692.925000px;}
.y4b{bottom:701.565000px;}
.y82{bottom:702.465000px;}
.y174{bottom:707.685000px;}
.y122{bottom:709.665000px;}
.y1bb{bottom:710.565000px;}
.y1c{bottom:712.545000px;}
.y12f{bottom:720.645000px;}
.y4a{bottom:721.545000px;}
.y137{bottom:721.725000px;}
.y81{bottom:722.265000px;}
.yb6{bottom:724.245000px;}
.y1ba{bottom:730.545000px;}
.y1b{bottom:732.345000px;}
.y18a{bottom:732.885000px;}
.yb4{bottom:739.185000px;}
.yea{bottom:740.805000px;}
.y49{bottom:741.345000px;}
.y19c{bottom:741.525000px;}
.y80{bottom:742.245000px;}
.yf9{bottom:744.045000px;}
.y12e{bottom:747.105000px;}
.y1b9{bottom:750.345000px;}
.y1a{bottom:752.145000px;}
.y189{bottom:752.685000px;}
.yf7{bottom:758.985000px;}
.y48{bottom:761.145000px;}
.y12d{bottom:761.865000px;}
.y7f{bottom:762.045000px;}
.ye9{bottom:767.085000px;}
.y187{bottom:767.445000px;}
.y1b8{bottom:770.145000px;}
.y19{bottom:771.945000px;}
.y121{bottom:775.725000px;}
.y47{bottom:780.945000px;}
.y7e{bottom:781.845000px;}
.ye8{bottom:787.065000px;}
.y1b7{bottom:789.945000px;}
.y120{bottom:790.485000px;}
.y18{bottom:791.745000px;}
.y46{bottom:800.745000px;}
.y7d{bottom:801.645000px;}
.y136{bottom:801.825000px;}
.ye7{bottom:806.865000px;}
.y1b6{bottom:809.745000px;}
.y17{bottom:811.725000px;}
.y9d{bottom:813.165000px;}
.y113{bottom:819.285000px;}
.y45{bottom:820.725000px;}
.y7c{bottom:821.445000px;}
.ye6{bottom:821.625000px;}
.y160{bottom:822.345000px;}
.y1b5{bottom:829.725000px;}
.y16{bottom:831.525000px;}
.y44{bottom:840.525000px;}
.y7b{bottom:841.245000px;}
.y112{bottom:845.745000px;}
.y1b4{bottom:849.525000px;}
.y15{bottom:851.325000px;}
.y78{bottom:856.185000px;}
.y43{bottom:860.325000px;}
.y180{bottom:861.225000px;}
.y111{bottom:865.545000px;}
.y1b3{bottom:869.325000px;}
.y14{bottom:876.345000px;}
.y42{bottom:880.125000px;}
.y110{bottom:880.305000px;}
.ye2{bottom:881.925000px;}
.y17f{bottom:887.685000px;}
.y1b2{bottom:889.125000px;}
.y13{bottom:891.465000px;}
.y41{bottom:899.970000px;}
.y17e{bottom:907.530000px;}
.y1b1{bottom:908.970000px;}
.y12{bottom:913.470000px;}
.y40{bottom:919.950000px;}
.y10f{bottom:920.850000px;}
.y17d{bottom:922.290000px;}
.y5f{bottom:928.950000px;}
.y11{bottom:938.310000px;}
.y3f{bottom:948.750000px;}
.y10e{bottom:961.170000px;}
.ye1{bottom:962.070000px;}
.y3e{bottom:968.550000px;}
.y10{bottom:969.990000px;}
.y12c{bottom:981.870000px;}
.y3d{bottom:988.350000px;}
.ya1{bottom:1001.670000px;}
.yf{bottom:1001.850000px;}
.y3c{bottom:1008.150000px;}
.y77{bottom:1021.470000px;}
.y3b{bottom:1028.130000px;}
.y9{bottom:1046.670000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h7{height:2.581875px;}
.h12{height:19.800000px;}
.h1d{height:19.836000px;}
.h31{height:19.980000px;}
.h36{height:20.016000px;}
.hb{height:21.240000px;}
.h10{height:24.660000px;}
.h8{height:33.480000px;}
.he{height:34.855313px;}
.h16{height:39.600000px;}
.h2c{height:39.636000px;}
.h2d{height:39.780000px;}
.h17{height:39.816000px;}
.hf{height:42.164648px;}
.h4{height:46.736719px;}
.h27{height:48.496641px;}
.hd{height:53.224453px;}
.h5{height:53.573906px;}
.ha{height:59.383125px;}
.h18{height:59.400000px;}
.h23{height:59.580000px;}
.h1a{height:59.616000px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h15{height:79.200000px;}
.h20{height:79.236000px;}
.h19{height:79.380000px;}
.h24{height:79.416000px;}
.h28{height:99.180000px;}
.h22{height:99.216000px;}
.h6{height:112.536000px;}
.h21{height:118.980000px;}
.h3b{height:119.016000px;}
.h3a{height:119.160000px;}
.h47{height:119.196000px;}
.h3f{height:138.816000px;}
.h40{height:138.960000px;}
.h2{height:146.736000px;}
.h13{height:164.550000px;}
.h11{height:198.570000px;}
.h29{height:210.270000px;}
.h34{height:219.270000px;}
.h1b{height:222.870000px;}
.h32{height:228.450000px;}
.h2e{height:230.250000px;}
.h2a{height:250.950000px;}
.h46{height:253.290000px;}
.h37{height:254.550000px;}
.h2b{height:261.750000px;}
.h49{height:268.635000px;}
.h1f{height:281.550000px;}
.h1e{height:283.890000px;}
.h30{height:286.230000px;}
.h48{height:293.250000px;}
.h35{height:297.390000px;}
.h3c{height:301.890000px;}
.h33{height:308.550000px;}
.h43{height:313.050000px;}
.h45{height:316.515000px;}
.h1c{height:317.730000px;}
.h3e{height:326.730000px;}
.h39{height:329.610000px;}
.h38{height:331.095000px;}
.h25{height:338.610000px;}
.h42{height:342.390000px;}
.h44{height:371.550000px;}
.h41{height:373.935000px;}
.h2f{height:401.295000px;}
.h14{height:422.715000px;}
.h3d{height:439.095000px;}
.h26{height:497.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w2a{width:51.300000px;}
.we{width:73.656000px;}
.w2d{width:82.476000px;}
.w35{width:82.620000px;}
.w3e{width:86.580000px;}
.wb{width:91.440000px;}
.w22{width:93.780000px;}
.w38{width:97.956000px;}
.w2b{width:98.640000px;}
.w40{width:99.756000px;}
.wd{width:100.440000px;}
.w23{width:100.836000px;}
.w67{width:101.340000px;}
.w19{width:101.880000px;}
.w1a{width:101.916000px;}
.w3f{width:104.256000px;}
.w1b{width:104.436000px;}
.w1c{width:104.580000px;}
.w36{width:105.876000px;}
.wf{width:106.380000px;}
.w24{width:108.720000px;}
.w63{width:109.116000px;}
.w66{width:110.016000px;}
.w25{width:110.520000px;}
.w64{width:110.916000px;}
.w65{width:111.420000px;}
.w51{width:111.780000px;}
.w45{width:111.816000px;}
.w46{width:111.960000px;}
.w47{width:111.996000px;}
.w58{width:112.140000px;}
.w52{width:112.176000px;}
.w2e{width:118.800000px;}
.w2c{width:122.976000px;}
.w37{width:124.020000px;}
.w4d{width:126.540000px;}
.w41{width:130.896000px;}
.w39{width:131.076000px;}
.w59{width:133.380000px;}
.w3{width:133.416000px;}
.w53{width:133.740000px;}
.w5d{width:147.780000px;}
.w42{width:151.380000px;}
.w1d{width:156.960000px;}
.wc{width:156.990000px;}
.w3a{width:166.140000px;}
.w10{width:189.210000px;}
.w48{width:190.290000px;}
.w68{width:196.815000px;}
.w2f{width:233.130000px;}
.w11{width:319.350000px;}
.w62{width:324.075000px;}
.w3d{width:327.630000px;}
.w8{width:328.170000px;}
.w50{width:333.930000px;}
.w44{width:335.010000px;}
.w57{width:335.370000px;}
.w29{width:335.730000px;}
.w18{width:336.810000px;}
.w13{width:337.350000px;}
.w27{width:337.530000px;}
.w5a{width:338.070000px;}
.w17{width:338.115000px;}
.w28{width:339.195000px;}
.w34{width:339.510000px;}
.w20{width:339.690000px;}
.w6{width:340.230000px;}
.w30{width:341.715000px;}
.w33{width:341.895000px;}
.w21{width:342.075000px;}
.w5e{width:342.615000px;}
.w7{width:344.055000px;}
.w43{width:344.955000px;}
.w31{width:346.530000px;}
.w9{width:346.755000px;}
.w60{width:346.890000px;}
.w3c{width:347.115000px;}
.w4c{width:348.330000px;}
.w16{width:348.510000px;}
.w32{width:349.455000px;}
.w26{width:349.635000px;}
.w56{width:350.715000px;}
.w15{width:350.895000px;}
.w4e{width:351.255000px;}
.w4a{width:351.435000px;}
.w3b{width:351.615000px;}
.w1f{width:353.010000px;}
.w1e{width:353.055000px;}
.w4b{width:353.595000px;}
.w14{width:353.775000px;}
.w49{width:355.575000px;}
.w5f{width:357.555000px;}
.w55{width:358.275000px;}
.w5b{width:359.895000px;}
.w5c{width:362.595000px;}
.w54{width:364.215000px;}
.w4f{width:369.075000px;}
.w12{width:376.815000px;}
.w61{width:398.055000px;}
.w2{width:662.550000px;}
.wa{width:784.440000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:48.600000px;}
.x5{left:53.999987px;}
.xd{left:59.831987px;}
.x4c{left:69.660000px;}
.x6b{left:74.880000px;}
.x7{left:80.639987px;}
.x8{left:85.715987px;}
.x37{left:90.936000px;}
.x2e{left:93.096000px;}
.x54{left:95.076000px;}
.x23{left:96.516000px;}
.x1b{left:98.136000px;}
.x1f{left:100.476000px;}
.x55{left:101.556000px;}
.x34{left:102.636000px;}
.xe{left:104.076000px;}
.x2f{left:105.156000px;}
.x3c{left:106.596000px;}
.x12{left:108.756000px;}
.x4{left:118.290000px;}
.x38{left:142.956000px;}
.x3f{left:174.270000px;}
.x16{left:177.330000px;}
.x4d{left:182.370000px;}
.x46{left:183.450000px;}
.x6c{left:184.710000px;}
.x30{left:203.430000px;}
.xc{left:205.409987px;}
.x27{left:211.350000px;}
.x56{left:214.230000px;}
.x39{left:242.310000px;}
.x40{left:280.875000px;}
.x47{left:288.435000px;}
.x3e{left:290.025000px;}
.x4e{left:294.915000px;}
.x6d{left:296.355000px;}
.x53{left:302.265000px;}
.x31{left:305.175000px;}
.x5a{left:306.939000px;}
.x1d{left:311.619000px;}
.x28{left:313.995000px;}
.x65{left:316.155000px;}
.x14{left:318.279000px;}
.x2d{left:320.805000px;}
.x5d{left:323.175000px;}
.x21{left:325.479000px;}
.x36{left:327.285000px;}
.x26{left:330.339000px;}
.x10{left:332.499000px;}
.x3d{left:333.939000px;}
.x17{left:335.055000px;}
.x11{left:336.315000px;}
.x15{left:338.835000px;}
.x25{left:340.785000px;}
.xb{left:342.074987px;}
.x44{left:343.839000px;}
.x22{left:346.215000px;}
.x52{left:347.799000px;}
.x61{left:350.505000px;}
.x62{left:351.975000px;}
.x64{left:354.849000px;}
.x60{left:356.439000px;}
.x5c{left:361.329000px;}
.x9{left:366.194987px;}
.x1e{left:368.895000px;}
.x6a{left:390.309000px;}
.x41{left:405.615000px;}
.x4f{left:407.775000px;}
.x48{left:413.175000px;}
.x32{left:414.615000px;}
.x29{left:416.775000px;}
.x1c{left:418.215000px;}
.x66{left:429.015000px;}
.x18{left:436.215000px;}
.x13{left:437.655000px;}
.x20{left:438.735000px;}
.x59{left:439.995000px;}
.xf{left:445.035000px;}
.xa{left:446.504987px;}
.x24{left:448.125000px;}
.x3a{left:449.385000px;}
.x4b{left:451.905000px;}
.x35{left:452.985000px;}
.x2c{left:454.785000px;}
.x45{left:456.765000px;}
.x63{left:459.465000px;}
.x5b{left:464.505000px;}
.x69{left:483.945000px;}
.x42{left:504.285000px;}
.x19{left:510.765000px;}
.x49{left:513.825000px;}
.x33{left:516.165000px;}
.x6e{left:519.225000px;}
.x50{left:520.485000px;}
.x2a{left:522.105000px;}
.x67{left:541.725000px;}
.x5e{left:548.745000px;}
.x57{left:552.345000px;}
.x3b{left:569.085000px;}
.x1a{left:617.865000px;}
.x6f{left:621.465000px;}
.x2b{left:627.450000px;}
.x51{left:633.210000px;}
.x43{left:636.090000px;}
.x4a{left:645.450000px;}
.x68{left:654.450000px;}
.x5f{left:661.470000px;}
.x58{left:665.070000px;}
.x3{left:711.150000px;}
.x6{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.089067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.062080pt;}
.lsc{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.448000pt;}
.lsf{letter-spacing:8.480000pt;}
.lse{letter-spacing:14.672640pt;}
.ls7{letter-spacing:17.619200pt;}
.lsd{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._22{margin-left:-5.736960pt;}
._18{margin-left:-3.476693pt;}
._15{margin-left:-2.322987pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.906667pt;}
._11{width:2.486827pt;}
._16{width:3.951147pt;}
._17{width:5.241387pt;}
._19{width:6.693120pt;}
._65{width:7.645653pt;}
._14{width:8.704853pt;}
._6{width:9.600000pt;}
._3d{width:10.714027pt;}
._28{width:11.952000pt;}
._1a{width:14.688853pt;}
._38{width:16.034347pt;}
._f{width:17.002667pt;}
._25{width:18.436267pt;}
._12{width:20.500693pt;}
._13{width:21.517227pt;}
._1d{width:22.841600pt;}
._37{width:24.116480pt;}
._1b{width:25.019520pt;}
._2c{width:26.052693pt;}
._51{width:26.981333pt;}
._40{width:28.239360pt;}
._2b{width:29.322240pt;}
._21{width:30.437760pt;}
._42{width:31.606400pt;}
._2f{width:32.615680pt;}
._3e{width:34.152533pt;}
._30{width:35.112320pt;}
._1e{width:36.174720pt;}
._4a{width:38.299520pt;}
._1c{width:40.211840pt;}
._4f{width:43.930240pt;}
._4d{width:45.417600pt;}
._48{width:47.326293pt;}
._20{width:48.711040pt;}
._36{width:49.720320pt;}
._3f{width:52.040960pt;}
._33{width:53.013760pt;}
._44{width:53.916800pt;}
._39{width:54.926080pt;}
._23{width:56.307200pt;}
._2a{width:57.847680pt;}
._47{width:59.972480pt;}
._3b{width:61.778560pt;}
._2d{width:62.894080pt;}
._1f{width:64.161707pt;}
._43{width:66.954027pt;}
._7{width:68.448853pt;}
._3c{width:70.702720pt;}
._46{width:71.761493pt;}
._53{width:72.983253pt;}
._31{width:75.161173pt;}
._35{width:77.130240pt;}
._45{width:78.139520pt;}
._2e{width:81.216853pt;}
._24{width:82.176640pt;}
._32{width:84.088960pt;}
._29{width:85.307093pt;}
._5d{width:91.047680pt;}
._34{width:93.760000pt;}
._27{width:95.350400pt;}
._57{width:97.528320pt;}
._5f{width:101.803733pt;}
._59{width:103.662933pt;}
._4c{width:109.374080pt;}
._10{width:118.026667pt;}
._66{width:120.104320pt;}
._63{width:122.809813pt;}
._5e{width:124.938240pt;}
._26{width:129.081600pt;}
._68{width:132.693760pt;}
._50{width:133.968640pt;}
._8{width:136.960000pt;}
._54{width:138.536960pt;}
._5c{width:141.189333pt;}
._4b{width:142.255360pt;}
._4e{width:144.752000pt;}
._5a{width:156.222293pt;}
._61{width:158.935040pt;}
._49{width:165.787520pt;}
._58{width:168.496640pt;}
._c{width:173.440000pt;}
._55{width:174.392960pt;}
._e{width:177.408000pt;}
._3a{width:188.841600pt;}
._56{width:192.028800pt;}
._5b{width:194.472320pt;}
._41{width:197.868373pt;}
._60{width:208.017920pt;}
._52{width:224.060160pt;}
._2{width:227.282347pt;}
._62{width:241.324160pt;}
._64{width:244.352000pt;}
._67{width:315.426560pt;}
._3{width:317.600000pt;}
._4{width:345.257387pt;}
._5{width:387.946667pt;}
._9{width:537.372587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:6.400000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:2.080000pt;}
.y79{bottom:2.240000pt;}
.ya3{bottom:2.400000pt;}
.yc9{bottom:2.880000pt;}
.yf0{bottom:3.040000pt;}
.y118{bottom:3.840000pt;}
.y13e{bottom:4.160000pt;}
.ycd{bottom:4.320000pt;}
.y6e{bottom:4.480000pt;}
.y193{bottom:4.640000pt;}
.ye{bottom:5.120000pt;}
.yc3{bottom:5.280000pt;}
.y92{bottom:5.320000pt;}
.yd9{bottom:5.440000pt;}
.ya4{bottom:5.600000pt;}
.yf8{bottom:5.920000pt;}
.y153{bottom:6.080000pt;}
.y7a{bottom:6.240000pt;}
.y143{bottom:6.560000pt;}
.yec{bottom:8.000000pt;}
.y197{bottom:8.520000pt;}
.y188{bottom:9.120000pt;}
.y185{bottom:9.280000pt;}
.y6b{bottom:9.440000pt;}
.y105{bottom:10.240000pt;}
.y6{bottom:11.040000pt;}
.yb5{bottom:11.840000pt;}
.y6d{bottom:12.160000pt;}
.ya7{bottom:13.600000pt;}
.y131{bottom:13.920000pt;}
.y9f{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y8e{bottom:22.720000pt;}
.y14d{bottom:22.746667pt;}
.ye5{bottom:22.760000pt;}
.ybc{bottom:22.880000pt;}
.y9a{bottom:22.906667pt;}
.y91{bottom:22.920000pt;}
.ya0{bottom:27.680000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.y8d{bottom:40.320000pt;}
.ye0{bottom:40.346667pt;}
.ye4{bottom:40.360000pt;}
.y97{bottom:40.480000pt;}
.y99{bottom:40.506667pt;}
.yc0{bottom:40.520000pt;}
.yb{bottom:51.360000pt;}
.y8c{bottom:57.920000pt;}
.ye3{bottom:57.960000pt;}
.y96{bottom:58.080000pt;}
.yc5{bottom:58.106667pt;}
.ybf{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.520000pt;}
.ya{bottom:70.720000pt;}
.ybb{bottom:75.680000pt;}
.ydf{bottom:75.706667pt;}
.ybe{bottom:75.720000pt;}
.y3{bottom:85.626667pt;}
.y149{bottom:87.520000pt;}
.y9c{bottom:90.080000pt;}
.y19b{bottom:90.560000pt;}
.yc7{bottom:91.840000pt;}
.yba{bottom:93.280000pt;}
.y14c{bottom:93.306667pt;}
.y14a{bottom:93.320000pt;}
.y148{bottom:93.440000pt;}
.y18d{bottom:93.466667pt;}
.y11f{bottom:93.920000pt;}
.y192{bottom:94.880000pt;}
.y3a{bottom:96.320000pt;}
.y106{bottom:96.800000pt;}
.y169{bottom:97.280000pt;}
.y173{bottom:97.440000pt;}
.y135{bottom:98.880000pt;}
.y1d9{bottom:100.640000pt;}
.y12b{bottom:102.240000pt;}
.y186{bottom:102.880000pt;}
.y5e{bottom:104.320000pt;}
.y15f{bottom:105.600000pt;}
.y76{bottom:107.520000pt;}
.y9b{bottom:107.680000pt;}
.y1b0{bottom:108.160000pt;}
.yde{bottom:108.960000pt;}
.yf6{bottom:109.120000pt;}
.yc6{bottom:109.440000pt;}
.yd8{bottom:109.600000pt;}
.y104{bottom:109.920000pt;}
.y156{bottom:110.400000pt;}
.yb3{bottom:110.560000pt;}
.y164{bottom:110.906667pt;}
.y161{bottom:110.920000pt;}
.y162{bottom:111.040000pt;}
.y11e{bottom:111.520000pt;}
.y2{bottom:111.706667pt;}
.y134{bottom:112.000000pt;}
.y17c{bottom:112.960000pt;}
.y39{bottom:113.920000pt;}
.y168{bottom:114.880000pt;}
.y172{bottom:115.040000pt;}
.y10d{bottom:115.200000pt;}
.y184{bottom:116.000000pt;}
.y1d8{bottom:118.240000pt;}
.y12a{bottom:120.000000pt;}
.y8a{bottom:120.160000pt;}
.y98{bottom:120.800000pt;}
.y5d{bottom:121.920000pt;}
.yc4{bottom:122.560000pt;}
.y15e{bottom:123.360000pt;}
.y75{bottom:125.120000pt;}
.y1af{bottom:125.760000pt;}
.yf5{bottom:126.880000pt;}
.yd7{bottom:127.200000pt;}
.y155{bottom:128.000000pt;}
.yb2{bottom:128.320000pt;}
.y11d{bottom:129.280000pt;}
.y38{bottom:131.520000pt;}
.y167{bottom:132.480000pt;}
.y171{bottom:132.640000pt;}
.y1d7{bottom:135.866667pt;}
.y129{bottom:137.626667pt;}
.y5c{bottom:139.546667pt;}
.y15d{bottom:140.986667pt;}
.y74{bottom:142.746667pt;}
.y1ae{bottom:143.386667pt;}
.yf4{bottom:144.506667pt;}
.yd6{bottom:144.826667pt;}
.y154{bottom:145.786667pt;}
.yb1{bottom:145.946667pt;}
.y11c{bottom:146.906667pt;}
.y37{bottom:149.146667pt;}
.y170{bottom:150.426667pt;}
.y128{bottom:150.746667pt;}
.y10c{bottom:151.226667pt;}
.y1d6{bottom:155.546667pt;}
.y5b{bottom:157.146667pt;}
.y15c{bottom:158.586667pt;}
.y152{bottom:158.906667pt;}
.y73{bottom:160.346667pt;}
.y1ad{bottom:160.986667pt;}
.yf3{bottom:162.106667pt;}
.yd5{bottom:162.426667pt;}
.yb0{bottom:163.546667pt;}
.y11b{bottom:164.506667pt;}
.y191{bottom:166.106667pt;}
.y36{bottom:166.746667pt;}
.y16f{bottom:168.026667pt;}
.y1d5{bottom:173.146667pt;}
.y95{bottom:174.426667pt;}
.y5a{bottom:174.746667pt;}
.y15b{bottom:176.186667pt;}
.y147{bottom:176.346667pt;}
.y72{bottom:177.946667pt;}
.yf2{bottom:179.706667pt;}
.yd4{bottom:180.186667pt;}
.yaf{bottom:181.146667pt;}
.y11a{bottom:182.106667pt;}
.y35{bottom:184.506667pt;}
.y16e{bottom:185.626667pt;}
.y10b{bottom:187.066667pt;}
.y15a{bottom:189.306667pt;}
.y1d4{bottom:190.746667pt;}
.y59{bottom:192.506667pt;}
.yc2{bottom:193.786667pt;}
.y71{bottom:195.546667pt;}
.yf1{bottom:197.306667pt;}
.yd3{bottom:197.786667pt;}
.yae{bottom:198.746667pt;}
.y119{bottom:199.706667pt;}
.y17b{bottom:201.786667pt;}
.y1ac{bottom:201.946667pt;}
.y34{bottom:202.106667pt;}
.y16d{bottom:203.226667pt;}
.y1d3{bottom:208.506667pt;}
.y58{bottom:210.106667pt;}
.yef{bottom:210.586667pt;}
.y117{bottom:212.986667pt;}
.y70{bottom:213.306667pt;}
.yd2{bottom:215.386667pt;}
.y16c{bottom:216.346667pt;}
.yad{bottom:216.506667pt;}
.y1ab{bottom:219.706667pt;}
.y127{bottom:221.946667pt;}
.y1d2{bottom:226.106667pt;}
.y33{bottom:227.706667pt;}
.y6f{bottom:230.906667pt;}
.yd1{bottom:232.986667pt;}
.yac{bottom:234.106667pt;}
.y190{bottom:237.306667pt;}
.y1d1{bottom:243.706667pt;}
.y6c{bottom:244.026667pt;}
.y32{bottom:245.306667pt;}
.y94{bottom:245.626667pt;}
.y10a{bottom:245.786667pt;}
.yd0{bottom:250.586667pt;}
.yab{bottom:251.706667pt;}
.y166{bottom:252.186667pt;}
.y1aa{bottom:254.906667pt;}
.y109{bottom:258.906667pt;}
.y1d0{bottom:261.306667pt;}
.y31{bottom:262.906667pt;}
.yc1{bottom:264.986667pt;}
.ycf{bottom:268.346667pt;}
.yaa{bottom:269.306667pt;}
.y1a9{bottom:270.266667pt;}
.y17a{bottom:272.986667pt;}
.y1cf{bottom:278.906667pt;}
.y30{bottom:280.666667pt;}
.y146{bottom:282.906667pt;}
.yce{bottom:285.946667pt;}
.ydd{bottom:286.586667pt;}
.ya9{bottom:286.906667pt;}
.y126{bottom:293.146667pt;}
.y1a8{bottom:295.866667pt;}
.y1ce{bottom:296.666667pt;}
.y2f{bottom:298.266667pt;}
.ycc{bottom:299.066667pt;}
.y93{bottom:299.226667pt;}
.ya8{bottom:304.666667pt;}
.y18f{bottom:308.506667pt;}
.y1a7{bottom:313.466667pt;}
.y1cd{bottom:314.266667pt;}
.y103{bottom:315.226667pt;}
.y2e{bottom:315.866667pt;}
.y19a{bottom:316.346667pt;}
.ya6{bottom:317.786667pt;}
.ybd{bottom:318.586667pt;}
.y1a6{bottom:331.066667pt;}
.y1cc{bottom:331.866667pt;}
.y2d{bottom:333.466667pt;}
.y102{bottom:338.746667pt;}
.y133{bottom:338.906667pt;}
.y199{bottom:339.866667pt;}
.y145{bottom:341.626667pt;}
.y179{bottom:344.186667pt;}
.y1a5{bottom:348.826667pt;}
.y1cb{bottom:349.466667pt;}
.y2c{bottom:351.066667pt;}
.y90{bottom:352.666667pt;}
.y196{bottom:352.986667pt;}
.y101{bottom:356.386667pt;}
.y165{bottom:358.626667pt;}
.y144{bottom:359.266667pt;}
.y132{bottom:362.466667pt;}
.y125{bottom:364.386667pt;}
.y1a4{bottom:366.466667pt;}
.y1ca{bottom:367.106667pt;}
.y2b{bottom:368.866667pt;}
.y100{bottom:369.506667pt;}
.y142{bottom:372.386667pt;}
.ydc{bottom:375.426667pt;}
.y130{bottom:375.586667pt;}
.y18e{bottom:379.746667pt;}
.y1a3{bottom:384.066667pt;}
.y1c9{bottom:384.866667pt;}
.y2a{bottom:386.466667pt;}
.y8f{bottom:388.706667pt;}
.y13d{bottom:391.266667pt;}
.y183{bottom:397.986667pt;}
.y1a2{bottom:401.666667pt;}
.y1c8{bottom:402.466667pt;}
.y29{bottom:404.066667pt;}
.yff{bottom:405.506667pt;}
.yb9{bottom:407.426667pt;}
.y57{bottom:412.066667pt;}
.y13c{bottom:414.786667pt;}
.y1a1{bottom:419.266667pt;}
.y1c7{bottom:420.066667pt;}
.y6a{bottom:421.186667pt;}
.y182{bottom:421.506667pt;}
.y28{bottom:421.666667pt;}
.y8b{bottom:424.706667pt;}
.y151{bottom:427.906667pt;}
.y56{bottom:429.666667pt;}
.y13b{bottom:432.386667pt;}
.y178{bottom:433.026667pt;}
.ydb{bottom:434.146667pt;}
.yee{bottom:434.306667pt;}
.y181{bottom:434.626667pt;}
.y124{bottom:435.586667pt;}
.y1c6{bottom:437.666667pt;}
.y27{bottom:439.266667pt;}
.yfe{bottom:441.346667pt;}
.y13a{bottom:445.506667pt;}
.y55{bottom:447.266667pt;}
.y69{bottom:449.026667pt;}
.y150{bottom:451.266667pt;}
.yda{bottom:451.746667pt;}
.y1a0{bottom:452.226667pt;}
.y1c5{bottom:455.266667pt;}
.y26{bottom:457.026667pt;}
.yed{bottom:457.826667pt;}
.y54{bottom:465.026667pt;}
.y68{bottom:466.626667pt;}
.y19f{bottom:467.586667pt;}
.y14f{bottom:469.026667pt;}
.yeb{bottom:470.946667pt;}
.y1c4{bottom:473.026667pt;}
.y25{bottom:474.626667pt;}
.yfd{bottom:477.346667pt;}
.y159{bottom:480.386667pt;}
.y19e{bottom:480.706667pt;}
.y14e{bottom:482.146667pt;}
.y53{bottom:482.626667pt;}
.y163{bottom:482.786667pt;}
.y67{bottom:484.226667pt;}
.y18c{bottom:486.146667pt;}
.y116{bottom:487.906667pt;}
.y1c3{bottom:490.626667pt;}
.y24{bottom:492.226667pt;}
.y52{bottom:500.226667pt;}
.y89{bottom:501.026667pt;}
.y66{bottom:501.826667pt;}
.y158{bottom:503.746667pt;}
.y1c2{bottom:508.226667pt;}
.y23{bottom:509.826667pt;}
.y115{bottom:511.426667pt;}
.yfc{bottom:513.186667pt;}
.yb8{bottom:513.986667pt;}
.y139{bottom:516.706667pt;}
.y157{bottom:517.026667pt;}
.y51{bottom:517.826667pt;}
.y88{bottom:518.626667pt;}
.y65{bottom:519.426667pt;}
.y16b{bottom:521.346667pt;}
.y9e{bottom:523.906667pt;}
.y114{bottom:524.546667pt;}
.y1c1{bottom:525.826667pt;}
.y22{bottom:527.426667pt;}
.y19d{bottom:534.306667pt;}
.y50{bottom:535.426667pt;}
.y87{bottom:536.226667pt;}
.y64{bottom:537.186667pt;}
.y108{bottom:537.346667pt;}
.y177{bottom:539.426667pt;}
.y16a{bottom:539.746667pt;}
.y123{bottom:541.986667pt;}
.y1c0{bottom:543.426667pt;}
.y21{bottom:545.186667pt;}
.yfb{bottom:549.186667pt;}
.y107{bottom:550.626667pt;}
.ycb{bottom:552.066667pt;}
.y4f{bottom:553.186667pt;}
.y86{bottom:553.826667pt;}
.y63{bottom:554.786667pt;}
.y1bf{bottom:561.186667pt;}
.y20{bottom:562.786667pt;}
.y4e{bottom:570.786667pt;}
.y14b{bottom:570.946667pt;}
.y85{bottom:571.586667pt;}
.y62{bottom:572.386667pt;}
.yca{bottom:575.586667pt;}
.y141{bottom:577.693333pt;}
.y1be{bottom:578.813333pt;}
.y1f{bottom:580.413333pt;}
.yfa{bottom:585.053333pt;}
.yb7{bottom:585.213333pt;}
.y138{bottom:587.933333pt;}
.y4d{bottom:588.413333pt;}
.yc8{bottom:588.733333pt;}
.y84{bottom:589.213333pt;}
.y61{bottom:590.013333pt;}
.y195{bottom:592.573333pt;}
.y18b{bottom:592.733333pt;}
.ya5{bottom:594.173333pt;}
.y1bd{bottom:596.413333pt;}
.y1e{bottom:598.013333pt;}
.y176{bottom:598.173333pt;}
.y140{bottom:601.053333pt;}
.y4c{bottom:606.013333pt;}
.y83{bottom:606.813333pt;}
.ya2{bottom:607.293333pt;}
.y60{bottom:607.613333pt;}
.y1bc{bottom:614.013333pt;}
.y13f{bottom:614.333333pt;}
.y1d{bottom:615.613333pt;}
.y175{bottom:615.773333pt;}
.y194{bottom:615.933333pt;}
.y4b{bottom:623.613333pt;}
.y82{bottom:624.413333pt;}
.y174{bottom:629.053333pt;}
.y122{bottom:630.813333pt;}
.y1bb{bottom:631.613333pt;}
.y1c{bottom:633.373333pt;}
.y12f{bottom:640.573333pt;}
.y4a{bottom:641.373333pt;}
.y137{bottom:641.533333pt;}
.y81{bottom:642.013333pt;}
.yb6{bottom:643.773333pt;}
.y1ba{bottom:649.373333pt;}
.y1b{bottom:650.973333pt;}
.y18a{bottom:651.453333pt;}
.yb4{bottom:657.053333pt;}
.yea{bottom:658.493333pt;}
.y49{bottom:658.973333pt;}
.y19c{bottom:659.133333pt;}
.y80{bottom:659.773333pt;}
.yf9{bottom:661.373333pt;}
.y12e{bottom:664.093333pt;}
.y1b9{bottom:666.973333pt;}
.y1a{bottom:668.573333pt;}
.y189{bottom:669.053333pt;}
.yf7{bottom:674.653333pt;}
.y48{bottom:676.573333pt;}
.y12d{bottom:677.213333pt;}
.y7f{bottom:677.373333pt;}
.ye9{bottom:681.853333pt;}
.y187{bottom:682.173333pt;}
.y1b8{bottom:684.573333pt;}
.y19{bottom:686.173333pt;}
.y121{bottom:689.533333pt;}
.y47{bottom:694.173333pt;}
.y7e{bottom:694.973333pt;}
.ye8{bottom:699.613333pt;}
.y1b7{bottom:702.173333pt;}
.y120{bottom:702.653333pt;}
.y18{bottom:703.773333pt;}
.y46{bottom:711.773333pt;}
.y7d{bottom:712.573333pt;}
.y136{bottom:712.733333pt;}
.ye7{bottom:717.213333pt;}
.y1b6{bottom:719.773333pt;}
.y17{bottom:721.533333pt;}
.y9d{bottom:722.813333pt;}
.y113{bottom:728.253333pt;}
.y45{bottom:729.533333pt;}
.y7c{bottom:730.173333pt;}
.ye6{bottom:730.333333pt;}
.y160{bottom:730.973333pt;}
.y1b5{bottom:737.533333pt;}
.y16{bottom:739.133333pt;}
.y44{bottom:747.133333pt;}
.y7b{bottom:747.773333pt;}
.y112{bottom:751.773333pt;}
.y1b4{bottom:755.133333pt;}
.y15{bottom:756.733333pt;}
.y78{bottom:761.053333pt;}
.y43{bottom:764.733333pt;}
.y180{bottom:765.533333pt;}
.y111{bottom:769.373333pt;}
.y1b3{bottom:772.733333pt;}
.y14{bottom:778.973333pt;}
.y42{bottom:782.333333pt;}
.y110{bottom:782.493333pt;}
.ye2{bottom:783.933333pt;}
.y17f{bottom:789.053333pt;}
.y1b2{bottom:790.333333pt;}
.y13{bottom:792.413333pt;}
.y41{bottom:799.973333pt;}
.y17e{bottom:806.693333pt;}
.y1b1{bottom:807.973333pt;}
.y12{bottom:811.973333pt;}
.y40{bottom:817.733333pt;}
.y10f{bottom:818.533333pt;}
.y17d{bottom:819.813333pt;}
.y5f{bottom:825.733333pt;}
.y11{bottom:834.053333pt;}
.y3f{bottom:843.333333pt;}
.y10e{bottom:854.373333pt;}
.ye1{bottom:855.173333pt;}
.y3e{bottom:860.933333pt;}
.y10{bottom:862.213333pt;}
.y12c{bottom:872.773333pt;}
.y3d{bottom:878.533333pt;}
.ya1{bottom:890.373333pt;}
.yf{bottom:890.533333pt;}
.y3c{bottom:896.133333pt;}
.y77{bottom:907.973333pt;}
.y3b{bottom:913.893333pt;}
.y9{bottom:930.373333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h7{height:2.295000pt;}
.h12{height:17.600000pt;}
.h1d{height:17.632000pt;}
.h31{height:17.760000pt;}
.h36{height:17.792000pt;}
.hb{height:18.880000pt;}
.h10{height:21.920000pt;}
.h8{height:29.760000pt;}
.he{height:30.982500pt;}
.h16{height:35.200000pt;}
.h2c{height:35.232000pt;}
.h2d{height:35.360000pt;}
.h17{height:35.392000pt;}
.hf{height:37.479688pt;}
.h4{height:41.543750pt;}
.h27{height:43.108125pt;}
.hd{height:47.310625pt;}
.h5{height:47.621250pt;}
.ha{height:52.785000pt;}
.h18{height:52.800000pt;}
.h23{height:52.960000pt;}
.h1a{height:52.992000pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h15{height:70.400000pt;}
.h20{height:70.432000pt;}
.h19{height:70.560000pt;}
.h24{height:70.592000pt;}
.h28{height:88.160000pt;}
.h22{height:88.192000pt;}
.h6{height:100.032000pt;}
.h21{height:105.760000pt;}
.h3b{height:105.792000pt;}
.h3a{height:105.920000pt;}
.h47{height:105.952000pt;}
.h3f{height:123.392000pt;}
.h40{height:123.520000pt;}
.h2{height:130.432000pt;}
.h13{height:146.266667pt;}
.h11{height:176.506667pt;}
.h29{height:186.906667pt;}
.h34{height:194.906667pt;}
.h1b{height:198.106667pt;}
.h32{height:203.066667pt;}
.h2e{height:204.666667pt;}
.h2a{height:223.066667pt;}
.h46{height:225.146667pt;}
.h37{height:226.266667pt;}
.h2b{height:232.666667pt;}
.h49{height:238.786667pt;}
.h1f{height:250.266667pt;}
.h1e{height:252.346667pt;}
.h30{height:254.426667pt;}
.h48{height:260.666667pt;}
.h35{height:264.346667pt;}
.h3c{height:268.346667pt;}
.h33{height:274.266667pt;}
.h43{height:278.266667pt;}
.h45{height:281.346667pt;}
.h1c{height:282.426667pt;}
.h3e{height:290.426667pt;}
.h39{height:292.986667pt;}
.h38{height:294.306667pt;}
.h25{height:300.986667pt;}
.h42{height:304.346667pt;}
.h44{height:330.266667pt;}
.h41{height:332.386667pt;}
.h2f{height:356.706667pt;}
.h14{height:375.746667pt;}
.h3d{height:390.306667pt;}
.h26{height:442.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w2a{width:45.600000pt;}
.we{width:65.472000pt;}
.w2d{width:73.312000pt;}
.w35{width:73.440000pt;}
.w3e{width:76.960000pt;}
.wb{width:81.280000pt;}
.w22{width:83.360000pt;}
.w38{width:87.072000pt;}
.w2b{width:87.680000pt;}
.w40{width:88.672000pt;}
.wd{width:89.280000pt;}
.w23{width:89.632000pt;}
.w67{width:90.080000pt;}
.w19{width:90.560000pt;}
.w1a{width:90.592000pt;}
.w3f{width:92.672000pt;}
.w1b{width:92.832000pt;}
.w1c{width:92.960000pt;}
.w36{width:94.112000pt;}
.wf{width:94.560000pt;}
.w24{width:96.640000pt;}
.w63{width:96.992000pt;}
.w66{width:97.792000pt;}
.w25{width:98.240000pt;}
.w64{width:98.592000pt;}
.w65{width:99.040000pt;}
.w51{width:99.360000pt;}
.w45{width:99.392000pt;}
.w46{width:99.520000pt;}
.w47{width:99.552000pt;}
.w58{width:99.680000pt;}
.w52{width:99.712000pt;}
.w2e{width:105.600000pt;}
.w2c{width:109.312000pt;}
.w37{width:110.240000pt;}
.w4d{width:112.480000pt;}
.w41{width:116.352000pt;}
.w39{width:116.512000pt;}
.w59{width:118.560000pt;}
.w3{width:118.592000pt;}
.w53{width:118.880000pt;}
.w5d{width:131.360000pt;}
.w42{width:134.560000pt;}
.w1d{width:139.520000pt;}
.wc{width:139.546667pt;}
.w3a{width:147.680000pt;}
.w10{width:168.186667pt;}
.w48{width:169.146667pt;}
.w68{width:174.946667pt;}
.w2f{width:207.226667pt;}
.w11{width:283.866667pt;}
.w62{width:288.066667pt;}
.w3d{width:291.226667pt;}
.w8{width:291.706667pt;}
.w50{width:296.826667pt;}
.w44{width:297.786667pt;}
.w57{width:298.106667pt;}
.w29{width:298.426667pt;}
.w18{width:299.386667pt;}
.w13{width:299.866667pt;}
.w27{width:300.026667pt;}
.w5a{width:300.506667pt;}
.w17{width:300.546667pt;}
.w28{width:301.506667pt;}
.w34{width:301.786667pt;}
.w20{width:301.946667pt;}
.w6{width:302.426667pt;}
.w30{width:303.746667pt;}
.w33{width:303.906667pt;}
.w21{width:304.066667pt;}
.w5e{width:304.546667pt;}
.w7{width:305.826667pt;}
.w43{width:306.626667pt;}
.w31{width:308.026667pt;}
.w9{width:308.226667pt;}
.w60{width:308.346667pt;}
.w3c{width:308.546667pt;}
.w4c{width:309.626667pt;}
.w16{width:309.786667pt;}
.w32{width:310.626667pt;}
.w26{width:310.786667pt;}
.w56{width:311.746667pt;}
.w15{width:311.906667pt;}
.w4e{width:312.226667pt;}
.w4a{width:312.386667pt;}
.w3b{width:312.546667pt;}
.w1f{width:313.786667pt;}
.w1e{width:313.826667pt;}
.w4b{width:314.306667pt;}
.w14{width:314.466667pt;}
.w49{width:316.066667pt;}
.w5f{width:317.826667pt;}
.w55{width:318.466667pt;}
.w5b{width:319.906667pt;}
.w5c{width:322.306667pt;}
.w54{width:323.746667pt;}
.w4f{width:328.066667pt;}
.w12{width:334.946667pt;}
.w61{width:353.826667pt;}
.w2{width:588.933333pt;}
.wa{width:697.280000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:43.200000pt;}
.x5{left:47.999988pt;}
.xd{left:53.183988pt;}
.x4c{left:61.920000pt;}
.x6b{left:66.560000pt;}
.x7{left:71.679988pt;}
.x8{left:76.191988pt;}
.x37{left:80.832000pt;}
.x2e{left:82.752000pt;}
.x54{left:84.512000pt;}
.x23{left:85.792000pt;}
.x1b{left:87.232000pt;}
.x1f{left:89.312000pt;}
.x55{left:90.272000pt;}
.x34{left:91.232000pt;}
.xe{left:92.512000pt;}
.x2f{left:93.472000pt;}
.x3c{left:94.752000pt;}
.x12{left:96.672000pt;}
.x4{left:105.146667pt;}
.x38{left:127.072000pt;}
.x3f{left:154.906667pt;}
.x16{left:157.626667pt;}
.x4d{left:162.106667pt;}
.x46{left:163.066667pt;}
.x6c{left:164.186667pt;}
.x30{left:180.826667pt;}
.xc{left:182.586655pt;}
.x27{left:187.866667pt;}
.x56{left:190.426667pt;}
.x39{left:215.386667pt;}
.x40{left:249.666667pt;}
.x47{left:256.386667pt;}
.x3e{left:257.800000pt;}
.x4e{left:262.146667pt;}
.x6d{left:263.426667pt;}
.x53{left:268.680000pt;}
.x31{left:271.266667pt;}
.x5a{left:272.834667pt;}
.x1d{left:276.994667pt;}
.x28{left:279.106667pt;}
.x65{left:281.026667pt;}
.x14{left:282.914667pt;}
.x2d{left:285.160000pt;}
.x5d{left:287.266667pt;}
.x21{left:289.314667pt;}
.x36{left:290.920000pt;}
.x26{left:293.634667pt;}
.x10{left:295.554667pt;}
.x3d{left:296.834667pt;}
.x17{left:297.826667pt;}
.x11{left:298.946667pt;}
.x15{left:301.186667pt;}
.x25{left:302.920000pt;}
.xb{left:304.066655pt;}
.x44{left:305.634667pt;}
.x22{left:307.746667pt;}
.x52{left:309.154667pt;}
.x61{left:311.560000pt;}
.x62{left:312.866667pt;}
.x64{left:315.421333pt;}
.x60{left:316.834667pt;}
.x5c{left:321.181333pt;}
.x9{left:325.506655pt;}
.x1e{left:327.906667pt;}
.x6a{left:346.941333pt;}
.x41{left:360.546667pt;}
.x4f{left:362.466667pt;}
.x48{left:367.266667pt;}
.x32{left:368.546667pt;}
.x29{left:370.466667pt;}
.x1c{left:371.746667pt;}
.x66{left:381.346667pt;}
.x18{left:387.746667pt;}
.x13{left:389.026667pt;}
.x20{left:389.986667pt;}
.x59{left:391.106667pt;}
.xf{left:395.586667pt;}
.xa{left:396.893322pt;}
.x24{left:398.333333pt;}
.x3a{left:399.453333pt;}
.x4b{left:401.693333pt;}
.x35{left:402.653333pt;}
.x2c{left:404.253333pt;}
.x45{left:406.013333pt;}
.x63{left:408.413333pt;}
.x5b{left:412.893333pt;}
.x69{left:430.173333pt;}
.x42{left:448.253333pt;}
.x19{left:454.013333pt;}
.x49{left:456.733333pt;}
.x33{left:458.813333pt;}
.x6e{left:461.533333pt;}
.x50{left:462.653333pt;}
.x2a{left:464.093333pt;}
.x67{left:481.533333pt;}
.x5e{left:487.773333pt;}
.x57{left:490.973333pt;}
.x3b{left:505.853333pt;}
.x1a{left:549.213333pt;}
.x6f{left:552.413333pt;}
.x2b{left:557.733333pt;}
.x51{left:562.853333pt;}
.x43{left:565.413333pt;}
.x4a{left:573.733333pt;}
.x68{left:581.733333pt;}
.x5f{left:587.973333pt;}
.x58{left:591.173333pt;}
.x3{left:632.133333pt;}
.x6{left:737.120000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  