
    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_f749e821faca6dda0d61d96f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_81579d4d61ca046943256e30.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_fdd3d05e3b5ff91747bbae15.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_9c7503cc3dcafe4635ec750c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_bd0d198d8468e198f8a81e01.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6ecf5b1b7cbcf58204bc7ddd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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;}
.m5{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-ms-transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-webkit-transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);}
.m8{transform:matrix(0.243810,0.000000,-0.081270,0.236422,0,0);-ms-transform:matrix(0.243810,0.000000,-0.081270,0.236422,0,0);-webkit-transform:matrix(0.243810,0.000000,-0.081270,0.236422,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);}
.m7{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,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);}
.v1{vertical-align:-53.292000px;}
.v6{vertical-align:-45.438000px;}
.v5{vertical-align:-33.144000px;}
.v3{vertical-align:-3.462000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.944000px;}
.v7{vertical-align:37.746000px;}
.v2{vertical-align:43.932000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:19.714800px;}
.ls2{letter-spacing:44.454000px;}
.ls1{letter-spacing:46.506000px;}
.ls6{letter-spacing:78.870000px;}
.ls4{letter-spacing:104.136000px;}
.ls5{letter-spacing:137.406000px;}
.ls3{letter-spacing:301.302000px;}
.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;}
}
.ws44{word-spacing:-78.589884px;}
.ws48{word-spacing:-76.537884px;}
.ws58{word-spacing:-57.286656px;}
.wsa{word-spacing:-55.944000px;}
.ws62{word-spacing:-53.706240px;}
.ws9{word-spacing:-38.792700px;}
.ws32{word-spacing:-38.661300px;}
.ws6{word-spacing:-38.657700px;}
.ws25{word-spacing:-38.656800px;}
.wsb{word-spacing:-38.655900px;}
.ws77{word-spacing:-38.652300px;}
.ws5{word-spacing:-38.647800px;}
.ws36{word-spacing:-38.645400px;}
.ws21{word-spacing:-38.643300px;}
.ws15{word-spacing:-38.643000px;}
.ws2f{word-spacing:-38.437200px;}
.ws31{word-spacing:-38.436300px;}
.ws29{word-spacing:-38.431800px;}
.ws3{word-spacing:-38.374200px;}
.wsc{word-spacing:-38.367000px;}
.ws1a{word-spacing:-38.295900px;}
.ws3c{word-spacing:-38.160000px;}
.ws3d{word-spacing:-38.138400px;}
.ws0{word-spacing:-37.944000px;}
.ws3b{word-spacing:-37.941300px;}
.ws73{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws2e{word-spacing:-37.935600px;}
.ws2{word-spacing:-37.931400px;}
.ws35{word-spacing:-37.922400px;}
.ws46{word-spacing:-37.724400px;}
.ws57{word-spacing:-37.707000px;}
.ws72{word-spacing:-37.699200px;}
.ws64{word-spacing:-37.440600px;}
.wsd{word-spacing:-37.431000px;}
.ws63{word-spacing:-37.425600px;}
.ws52{word-spacing:-36.999000px;}
.ws33{word-spacing:-36.997200px;}
.ws4b{word-spacing:-36.975600px;}
.ws61{word-spacing:-36.688500px;}
.ws2b{word-spacing:-35.771400px;}
.ws28{word-spacing:-35.055000px;}
.ws4e{word-spacing:-33.856656px;}
.ws8{word-spacing:-33.547800px;}
.ws6e{word-spacing:-33.118848px;}
.ws2c{word-spacing:-32.177400px;}
.ws68{word-spacing:-32.083884px;}
.ws10{word-spacing:-30.731400px;}
.ws45{word-spacing:-30.464448px;}
.ws2d{word-spacing:-30.240000px;}
.ws41{word-spacing:-30.024000px;}
.ws26{word-spacing:-30.021300px;}
.ws42{word-spacing:-30.000600px;}
.ws2a{word-spacing:-28.068600px;}
.ws1c{word-spacing:-25.704000px;}
.ws1b{word-spacing:-25.187100px;}
.ws56{word-spacing:-24.555888px;}
.ws1f{word-spacing:-23.760000px;}
.ws30{word-spacing:-23.531400px;}
.ws5a{word-spacing:-22.636656px;}
.ws67{word-spacing:-22.364640px;}
.ws74{word-spacing:-22.090500px;}
.ws71{word-spacing:-21.861000px;}
.ws50{word-spacing:-21.608160px;}
.ws20{word-spacing:-21.364200px;}
.ws12{word-spacing:-21.344400px;}
.ws49{word-spacing:-20.735280px;}
.ws34{word-spacing:-19.926900px;}
.wse{word-spacing:-19.925100px;}
.wsf{word-spacing:-19.917000px;}
.ws7{word-spacing:-18.472500px;}
.ws5b{word-spacing:-18.434160px;}
.ws70{word-spacing:-17.055000px;}
.ws18{word-spacing:-16.989300px;}
.ws16{word-spacing:-14.904000px;}
.ws17{word-spacing:-14.822100px;}
.ws11{word-spacing:-13.671000px;}
.ws75{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.061000px;}
.ws14{word-spacing:-10.551000px;}
.ws13{word-spacing:-10.071900px;}
.ws1d{word-spacing:-9.844200px;}
.ws1e{word-spacing:-9.366000px;}
.ws24{word-spacing:-9.117000px;}
.ws23{word-spacing:-4.816800px;}
.ws22{word-spacing:-4.310100px;}
.ws19{word-spacing:-3.150000px;}
.ws40{word-spacing:0.000000px;}
.ws69{word-spacing:2.676912px;}
.ws51{word-spacing:2.894112px;}
.ws54{word-spacing:3.727344px;}
.ws3e{word-spacing:8.115552px;}
.ws59{word-spacing:11.342208px;}
.ws5d{word-spacing:16.056000px;}
.ws6f{word-spacing:22.245264px;}
.ws65{word-spacing:22.839360px;}
.ws4a{word-spacing:30.677400px;}
.ws6c{word-spacing:31.087296px;}
.ws3f{word-spacing:60.103296px;}
.ws6b{word-spacing:78.564912px;}
.ws37{word-spacing:81.031152px;}
.ws38{word-spacing:98.085840px;}
.ws66{word-spacing:101.697360px;}
.ws76{word-spacing:102.456000px;}
.ws3a{word-spacing:114.902112px;}
.ws4c{word-spacing:119.493888px;}
.ws39{word-spacing:120.381899px;}
.ws4f{word-spacing:134.918208px;}
.ws5e{word-spacing:136.879344px;}
.ws55{word-spacing:198.801840px;}
.ws53{word-spacing:233.941152px;}
.ws6a{word-spacing:268.098912px;}
.ws60{word-spacing:296.750112px;}
.ws5f{word-spacing:313.713264px;}
.ws6d{word-spacing:363.841296px;}
.ws47{word-spacing:385.357315px;}
.ws5c{word-spacing:404.492112px;}
.ws43{word-spacing:414.114532px;}
.ws1{word-spacing:455.092800px;}
.ws4d{word-spacing:1689.708544px;}
._38{margin-left:-1764.964800px;}
._3c{margin-left:-1749.225504px;}
._43{margin-left:-672.289800px;}
._22{margin-left:-395.298000px;}
._25{margin-left:-368.660832px;}
._44{margin-left:-355.797504px;}
._20{margin-left:-221.345664px;}
._45{margin-left:-145.704000px;}
._4e{margin-left:-102.784080px;}
._21{margin-left:-46.025400px;}
._23{margin-left:-43.949400px;}
._28{margin-left:-5.117400px;}
._2b{margin-left:-3.995400px;}
._7{margin-left:-2.364600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._50{width:2.093400px;}
._35{width:6.696600px;}
._29{width:8.532000px;}
._48{width:9.713400px;}
._4{width:18.775800px;}
._46{width:19.857900px;}
._f{width:22.453800px;}
._11{width:25.053000px;}
._6{width:27.275400px;}
._10{width:29.286000px;}
._24{width:31.215048px;}
._c{width:33.480000px;}
._1{width:36.000000px;}
._5{width:37.521900px;}
._41{width:38.858496px;}
._4f{width:40.311000px;}
._8{width:43.549800px;}
._9{width:46.575900px;}
._b{width:48.298200px;}
._d{width:52.455000px;}
._a{width:53.955600px;}
._2a{width:57.457200px;}
._27{width:58.579200px;}
._42{width:64.808496px;}
._12{width:66.960000px;}
._4b{width:72.540000px;}
._1f{width:77.727168px;}
._26{width:87.690600px;}
._2d{width:90.734496px;}
._e{width:94.811400px;}
._1b{width:99.175056px;}
._17{width:100.378277px;}
._2c{width:102.816000px;}
._13{width:110.970000px;}
._14{width:112.944000px;}
._34{width:117.271800px;}
._37{width:119.413200px;}
._36{width:125.208600px;}
._49{width:134.411208px;}
._1c{width:139.963056px;}
._18{width:146.638022px;}
._1d{width:150.067056px;}
._1e{width:151.567056px;}
._1a{width:154.087104px;}
._19{width:157.223891px;}
._16{width:160.430496px;}
._3d{width:178.969056px;}
._2f{width:186.529056px;}
._47{width:202.763808px;}
._3e{width:238.225056px;}
._40{width:246.661056px;}
._3f{width:256.033056px;}
._31{width:271.938000px;}
._15{width:280.451232px;}
._3b{width:284.030496px;}
._33{width:294.066000px;}
._3a{width:299.210496px;}
._32{width:310.938000px;}
._30{width:383.137056px;}
._2e{width:399.799056px;}
._39{width:508.466496px;}
._4d{width:599.211648px;}
._0{width:612.144000px;}
._4c{width:759.021360px;}
._4a{width:827.232000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.292000px;}
.fs2{font-size:42.624000px;}
.fs1{font-size:66.300000px;}
.fsc{font-size:69.120000px;}
.fs6{font-size:71.424000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:73.728000px;}
.fs7{font-size:76.032000px;}
.fs4{font-size:77.244156px;}
.fsd{font-size:77.962403px;}
.fs5{font-size:80.144765px;}
.fs8{font-size:93.558000px;}
.fsb{font-size:96.576000px;}
.fsa{font-size:116.352000px;}
.y0{bottom:0.000000px;}
.y72{bottom:2.839500px;}
.y3e{bottom:3.750000px;}
.y34{bottom:3.780000px;}
.y36{bottom:3.811500px;}
.y38{bottom:3.840000px;}
.y3a{bottom:3.871500px;}
.y3c{bottom:3.900000px;}
.y47{bottom:4.420500px;}
.y7{bottom:4.471500px;}
.y75{bottom:4.627500px;}
.y4b{bottom:4.675500px;}
.y43{bottom:4.696500px;}
.y54{bottom:5.799000px;}
.y7a{bottom:6.900000px;}
.y4f{bottom:7.429500px;}
.y4e{bottom:8.271000px;}
.y6c{bottom:8.581500px;}
.y53{bottom:9.120000px;}
.y48{bottom:9.177000px;}
.y5c{bottom:9.885000px;}
.y63{bottom:10.042500px;}
.y56{bottom:10.429500px;}
.y5d{bottom:10.840500px;}
.y60{bottom:12.177000px;}
.y78{bottom:14.974500px;}
.y6f{bottom:15.946500px;}
.y69{bottom:16.735500px;}
.y5f{bottom:20.391000px;}
.y7b{bottom:20.983500px;}
.y55{bottom:21.186000px;}
.y67{bottom:21.523500px;}
.y5e{bottom:25.500000px;}
.y6b{bottom:27.259500px;}
.y79{bottom:32.343000px;}
.y6a{bottom:38.731500px;}
.y77{bottom:40.417500px;}
.y32{bottom:42.165000px;}
.y68{bottom:46.885500px;}
.y66{bottom:51.675000px;}
.y31{bottom:62.865000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y30{bottom:83.565000px;}
.y28{bottom:120.136500px;}
.y27{bottom:140.836500px;}
.y4d{bottom:140.925000px;}
.y26{bottom:161.536500px;}
.y25{bottom:182.236500px;}
.y24{bottom:202.936500px;}
.y23{bottom:223.636500px;}
.y4c{bottom:231.375000px;}
.y86{bottom:255.855000px;}
.y22{bottom:265.396500px;}
.y85{bottom:276.555000px;}
.y21{bottom:286.096500px;}
.y4a{bottom:310.800000px;}
.y49{bottom:315.436500px;}
.y84{bottom:318.315000px;}
.y20{bottom:327.675000px;}
.y1f{bottom:348.375000px;}
.y46{bottom:353.325000px;}
.y83{bottom:360.075000px;}
.y82{bottom:380.775000px;}
.y1e{bottom:390.136500px;}
.y81{bottom:401.475000px;}
.y45{bottom:405.975000px;}
.y1d{bottom:410.836500px;}
.y80{bottom:422.175000px;}
.y1c{bottom:431.536500px;}
.y44{bottom:447.555000px;}
.y1b{bottom:452.236500px;}
.y7f{bottom:463.755000px;}
.y7e{bottom:484.455000px;}
.y1a{bottom:493.996500px;}
.y7d{bottom:501.300000px;}
.y7c{bottom:510.375000px;}
.y19{bottom:514.695000px;}
.y42{bottom:527.100000px;}
.y41{bottom:549.375000px;}
.y76{bottom:550.050000px;}
.y18{bottom:556.275000px;}
.y40{bottom:570.825000px;}
.y17{bottom:576.975000px;}
.y3f{bottom:592.275000px;}
.y16{bottom:597.675000px;}
.y3d{bottom:613.725000px;}
.y15{bottom:618.375000px;}
.y74{bottom:623.475000px;}
.y73{bottom:628.096500px;}
.y3b{bottom:635.175000px;}
.y39{bottom:656.625000px;}
.y14{bottom:660.136500px;}
.y71{bottom:667.200000px;}
.y70{bottom:670.215000px;}
.y37{bottom:678.075000px;}
.y13{bottom:680.836500px;}
.y35{bottom:699.525000px;}
.y65{bottom:707.925000px;}
.y33{bottom:720.975000px;}
.y12{bottom:722.596500px;}
.y6e{bottom:727.500000px;}
.y6d{bottom:735.015000px;}
.y2f{bottom:742.350000px;}
.y11{bottom:743.295000px;}
.y10{bottom:763.996500px;}
.yf{bottom:784.695000px;}
.y64{bottom:799.636500px;}
.ye{bottom:805.395000px;}
.y62{bottom:837.525000px;}
.yd{bottom:846.975000px;}
.yc{bottom:888.736500px;}
.y61{bottom:890.175000px;}
.y2e{bottom:909.975000px;}
.y5b{bottom:927.900000px;}
.yb{bottom:930.495000px;}
.y2d{bottom:951.736500px;}
.ya{bottom:972.075000px;}
.y2c{bottom:972.436500px;}
.y5a{bottom:989.536500px;}
.y59{bottom:1010.236500px;}
.y9{bottom:1013.836500px;}
.y2b{bottom:1014.195000px;}
.y58{bottom:1048.125000px;}
.y2a{bottom:1055.775000px;}
.y57{bottom:1058.475000px;}
.y29{bottom:1076.475000px;}
.y52{bottom:1081.050000px;}
.y51{bottom:1086.975000px;}
.y50{bottom:1091.415000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.hd{height:17.325000px;}
.h1f{height:18.750000px;}
.h4{height:20.175000px;}
.h7{height:21.375000px;}
.h21{height:21.825000px;}
.h8{height:22.200000px;}
.hf{height:23.925000px;}
.h9{height:27.675000px;}
.h1e{height:27.750000px;}
.h16{height:28.670520px;}
.h15{height:28.690682px;}
.h1a{height:29.595375px;}
.ha{height:29.616188px;}
.h13{height:32.925000px;}
.h17{height:36.675000px;}
.h3{height:45.095654px;}
.h20{height:48.026250px;}
.h2{height:48.796875px;}
.h11{height:49.592250px;}
.h10{height:49.627125px;}
.h5{height:50.027344px;}
.hb{height:51.192000px;}
.h1b{height:51.228000px;}
.h23{height:52.575000px;}
.h12{height:52.791750px;}
.hc{height:53.633393px;}
.h22{height:54.132098px;}
.he{height:55.647391px;}
.h14{height:64.960682px;}
.h24{height:66.416520px;}
.h1c{height:66.750000px;}
.h19{height:67.056188px;}
.h1d{height:74.172000px;}
.h18{height:80.787375px;}
.h6{height:101.100000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wb{width:14.925000px;}
.w2{width:25.050000px;}
.w13{width:41.250000px;}
.w16{width:56.325000px;}
.w3{width:58.275000px;}
.w14{width:66.750000px;}
.wc{width:76.500000px;}
.w9{width:98.325000px;}
.w8{width:100.725000px;}
.w6{width:108.150000px;}
.w5{width:111.675000px;}
.w7{width:113.325000px;}
.w4{width:127.875000px;}
.we{width:130.500000px;}
.wd{width:137.325000px;}
.w12{width:174.750000px;}
.w11{width:198.675000px;}
.wa{width:317.325000px;}
.w15{width:370.425000px;}
.w10{width:462.000000px;}
.wf{width:488.325000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.590000px;}
.x2d{left:3.267000px;}
.x19{left:4.405500px;}
.x18{left:5.718000px;}
.xb{left:8.145000px;}
.x28{left:15.354000px;}
.x15{left:17.868000px;}
.x37{left:18.963000px;}
.x3f{left:20.152500px;}
.x21{left:28.030500px;}
.x1d{left:29.049000px;}
.x34{left:31.128000px;}
.x14{left:32.181000px;}
.x3c{left:36.180000px;}
.x3b{left:39.414000px;}
.x22{left:41.625000px;}
.x12{left:42.753000px;}
.x41{left:43.818000px;}
.x26{left:45.265500px;}
.x1e{left:46.404000px;}
.x39{left:48.130500px;}
.x2e{left:51.489000px;}
.x2b{left:54.663000px;}
.x2c{left:59.658000px;}
.x3d{left:67.815000px;}
.x27{left:69.841500px;}
.x3e{left:73.906500px;}
.x25{left:75.505500px;}
.x3a{left:79.765500px;}
.x30{left:80.851500px;}
.x2f{left:92.895000px;}
.x2a{left:114.042000px;}
.xa{left:119.475000px;}
.x23{left:120.516000px;}
.x1{left:127.620000px;}
.x4{left:138.238500px;}
.x29{left:146.391000px;}
.xc{left:177.675000px;}
.x36{left:193.350000px;}
.x40{left:195.300000px;}
.x16{left:197.625000px;}
.x17{left:212.580000px;}
.x1a{left:224.850000px;}
.x8{left:226.800000px;}
.x1b{left:248.400000px;}
.x38{left:264.600000px;}
.x42{left:276.480000px;}
.x6{left:295.380000px;}
.xd{left:305.475000px;}
.x20{left:320.025000px;}
.x31{left:326.338500px;}
.x33{left:333.900000px;}
.x35{left:379.800000px;}
.x32{left:405.750000px;}
.xe{left:417.075000px;}
.x24{left:454.860000px;}
.x3{left:465.825000px;}
.x7{left:510.120000px;}
.xf{left:525.150000px;}
.x9{left:547.200000px;}
.x5{left:629.100000px;}
.x10{left:638.400000px;}
.x1c{left:683.850000px;}
.x2{left:731.160000px;}
.x11{left:739.050000px;}
.x1f{left:823.138500px;}
@media print{
.v1{vertical-align:-47.370667pt;}
.v6{vertical-align:-40.389333pt;}
.v5{vertical-align:-29.461333pt;}
.v3{vertical-align:-3.077333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.394667pt;}
.v7{vertical-align:33.552000pt;}
.v2{vertical-align:39.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:17.524267pt;}
.ls2{letter-spacing:39.514667pt;}
.ls1{letter-spacing:41.338667pt;}
.ls6{letter-spacing:70.106667pt;}
.ls4{letter-spacing:92.565333pt;}
.ls5{letter-spacing:122.138667pt;}
.ls3{letter-spacing:267.824000pt;}
.ws44{word-spacing:-69.857675pt;}
.ws48{word-spacing:-68.033675pt;}
.ws58{word-spacing:-50.921472pt;}
.wsa{word-spacing:-49.728000pt;}
.ws62{word-spacing:-47.738880pt;}
.ws9{word-spacing:-34.482400pt;}
.ws32{word-spacing:-34.365600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws25{word-spacing:-34.361600pt;}
.wsb{word-spacing:-34.360800pt;}
.ws77{word-spacing:-34.357600pt;}
.ws5{word-spacing:-34.353600pt;}
.ws36{word-spacing:-34.351467pt;}
.ws21{word-spacing:-34.349600pt;}
.ws15{word-spacing:-34.349333pt;}
.ws2f{word-spacing:-34.166400pt;}
.ws31{word-spacing:-34.165600pt;}
.ws29{word-spacing:-34.161600pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc{word-spacing:-34.104000pt;}
.ws1a{word-spacing:-34.040800pt;}
.ws3c{word-spacing:-33.920000pt;}
.ws3d{word-spacing:-33.900800pt;}
.ws0{word-spacing:-33.728000pt;}
.ws3b{word-spacing:-33.725600pt;}
.ws73{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2e{word-spacing:-33.720533pt;}
.ws2{word-spacing:-33.716800pt;}
.ws35{word-spacing:-33.708800pt;}
.ws46{word-spacing:-33.532800pt;}
.ws57{word-spacing:-33.517333pt;}
.ws72{word-spacing:-33.510400pt;}
.ws64{word-spacing:-33.280533pt;}
.wsd{word-spacing:-33.272000pt;}
.ws63{word-spacing:-33.267200pt;}
.ws52{word-spacing:-32.888000pt;}
.ws33{word-spacing:-32.886400pt;}
.ws4b{word-spacing:-32.867200pt;}
.ws61{word-spacing:-32.612000pt;}
.ws2b{word-spacing:-31.796800pt;}
.ws28{word-spacing:-31.160000pt;}
.ws4e{word-spacing:-30.094805pt;}
.ws8{word-spacing:-29.820267pt;}
.ws6e{word-spacing:-29.438976pt;}
.ws2c{word-spacing:-28.602133pt;}
.ws68{word-spacing:-28.519008pt;}
.ws10{word-spacing:-27.316800pt;}
.ws45{word-spacing:-27.079509pt;}
.ws2d{word-spacing:-26.880000pt;}
.ws41{word-spacing:-26.688000pt;}
.ws26{word-spacing:-26.685600pt;}
.ws42{word-spacing:-26.667200pt;}
.ws2a{word-spacing:-24.949867pt;}
.ws1c{word-spacing:-22.848000pt;}
.ws1b{word-spacing:-22.388533pt;}
.ws56{word-spacing:-21.827456pt;}
.ws1f{word-spacing:-21.120000pt;}
.ws30{word-spacing:-20.916800pt;}
.ws5a{word-spacing:-20.121472pt;}
.ws67{word-spacing:-19.879680pt;}
.ws74{word-spacing:-19.636000pt;}
.ws71{word-spacing:-19.432000pt;}
.ws50{word-spacing:-19.207253pt;}
.ws20{word-spacing:-18.990400pt;}
.ws12{word-spacing:-18.972800pt;}
.ws49{word-spacing:-18.431360pt;}
.ws34{word-spacing:-17.712800pt;}
.wse{word-spacing:-17.711200pt;}
.wsf{word-spacing:-17.704000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws5b{word-spacing:-16.385920pt;}
.ws70{word-spacing:-15.160000pt;}
.ws18{word-spacing:-15.101600pt;}
.ws16{word-spacing:-13.248000pt;}
.ws17{word-spacing:-13.175200pt;}
.ws11{word-spacing:-12.152000pt;}
.ws75{word-spacing:-11.955200pt;}
.ws27{word-spacing:-9.832000pt;}
.ws14{word-spacing:-9.378667pt;}
.ws13{word-spacing:-8.952800pt;}
.ws1d{word-spacing:-8.750400pt;}
.ws1e{word-spacing:-8.325333pt;}
.ws24{word-spacing:-8.104000pt;}
.ws23{word-spacing:-4.281600pt;}
.ws22{word-spacing:-3.831200pt;}
.ws19{word-spacing:-2.800000pt;}
.ws40{word-spacing:0.000000pt;}
.ws69{word-spacing:2.379477pt;}
.ws51{word-spacing:2.572544pt;}
.ws54{word-spacing:3.313195pt;}
.ws3e{word-spacing:7.213824pt;}
.ws59{word-spacing:10.081963pt;}
.ws5d{word-spacing:14.272000pt;}
.ws6f{word-spacing:19.773568pt;}
.ws65{word-spacing:20.301653pt;}
.ws4a{word-spacing:27.268800pt;}
.ws6c{word-spacing:27.633152pt;}
.ws3f{word-spacing:53.425152pt;}
.ws6b{word-spacing:69.835477pt;}
.ws37{word-spacing:72.027691pt;}
.ws38{word-spacing:87.187413pt;}
.ws66{word-spacing:90.397653pt;}
.ws76{word-spacing:91.072000pt;}
.ws3a{word-spacing:102.135211pt;}
.ws4c{word-spacing:106.216789pt;}
.ws39{word-spacing:107.006132pt;}
.ws4f{word-spacing:119.927296pt;}
.ws5e{word-spacing:121.670528pt;}
.ws55{word-spacing:176.712747pt;}
.ws53{word-spacing:207.947691pt;}
.ws6a{word-spacing:238.310144pt;}
.ws60{word-spacing:263.777877pt;}
.ws5f{word-spacing:278.856235pt;}
.ws6d{word-spacing:323.414485pt;}
.ws47{word-spacing:342.539836pt;}
.ws5c{word-spacing:359.548544pt;}
.ws43{word-spacing:368.101807pt;}
.ws1{word-spacing:404.526933pt;}
.ws4d{word-spacing:1501.963150pt;}
._38{margin-left:-1568.857600pt;}
._3c{margin-left:-1554.867115pt;}
._43{margin-left:-597.590933pt;}
._22{margin-left:-351.376000pt;}
._25{margin-left:-327.698517pt;}
._44{margin-left:-316.264448pt;}
._20{margin-left:-196.751701pt;}
._45{margin-left:-129.514667pt;}
._4e{margin-left:-91.363627pt;}
._21{margin-left:-40.911467pt;}
._23{margin-left:-39.066133pt;}
._28{margin-left:-4.548800pt;}
._2b{margin-left:-3.551467pt;}
._7{margin-left:-2.101867pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._50{width:1.860800pt;}
._35{width:5.952533pt;}
._29{width:7.584000pt;}
._48{width:8.634133pt;}
._4{width:16.689600pt;}
._46{width:17.651467pt;}
._f{width:19.958933pt;}
._11{width:22.269333pt;}
._6{width:24.244800pt;}
._10{width:26.032000pt;}
._24{width:27.746709pt;}
._c{width:29.760000pt;}
._1{width:32.000000pt;}
._5{width:33.352800pt;}
._41{width:34.540885pt;}
._4f{width:35.832000pt;}
._8{width:38.710933pt;}
._9{width:41.400800pt;}
._b{width:42.931733pt;}
._d{width:46.626667pt;}
._a{width:47.960533pt;}
._2a{width:51.073067pt;}
._27{width:52.070400pt;}
._42{width:57.607552pt;}
._12{width:59.520000pt;}
._4b{width:64.480000pt;}
._1f{width:69.090816pt;}
._26{width:77.947200pt;}
._2d{width:80.652885pt;}
._e{width:84.276800pt;}
._1b{width:88.155605pt;}
._17{width:89.225135pt;}
._2c{width:91.392000pt;}
._13{width:98.640000pt;}
._14{width:100.394667pt;}
._34{width:104.241600pt;}
._37{width:106.145067pt;}
._36{width:111.296533pt;}
._49{width:119.476629pt;}
._1c{width:124.411605pt;}
._18{width:130.344908pt;}
._1d{width:133.392939pt;}
._1e{width:134.726272pt;}
._1a{width:136.966315pt;}
._19{width:139.754570pt;}
._16{width:142.604885pt;}
._3d{width:159.083605pt;}
._2f{width:165.803605pt;}
._47{width:180.234496pt;}
._3e{width:211.755605pt;}
._40{width:219.254272pt;}
._3f{width:227.584939pt;}
._31{width:241.722667pt;}
._15{width:249.289984pt;}
._3b{width:252.471552pt;}
._33{width:261.392000pt;}
._3a{width:265.964885pt;}
._32{width:276.389333pt;}
._30{width:340.566272pt;}
._2e{width:355.376939pt;}
._39{width:451.970219pt;}
._4d{width:532.632576pt;}
._0{width:544.128000pt;}
._4c{width:674.685653pt;}
._4a{width:735.317333pt;}
.fs9{font-size:36.704000pt;}
.fs2{font-size:37.888000pt;}
.fs1{font-size:58.933333pt;}
.fsc{font-size:61.440000pt;}
.fs6{font-size:63.488000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:65.536000pt;}
.fs7{font-size:67.584000pt;}
.fs4{font-size:68.661472pt;}
.fsd{font-size:69.299914pt;}
.fs5{font-size:71.239791pt;}
.fs8{font-size:83.162667pt;}
.fsb{font-size:85.845333pt;}
.fsa{font-size:103.424000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.524000pt;}
.y3e{bottom:3.333333pt;}
.y34{bottom:3.360000pt;}
.y36{bottom:3.388000pt;}
.y38{bottom:3.413333pt;}
.y3a{bottom:3.441333pt;}
.y3c{bottom:3.466667pt;}
.y47{bottom:3.929333pt;}
.y7{bottom:3.974667pt;}
.y75{bottom:4.113333pt;}
.y4b{bottom:4.156000pt;}
.y43{bottom:4.174667pt;}
.y54{bottom:5.154667pt;}
.y7a{bottom:6.133333pt;}
.y4f{bottom:6.604000pt;}
.y4e{bottom:7.352000pt;}
.y6c{bottom:7.628000pt;}
.y53{bottom:8.106667pt;}
.y48{bottom:8.157333pt;}
.y5c{bottom:8.786667pt;}
.y63{bottom:8.926667pt;}
.y56{bottom:9.270667pt;}
.y5d{bottom:9.636000pt;}
.y60{bottom:10.824000pt;}
.y78{bottom:13.310667pt;}
.y6f{bottom:14.174667pt;}
.y69{bottom:14.876000pt;}
.y5f{bottom:18.125333pt;}
.y7b{bottom:18.652000pt;}
.y55{bottom:18.832000pt;}
.y67{bottom:19.132000pt;}
.y5e{bottom:22.666667pt;}
.y6b{bottom:24.230667pt;}
.y79{bottom:28.749333pt;}
.y6a{bottom:34.428000pt;}
.y77{bottom:35.926667pt;}
.y32{bottom:37.480000pt;}
.y68{bottom:41.676000pt;}
.y66{bottom:45.933333pt;}
.y31{bottom:55.880000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y30{bottom:74.280000pt;}
.y28{bottom:106.788000pt;}
.y27{bottom:125.188000pt;}
.y4d{bottom:125.266667pt;}
.y26{bottom:143.588000pt;}
.y25{bottom:161.988000pt;}
.y24{bottom:180.388000pt;}
.y23{bottom:198.788000pt;}
.y4c{bottom:205.666667pt;}
.y86{bottom:227.426667pt;}
.y22{bottom:235.908000pt;}
.y85{bottom:245.826667pt;}
.y21{bottom:254.308000pt;}
.y4a{bottom:276.266667pt;}
.y49{bottom:280.388000pt;}
.y84{bottom:282.946667pt;}
.y20{bottom:291.266667pt;}
.y1f{bottom:309.666667pt;}
.y46{bottom:314.066667pt;}
.y83{bottom:320.066667pt;}
.y82{bottom:338.466667pt;}
.y1e{bottom:346.788000pt;}
.y81{bottom:356.866667pt;}
.y45{bottom:360.866667pt;}
.y1d{bottom:365.188000pt;}
.y80{bottom:375.266667pt;}
.y1c{bottom:383.588000pt;}
.y44{bottom:397.826667pt;}
.y1b{bottom:401.988000pt;}
.y7f{bottom:412.226667pt;}
.y7e{bottom:430.626667pt;}
.y1a{bottom:439.108000pt;}
.y7d{bottom:445.600000pt;}
.y7c{bottom:453.666667pt;}
.y19{bottom:457.506667pt;}
.y42{bottom:468.533333pt;}
.y41{bottom:488.333333pt;}
.y76{bottom:488.933333pt;}
.y18{bottom:494.466667pt;}
.y40{bottom:507.400000pt;}
.y17{bottom:512.866667pt;}
.y3f{bottom:526.466667pt;}
.y16{bottom:531.266667pt;}
.y3d{bottom:545.533333pt;}
.y15{bottom:549.666667pt;}
.y74{bottom:554.200000pt;}
.y73{bottom:558.308000pt;}
.y3b{bottom:564.600000pt;}
.y39{bottom:583.666667pt;}
.y14{bottom:586.788000pt;}
.y71{bottom:593.066667pt;}
.y70{bottom:595.746667pt;}
.y37{bottom:602.733333pt;}
.y13{bottom:605.188000pt;}
.y35{bottom:621.800000pt;}
.y65{bottom:629.266667pt;}
.y33{bottom:640.866667pt;}
.y12{bottom:642.308000pt;}
.y6e{bottom:646.666667pt;}
.y6d{bottom:653.346667pt;}
.y2f{bottom:659.866667pt;}
.y11{bottom:660.706667pt;}
.y10{bottom:679.108000pt;}
.yf{bottom:697.506667pt;}
.y64{bottom:710.788000pt;}
.ye{bottom:715.906667pt;}
.y62{bottom:744.466667pt;}
.yd{bottom:752.866667pt;}
.yc{bottom:789.988000pt;}
.y61{bottom:791.266667pt;}
.y2e{bottom:808.866667pt;}
.y5b{bottom:824.800000pt;}
.yb{bottom:827.106667pt;}
.y2d{bottom:845.988000pt;}
.ya{bottom:864.066667pt;}
.y2c{bottom:864.388000pt;}
.y5a{bottom:879.588000pt;}
.y59{bottom:897.988000pt;}
.y9{bottom:901.188000pt;}
.y2b{bottom:901.506667pt;}
.y58{bottom:931.666667pt;}
.y2a{bottom:938.466667pt;}
.y57{bottom:940.866667pt;}
.y29{bottom:956.866667pt;}
.y52{bottom:960.933333pt;}
.y51{bottom:966.200000pt;}
.y50{bottom:970.146667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.hd{height:15.400000pt;}
.h1f{height:16.666667pt;}
.h4{height:17.933333pt;}
.h7{height:19.000000pt;}
.h21{height:19.400000pt;}
.h8{height:19.733333pt;}
.hf{height:21.266667pt;}
.h9{height:24.600000pt;}
.h1e{height:24.666667pt;}
.h16{height:25.484906pt;}
.h15{height:25.502828pt;}
.h1a{height:26.307000pt;}
.ha{height:26.325500pt;}
.h13{height:29.266667pt;}
.h17{height:32.600000pt;}
.h3{height:40.085026pt;}
.h20{height:42.690000pt;}
.h2{height:43.375000pt;}
.h11{height:44.082000pt;}
.h10{height:44.113000pt;}
.h5{height:44.468750pt;}
.hb{height:45.504000pt;}
.h1b{height:45.536000pt;}
.h23{height:46.733333pt;}
.h12{height:46.926000pt;}
.hc{height:47.674127pt;}
.h22{height:48.117421pt;}
.he{height:49.464347pt;}
.h14{height:57.742828pt;}
.h24{height:59.036906pt;}
.h1c{height:59.333333pt;}
.h19{height:59.605500pt;}
.h1d{height:65.930667pt;}
.h18{height:71.811000pt;}
.h6{height:89.866667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wb{width:13.266667pt;}
.w2{width:22.266667pt;}
.w13{width:36.666667pt;}
.w16{width:50.066667pt;}
.w3{width:51.800000pt;}
.w14{width:59.333333pt;}
.wc{width:68.000000pt;}
.w9{width:87.400000pt;}
.w8{width:89.533333pt;}
.w6{width:96.133333pt;}
.w5{width:99.266667pt;}
.w7{width:100.733333pt;}
.w4{width:113.666667pt;}
.we{width:116.000000pt;}
.wd{width:122.066667pt;}
.w12{width:155.333333pt;}
.w11{width:176.600000pt;}
.wa{width:282.066667pt;}
.w15{width:329.266667pt;}
.w10{width:410.666667pt;}
.wf{width:434.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.413333pt;}
.x2d{left:2.904000pt;}
.x19{left:3.916000pt;}
.x18{left:5.082667pt;}
.xb{left:7.240000pt;}
.x28{left:13.648000pt;}
.x15{left:15.882667pt;}
.x37{left:16.856000pt;}
.x3f{left:17.913333pt;}
.x21{left:24.916000pt;}
.x1d{left:25.821333pt;}
.x34{left:27.669333pt;}
.x14{left:28.605333pt;}
.x3c{left:32.160000pt;}
.x3b{left:35.034667pt;}
.x22{left:37.000000pt;}
.x12{left:38.002667pt;}
.x41{left:38.949333pt;}
.x26{left:40.236000pt;}
.x1e{left:41.248000pt;}
.x39{left:42.782667pt;}
.x2e{left:45.768000pt;}
.x2b{left:48.589333pt;}
.x2c{left:53.029333pt;}
.x3d{left:60.280000pt;}
.x27{left:62.081333pt;}
.x3e{left:65.694667pt;}
.x25{left:67.116000pt;}
.x3a{left:70.902667pt;}
.x30{left:71.868000pt;}
.x2f{left:82.573333pt;}
.x2a{left:101.370667pt;}
.xa{left:106.200000pt;}
.x23{left:107.125333pt;}
.x1{left:113.440000pt;}
.x4{left:122.878667pt;}
.x29{left:130.125333pt;}
.xc{left:157.933333pt;}
.x36{left:171.866667pt;}
.x40{left:173.600000pt;}
.x16{left:175.666667pt;}
.x17{left:188.960000pt;}
.x1a{left:199.866667pt;}
.x8{left:201.600000pt;}
.x1b{left:220.800000pt;}
.x38{left:235.200000pt;}
.x42{left:245.760000pt;}
.x6{left:262.560000pt;}
.xd{left:271.533333pt;}
.x20{left:284.466667pt;}
.x31{left:290.078667pt;}
.x33{left:296.800000pt;}
.x35{left:337.600000pt;}
.x32{left:360.666667pt;}
.xe{left:370.733333pt;}
.x24{left:404.320000pt;}
.x3{left:414.066667pt;}
.x7{left:453.440000pt;}
.xf{left:466.800000pt;}
.x9{left:486.400000pt;}
.x5{left:559.200000pt;}
.x10{left:567.466667pt;}
.x1c{left:607.866667pt;}
.x2{left:649.920000pt;}
.x11{left:656.933333pt;}
.x1f{left:731.678667pt;}
}




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