
    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_4f780b6a4cec81c6df9e622b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6c36034874a197d530e4ac59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_454c651b051bf16c759aae49.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_401a2caf3536f1bf46c6113b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8070134d56e1291a66cd5ff7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_c0fe84f2d33d5020cccd9660.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_624c18caceead79a327e6adc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d34fc77e43fdb17a2ba54235.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c2cebe0b9917ab5aa007f5bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7eaac13a8e1033ece931f8ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854492;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:fff;src:url('chunks/assets/font_f951dfdc9cae48247448cd8a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.783691;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:ff11;src:url('chunks/assets/font_4b7478b61078098d8a66a793.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_de6b6255ff4dddc8c680ab28.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.666000px;}
.ls6{letter-spacing:-0.478200px;}
.ls21{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.038880px;}
.ls5{letter-spacing:-0.025920px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.224400px;}
.ls7{letter-spacing:0.241800px;}
.lsd{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.328320px;}
.ls2{letter-spacing:0.360000px;}
.lsc{letter-spacing:1.080000px;}
.ls16{letter-spacing:3.780000px;}
.ls18{letter-spacing:8.100000px;}
.ls1b{letter-spacing:10.980000px;}
.ls19{letter-spacing:13.140000px;}
.ls1e{letter-spacing:14.580000px;}
.ls13{letter-spacing:21.546720px;}
.ls1a{letter-spacing:32.760000px;}
.lsf{letter-spacing:44.562720px;}
.lse{letter-spacing:44.586720px;}
.ls1f{letter-spacing:49.320000px;}
.ls1d{letter-spacing:49.860000px;}
.ls20{letter-spacing:141.300000px;}
.ls12{letter-spacing:522.876000px;}
.ls11{letter-spacing:532.956000px;}
.ls10{letter-spacing:578.316000px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.274000px;}
.ws8{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.108320px;}
.ws9{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws6{word-spacing:-10.854600px;}
.ws4{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.134600px;}
.wsa{word-spacing:0.000000px;}
._46{margin-left:-9.153360px;}
._1d{margin-left:-3.324240px;}
._6{margin-left:-2.099040px;}
._3{margin-left:-1.036800px;}
._0{width:1.434240px;}
._9{width:2.832960px;}
._11{width:4.121760px;}
._d{width:5.617440px;}
._8{width:6.693120px;}
._a{width:8.067600px;}
._1{width:9.953280px;}
._2{width:10.964160px;}
._7{width:12.136800px;}
._1c{width:13.222320px;}
._17{width:15.472800px;}
._10{width:16.673040px;}
._f{width:17.868240px;}
._4{width:18.884160px;}
._5{width:19.959840px;}
._e{width:21.453840px;}
._16{width:22.589280px;}
._13{width:23.605200px;}
._12{width:24.621120px;}
._c{width:25.637040px;}
._15{width:26.660400px;}
._14{width:28.087200px;}
._20{width:29.521440px;}
._23{width:31.194720px;}
._25{width:32.210640px;}
._22{width:33.346080px;}
._27{width:34.481520px;}
._21{width:35.856000px;}
._34{width:37.469520px;}
._1a{width:38.664720px;}
._2c{width:39.859920px;}
._2b{width:40.875840px;}
._2d{width:42.089040px;}
._29{width:43.107840px;}
._30{width:44.282160px;}
._b{width:45.537120px;}
._1b{width:47.210400px;}
._28{width:48.465360px;}
._1f{width:49.660560px;}
._32{width:50.922960px;}
._19{width:51.931440px;}
._18{width:53.485200px;}
._3f{width:54.560880px;}
._31{width:56.592720px;}
._24{width:58.086720px;}
._2f{width:59.939280px;}
._1e{width:62.927280px;}
._35{width:63.950640px;}
._36{width:65.198160px;}
._3d{width:66.393360px;}
._3a{width:67.947120px;}
._43{width:69.441120px;}
._3b{width:70.755840px;}
._2a{width:71.771760px;}
._26{width:73.206000px;}
._2e{width:75.237840px;}
._41{width:76.552560px;}
._37{width:78.345360px;}
._3e{width:79.839360px;}
._42{width:81.759120px;}
._39{width:83.783520px;}
._44{width:85.875120px;}
._49{width:88.875120px;}
._45{width:90.581520px;}
._4b{width:91.910880px;}
._33{width:93.823200px;}
._38{width:95.982480px;}
._40{width:111.930480px;}
._3c{width:113.185440px;}
._47{width:119.233920px;}
._4d{width:140.973840px;}
._4c{width:151.024560px;}
._48{width:158.034960px;}
._4a{width:190.016880px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:44.018465px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y59{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.ya6{bottom:3.645000px;}
.y45{bottom:4.680000px;}
.y58{bottom:5.220000px;}
.y56{bottom:5.400000px;}
.yad{bottom:12.060000px;}
.ya3{bottom:12.240000px;}
.ya7{bottom:12.285000px;}
.y42{bottom:20.700000px;}
.ya9{bottom:20.880000px;}
.ya5{bottom:20.925000px;}
.y55{bottom:31.860000px;}
.y41{bottom:38.340000px;}
.y40{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y54{bottom:64.440000px;}
.y3f{bottom:73.620000px;}
.y2{bottom:80.100000px;}
.y3e{bottom:91.080000px;}
.y3d{bottom:108.765000px;}
.yda{bottom:109.980000px;}
.y106{bottom:112.860000px;}
.y57{bottom:113.580000px;}
.yb7{bottom:118.080000px;}
.y95{bottom:123.300000px;}
.y3c{bottom:126.405000px;}
.yd9{bottom:127.980000px;}
.y105{bottom:130.140000px;}
.yb6{bottom:135.360000px;}
.y94{bottom:140.580000px;}
.y3b{bottom:143.865000px;}
.yd8{bottom:145.980000px;}
.y104{bottom:147.420000px;}
.y52{bottom:151.560000px;}
.yb5{bottom:152.640000px;}
.y93{bottom:157.860000px;}
.y3a{bottom:161.505000px;}
.yd7{bottom:163.980000px;}
.y103{bottom:164.700000px;}
.y50{bottom:168.660000px;}
.yb4{bottom:169.920000px;}
.y92{bottom:175.140000px;}
.y39{bottom:179.145000px;}
.y102{bottom:181.800000px;}
.yd6{bottom:181.980000px;}
.y4f{bottom:185.940000px;}
.yb3{bottom:187.200000px;}
.y109{bottom:192.060000px;}
.y91{bottom:192.420000px;}
.y38{bottom:196.605000px;}
.y101{bottom:199.080000px;}
.yd5{bottom:199.980000px;}
.y4e{bottom:203.220000px;}
.yb2{bottom:204.300000px;}
.y90{bottom:209.700000px;}
.y37{bottom:214.245000px;}
.y100{bottom:216.390000px;}
.y4d{bottom:220.530000px;}
.yb1{bottom:221.610000px;}
.y8f{bottom:226.830000px;}
.y36{bottom:231.885000px;}
.yff{bottom:233.670000px;}
.y4c{bottom:237.810000px;}
.yd4{bottom:238.530000px;}
.yb0{bottom:238.890000px;}
.y8e{bottom:244.110000px;}
.y35{bottom:249.525000px;}
.yfe{bottom:250.950000px;}
.y4b{bottom:255.090000px;}
.yaf{bottom:256.170000px;}
.y99{bottom:261.030000px;}
.y8d{bottom:261.390000px;}
.y34{bottom:266.985000px;}
.yfd{bottom:268.230000px;}
.y4a{bottom:272.190000px;}
.yae{bottom:273.090000px;}
.yb8{bottom:273.450000px;}
.y98{bottom:278.310000px;}
.y8c{bottom:278.670000px;}
.y33{bottom:284.625000px;}
.yfc{bottom:285.330000px;}
.y49{bottom:289.470000px;}
.yd2{bottom:290.730000px;}
.y8b{bottom:295.950000px;}
.y32{bottom:302.265000px;}
.yfb{bottom:302.610000px;}
.yac{bottom:305.130000px;}
.y48{bottom:306.390000px;}
.y51{bottom:306.750000px;}
.yd1{bottom:307.830000px;}
.y23{bottom:310.545000px;}
.y8a{bottom:313.230000px;}
.y31{bottom:319.725000px;}
.yfa{bottom:319.890000px;}
.y47{bottom:323.670000px;}
.yd0{bottom:325.110000px;}
.y22{bottom:328.725000px;}
.y10d{bottom:329.970000px;}
.y89{bottom:330.330000px;}
.yf9{bottom:337.170000px;}
.y30{bottom:337.395000px;}
.y46{bottom:338.070000px;}
.y44{bottom:340.050000px;}
.yab{bottom:340.230000px;}
.ycf{bottom:342.390000px;}
.y12{bottom:346.170000px;}
.y21{bottom:346.935000px;}
.y88{bottom:347.610000px;}
.yf8{bottom:354.450000px;}
.y2f{bottom:355.035000px;}
.yce{bottom:359.670000px;}
.y20{bottom:362.415000px;}
.y87{bottom:364.890000px;}
.yf7{bottom:371.730000px;}
.y2e{bottom:372.495000px;}
.yaa{bottom:375.510000px;}
.y1f{bottom:376.455000px;}
.ycd{bottom:376.950000px;}
.y86{bottom:382.170000px;}
.yf6{bottom:388.830000px;}
.y2d{bottom:390.135000px;}
.y1e{bottom:390.675000px;}
.ycc{bottom:394.230000px;}
.y85{bottom:399.450000px;}
.y1d{bottom:404.715000px;}
.yf5{bottom:406.110000px;}
.y2c{bottom:407.775000px;}
.ya8{bottom:410.790000px;}
.ycb{bottom:411.330000px;}
.y10c{bottom:416.370000px;}
.y84{bottom:416.730000px;}
.y1c{bottom:418.755000px;}
.yf4{bottom:423.390000px;}
.y2b{bottom:425.415000px;}
.yca{bottom:428.610000px;}
.y1b{bottom:432.435000px;}
.y83{bottom:433.830000px;}
.yf3{bottom:440.310000px;}
.y108{bottom:440.670000px;}
.y2a{bottom:442.875000px;}
.yc9{bottom:445.890000px;}
.ya4{bottom:446.070000px;}
.y1a{bottom:446.295000px;}
.y82{bottom:451.155000px;}
.yf2{bottom:457.635000px;}
.y107{bottom:457.995000px;}
.y19{bottom:460.155000px;}
.y29{bottom:460.515000px;}
.yc8{bottom:463.215000px;}
.y81{bottom:468.435000px;}
.y18{bottom:474.195000px;}
.y28{bottom:478.155000px;}
.yc7{bottom:480.495000px;}
.ya2{bottom:481.395000px;}
.y96{bottom:485.355000px;}
.y80{bottom:485.715000px;}
.y17{bottom:488.235000px;}
.yf1{bottom:489.495000px;}
.y27{bottom:495.615000px;}
.yc6{bottom:497.595000px;}
.y16{bottom:502.275000px;}
.y10b{bottom:502.635000px;}
.y7f{bottom:502.995000px;}
.yf0{bottom:507.495000px;}
.y26{bottom:513.255000px;}
.yc5{bottom:514.875000px;}
.y15{bottom:516.855000px;}
.y7e{bottom:520.095000px;}
.yef{bottom:525.495000px;}
.y25{bottom:530.895000px;}
.yc4{bottom:532.155000px;}
.y14{bottom:534.855000px;}
.y7d{bottom:537.375000px;}
.yee{bottom:543.495000px;}
.yc3{bottom:549.435000px;}
.y24{bottom:551.595000px;}
.y13{bottom:552.135000px;}
.y7c{bottom:554.655000px;}
.yed{bottom:561.495000px;}
.yc2{bottom:566.715000px;}
.y9e{bottom:571.575000px;}
.y7b{bottom:571.935000px;}
.yec{bottom:579.495000px;}
.yc1{bottom:583.995000px;}
.y9d{bottom:588.855000px;}
.y7a{bottom:589.215000px;}
.yc0{bottom:600.735000px;}
.yd3{bottom:601.095000px;}
.y9c{bottom:606.135000px;}
.y79{bottom:606.495000px;}
.yeb{bottom:618.015000px;}
.y78{bottom:623.595000px;}
.ybf{bottom:632.775000px;}
.ye9{bottom:635.655000px;}
.y77{bottom:640.875000px;}
.ye8{bottom:652.935000px;}
.y76{bottom:658.155000px;}
.ybe{bottom:668.055000px;}
.ye7{bottom:670.215000px;}
.y97{bottom:675.075000px;}
.y75{bottom:675.435000px;}
.ybd{bottom:686.085000px;}
.ye6{bottom:687.525000px;}
.ya1{bottom:692.385000px;}
.y74{bottom:692.745000px;}
.ye5{bottom:704.625000px;}
.y73{bottom:710.025000px;}
.ybc{bottom:721.365000px;}
.ye4{bottom:721.905000px;}
.y72{bottom:727.125000px;}
.ye3{bottom:739.185000px;}
.y71{bottom:744.405000px;}
.ye2{bottom:756.105000px;}
.yea{bottom:756.465000px;}
.ybb{bottom:756.645000px;}
.y70{bottom:761.685000px;}
.y6f{bottom:778.965000px;}
.ye1{bottom:788.145000px;}
.yba{bottom:791.925000px;}
.y10a{bottom:795.885000px;}
.y6e{bottom:796.245000px;}
.ye0{bottom:806.145000px;}
.y6d{bottom:813.345000px;}
.ydf{bottom:824.145000px;}
.y6c{bottom:830.625000px;}
.yde{bottom:842.145000px;}
.yb9{bottom:847.545000px;}
.y6b{bottom:847.905000px;}
.ydd{bottom:860.145000px;}
.y6a{bottom:865.185000px;}
.ydc{bottom:878.145000px;}
.y69{bottom:882.465000px;}
.y9b{bottom:899.385000px;}
.y68{bottom:899.745000px;}
.y9a{bottom:916.485000px;}
.y67{bottom:916.845000px;}
.y11{bottom:917.205000px;}
.y66{bottom:934.170000px;}
.y10{bottom:939.390000px;}
.y65{bottom:951.450000px;}
.ye{bottom:956.670000px;}
.yf{bottom:962.610000px;}
.ya0{bottom:968.370000px;}
.y64{bottom:968.730000px;}
.yd{bottom:975.750000px;}
.y9f{bottom:985.650000px;}
.y63{bottom:986.010000px;}
.yc{bottom:995.190000px;}
.y62{bottom:1003.290000px;}
.yb{bottom:1017.510000px;}
.y61{bottom:1020.390000px;}
.y60{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.y5f{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y53{bottom:1070.250000px;}
.y5e{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.y5d{bottom:1089.510000px;}
.y5c{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.y5b{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.ydb{bottom:1140.810000px;}
.y5a{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h13{height:5.653125px;}
.h14{height:5.805000px;}
.h15{height:5.920372px;}
.h12{height:6.120000px;}
.h1b{height:16.380000px;}
.h23{height:17.100000px;}
.h4{height:17.280000px;}
.h22{height:17.316000px;}
.h1f{height:34.380000px;}
.h20{height:34.416000px;}
.h21{height:34.560000px;}
.h1d{height:40.655391px;}
.he{height:40.843828px;}
.h1e{height:41.726953px;}
.h10{height:45.720703px;}
.h9{height:45.823910px;}
.h11{height:45.859856px;}
.h1c{height:47.321367px;}
.h3{height:47.980898px;}
.h1a{height:48.616875px;}
.hd{height:49.583118px;}
.hf{height:50.218594px;}
.hc{height:50.597578px;}
.h24{height:58.621992px;}
.h5{height:58.651172px;}
.h16{height:60.226875px;}
.h17{height:61.423863px;}
.ha{height:62.211094px;}
.h8{height:66.757500px;}
.h19{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h18{height:81.180000px;}
.hb{height:565.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:109.836000px;}
.w12{width:110.016000px;}
.w16{width:110.556000px;}
.wd{width:110.736000px;}
.w1a{width:124.056000px;}
.w15{width:124.956000px;}
.w11{width:130.356000px;}
.wc{width:131.256000px;}
.w10{width:132.696000px;}
.wb{width:133.416000px;}
.w19{width:139.680000px;}
.w30{width:139.716000px;}
.w14{width:140.040000px;}
.w2d{width:140.436000px;}
.w1d{width:145.440000px;}
.w18{width:145.800000px;}
.wf{width:146.160000px;}
.wa{width:146.520000px;}
.w25{width:147.420000px;}
.w21{width:147.780000px;}
.w24{width:148.896000px;}
.w20{width:149.616000px;}
.w29{width:152.490000px;}
.w26{width:152.850000px;}
.w13{width:153.360000px;}
.w1c{width:153.390000px;}
.we{width:153.720000px;}
.w17{width:154.290000px;}
.w23{width:170.490000px;}
.w1f{width:171.210000px;}
.w2a{width:198.030000px;}
.w27{width:198.750000px;}
.w22{width:204.150000px;}
.w1e{width:204.510000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w31{width:213.330000px;}
.w2e{width:213.690000px;}
.w2b{width:315.210000px;}
.w28{width:315.570000px;}
.w2f{width:318.270000px;}
.w2c{width:318.630000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x14{left:10.800000px;}
.x2c{left:14.625000px;}
.x28{left:15.705000px;}
.x33{left:19.080000px;}
.xa{left:20.700000px;}
.x26{left:21.825000px;}
.x20{left:23.400000px;}
.x1d{left:25.380000px;}
.x2{left:27.000000px;}
.x23{left:28.080000px;}
.x32{left:30.105000px;}
.x3{left:31.140000px;}
.x31{left:32.265000px;}
.x1f{left:33.480000px;}
.x1a{left:36.180000px;}
.x2a{left:38.160000px;}
.x34{left:40.185000px;}
.x22{left:43.020000px;}
.x2e{left:44.100000px;}
.x3c{left:45.894000px;}
.x27{left:47.025000px;}
.x24{left:48.414000px;}
.x3e{left:51.660000px;}
.x6{left:53.999987px;}
.x29{left:57.810000px;}
.x3d{left:59.394000px;}
.xd{left:63.720000px;}
.x3b{left:66.960000px;}
.xe{left:68.940000px;}
.x42{left:71.280000px;}
.x25{left:72.900000px;}
.x3a{left:77.760000px;}
.x49{left:81.405000px;}
.x4a{left:88.914000px;}
.x43{left:91.440000px;}
.x13{left:100.476000px;}
.x48{left:101.514000px;}
.x1{left:108.035987px;}
.x36{left:110.016000px;}
.x45{left:111.414000px;}
.x3f{left:113.076000px;}
.x17{left:135.035987px;}
.x10{left:140.616000px;}
.x44{left:150.165000px;}
.x11{left:157.539000px;}
.x7{left:159.869987px;}
.x18{left:162.029987px;}
.x2b{left:248.790000px;}
.x1b{left:255.270000px;}
.x40{left:265.935000px;}
.x9{left:267.195000px;}
.x19{left:276.014987px;}
.x35{left:279.974987px;}
.x12{left:312.549000px;}
.x37{left:314.535000px;}
.x2d{left:373.755000px;}
.x1c{left:388.695000px;}
.x46{left:428.835000px;}
.x5{left:446.504987px;}
.x4{left:456.044987px;}
.x41{left:464.685000px;}
.xf{left:473.144987px;}
.xb{left:478.155000px;}
.xc{left:483.195000px;}
.x2f{left:484.305000px;}
.x38{left:485.745000px;}
.x15{left:500.144987px;}
.x1e{left:519.945000px;}
.x16{left:527.144987px;}
.x47{left:569.265000px;}
.x21{left:630.690000px;}
.x39{left:635.370000px;}
.x30{left:638.610000px;}
@media print{
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.592000pt;}
.ls6{letter-spacing:-0.425067pt;}
.ls21{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.034560pt;}
.ls5{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.199467pt;}
.ls7{letter-spacing:0.214933pt;}
.lsd{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.291840pt;}
.ls2{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls18{letter-spacing:7.200000pt;}
.ls1b{letter-spacing:9.760000pt;}
.ls19{letter-spacing:11.680000pt;}
.ls1e{letter-spacing:12.960000pt;}
.ls13{letter-spacing:19.152640pt;}
.ls1a{letter-spacing:29.120000pt;}
.lsf{letter-spacing:39.611307pt;}
.lse{letter-spacing:39.632640pt;}
.ls1f{letter-spacing:43.840000pt;}
.ls1d{letter-spacing:44.320000pt;}
.ls20{letter-spacing:125.600000pt;}
.ls12{letter-spacing:464.778667pt;}
.ls11{letter-spacing:473.738667pt;}
.ls10{letter-spacing:514.058667pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.651840pt;}
.ws9{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws6{word-spacing:-9.648533pt;}
.ws4{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.008533pt;}
.wsa{word-spacing:0.000000pt;}
._46{margin-left:-8.136320pt;}
._1d{margin-left:-2.954880pt;}
._6{margin-left:-1.865813pt;}
._3{margin-left:-0.921600pt;}
._0{width:1.274880pt;}
._9{width:2.518187pt;}
._11{width:3.663787pt;}
._d{width:4.993280pt;}
._8{width:5.949440pt;}
._a{width:7.171200pt;}
._1{width:8.847360pt;}
._2{width:9.745920pt;}
._7{width:10.788267pt;}
._1c{width:11.753173pt;}
._17{width:13.753600pt;}
._10{width:14.820480pt;}
._f{width:15.882880pt;}
._4{width:16.785920pt;}
._5{width:17.742080pt;}
._e{width:19.070080pt;}
._16{width:20.079360pt;}
._13{width:20.982400pt;}
._12{width:21.885440pt;}
._c{width:22.788480pt;}
._15{width:23.698133pt;}
._14{width:24.966400pt;}
._20{width:26.241280pt;}
._23{width:27.728640pt;}
._25{width:28.631680pt;}
._22{width:29.640960pt;}
._27{width:30.650240pt;}
._21{width:31.872000pt;}
._34{width:33.306240pt;}
._1a{width:34.368640pt;}
._2c{width:35.431040pt;}
._2b{width:36.334080pt;}
._2d{width:37.412480pt;}
._29{width:38.318080pt;}
._30{width:39.361920pt;}
._b{width:40.477440pt;}
._1b{width:41.964800pt;}
._28{width:43.080320pt;}
._1f{width:44.142720pt;}
._32{width:45.264853pt;}
._19{width:46.161280pt;}
._18{width:47.542400pt;}
._3f{width:48.498560pt;}
._31{width:50.304640pt;}
._24{width:51.632640pt;}
._2f{width:53.279360pt;}
._1e{width:55.935360pt;}
._35{width:56.845013pt;}
._36{width:57.953920pt;}
._3d{width:59.016320pt;}
._3a{width:60.397440pt;}
._43{width:61.725440pt;}
._3b{width:62.894080pt;}
._2a{width:63.797120pt;}
._26{width:65.072000pt;}
._2e{width:66.878080pt;}
._41{width:68.046720pt;}
._37{width:69.640320pt;}
._3e{width:70.968320pt;}
._42{width:72.674773pt;}
._39{width:74.474240pt;}
._44{width:76.333440pt;}
._49{width:79.000107pt;}
._45{width:80.516907pt;}
._4b{width:81.698560pt;}
._33{width:83.398400pt;}
._38{width:85.317760pt;}
._40{width:99.493760pt;}
._3c{width:100.609280pt;}
._47{width:105.985707pt;}
._4d{width:125.310080pt;}
._4c{width:134.244053pt;}
._48{width:140.475520pt;}
._4a{width:168.903893pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:39.127524pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y59{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.ya6{bottom:3.240000pt;}
.y45{bottom:4.160000pt;}
.y58{bottom:4.640000pt;}
.y56{bottom:4.800000pt;}
.yad{bottom:10.720000pt;}
.ya3{bottom:10.880000pt;}
.ya7{bottom:10.920000pt;}
.y42{bottom:18.400000pt;}
.ya9{bottom:18.560000pt;}
.ya5{bottom:18.600000pt;}
.y55{bottom:28.320000pt;}
.y41{bottom:34.080000pt;}
.y40{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y54{bottom:57.280000pt;}
.y3f{bottom:65.440000pt;}
.y2{bottom:71.200000pt;}
.y3e{bottom:80.960000pt;}
.y3d{bottom:96.680000pt;}
.yda{bottom:97.760000pt;}
.y106{bottom:100.320000pt;}
.y57{bottom:100.960000pt;}
.yb7{bottom:104.960000pt;}
.y95{bottom:109.600000pt;}
.y3c{bottom:112.360000pt;}
.yd9{bottom:113.760000pt;}
.y105{bottom:115.680000pt;}
.yb6{bottom:120.320000pt;}
.y94{bottom:124.960000pt;}
.y3b{bottom:127.880000pt;}
.yd8{bottom:129.760000pt;}
.y104{bottom:131.040000pt;}
.y52{bottom:134.720000pt;}
.yb5{bottom:135.680000pt;}
.y93{bottom:140.320000pt;}
.y3a{bottom:143.560000pt;}
.yd7{bottom:145.760000pt;}
.y103{bottom:146.400000pt;}
.y50{bottom:149.920000pt;}
.yb4{bottom:151.040000pt;}
.y92{bottom:155.680000pt;}
.y39{bottom:159.240000pt;}
.y102{bottom:161.600000pt;}
.yd6{bottom:161.760000pt;}
.y4f{bottom:165.280000pt;}
.yb3{bottom:166.400000pt;}
.y109{bottom:170.720000pt;}
.y91{bottom:171.040000pt;}
.y38{bottom:174.760000pt;}
.y101{bottom:176.960000pt;}
.yd5{bottom:177.760000pt;}
.y4e{bottom:180.640000pt;}
.yb2{bottom:181.600000pt;}
.y90{bottom:186.400000pt;}
.y37{bottom:190.440000pt;}
.y100{bottom:192.346667pt;}
.y4d{bottom:196.026667pt;}
.yb1{bottom:196.986667pt;}
.y8f{bottom:201.626667pt;}
.y36{bottom:206.120000pt;}
.yff{bottom:207.706667pt;}
.y4c{bottom:211.386667pt;}
.yd4{bottom:212.026667pt;}
.yb0{bottom:212.346667pt;}
.y8e{bottom:216.986667pt;}
.y35{bottom:221.800000pt;}
.yfe{bottom:223.066667pt;}
.y4b{bottom:226.746667pt;}
.yaf{bottom:227.706667pt;}
.y99{bottom:232.026667pt;}
.y8d{bottom:232.346667pt;}
.y34{bottom:237.320000pt;}
.yfd{bottom:238.426667pt;}
.y4a{bottom:241.946667pt;}
.yae{bottom:242.746667pt;}
.yb8{bottom:243.066667pt;}
.y98{bottom:247.386667pt;}
.y8c{bottom:247.706667pt;}
.y33{bottom:253.000000pt;}
.yfc{bottom:253.626667pt;}
.y49{bottom:257.306667pt;}
.yd2{bottom:258.426667pt;}
.y8b{bottom:263.066667pt;}
.y32{bottom:268.680000pt;}
.yfb{bottom:268.986667pt;}
.yac{bottom:271.226667pt;}
.y48{bottom:272.346667pt;}
.y51{bottom:272.666667pt;}
.yd1{bottom:273.626667pt;}
.y23{bottom:276.040000pt;}
.y8a{bottom:278.426667pt;}
.y31{bottom:284.200000pt;}
.yfa{bottom:284.346667pt;}
.y47{bottom:287.706667pt;}
.yd0{bottom:288.986667pt;}
.y22{bottom:292.200000pt;}
.y10d{bottom:293.306667pt;}
.y89{bottom:293.626667pt;}
.yf9{bottom:299.706667pt;}
.y30{bottom:299.906667pt;}
.y46{bottom:300.506667pt;}
.y44{bottom:302.266667pt;}
.yab{bottom:302.426667pt;}
.ycf{bottom:304.346667pt;}
.y12{bottom:307.706667pt;}
.y21{bottom:308.386667pt;}
.y88{bottom:308.986667pt;}
.yf8{bottom:315.066667pt;}
.y2f{bottom:315.586667pt;}
.yce{bottom:319.706667pt;}
.y20{bottom:322.146667pt;}
.y87{bottom:324.346667pt;}
.yf7{bottom:330.426667pt;}
.y2e{bottom:331.106667pt;}
.yaa{bottom:333.786667pt;}
.y1f{bottom:334.626667pt;}
.ycd{bottom:335.066667pt;}
.y86{bottom:339.706667pt;}
.yf6{bottom:345.626667pt;}
.y2d{bottom:346.786667pt;}
.y1e{bottom:347.266667pt;}
.ycc{bottom:350.426667pt;}
.y85{bottom:355.066667pt;}
.y1d{bottom:359.746667pt;}
.yf5{bottom:360.986667pt;}
.y2c{bottom:362.466667pt;}
.ya8{bottom:365.146667pt;}
.ycb{bottom:365.626667pt;}
.y10c{bottom:370.106667pt;}
.y84{bottom:370.426667pt;}
.y1c{bottom:372.226667pt;}
.yf4{bottom:376.346667pt;}
.y2b{bottom:378.146667pt;}
.yca{bottom:380.986667pt;}
.y1b{bottom:384.386667pt;}
.y83{bottom:385.626667pt;}
.yf3{bottom:391.386667pt;}
.y108{bottom:391.706667pt;}
.y2a{bottom:393.666667pt;}
.yc9{bottom:396.346667pt;}
.ya4{bottom:396.506667pt;}
.y1a{bottom:396.706667pt;}
.y82{bottom:401.026667pt;}
.yf2{bottom:406.786667pt;}
.y107{bottom:407.106667pt;}
.y19{bottom:409.026667pt;}
.y29{bottom:409.346667pt;}
.yc8{bottom:411.746667pt;}
.y81{bottom:416.386667pt;}
.y18{bottom:421.506667pt;}
.y28{bottom:425.026667pt;}
.yc7{bottom:427.106667pt;}
.ya2{bottom:427.906667pt;}
.y96{bottom:431.426667pt;}
.y80{bottom:431.746667pt;}
.y17{bottom:433.986667pt;}
.yf1{bottom:435.106667pt;}
.y27{bottom:440.546667pt;}
.yc6{bottom:442.306667pt;}
.y16{bottom:446.466667pt;}
.y10b{bottom:446.786667pt;}
.y7f{bottom:447.106667pt;}
.yf0{bottom:451.106667pt;}
.y26{bottom:456.226667pt;}
.yc5{bottom:457.666667pt;}
.y15{bottom:459.426667pt;}
.y7e{bottom:462.306667pt;}
.yef{bottom:467.106667pt;}
.y25{bottom:471.906667pt;}
.yc4{bottom:473.026667pt;}
.y14{bottom:475.426667pt;}
.y7d{bottom:477.666667pt;}
.yee{bottom:483.106667pt;}
.yc3{bottom:488.386667pt;}
.y24{bottom:490.306667pt;}
.y13{bottom:490.786667pt;}
.y7c{bottom:493.026667pt;}
.yed{bottom:499.106667pt;}
.yc2{bottom:503.746667pt;}
.y9e{bottom:508.066667pt;}
.y7b{bottom:508.386667pt;}
.yec{bottom:515.106667pt;}
.yc1{bottom:519.106667pt;}
.y9d{bottom:523.426667pt;}
.y7a{bottom:523.746667pt;}
.yc0{bottom:533.986667pt;}
.yd3{bottom:534.306667pt;}
.y9c{bottom:538.786667pt;}
.y79{bottom:539.106667pt;}
.yeb{bottom:549.346667pt;}
.y78{bottom:554.306667pt;}
.ybf{bottom:562.466667pt;}
.ye9{bottom:565.026667pt;}
.y77{bottom:569.666667pt;}
.ye8{bottom:580.386667pt;}
.y76{bottom:585.026667pt;}
.ybe{bottom:593.826667pt;}
.ye7{bottom:595.746667pt;}
.y97{bottom:600.066667pt;}
.y75{bottom:600.386667pt;}
.ybd{bottom:609.853333pt;}
.ye6{bottom:611.133333pt;}
.ya1{bottom:615.453333pt;}
.y74{bottom:615.773333pt;}
.ye5{bottom:626.333333pt;}
.y73{bottom:631.133333pt;}
.ybc{bottom:641.213333pt;}
.ye4{bottom:641.693333pt;}
.y72{bottom:646.333333pt;}
.ye3{bottom:657.053333pt;}
.y71{bottom:661.693333pt;}
.ye2{bottom:672.093333pt;}
.yea{bottom:672.413333pt;}
.ybb{bottom:672.573333pt;}
.y70{bottom:677.053333pt;}
.y6f{bottom:692.413333pt;}
.ye1{bottom:700.573333pt;}
.yba{bottom:703.933333pt;}
.y10a{bottom:707.453333pt;}
.y6e{bottom:707.773333pt;}
.ye0{bottom:716.573333pt;}
.y6d{bottom:722.973333pt;}
.ydf{bottom:732.573333pt;}
.y6c{bottom:738.333333pt;}
.yde{bottom:748.573333pt;}
.yb9{bottom:753.373333pt;}
.y6b{bottom:753.693333pt;}
.ydd{bottom:764.573333pt;}
.y6a{bottom:769.053333pt;}
.ydc{bottom:780.573333pt;}
.y69{bottom:784.413333pt;}
.y9b{bottom:799.453333pt;}
.y68{bottom:799.773333pt;}
.y9a{bottom:814.653333pt;}
.y67{bottom:814.973333pt;}
.y11{bottom:815.293333pt;}
.y66{bottom:830.373333pt;}
.y10{bottom:835.013333pt;}
.y65{bottom:845.733333pt;}
.ye{bottom:850.373333pt;}
.yf{bottom:855.653333pt;}
.ya0{bottom:860.773333pt;}
.y64{bottom:861.093333pt;}
.yd{bottom:867.333333pt;}
.y9f{bottom:876.133333pt;}
.y63{bottom:876.453333pt;}
.yc{bottom:884.613333pt;}
.y62{bottom:891.813333pt;}
.yb{bottom:904.453333pt;}
.y61{bottom:907.013333pt;}
.y60{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.y5f{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y53{bottom:951.333333pt;}
.y5e{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.y5d{bottom:968.453333pt;}
.y5c{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.y5b{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.ydb{bottom:1014.053333pt;}
.y5a{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h13{height:5.025000pt;}
.h14{height:5.160000pt;}
.h15{height:5.262553pt;}
.h12{height:5.440000pt;}
.h1b{height:14.560000pt;}
.h23{height:15.200000pt;}
.h4{height:15.360000pt;}
.h22{height:15.392000pt;}
.h1f{height:30.560000pt;}
.h20{height:30.592000pt;}
.h21{height:30.720000pt;}
.h1d{height:36.138125pt;}
.he{height:36.305625pt;}
.h1e{height:37.090625pt;}
.h10{height:40.640625pt;}
.h9{height:40.732364pt;}
.h11{height:40.764316pt;}
.h1c{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1a{height:43.215000pt;}
.hd{height:44.073883pt;}
.hf{height:44.638750pt;}
.hc{height:44.975625pt;}
.h24{height:52.108438pt;}
.h5{height:52.134375pt;}
.h16{height:53.535000pt;}
.h17{height:54.598989pt;}
.ha{height:55.298750pt;}
.h8{height:59.340000pt;}
.h19{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h18{height:72.160000pt;}
.hb{height:502.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:97.632000pt;}
.w12{width:97.792000pt;}
.w16{width:98.272000pt;}
.wd{width:98.432000pt;}
.w1a{width:110.272000pt;}
.w15{width:111.072000pt;}
.w11{width:115.872000pt;}
.wc{width:116.672000pt;}
.w10{width:117.952000pt;}
.wb{width:118.592000pt;}
.w19{width:124.160000pt;}
.w30{width:124.192000pt;}
.w14{width:124.480000pt;}
.w2d{width:124.832000pt;}
.w1d{width:129.280000pt;}
.w18{width:129.600000pt;}
.wf{width:129.920000pt;}
.wa{width:130.240000pt;}
.w25{width:131.040000pt;}
.w21{width:131.360000pt;}
.w24{width:132.352000pt;}
.w20{width:132.992000pt;}
.w29{width:135.546667pt;}
.w26{width:135.866667pt;}
.w13{width:136.320000pt;}
.w1c{width:136.346667pt;}
.we{width:136.640000pt;}
.w17{width:137.146667pt;}
.w23{width:151.546667pt;}
.w1f{width:152.186667pt;}
.w2a{width:176.026667pt;}
.w27{width:176.666667pt;}
.w22{width:181.466667pt;}
.w1e{width:181.786667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w31{width:189.626667pt;}
.w2e{width:189.946667pt;}
.w2b{width:280.186667pt;}
.w28{width:280.506667pt;}
.w2f{width:282.906667pt;}
.w2c{width:283.226667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x14{left:9.600000pt;}
.x2c{left:13.000000pt;}
.x28{left:13.960000pt;}
.x33{left:16.960000pt;}
.xa{left:18.400000pt;}
.x26{left:19.400000pt;}
.x20{left:20.800000pt;}
.x1d{left:22.560000pt;}
.x2{left:24.000000pt;}
.x23{left:24.960000pt;}
.x32{left:26.760000pt;}
.x3{left:27.680000pt;}
.x31{left:28.680000pt;}
.x1f{left:29.760000pt;}
.x1a{left:32.160000pt;}
.x2a{left:33.920000pt;}
.x34{left:35.720000pt;}
.x22{left:38.240000pt;}
.x2e{left:39.200000pt;}
.x3c{left:40.794667pt;}
.x27{left:41.800000pt;}
.x24{left:43.034667pt;}
.x3e{left:45.920000pt;}
.x6{left:47.999988pt;}
.x29{left:51.386667pt;}
.x3d{left:52.794667pt;}
.xd{left:56.640000pt;}
.x3b{left:59.520000pt;}
.xe{left:61.280000pt;}
.x42{left:63.360000pt;}
.x25{left:64.800000pt;}
.x3a{left:69.120000pt;}
.x49{left:72.360000pt;}
.x4a{left:79.034667pt;}
.x43{left:81.280000pt;}
.x13{left:89.312000pt;}
.x48{left:90.234667pt;}
.x1{left:96.031988pt;}
.x36{left:97.792000pt;}
.x45{left:99.034667pt;}
.x3f{left:100.512000pt;}
.x17{left:120.031988pt;}
.x10{left:124.992000pt;}
.x44{left:133.480000pt;}
.x11{left:140.034667pt;}
.x7{left:142.106655pt;}
.x18{left:144.026655pt;}
.x2b{left:221.146667pt;}
.x1b{left:226.906667pt;}
.x40{left:236.386667pt;}
.x9{left:237.506667pt;}
.x19{left:245.346655pt;}
.x35{left:248.866655pt;}
.x12{left:277.821333pt;}
.x37{left:279.586667pt;}
.x2d{left:332.226667pt;}
.x1c{left:345.506667pt;}
.x46{left:381.186667pt;}
.x5{left:396.893322pt;}
.x4{left:405.373322pt;}
.x41{left:413.053333pt;}
.xf{left:420.573322pt;}
.xb{left:425.026667pt;}
.xc{left:429.506667pt;}
.x2f{left:430.493333pt;}
.x38{left:431.773333pt;}
.x15{left:444.573322pt;}
.x1e{left:462.173333pt;}
.x16{left:468.573322pt;}
.x47{left:506.013333pt;}
.x21{left:560.613333pt;}
.x39{left:564.773333pt;}
.x30{left:567.653333pt;}
}




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