
    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_919d96ca8d61865dc1b577f5.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_2b1f53eff1f05bb685bff3e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_e3ea361ed27317ba1e1384c6.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_6b5a184acbebf58e6f172da7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_17f714b5bf281aa8923dc49b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b18dc0e196c64f8c558df3d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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_d858639c21bd5f1369092bd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8e0176784ef8bafc37bdb5cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986328;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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls23{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.182000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls21{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.413400px;}
.ls5{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.082560px;}
.ls1c{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.119520px;}
.ls24{letter-spacing:0.156000px;}
.ls7{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.403920px;}
.ls2c{letter-spacing:0.480000px;}
.lse{letter-spacing:0.513600px;}
.ls2a{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.666000px;}
.ls16{letter-spacing:1.620000px;}
.ls2b{letter-spacing:1.800000px;}
.ls13{letter-spacing:2.340000px;}
.ls14{letter-spacing:3.060000px;}
.ls26{letter-spacing:4.500000px;}
.ls1f{letter-spacing:5.220000px;}
.ls15{letter-spacing:5.940000px;}
.ls9{letter-spacing:6.660000px;}
.ls1{letter-spacing:8.100000px;}
.ls11{letter-spacing:8.820000px;}
.ls8{letter-spacing:10.260000px;}
.ls25{letter-spacing:12.420000px;}
.ls29{letter-spacing:16.506720px;}
.ls22{letter-spacing:21.780000px;}
.ls28{letter-spacing:46.170720px;}
.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;}
.ws7{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.wsf{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-9.014400px;}
._29{margin-left:-7.590000px;}
._b{margin-left:-6.228960px;}
._c{margin-left:-4.383360px;}
._19{margin-left:-3.364800px;}
._15{margin-left:-2.120160px;}
._0{margin-left:-1.080000px;}
._d{width:1.031520px;}
._1{width:2.220000px;}
._1a{width:3.986880px;}
._18{width:5.830560px;}
._17{width:7.036080px;}
._1b{width:8.135520px;}
._22{width:9.138480px;}
._6{width:10.800000px;}
._1d{width:12.370320px;}
._1c{width:13.804560px;}
._25{width:16.709280px;}
._1f{width:17.751360px;}
._12{width:18.948000px;}
._16{width:20.606400px;}
._1e{width:22.274880px;}
._28{width:23.963760px;}
._27{width:25.723440px;}
._26{width:26.772480px;}
._2a{width:27.788400px;}
._23{width:28.800240px;}
._24{width:30.647040px;}
._2c{width:34.107360px;}
._2f{width:40.218480px;}
._2e{width:46.857120px;}
._34{width:48.286080px;}
._2d{width:56.592720px;}
._35{width:57.951600px;}
._36{width:62.080080px;}
._33{width:63.350880px;}
._30{width:64.943520px;}
._31{width:65.975040px;}
._7{width:76.284960px;}
._2b{width:100.038240px;}
._38{width:120.819120px;}
._37{width:122.089680px;}
._13{width:132.780000px;}
._8{width:154.080000px;}
._f{width:195.120000px;}
._11{width:199.584000px;}
._32{width:237.470640px;}
._2{width:255.512640px;}
._20{width:256.552800px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._21{width:605.404320px;}
._10{width:637.320000px;}
._a{width:1096.860000px;}
._e{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;}
.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;}
.y75{bottom:5.760000px;}
.y18d{bottom:5.790000px;}
.y16a{bottom:5.805000px;}
.y71{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.ye5{bottom:6.480000px;}
.yf7{bottom:6.660000px;}
.yfb{bottom:6.840000px;}
.y190{bottom:8.820000px;}
.y1bf{bottom:9.720000px;}
.yb5{bottom:12.060000px;}
.y195{bottom:12.240000px;}
.y6{bottom:12.600000px;}
.y153{bottom:13.860000px;}
.y77{bottom:16.200000px;}
.y89{bottom:16.380000px;}
.y8{bottom:18.180000px;}
.y7c{bottom:18.360000px;}
.y14d{bottom:19.080000px;}
.y86{bottom:19.260000px;}
.y81{bottom:19.290000px;}
.y83{bottom:25.560000px;}
.y18c{bottom:25.590000px;}
.y70{bottom:25.740000px;}
.y11b{bottom:25.785000px;}
.y12b{bottom:26.460000px;}
.y157{bottom:28.260000px;}
.y18f{bottom:28.620000px;}
.y194{bottom:32.085000px;}
.y14a{bottom:33.660000px;}
.y150{bottom:34.560000px;}
.yc{bottom:36.000000px;}
.y88{bottom:36.180000px;}
.y14c{bottom:39.090000px;}
.y5{bottom:40.500000px;}
.y8f{bottom:45.360000px;}
.y18b{bottom:45.390000px;}
.y168{bottom:45.405000px;}
.y11e{bottom:45.540000px;}
.y11a{bottom:45.585000px;}
.y156{bottom:48.060000px;}
.yfe{bottom:48.960000px;}
.y149{bottom:53.460000px;}
.y14f{bottom:54.360000px;}
.y73{bottom:55.800000px;}
.yb{bottom:57.780000px;}
.y79{bottom:57.960000px;}
.y7e{bottom:58.890000px;}
.y8e{bottom:65.340000px;}
.y155{bottom:68.085000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y8d{bottom:85.185000px;}
.y3{bottom:96.510000px;}
.yb3{bottom:101.520000px;}
.y124{bottom:102.600000px;}
.y1d2{bottom:102.960000px;}
.y6a{bottom:104.760000px;}
.y109{bottom:104.940000px;}
.y8c{bottom:104.985000px;}
.y1bb{bottom:106.560000px;}
.y18e{bottom:107.640000px;}
.y82{bottom:109.980000px;}
.y3b{bottom:113.400000px;}
.y6e{bottom:113.760000px;}
.y1d5{bottom:113.940000px;}
.yda{bottom:116.280000px;}
.yb2{bottom:121.320000px;}
.y162{bottom:122.040000px;}
.y123{bottom:122.400000px;}
.y1d1{bottom:122.940000px;}
.y69{bottom:124.560000px;}
.y108{bottom:124.740000px;}
.y8b{bottom:124.785000px;}
.y2{bottom:125.850000px;}
.y1ba{bottom:126.360000px;}
.y84{bottom:129.780000px;}
.y1d4{bottom:132.660000px;}
.y3a{bottom:133.200000px;}
.y6d{bottom:133.560000px;}
.yd9{bottom:136.080000px;}
.yb1{bottom:141.120000px;}
.y12e{bottom:141.300000px;}
.y161{bottom:141.840000px;}
.y122{bottom:142.200000px;}
.y1d0{bottom:142.740000px;}
.y68{bottom:144.540000px;}
.y1b9{bottom:146.340000px;}
.y7d{bottom:149.580000px;}
.y18a{bottom:150.300000px;}
.y1d3{bottom:151.200000px;}
.y39{bottom:153.030000px;}
.y6c{bottom:153.570000px;}
.yd8{bottom:155.910000px;}
.yb0{bottom:161.130000px;}
.y160{bottom:161.670000px;}
.y121{bottom:162.030000px;}
.y1cf{bottom:162.570000px;}
.y67{bottom:164.370000px;}
.y107{bottom:164.550000px;}
.y1b8{bottom:166.170000px;}
.y145{bottom:166.530000px;}
.y38{bottom:172.830000px;}
.y6b{bottom:173.370000px;}
.yd7{bottom:175.710000px;}
.yaf{bottom:180.930000px;}
.y15f{bottom:181.470000px;}
.y120{bottom:181.830000px;}
.y1ce{bottom:182.370000px;}
.y80{bottom:182.910000px;}
.y106{bottom:184.350000px;}
.y1b7{bottom:185.970000px;}
.y144{bottom:186.330000px;}
.y37{bottom:192.630000px;}
.y66{bottom:193.170000px;}
.yd6{bottom:195.690000px;}
.y11f{bottom:196.770000px;}
.y12d{bottom:200.730000px;}
.y15e{bottom:201.270000px;}
.yae{bottom:201.450000px;}
.y1cd{bottom:202.170000px;}
.y7f{bottom:202.710000px;}
.y105{bottom:204.150000px;}
.y1b6{bottom:205.770000px;}
.y143{bottom:206.310000px;}
.y189{bottom:209.730000px;}
.y36{bottom:212.610000px;}
.y65{bottom:212.970000px;}
.yd5{bottom:215.490000px;}
.y15d{bottom:221.250000px;}
.y1cc{bottom:222.150000px;}
.y78{bottom:222.510000px;}
.y104{bottom:223.950000px;}
.y1b5{bottom:225.570000px;}
.y142{bottom:226.110000px;}
.yad{bottom:227.910000px;}
.y35{bottom:232.410000px;}
.y64{bottom:232.770000px;}
.yd4{bottom:235.290000px;}
.y15c{bottom:241.050000px;}
.y1cb{bottom:241.950000px;}
.y103{bottom:243.750000px;}
.y1b4{bottom:245.550000px;}
.y141{bottom:245.910000px;}
.yac{bottom:247.710000px;}
.y34{bottom:252.210000px;}
.y63{bottom:252.750000px;}
.y7b{bottom:254.910000px;}
.yd3{bottom:255.090000px;}
.y11d{bottom:256.170000px;}
.y15b{bottom:260.850000px;}
.y1ca{bottom:261.750000px;}
.y102{bottom:263.730000px;}
.y1b3{bottom:265.350000px;}
.y140{bottom:265.710000px;}
.yab{bottom:267.510000px;}
.y188{bottom:270.030000px;}
.y33{bottom:272.010000px;}
.y62{bottom:272.550000px;}
.y7a{bottom:274.710000px;}
.yd2{bottom:274.890000px;}
.y12c{bottom:275.070000px;}
.y15a{bottom:280.650000px;}
.y1c9{bottom:281.550000px;}
.y101{bottom:283.530000px;}
.y1b2{bottom:285.150000px;}
.y13f{bottom:285.510000px;}
.yaa{bottom:287.310000px;}
.y32{bottom:291.810000px;}
.y61{bottom:292.350000px;}
.y72{bottom:294.510000px;}
.yd1{bottom:294.870000px;}
.y187{bottom:296.490000px;}
.yfd{bottom:298.290000px;}
.y159{bottom:300.450000px;}
.y1c8{bottom:301.350000px;}
.y1b1{bottom:304.950000px;}
.y13e{bottom:305.490000px;}
.ya9{bottom:307.290000px;}
.y31{bottom:311.790000px;}
.y60{bottom:312.150000px;}
.yd0{bottom:314.670000px;}
.y11c{bottom:315.750000px;}
.y186{bottom:316.290000px;}
.y100{bottom:318.810000px;}
.y158{bottom:320.430000px;}
.y1c7{bottom:321.330000px;}
.y76{bottom:324.750000px;}
.y13d{bottom:325.290000px;}
.ya8{bottom:327.090000px;}
.y30{bottom:331.590000px;}
.y5f{bottom:331.950000px;}
.ycf{bottom:334.470000px;}
.y12a{bottom:334.650000px;}
.y154{bottom:335.190000px;}
.y185{bottom:336.090000px;}
.yff{bottom:340.410000px;}
.y1c6{bottom:341.130000px;}
.y74{bottom:344.550000px;}
.y1b0{bottom:344.730000px;}
.y13c{bottom:345.090000px;}
.ya7{bottom:346.890000px;}
.y2f{bottom:351.390000px;}
.y5e{bottom:351.930000px;}
.yce{bottom:354.270000px;}
.y184{bottom:355.890000px;}
.y1c5{bottom:360.930000px;}
.yfc{bottom:361.290000px;}
.y1af{bottom:364.530000px;}
.y13b{bottom:364.890000px;}
.y6f{bottom:365.070000px;}
.ya6{bottom:366.690000px;}
.y2e{bottom:371.190000px;}
.y5d{bottom:371.730000px;}
.ycd{bottom:374.070000px;}
.y119{bottom:375.150000px;}
.y183{bottom:375.690000px;}
.y1c4{bottom:380.730000px;}
.yfa{bottom:381.090000px;}
.y1ae{bottom:384.330000px;}
.y13a{bottom:384.690000px;}
.ya5{bottom:386.490000px;}
.y2d{bottom:390.990000px;}
.y5c{bottom:391.530000px;}
.ycc{bottom:394.050000px;}
.y182{bottom:395.670000px;}
.y1c3{bottom:400.575000px;}
.yf9{bottom:402.015000px;}
.y1ad{bottom:404.175000px;}
.y139{bottom:404.715000px;}
.ya4{bottom:406.515000px;}
.y2c{bottom:411.015000px;}
.y5b{bottom:411.375000px;}
.ycb{bottom:413.895000px;}
.y181{bottom:415.515000px;}
.y152{bottom:417.315000px;}
.y1c2{bottom:420.555000px;}
.yf8{bottom:421.815000px;}
.y1ac{bottom:423.975000px;}
.y138{bottom:424.515000px;}
.ya3{bottom:426.315000px;}
.y2b{bottom:430.815000px;}
.y5a{bottom:431.175000px;}
.yca{bottom:433.695000px;}
.y118{bottom:434.775000px;}
.y180{bottom:435.315000px;}
.y1c1{bottom:440.355000px;}
.yf6{bottom:441.795000px;}
.y1ab{bottom:443.955000px;}
.y137{bottom:444.315000px;}
.ya2{bottom:446.115000px;}
.y2a{bottom:450.615000px;}
.y59{bottom:451.155000px;}
.yc9{bottom:453.495000px;}
.y17f{bottom:455.115000px;}
.y136{bottom:458.355000px;}
.y1c0{bottom:460.155000px;}
.yf5{bottom:462.495000px;}
.y1aa{bottom:463.755000px;}
.ya1{bottom:465.915000px;}
.y29{bottom:470.415000px;}
.y58{bottom:470.955000px;}
.yc8{bottom:473.295000px;}
.y1be{bottom:474.195000px;}
.y117{bottom:474.375000px;}
.y17e{bottom:474.915000px;}
.y133{bottom:480.495000px;}
.yf4{bottom:483.195000px;}
.y1a9{bottom:483.555000px;}
.y151{bottom:484.815000px;}
.ya0{bottom:485.715000px;}
.y28{bottom:489.135000px;}
.y57{bottom:490.755000px;}
.yc7{bottom:493.275000px;}
.y129{bottom:494.355000px;}
.y17d{bottom:494.895000px;}
.y135{bottom:500.295000px;}
.y1a8{bottom:503.355000px;}
.y9f{bottom:505.695000px;}
.y27{bottom:507.675000px;}
.yf3{bottom:509.475000px;}
.y56{bottom:510.555000px;}
.yc6{bottom:513.075000px;}
.y116{bottom:514.155000px;}
.y134{bottom:520.095000px;}
.y1a7{bottom:523.155000px;}
.y17c{bottom:523.695000px;}
.y9e{bottom:525.495000px;}
.y26{bottom:526.215000px;}
.yf2{bottom:529.275000px;}
.y55{bottom:530.355000px;}
.yc5{bottom:532.875000px;}
.y128{bottom:533.955000px;}
.y130{bottom:539.895000px;}
.y1a6{bottom:542.955000px;}
.y17b{bottom:543.495000px;}
.y9d{bottom:545.295000px;}
.y25{bottom:546.195000px;}
.yf1{bottom:549.255000px;}
.y54{bottom:550.335000px;}
.y14e{bottom:552.315000px;}
.yc4{bottom:552.675000px;}
.y115{bottom:554.475000px;}
.y132{bottom:559.875000px;}
.y1a5{bottom:562.935000px;}
.y17a{bottom:563.295000px;}
.y9c{bottom:565.095000px;}
.y24{bottom:565.995000px;}
.yf0{bottom:569.055000px;}
.y53{bottom:570.135000px;}
.yc3{bottom:572.475000px;}
.y131{bottom:579.675000px;}
.y114{bottom:580.935000px;}
.y1a4{bottom:582.735000px;}
.y179{bottom:583.095000px;}
.y9b{bottom:584.895000px;}
.y23{bottom:585.795000px;}
.yef{bottom:588.855000px;}
.y52{bottom:589.935000px;}
.yc2{bottom:592.455000px;}
.y126{bottom:594.255000px;}
.y1bd{bottom:599.475000px;}
.y113{bottom:600.735000px;}
.y12f{bottom:601.635000px;}
.y1a3{bottom:602.535000px;}
.y178{bottom:603.075000px;}
.y9a{bottom:604.875000px;}
.y22{bottom:605.595000px;}
.yee{bottom:608.655000px;}
.y51{bottom:609.735000px;}
.yc1{bottom:612.255000px;}
.y127{bottom:614.055000px;}
.y112{bottom:620.535000px;}
.y14b{bottom:620.715000px;}
.y1bc{bottom:621.615000px;}
.y1a2{bottom:622.335000px;}
.y177{bottom:622.875000px;}
.y99{bottom:624.675000px;}
.y21{bottom:625.395000px;}
.yed{bottom:628.455000px;}
.y50{bottom:629.535000px;}
.yc0{bottom:632.055000px;}
.y111{bottom:640.515000px;}
.y1a1{bottom:642.135000px;}
.y176{bottom:642.675000px;}
.y98{bottom:644.475000px;}
.y20{bottom:645.375000px;}
.y4f{bottom:649.545000px;}
.ybf{bottom:651.885000px;}
.yec{bottom:657.465000px;}
.y110{bottom:660.345000px;}
.y1a0{bottom:662.145000px;}
.y175{bottom:662.505000px;}
.y97{bottom:664.305000px;}
.y1f{bottom:665.205000px;}
.y4e{bottom:669.345000px;}
.ybe{bottom:671.685000px;}
.y148{bottom:673.845000px;}
.yeb{bottom:677.265000px;}
.y10f{bottom:680.145000px;}
.y19f{bottom:681.945000px;}
.y174{bottom:682.305000px;}
.y96{bottom:684.105000px;}
.y1e{bottom:685.005000px;}
.y4d{bottom:689.145000px;}
.ybd{bottom:691.665000px;}
.yea{bottom:697.065000px;}
.y10e{bottom:699.945000px;}
.y19e{bottom:701.745000px;}
.y173{bottom:702.285000px;}
.y95{bottom:704.085000px;}
.y1d{bottom:704.805000px;}
.y4c{bottom:708.945000px;}
.ybc{bottom:711.465000px;}
.ye9{bottom:716.865000px;}
.y10d{bottom:719.745000px;}
.y19d{bottom:721.545000px;}
.y172{bottom:722.085000px;}
.y94{bottom:723.885000px;}
.y1c{bottom:724.605000px;}
.y4b{bottom:728.745000px;}
.ybb{bottom:731.265000px;}
.ye8{bottom:736.665000px;}
.y10c{bottom:739.725000px;}
.y19c{bottom:741.345000px;}
.y171{bottom:741.885000px;}
.y146{bottom:742.065000px;}
.y93{bottom:743.685000px;}
.y1b{bottom:744.585000px;}
.y4a{bottom:748.725000px;}
.ye7{bottom:756.645000px;}
.y10b{bottom:759.525000px;}
.yba{bottom:760.065000px;}
.y19b{bottom:761.325000px;}
.y170{bottom:761.685000px;}
.y147{bottom:761.865000px;}
.y92{bottom:763.485000px;}
.y1a{bottom:764.385000px;}
.y49{bottom:768.525000px;}
.ye6{bottom:771.405000px;}
.y10a{bottom:779.325000px;}
.yb9{bottom:779.865000px;}
.y19a{bottom:781.125000px;}
.y16f{bottom:781.485000px;}
.y91{bottom:783.285000px;}
.y19{bottom:784.185000px;}
.y48{bottom:788.325000px;}
.ye4{bottom:791.205000px;}
.y125{bottom:799.125000px;}
.yb8{bottom:799.845000px;}
.y199{bottom:800.925000px;}
.y16e{bottom:801.465000px;}
.y90{bottom:803.265000px;}
.y18{bottom:803.985000px;}
.y47{bottom:808.125000px;}
.ye3{bottom:811.725000px;}
.y8a{bottom:818.025000px;}
.yb7{bottom:819.645000px;}
.y198{bottom:820.725000px;}
.y16d{bottom:821.265000px;}
.y17{bottom:823.785000px;}
.y46{bottom:827.925000px;}
.ye2{bottom:832.245000px;}
.yb6{bottom:834.405000px;}
.y16c{bottom:835.305000px;}
.y197{bottom:840.525000px;}
.y16{bottom:843.765000px;}
.y45{bottom:847.905000px;}
.yb4{bottom:854.925000px;}
.y167{bottom:857.445000px;}
.ye1{bottom:858.705000px;}
.y196{bottom:860.505000px;}
.y15{bottom:863.565000px;}
.y44{bottom:867.705000px;}
.y193{bottom:875.265000px;}
.y16b{bottom:877.245000px;}
.ye0{bottom:878.505000px;}
.y43{bottom:887.505000px;}
.y14{bottom:888.585000px;}
.y169{bottom:897.045000px;}
.ydf{bottom:898.350000px;}
.y42{bottom:907.350000px;}
.y13{bottom:908.430000px;}
.y164{bottom:916.890000px;}
.yde{bottom:918.150000px;}
.y192{bottom:921.390000px;}
.y12{bottom:923.550000px;}
.y41{bottom:927.150000px;}
.y166{bottom:936.690000px;}
.ydd{bottom:937.950000px;}
.y40{bottom:946.950000px;}
.y11{bottom:950.190000px;}
.y165{bottom:956.490000px;}
.y87{bottom:956.850000px;}
.ydc{bottom:957.930000px;}
.y3f{bottom:966.930000px;}
.y10{bottom:968.370000px;}
.ydb{bottom:977.730000px;}
.y163{bottom:978.630000px;}
.y191{bottom:980.970000px;}
.y3e{bottom:986.730000px;}
.yf{bottom:1000.050000px;}
.y3d{bottom:1006.530000px;}
.y85{bottom:1007.070000px;}
.y3c{bottom:1026.330000px;}
.y9{bottom:1046.490000px;}
.y1{bottom:1062.870000px;}
.y7{bottom:1097.070000px;}
.h6{height:2.010938px;}
.h14{height:19.800000px;}
.h32{height:19.836000px;}
.h21{height:19.980000px;}
.h1e{height:20.016000px;}
.h20{height:20.520000px;}
.h22{height:20.700000px;}
.h25{height:20.880000px;}
.h23{height:20.916000px;}
.ha{height:21.780000px;}
.h35{height:23.760000px;}
.h1f{height:26.100000px;}
.hd{height:27.147656px;}
.he{height:28.375312px;}
.h15{height:30.240000px;}
.h17{height:32.400000px;}
.h1b{height:33.300000px;}
.h19{height:33.336000px;}
.h7{height:33.480000px;}
.h1a{height:39.600000px;}
.h26{height:39.780000px;}
.h12{height:39.816000px;}
.h2b{height:40.500000px;}
.h10{height:41.726953px;}
.hf{height:42.164648px;}
.h33{height:42.660000px;}
.h36{height:43.506914px;}
.h2a{height:45.024258px;}
.h34{height:46.116000px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h2c{height:48.027656px;}
.h11{height:49.255313px;}
.h1c{height:50.220000px;}
.h2e{height:53.136000px;}
.h9{height:53.224453px;}
.h28{height:59.400000px;}
.h31{height:59.436000px;}
.h29{height:59.580000px;}
.h27{height:59.616000px;}
.h24{height:63.000000px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.h2d{height:67.500000px;}
.hc{height:67.565039px;}
.h2f{height:68.400000px;}
.h13{height:69.840000px;}
.h16{height:72.000000px;}
.h18{height:72.936000px;}
.h30{height:82.116000px;}
.h5{height:112.716000px;}
.h1d{height:138.816000px;}
.h2{height:146.916000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w9{width:62.640000px;}
.w8{width:62.856000px;}
.w6{width:63.756000px;}
.w20{width:65.556000px;}
.w26{width:66.096000px;}
.w1f{width:68.760000px;}
.w25{width:68.940000px;}
.w40{width:69.516000px;}
.w3f{width:72.360000px;}
.w34{width:77.256000px;}
.w31{width:78.120000px;}
.w33{width:79.200000px;}
.w1a{width:86.040000px;}
.w24{width:86.076000px;}
.w30{width:86.220000px;}
.w1b{width:86.256000px;}
.w32{width:94.176000px;}
.wf{width:95.400000px;}
.w3e{width:99.180000px;}
.w3d{width:99.216000px;}
.w22{width:100.260000px;}
.w3c{width:101.160000px;}
.w1e{width:105.696000px;}
.w1d{width:105.840000px;}
.w28{width:106.020000px;}
.w23{width:108.756000px;}
.wb{width:118.116000px;}
.w10{width:128.016000px;}
.w3{width:130.896000px;}
.w12{width:135.576000px;}
.w2b{width:151.770000px;}
.w42{width:154.290000px;}
.w17{width:160.950000px;}
.w37{width:162.210000px;}
.w16{width:164.730000px;}
.wa{width:177.690000px;}
.w2a{width:179.130000px;}
.w15{width:181.290000px;}
.w43{width:186.510000px;}
.w36{width:187.770000px;}
.w39{width:202.350000px;}
.w11{width:208.650000px;}
.we{width:222.690000px;}
.w45{width:224.850000px;}
.w1c{width:225.255000px;}
.w44{width:228.315000px;}
.w2d{width:228.630000px;}
.w27{width:231.915000px;}
.w2c{width:232.095000px;}
.w38{width:234.615000px;}
.w3b{width:244.515000px;}
.w21{width:247.395000px;}
.w7{width:266.610000px;}
.w14{width:271.335000px;}
.w2f{width:291.495000px;}
.w19{width:294.195000px;}
.w18{width:301.035000px;}
.wd{width:330.375000px;}
.w35{width:436.965000px;}
.w41{width:453.165000px;}
.w29{width:460.725000px;}
.w13{width:639.870000px;}
.w2{width:649.410000px;}
.wc{width:751.680000px;}
.w3a{width:786.960000px;}
.w2e{width:791.640000px;}
.w46{width:793.980000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.260000px;}
.x18{left:4.500000px;}
.x2{left:8.100000px;}
.x28{left:12.600000px;}
.x44{left:49.500000px;}
.x33{left:50.760000px;}
.x5{left:53.999987px;}
.x22{left:55.260000px;}
.x1{left:56.340000px;}
.x1a{left:57.420000px;}
.x17{left:58.860000px;}
.x1e{left:62.820000px;}
.x48{left:69.479987px;}
.xd{left:70.740000px;}
.x49{left:96.515987px;}
.xc{left:101.375987px;}
.x3e{left:108.035987px;}
.x4{left:118.650000px;}
.xe{left:134.496000px;}
.xb{left:138.635987px;}
.x19{left:194.430000px;}
.x7{left:206.669987px;}
.x47{left:277.815000px;}
.x23{left:280.515000px;}
.x35{left:282.855000px;}
.x2e{left:286.635000px;}
.x3d{left:287.715000px;}
.x9{left:293.834987px;}
.x3f{left:298.335000px;}
.x29{left:302.115000px;}
.x1b{left:328.755000px;}
.xa{left:338.654987px;}
.x14{left:341.895000px;}
.x1f{left:363.855000px;}
.x24{left:386.355000px;}
.x40{left:399.495000px;}
.xf{left:401.115000px;}
.x2a{left:402.375000px;}
.x36{left:427.935000px;}
.x15{left:437.295000px;}
.x8{left:446.504987px;}
.x10{left:463.965000px;}
.x3b{left:490.065000px;}
.x25{left:492.045000px;}
.x2f{left:495.645000px;}
.x41{left:498.705000px;}
.x45{left:502.665000px;}
.x1c{left:510.045000px;}
.x2b{left:511.125000px;}
.x37{left:514.185000px;}
.x11{left:526.605000px;}
.x16{left:565.305000px;}
.x38{left:592.305000px;}
.x26{left:597.885000px;}
.x30{left:601.665000px;}
.x2c{left:617.145000px;}
.x46{left:656.970000px;}
.x20{left:658.050000px;}
.x1d{left:674.790000px;}
.x3c{left:677.850000px;}
.x39{left:686.490000px;}
.x31{left:687.750000px;}
.x34{left:690.630000px;}
.x42{left:697.110000px;}
.x2d{left:703.230000px;}
.x12{left:704.310000px;}
.x3{left:705.750000px;}
.x21{left:744.090000px;}
.x32{left:756.690000px;}
.x3a{left:765.690000px;}
.x43{left:769.470000px;}
.x27{left:772.350000px;}
.x6{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls23{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-1.050667pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls21{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.367467pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.073387pt;}
.ls1c{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.106240pt;}
.ls24{letter-spacing:0.138667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.359040pt;}
.ls2c{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.456533pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.592000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls2b{letter-spacing:1.600000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls26{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:4.640000pt;}
.ls15{letter-spacing:5.280000pt;}
.ls9{letter-spacing:5.920000pt;}
.ls1{letter-spacing:7.200000pt;}
.ls11{letter-spacing:7.840000pt;}
.ls8{letter-spacing:9.120000pt;}
.ls25{letter-spacing:11.040000pt;}
.ls29{letter-spacing:14.672640pt;}
.ls22{letter-spacing:19.360000pt;}
.ls28{letter-spacing:41.040640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-8.012800pt;}
._29{margin-left:-6.746667pt;}
._b{margin-left:-5.536853pt;}
._c{margin-left:-3.896320pt;}
._19{margin-left:-2.990933pt;}
._15{margin-left:-1.884587pt;}
._0{margin-left:-0.960000pt;}
._d{width:0.916907pt;}
._1{width:1.973333pt;}
._1a{width:3.543893pt;}
._18{width:5.182720pt;}
._17{width:6.254293pt;}
._1b{width:7.231573pt;}
._22{width:8.123093pt;}
._6{width:9.600000pt;}
._1d{width:10.995840pt;}
._1c{width:12.270720pt;}
._25{width:14.852693pt;}
._1f{width:15.778987pt;}
._12{width:16.842667pt;}
._16{width:18.316800pt;}
._1e{width:19.799893pt;}
._28{width:21.301120pt;}
._27{width:22.865280pt;}
._26{width:23.797760pt;}
._2a{width:24.700800pt;}
._23{width:25.600213pt;}
._24{width:27.241813pt;}
._2c{width:30.317653pt;}
._2f{width:35.749760pt;}
._2e{width:41.650773pt;}
._34{width:42.920960pt;}
._2d{width:50.304640pt;}
._35{width:51.512533pt;}
._36{width:55.182293pt;}
._33{width:56.311893pt;}
._30{width:57.727573pt;}
._31{width:58.644480pt;}
._7{width:67.808853pt;}
._2b{width:88.922880pt;}
._38{width:107.394773pt;}
._37{width:108.524160pt;}
._13{width:118.026667pt;}
._8{width:136.960000pt;}
._f{width:173.440000pt;}
._11{width:177.408000pt;}
._32{width:211.085013pt;}
._2{width:227.122347pt;}
._20{width:228.046933pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._21{width:538.137173pt;}
._10{width:566.506667pt;}
._a{width:974.986667pt;}
._e{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.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;}
.y75{bottom:5.120000pt;}
.y18d{bottom:5.146667pt;}
.y16a{bottom:5.160000pt;}
.y71{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.ye5{bottom:5.760000pt;}
.yf7{bottom:5.920000pt;}
.yfb{bottom:6.080000pt;}
.y190{bottom:7.840000pt;}
.y1bf{bottom:8.640000pt;}
.yb5{bottom:10.720000pt;}
.y195{bottom:10.880000pt;}
.y6{bottom:11.200000pt;}
.y153{bottom:12.320000pt;}
.y77{bottom:14.400000pt;}
.y89{bottom:14.560000pt;}
.y8{bottom:16.160000pt;}
.y7c{bottom:16.320000pt;}
.y14d{bottom:16.960000pt;}
.y86{bottom:17.120000pt;}
.y81{bottom:17.146667pt;}
.y83{bottom:22.720000pt;}
.y18c{bottom:22.746667pt;}
.y70{bottom:22.880000pt;}
.y11b{bottom:22.920000pt;}
.y12b{bottom:23.520000pt;}
.y157{bottom:25.120000pt;}
.y18f{bottom:25.440000pt;}
.y194{bottom:28.520000pt;}
.y14a{bottom:29.920000pt;}
.y150{bottom:30.720000pt;}
.yc{bottom:32.000000pt;}
.y88{bottom:32.160000pt;}
.y14c{bottom:34.746667pt;}
.y5{bottom:36.000000pt;}
.y8f{bottom:40.320000pt;}
.y18b{bottom:40.346667pt;}
.y168{bottom:40.360000pt;}
.y11e{bottom:40.480000pt;}
.y11a{bottom:40.520000pt;}
.y156{bottom:42.720000pt;}
.yfe{bottom:43.520000pt;}
.y149{bottom:47.520000pt;}
.y14f{bottom:48.320000pt;}
.y73{bottom:49.600000pt;}
.yb{bottom:51.360000pt;}
.y79{bottom:51.520000pt;}
.y7e{bottom:52.346667pt;}
.y8e{bottom:58.080000pt;}
.y155{bottom:60.520000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y8d{bottom:75.720000pt;}
.y3{bottom:85.786667pt;}
.yb3{bottom:90.240000pt;}
.y124{bottom:91.200000pt;}
.y1d2{bottom:91.520000pt;}
.y6a{bottom:93.120000pt;}
.y109{bottom:93.280000pt;}
.y8c{bottom:93.320000pt;}
.y1bb{bottom:94.720000pt;}
.y18e{bottom:95.680000pt;}
.y82{bottom:97.760000pt;}
.y3b{bottom:100.800000pt;}
.y6e{bottom:101.120000pt;}
.y1d5{bottom:101.280000pt;}
.yda{bottom:103.360000pt;}
.yb2{bottom:107.840000pt;}
.y162{bottom:108.480000pt;}
.y123{bottom:108.800000pt;}
.y1d1{bottom:109.280000pt;}
.y69{bottom:110.720000pt;}
.y108{bottom:110.880000pt;}
.y8b{bottom:110.920000pt;}
.y2{bottom:111.866667pt;}
.y1ba{bottom:112.320000pt;}
.y84{bottom:115.360000pt;}
.y1d4{bottom:117.920000pt;}
.y3a{bottom:118.400000pt;}
.y6d{bottom:118.720000pt;}
.yd9{bottom:120.960000pt;}
.yb1{bottom:125.440000pt;}
.y12e{bottom:125.600000pt;}
.y161{bottom:126.080000pt;}
.y122{bottom:126.400000pt;}
.y1d0{bottom:126.880000pt;}
.y68{bottom:128.480000pt;}
.y1b9{bottom:130.080000pt;}
.y7d{bottom:132.960000pt;}
.y18a{bottom:133.600000pt;}
.y1d3{bottom:134.400000pt;}
.y39{bottom:136.026667pt;}
.y6c{bottom:136.506667pt;}
.yd8{bottom:138.586667pt;}
.yb0{bottom:143.226667pt;}
.y160{bottom:143.706667pt;}
.y121{bottom:144.026667pt;}
.y1cf{bottom:144.506667pt;}
.y67{bottom:146.106667pt;}
.y107{bottom:146.266667pt;}
.y1b8{bottom:147.706667pt;}
.y145{bottom:148.026667pt;}
.y38{bottom:153.626667pt;}
.y6b{bottom:154.106667pt;}
.yd7{bottom:156.186667pt;}
.yaf{bottom:160.826667pt;}
.y15f{bottom:161.306667pt;}
.y120{bottom:161.626667pt;}
.y1ce{bottom:162.106667pt;}
.y80{bottom:162.586667pt;}
.y106{bottom:163.866667pt;}
.y1b7{bottom:165.306667pt;}
.y144{bottom:165.626667pt;}
.y37{bottom:171.226667pt;}
.y66{bottom:171.706667pt;}
.yd6{bottom:173.946667pt;}
.y11f{bottom:174.906667pt;}
.y12d{bottom:178.426667pt;}
.y15e{bottom:178.906667pt;}
.yae{bottom:179.066667pt;}
.y1cd{bottom:179.706667pt;}
.y7f{bottom:180.186667pt;}
.y105{bottom:181.466667pt;}
.y1b6{bottom:182.906667pt;}
.y143{bottom:183.386667pt;}
.y189{bottom:186.426667pt;}
.y36{bottom:188.986667pt;}
.y65{bottom:189.306667pt;}
.yd5{bottom:191.546667pt;}
.y15d{bottom:196.666667pt;}
.y1cc{bottom:197.466667pt;}
.y78{bottom:197.786667pt;}
.y104{bottom:199.066667pt;}
.y1b5{bottom:200.506667pt;}
.y142{bottom:200.986667pt;}
.yad{bottom:202.586667pt;}
.y35{bottom:206.586667pt;}
.y64{bottom:206.906667pt;}
.yd4{bottom:209.146667pt;}
.y15c{bottom:214.266667pt;}
.y1cb{bottom:215.066667pt;}
.y103{bottom:216.666667pt;}
.y1b4{bottom:218.266667pt;}
.y141{bottom:218.586667pt;}
.yac{bottom:220.186667pt;}
.y34{bottom:224.186667pt;}
.y63{bottom:224.666667pt;}
.y7b{bottom:226.586667pt;}
.yd3{bottom:226.746667pt;}
.y11d{bottom:227.706667pt;}
.y15b{bottom:231.866667pt;}
.y1ca{bottom:232.666667pt;}
.y102{bottom:234.426667pt;}
.y1b3{bottom:235.866667pt;}
.y140{bottom:236.186667pt;}
.yab{bottom:237.786667pt;}
.y188{bottom:240.026667pt;}
.y33{bottom:241.786667pt;}
.y62{bottom:242.266667pt;}
.y7a{bottom:244.186667pt;}
.yd2{bottom:244.346667pt;}
.y12c{bottom:244.506667pt;}
.y15a{bottom:249.466667pt;}
.y1c9{bottom:250.266667pt;}
.y101{bottom:252.026667pt;}
.y1b2{bottom:253.466667pt;}
.y13f{bottom:253.786667pt;}
.yaa{bottom:255.386667pt;}
.y32{bottom:259.386667pt;}
.y61{bottom:259.866667pt;}
.y72{bottom:261.786667pt;}
.yd1{bottom:262.106667pt;}
.y187{bottom:263.546667pt;}
.yfd{bottom:265.146667pt;}
.y159{bottom:267.066667pt;}
.y1c8{bottom:267.866667pt;}
.y1b1{bottom:271.066667pt;}
.y13e{bottom:271.546667pt;}
.ya9{bottom:273.146667pt;}
.y31{bottom:277.146667pt;}
.y60{bottom:277.466667pt;}
.yd0{bottom:279.706667pt;}
.y11c{bottom:280.666667pt;}
.y186{bottom:281.146667pt;}
.y100{bottom:283.386667pt;}
.y158{bottom:284.826667pt;}
.y1c7{bottom:285.626667pt;}
.y76{bottom:288.666667pt;}
.y13d{bottom:289.146667pt;}
.ya8{bottom:290.746667pt;}
.y30{bottom:294.746667pt;}
.y5f{bottom:295.066667pt;}
.ycf{bottom:297.306667pt;}
.y12a{bottom:297.466667pt;}
.y154{bottom:297.946667pt;}
.y185{bottom:298.746667pt;}
.yff{bottom:302.586667pt;}
.y1c6{bottom:303.226667pt;}
.y74{bottom:306.266667pt;}
.y1b0{bottom:306.426667pt;}
.y13c{bottom:306.746667pt;}
.ya7{bottom:308.346667pt;}
.y2f{bottom:312.346667pt;}
.y5e{bottom:312.826667pt;}
.yce{bottom:314.906667pt;}
.y184{bottom:316.346667pt;}
.y1c5{bottom:320.826667pt;}
.yfc{bottom:321.146667pt;}
.y1af{bottom:324.026667pt;}
.y13b{bottom:324.346667pt;}
.y6f{bottom:324.506667pt;}
.ya6{bottom:325.946667pt;}
.y2e{bottom:329.946667pt;}
.y5d{bottom:330.426667pt;}
.ycd{bottom:332.506667pt;}
.y119{bottom:333.466667pt;}
.y183{bottom:333.946667pt;}
.y1c4{bottom:338.426667pt;}
.yfa{bottom:338.746667pt;}
.y1ae{bottom:341.626667pt;}
.y13a{bottom:341.946667pt;}
.ya5{bottom:343.546667pt;}
.y2d{bottom:347.546667pt;}
.y5c{bottom:348.026667pt;}
.ycc{bottom:350.266667pt;}
.y182{bottom:351.706667pt;}
.y1c3{bottom:356.066667pt;}
.yf9{bottom:357.346667pt;}
.y1ad{bottom:359.266667pt;}
.y139{bottom:359.746667pt;}
.ya4{bottom:361.346667pt;}
.y2c{bottom:365.346667pt;}
.y5b{bottom:365.666667pt;}
.ycb{bottom:367.906667pt;}
.y181{bottom:369.346667pt;}
.y152{bottom:370.946667pt;}
.y1c2{bottom:373.826667pt;}
.yf8{bottom:374.946667pt;}
.y1ac{bottom:376.866667pt;}
.y138{bottom:377.346667pt;}
.ya3{bottom:378.946667pt;}
.y2b{bottom:382.946667pt;}
.y5a{bottom:383.266667pt;}
.yca{bottom:385.506667pt;}
.y118{bottom:386.466667pt;}
.y180{bottom:386.946667pt;}
.y1c1{bottom:391.426667pt;}
.yf6{bottom:392.706667pt;}
.y1ab{bottom:394.626667pt;}
.y137{bottom:394.946667pt;}
.ya2{bottom:396.546667pt;}
.y2a{bottom:400.546667pt;}
.y59{bottom:401.026667pt;}
.yc9{bottom:403.106667pt;}
.y17f{bottom:404.546667pt;}
.y136{bottom:407.426667pt;}
.y1c0{bottom:409.026667pt;}
.yf5{bottom:411.106667pt;}
.y1aa{bottom:412.226667pt;}
.ya1{bottom:414.146667pt;}
.y29{bottom:418.146667pt;}
.y58{bottom:418.626667pt;}
.yc8{bottom:420.706667pt;}
.y1be{bottom:421.506667pt;}
.y117{bottom:421.666667pt;}
.y17e{bottom:422.146667pt;}
.y133{bottom:427.106667pt;}
.yf4{bottom:429.506667pt;}
.y1a9{bottom:429.826667pt;}
.y151{bottom:430.946667pt;}
.ya0{bottom:431.746667pt;}
.y28{bottom:434.786667pt;}
.y57{bottom:436.226667pt;}
.yc7{bottom:438.466667pt;}
.y129{bottom:439.426667pt;}
.y17d{bottom:439.906667pt;}
.y135{bottom:444.706667pt;}
.y1a8{bottom:447.426667pt;}
.y9f{bottom:449.506667pt;}
.y27{bottom:451.266667pt;}
.yf3{bottom:452.866667pt;}
.y56{bottom:453.826667pt;}
.yc6{bottom:456.066667pt;}
.y116{bottom:457.026667pt;}
.y134{bottom:462.306667pt;}
.y1a7{bottom:465.026667pt;}
.y17c{bottom:465.506667pt;}
.y9e{bottom:467.106667pt;}
.y26{bottom:467.746667pt;}
.yf2{bottom:470.466667pt;}
.y55{bottom:471.426667pt;}
.yc5{bottom:473.666667pt;}
.y128{bottom:474.626667pt;}
.y130{bottom:479.906667pt;}
.y1a6{bottom:482.626667pt;}
.y17b{bottom:483.106667pt;}
.y9d{bottom:484.706667pt;}
.y25{bottom:485.506667pt;}
.yf1{bottom:488.226667pt;}
.y54{bottom:489.186667pt;}
.y14e{bottom:490.946667pt;}
.yc4{bottom:491.266667pt;}
.y115{bottom:492.866667pt;}
.y132{bottom:497.666667pt;}
.y1a5{bottom:500.386667pt;}
.y17a{bottom:500.706667pt;}
.y9c{bottom:502.306667pt;}
.y24{bottom:503.106667pt;}
.yf0{bottom:505.826667pt;}
.y53{bottom:506.786667pt;}
.yc3{bottom:508.866667pt;}
.y131{bottom:515.266667pt;}
.y114{bottom:516.386667pt;}
.y1a4{bottom:517.986667pt;}
.y179{bottom:518.306667pt;}
.y9b{bottom:519.906667pt;}
.y23{bottom:520.706667pt;}
.yef{bottom:523.426667pt;}
.y52{bottom:524.386667pt;}
.yc2{bottom:526.626667pt;}
.y126{bottom:528.226667pt;}
.y1bd{bottom:532.866667pt;}
.y113{bottom:533.986667pt;}
.y12f{bottom:534.786667pt;}
.y1a3{bottom:535.586667pt;}
.y178{bottom:536.066667pt;}
.y9a{bottom:537.666667pt;}
.y22{bottom:538.306667pt;}
.yee{bottom:541.026667pt;}
.y51{bottom:541.986667pt;}
.yc1{bottom:544.226667pt;}
.y127{bottom:545.826667pt;}
.y112{bottom:551.586667pt;}
.y14b{bottom:551.746667pt;}
.y1bc{bottom:552.546667pt;}
.y1a2{bottom:553.186667pt;}
.y177{bottom:553.666667pt;}
.y99{bottom:555.266667pt;}
.y21{bottom:555.906667pt;}
.yed{bottom:558.626667pt;}
.y50{bottom:559.586667pt;}
.yc0{bottom:561.826667pt;}
.y111{bottom:569.346667pt;}
.y1a1{bottom:570.786667pt;}
.y176{bottom:571.266667pt;}
.y98{bottom:572.866667pt;}
.y20{bottom:573.666667pt;}
.y4f{bottom:577.373333pt;}
.ybf{bottom:579.453333pt;}
.yec{bottom:584.413333pt;}
.y110{bottom:586.973333pt;}
.y1a0{bottom:588.573333pt;}
.y175{bottom:588.893333pt;}
.y97{bottom:590.493333pt;}
.y1f{bottom:591.293333pt;}
.y4e{bottom:594.973333pt;}
.ybe{bottom:597.053333pt;}
.y148{bottom:598.973333pt;}
.yeb{bottom:602.013333pt;}
.y10f{bottom:604.573333pt;}
.y19f{bottom:606.173333pt;}
.y174{bottom:606.493333pt;}
.y96{bottom:608.093333pt;}
.y1e{bottom:608.893333pt;}
.y4d{bottom:612.573333pt;}
.ybd{bottom:614.813333pt;}
.yea{bottom:619.613333pt;}
.y10e{bottom:622.173333pt;}
.y19e{bottom:623.773333pt;}
.y173{bottom:624.253333pt;}
.y95{bottom:625.853333pt;}
.y1d{bottom:626.493333pt;}
.y4c{bottom:630.173333pt;}
.ybc{bottom:632.413333pt;}
.ye9{bottom:637.213333pt;}
.y10d{bottom:639.773333pt;}
.y19d{bottom:641.373333pt;}
.y172{bottom:641.853333pt;}
.y94{bottom:643.453333pt;}
.y1c{bottom:644.093333pt;}
.y4b{bottom:647.773333pt;}
.ybb{bottom:650.013333pt;}
.ye8{bottom:654.813333pt;}
.y10c{bottom:657.533333pt;}
.y19c{bottom:658.973333pt;}
.y171{bottom:659.453333pt;}
.y146{bottom:659.613333pt;}
.y93{bottom:661.053333pt;}
.y1b{bottom:661.853333pt;}
.y4a{bottom:665.533333pt;}
.ye7{bottom:672.573333pt;}
.y10b{bottom:675.133333pt;}
.yba{bottom:675.613333pt;}
.y19b{bottom:676.733333pt;}
.y170{bottom:677.053333pt;}
.y147{bottom:677.213333pt;}
.y92{bottom:678.653333pt;}
.y1a{bottom:679.453333pt;}
.y49{bottom:683.133333pt;}
.ye6{bottom:685.693333pt;}
.y10a{bottom:692.733333pt;}
.yb9{bottom:693.213333pt;}
.y19a{bottom:694.333333pt;}
.y16f{bottom:694.653333pt;}
.y91{bottom:696.253333pt;}
.y19{bottom:697.053333pt;}
.y48{bottom:700.733333pt;}
.ye4{bottom:703.293333pt;}
.y125{bottom:710.333333pt;}
.yb8{bottom:710.973333pt;}
.y199{bottom:711.933333pt;}
.y16e{bottom:712.413333pt;}
.y90{bottom:714.013333pt;}
.y18{bottom:714.653333pt;}
.y47{bottom:718.333333pt;}
.ye3{bottom:721.533333pt;}
.y8a{bottom:727.133333pt;}
.yb7{bottom:728.573333pt;}
.y198{bottom:729.533333pt;}
.y16d{bottom:730.013333pt;}
.y17{bottom:732.253333pt;}
.y46{bottom:735.933333pt;}
.ye2{bottom:739.773333pt;}
.yb6{bottom:741.693333pt;}
.y16c{bottom:742.493333pt;}
.y197{bottom:747.133333pt;}
.y16{bottom:750.013333pt;}
.y45{bottom:753.693333pt;}
.yb4{bottom:759.933333pt;}
.y167{bottom:762.173333pt;}
.ye1{bottom:763.293333pt;}
.y196{bottom:764.893333pt;}
.y15{bottom:767.613333pt;}
.y44{bottom:771.293333pt;}
.y193{bottom:778.013333pt;}
.y16b{bottom:779.773333pt;}
.ye0{bottom:780.893333pt;}
.y43{bottom:788.893333pt;}
.y14{bottom:789.853333pt;}
.y169{bottom:797.373333pt;}
.ydf{bottom:798.533333pt;}
.y42{bottom:806.533333pt;}
.y13{bottom:807.493333pt;}
.y164{bottom:815.013333pt;}
.yde{bottom:816.133333pt;}
.y192{bottom:819.013333pt;}
.y12{bottom:820.933333pt;}
.y41{bottom:824.133333pt;}
.y166{bottom:832.613333pt;}
.ydd{bottom:833.733333pt;}
.y40{bottom:841.733333pt;}
.y11{bottom:844.613333pt;}
.y165{bottom:850.213333pt;}
.y87{bottom:850.533333pt;}
.ydc{bottom:851.493333pt;}
.y3f{bottom:859.493333pt;}
.y10{bottom:860.773333pt;}
.ydb{bottom:869.093333pt;}
.y163{bottom:869.893333pt;}
.y191{bottom:871.973333pt;}
.y3e{bottom:877.093333pt;}
.yf{bottom:888.933333pt;}
.y3d{bottom:894.693333pt;}
.y85{bottom:895.173333pt;}
.y3c{bottom:912.293333pt;}
.y9{bottom:930.213333pt;}
.y1{bottom:944.773333pt;}
.y7{bottom:975.173333pt;}
.h6{height:1.787500pt;}
.h14{height:17.600000pt;}
.h32{height:17.632000pt;}
.h21{height:17.760000pt;}
.h1e{height:17.792000pt;}
.h20{height:18.240000pt;}
.h22{height:18.400000pt;}
.h25{height:18.560000pt;}
.h23{height:18.592000pt;}
.ha{height:19.360000pt;}
.h35{height:21.120000pt;}
.h1f{height:23.200000pt;}
.hd{height:24.131250pt;}
.he{height:25.222500pt;}
.h15{height:26.880000pt;}
.h17{height:28.800000pt;}
.h1b{height:29.600000pt;}
.h19{height:29.632000pt;}
.h7{height:29.760000pt;}
.h1a{height:35.200000pt;}
.h26{height:35.360000pt;}
.h12{height:35.392000pt;}
.h2b{height:36.000000pt;}
.h10{height:37.090625pt;}
.hf{height:37.479688pt;}
.h33{height:37.920000pt;}
.h36{height:38.672812pt;}
.h2a{height:40.021563pt;}
.h34{height:40.992000pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h2c{height:42.691250pt;}
.h11{height:43.782500pt;}
.h1c{height:44.640000pt;}
.h2e{height:47.232000pt;}
.h9{height:47.310625pt;}
.h28{height:52.800000pt;}
.h31{height:52.832000pt;}
.h29{height:52.960000pt;}
.h27{height:52.992000pt;}
.h24{height:56.000000pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.h2d{height:60.000000pt;}
.hc{height:60.057813pt;}
.h2f{height:60.800000pt;}
.h13{height:62.080000pt;}
.h16{height:64.000000pt;}
.h18{height:64.832000pt;}
.h30{height:72.992000pt;}
.h5{height:100.192000pt;}
.h1d{height:123.392000pt;}
.h2{height:130.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w9{width:55.680000pt;}
.w8{width:55.872000pt;}
.w6{width:56.672000pt;}
.w20{width:58.272000pt;}
.w26{width:58.752000pt;}
.w1f{width:61.120000pt;}
.w25{width:61.280000pt;}
.w40{width:61.792000pt;}
.w3f{width:64.320000pt;}
.w34{width:68.672000pt;}
.w31{width:69.440000pt;}
.w33{width:70.400000pt;}
.w1a{width:76.480000pt;}
.w24{width:76.512000pt;}
.w30{width:76.640000pt;}
.w1b{width:76.672000pt;}
.w32{width:83.712000pt;}
.wf{width:84.800000pt;}
.w3e{width:88.160000pt;}
.w3d{width:88.192000pt;}
.w22{width:89.120000pt;}
.w3c{width:89.920000pt;}
.w1e{width:93.952000pt;}
.w1d{width:94.080000pt;}
.w28{width:94.240000pt;}
.w23{width:96.672000pt;}
.wb{width:104.992000pt;}
.w10{width:113.792000pt;}
.w3{width:116.352000pt;}
.w12{width:120.512000pt;}
.w2b{width:134.906667pt;}
.w42{width:137.146667pt;}
.w17{width:143.066667pt;}
.w37{width:144.186667pt;}
.w16{width:146.426667pt;}
.wa{width:157.946667pt;}
.w2a{width:159.226667pt;}
.w15{width:161.146667pt;}
.w43{width:165.786667pt;}
.w36{width:166.906667pt;}
.w39{width:179.866667pt;}
.w11{width:185.466667pt;}
.we{width:197.946667pt;}
.w45{width:199.866667pt;}
.w1c{width:200.226667pt;}
.w44{width:202.946667pt;}
.w2d{width:203.226667pt;}
.w27{width:206.146667pt;}
.w2c{width:206.306667pt;}
.w38{width:208.546667pt;}
.w3b{width:217.346667pt;}
.w21{width:219.906667pt;}
.w7{width:236.986667pt;}
.w14{width:241.186667pt;}
.w2f{width:259.106667pt;}
.w19{width:261.506667pt;}
.w18{width:267.586667pt;}
.wd{width:293.666667pt;}
.w35{width:388.413333pt;}
.w41{width:402.813333pt;}
.w29{width:409.533333pt;}
.w13{width:568.773333pt;}
.w2{width:577.253333pt;}
.wc{width:668.160000pt;}
.w3a{width:699.520000pt;}
.w2e{width:703.680000pt;}
.w46{width:705.760000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.120000pt;}
.x18{left:4.000000pt;}
.x2{left:7.200000pt;}
.x28{left:11.200000pt;}
.x44{left:44.000000pt;}
.x33{left:45.120000pt;}
.x5{left:47.999988pt;}
.x22{left:49.120000pt;}
.x1{left:50.080000pt;}
.x1a{left:51.040000pt;}
.x17{left:52.320000pt;}
.x1e{left:55.840000pt;}
.x48{left:61.759988pt;}
.xd{left:62.880000pt;}
.x49{left:85.791988pt;}
.xc{left:90.111988pt;}
.x3e{left:96.031988pt;}
.x4{left:105.466667pt;}
.xe{left:119.552000pt;}
.xb{left:123.231988pt;}
.x19{left:172.826667pt;}
.x7{left:183.706655pt;}
.x47{left:246.946667pt;}
.x23{left:249.346667pt;}
.x35{left:251.426667pt;}
.x2e{left:254.786667pt;}
.x3d{left:255.746667pt;}
.x9{left:261.186655pt;}
.x3f{left:265.186667pt;}
.x29{left:268.546667pt;}
.x1b{left:292.226667pt;}
.xa{left:301.026655pt;}
.x14{left:303.906667pt;}
.x1f{left:323.426667pt;}
.x24{left:343.426667pt;}
.x40{left:355.106667pt;}
.xf{left:356.546667pt;}
.x2a{left:357.666667pt;}
.x36{left:380.386667pt;}
.x15{left:388.706667pt;}
.x8{left:396.893322pt;}
.x10{left:412.413333pt;}
.x3b{left:435.613333pt;}
.x25{left:437.373333pt;}
.x2f{left:440.573333pt;}
.x41{left:443.293333pt;}
.x45{left:446.813333pt;}
.x1c{left:453.373333pt;}
.x2b{left:454.333333pt;}
.x37{left:457.053333pt;}
.x11{left:468.093333pt;}
.x16{left:502.493333pt;}
.x38{left:526.493333pt;}
.x26{left:531.453333pt;}
.x30{left:534.813333pt;}
.x2c{left:548.573333pt;}
.x46{left:583.973333pt;}
.x20{left:584.933333pt;}
.x1d{left:599.813333pt;}
.x3c{left:602.533333pt;}
.x39{left:610.213333pt;}
.x31{left:611.333333pt;}
.x34{left:613.893333pt;}
.x42{left:619.653333pt;}
.x2d{left:625.093333pt;}
.x12{left:626.053333pt;}
.x3{left:627.333333pt;}
.x21{left:661.413333pt;}
.x32{left:672.613333pt;}
.x3a{left:680.613333pt;}
.x43{left:683.973333pt;}
.x27{left:686.533333pt;}
.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; }
  