
    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_80f05d4e082a83b83feb4b97.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_ef04332f2174b5c07ebf036a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4b8480c051df8524d01bc06e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fb1a75d3e58036f0d1b4ea6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_70255f1b697a7383fbb863ba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.709473;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;}
.m9{transform:matrix(0.153226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153226,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m8{transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157895,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179688,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185897,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.188889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188889,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m10{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);}
.m6{transform:matrix(0.237651,0.000000,-0.077600,0.237651,0,0);-ms-transform:matrix(0.237651,0.000000,-0.077600,0.237651,0,0);-webkit-transform:matrix(0.237651,0.000000,-0.077600,0.237651,0,0);}
.m11{transform:matrix(0.237806,0.000000,-0.077126,0.237806,0,0);-ms-transform:matrix(0.237806,0.000000,-0.077126,0.237806,0,0);-webkit-transform:matrix(0.237806,0.000000,-0.077126,0.237806,0,0);}
.md{transform:matrix(0.238308,0.000000,-0.075561,0.238308,0,0);-ms-transform:matrix(0.238308,0.000000,-0.075561,0.238308,0,0);-webkit-transform:matrix(0.238308,0.000000,-0.075561,0.238308,0,0);}
.me{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);}
.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);}
.m12{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v8{vertical-align:-70.056000px;}
.v4{vertical-align:-63.864000px;}
.v6{vertical-align:-55.128000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:42.534000px;}
.v3{vertical-align:48.420000px;}
.v5{vertical-align:52.314000px;}
.v7{vertical-align:66.480000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:20.769552px;}
.ls1{letter-spacing:21.131040px;}
.ls3{letter-spacing:28.431360px;}
.ls6{letter-spacing:30.257088px;}
.ls5{letter-spacing:52.197648px;}
.ls7{letter-spacing:159.660000px;}
.ls4{letter-spacing:181.620000px;}
.ls8{letter-spacing:509.428560px;}
.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;}
}
.ws59{word-spacing:-75.188736px;}
.ws49{word-spacing:-68.027904px;}
.ws5b{word-spacing:-57.286656px;}
.ws70{word-spacing:-56.936412px;}
.ws5{word-spacing:-55.944000px;}
.ws47{word-spacing:-55.496448px;}
.ws7e{word-spacing:-38.863800px;}
.ws15{word-spacing:-38.660400px;}
.ws3{word-spacing:-38.647800px;}
.ws5a{word-spacing:-38.642400px;}
.wsa{word-spacing:-38.636400px;}
.ws7{word-spacing:-38.572500px;}
.ws32{word-spacing:-38.444400px;}
.ws33{word-spacing:-38.439000px;}
.ws78{word-spacing:-38.431800px;}
.ws12{word-spacing:-38.166000px;}
.ws4{word-spacing:-38.157000px;}
.ws4e{word-spacing:-38.156400px;}
.ws25{word-spacing:-38.141400px;}
.ws54{word-spacing:-38.088000px;}
.ws2{word-spacing:-38.081700px;}
.ws8{word-spacing:-38.077200px;}
.ws0{word-spacing:-37.944000px;}
.ws22{word-spacing:-37.942200px;}
.ws14{word-spacing:-37.935000px;}
.wsc{word-spacing:-37.933200px;}
.ws5c{word-spacing:-37.925100px;}
.ws11{word-spacing:-37.865700px;}
.ws20{word-spacing:-37.724400px;}
.ws69{word-spacing:-37.697400px;}
.ws74{word-spacing:-37.639800px;}
.ws3c{word-spacing:-37.440000px;}
.ws13{word-spacing:-37.434000px;}
.wsb{word-spacing:-37.431900px;}
.ws29{word-spacing:-37.431000px;}
.ws1e{word-spacing:-37.430400px;}
.ws9{word-spacing:-37.425600px;}
.ws76{word-spacing:-37.224000px;}
.ws36{word-spacing:-37.221300px;}
.ws7b{word-spacing:-37.216800px;}
.ws26{word-spacing:-37.005300px;}
.ws6{word-spacing:-36.974700px;}
.ws24{word-spacing:-36.716400px;}
.ws1a{word-spacing:-36.495000px;}
.ws10{word-spacing:-36.489600px;}
.ws19{word-spacing:-35.771400px;}
.ws1c{word-spacing:-32.904000px;}
.ws48{word-spacing:-31.424448px;}
.ws31{word-spacing:-30.014700px;}
.ws2d{word-spacing:-29.802600px;}
.wse{word-spacing:-29.655900px;}
.wsd{word-spacing:-29.310000px;}
.ws16{word-spacing:-29.304000px;}
.ws2e{word-spacing:-29.075400px;}
.ws45{word-spacing:-28.712448px;}
.ws77{word-spacing:-28.583100px;}
.ws17{word-spacing:-25.695000px;}
.ws65{word-spacing:-25.527696px;}
.ws1f{word-spacing:-24.478800px;}
.ws3d{word-spacing:-22.599000px;}
.ws52{word-spacing:-21.313920px;}
.ws6c{word-spacing:-20.912112px;}
.ws7d{word-spacing:-20.160000px;}
.ws7a{word-spacing:-20.076600px;}
.ws1d{word-spacing:-19.935000px;}
.ws73{word-spacing:-19.722600px;}
.wsf{word-spacing:-19.584000px;}
.ws56{word-spacing:-18.734640px;}
.ws23{word-spacing:-18.722700px;}
.ws21{word-spacing:-18.720000px;}
.ws4c{word-spacing:-17.619696px;}
.ws3e{word-spacing:-16.395322px;}
.ws42{word-spacing:-16.344000px;}
.ws41{word-spacing:-13.878624px;}
.ws46{word-spacing:-13.325088px;}
.ws1b{word-spacing:-12.744000px;}
.ws7c{word-spacing:-9.144000px;}
.ws4a{word-spacing:-9.117889px;}
.ws79{word-spacing:-3.584700px;}
.ws2c{word-spacing:0.000000px;}
.ws38{word-spacing:3.651552px;}
.ws62{word-spacing:4.009824px;}
.ws28{word-spacing:4.539552px;}
.ws68{word-spacing:5.898192px;}
.ws60{word-spacing:6.315888px;}
.ws18{word-spacing:6.916800px;}
.ws66{word-spacing:7.136304px;}
.ws5f{word-spacing:9.847776px;}
.ws2f{word-spacing:10.396608px;}
.ws2b{word-spacing:12.276720px;}
.ws53{word-spacing:12.824640px;}
.ws6a{word-spacing:13.017888px;}
.ws37{word-spacing:24.297552px;}
.ws75{word-spacing:26.856000px;}
.ws4b{word-spacing:28.334304px;}
.ws51{word-spacing:33.511680px;}
.ws34{word-spacing:34.815264px;}
.ws6b{word-spacing:47.051316px;}
.ws63{word-spacing:48.158111px;}
.ws3b{word-spacing:49.040640px;}
.ws5d{word-spacing:50.171641px;}
.ws30{word-spacing:54.990192px;}
.ws6f{word-spacing:92.938716px;}
.ws50{word-spacing:93.991680px;}
.ws3a{word-spacing:99.226620px;}
.ws35{word-spacing:113.020272px;}
.ws44{word-spacing:131.433552px;}
.ws55{word-spacing:151.637472px;}
.ws57{word-spacing:151.720464px;}
.ws67{word-spacing:165.292704px;}
.ws61{word-spacing:183.066176px;}
.ws64{word-spacing:187.732332px;}
.ws6e{word-spacing:195.613938px;}
.ws4d{word-spacing:204.936192px;}
.ws5e{word-spacing:205.816404px;}
.ws43{word-spacing:207.597204px;}
.ws40{word-spacing:225.412872px;}
.ws3f{word-spacing:240.119492px;}
.ws4f{word-spacing:255.444960px;}
.ws39{word-spacing:280.372272px;}
.ws72{word-spacing:402.757524px;}
.ws6d{word-spacing:408.361824px;}
.ws58{word-spacing:607.179456px;}
.ws1{word-spacing:1037.484900px;}
.ws71{word-spacing:1052.190828px;}
.ws27{word-spacing:1552.515402px;}
.ws2a{word-spacing:2266.596893px;}
._37{margin-left:-1619.400600px;}
._30{margin-left:-1177.335000px;}
._25{margin-left:-711.420853px;}
._1e{margin-left:-351.198000px;}
._27{margin-left:-280.940907px;}
._18{margin-left:-250.596000px;}
._24{margin-left:-8.208000px;}
._14{margin-left:-7.026000px;}
._3f{margin-left:-4.212000px;}
._e{margin-left:-3.186000px;}
._3{margin-left:-1.073400px;}
._0{width:1.076400px;}
._15{width:6.526800px;}
._f{width:8.016000px;}
._11{width:9.948000px;}
._28{width:11.088000px;}
._1{width:18.968400px;}
._4{width:20.880000px;}
._8{width:22.035600px;}
._a{width:24.048600px;}
._6{width:27.783000px;}
._16{width:29.688000px;}
._7{width:31.608000px;}
._b{width:32.689200px;}
._1f{width:34.977000px;}
._2{width:36.288000px;}
._5{width:37.728000px;}
._9{width:41.832000px;}
._23{width:44.409360px;}
._22{width:48.873360px;}
._4a{width:53.586000px;}
._c{width:58.458000px;}
._1b{width:60.264000px;}
._1c{width:63.876000px;}
._d{width:65.601600px;}
._13{width:69.093600px;}
._44{width:72.173904px;}
._39{width:74.706000px;}
._10{width:76.212000px;}
._12{width:77.496000px;}
._48{width:84.270600px;}
._17{width:85.314528px;}
._1a{width:91.512000px;}
._19{width:95.418000px;}
._47{width:101.868390px;}
._46{width:103.971114px;}
._38{width:109.718304px;}
._21{width:125.806560px;}
._20{width:138.689088px;}
._29{width:147.060480px;}
._1d{width:153.763920px;}
._3c{width:169.950096px;}
._32{width:183.708912px;}
._36{width:191.299104px;}
._3b{width:202.614096px;}
._31{width:221.538912px;}
._3e{width:226.681200px;}
._2b{width:248.631600px;}
._26{width:312.716304px;}
._2a{width:374.296320px;}
._35{width:428.016000px;}
._43{width:433.836000px;}
._40{width:447.735600px;}
._2f{width:454.668000px;}
._2c{width:458.464884px;}
._42{width:461.916000px;}
._33{width:635.554508px;}
._49{width:663.739362px;}
._45{width:664.926912px;}
._3d{width:684.612096px;}
._2e{width:700.519579px;}
._2d{width:703.601924px;}
._34{width:734.225579px;}
._3a{width:915.710304px;}
._41{width:1058.982912px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs4{font-size:41.292000px;}
.fs7{font-size:46.620000px;}
.fs1{font-size:46.800000px;}
.fs23{font-size:49.284000px;}
.fs14{font-size:50.616000px;}
.fs20{font-size:51.948000px;}
.fs19{font-size:53.280000px;}
.fs1b{font-size:54.612000px;}
.fsf{font-size:59.940000px;}
.fs25{font-size:66.600000px;}
.fs3{font-size:71.424000px;}
.fs0{font-size:72.000000px;}
.fs12{font-size:73.728000px;}
.fs1e{font-size:77.244156px;}
.fs6{font-size:80.640000px;}
.fs9{font-size:85.248000px;}
.fs15{font-size:87.552000px;}
.fs24{font-size:89.619381px;}
.fs21{font-size:89.856000px;}
.fs1a{font-size:92.160000px;}
.fs2{font-size:93.558000px;}
.fs1c{font-size:94.464000px;}
.fs22{font-size:94.716540px;}
.fsc{font-size:96.768000px;}
.fs1d{font-size:99.098787px;}
.fs11{font-size:100.032000px;}
.fsd{font-size:102.002428px;}
.fsa{font-size:103.680000px;}
.fs5{font-size:105.630000px;}
.fs8{font-size:108.288000px;}
.fsb{font-size:110.592000px;}
.fs17{font-size:111.666000px;}
.fs16{font-size:112.716000px;}
.fs26{font-size:115.200000px;}
.fs1f{font-size:117.702000px;}
.fs10{font-size:118.762205px;}
.fse{font-size:135.810000px;}
.fs13{font-size:138.168000px;}
.fs18{font-size:145.440000px;}
.y0{bottom:0.000000px;}
.y71{bottom:4.548000px;}
.y8a{bottom:4.725000px;}
.y30{bottom:5.263500px;}
.y37{bottom:5.947500px;}
.y85{bottom:6.210000px;}
.y33{bottom:6.355500px;}
.y2f{bottom:6.679500px;}
.y2d{bottom:6.700500px;}
.y34{bottom:6.903000px;}
.y78{bottom:6.975000px;}
.y45{bottom:7.003500px;}
.y74{bottom:7.179000px;}
.y41{bottom:8.349000px;}
.y3b{bottom:8.671500px;}
.y25{bottom:9.016500px;}
.y48{bottom:9.135000px;}
.y7b{bottom:9.316500px;}
.y67{bottom:9.489000px;}
.y29{bottom:10.263000px;}
.y26{bottom:10.311000px;}
.y59{bottom:10.491000px;}
.y49{bottom:10.609500px;}
.y5c{bottom:10.968000px;}
.y77{bottom:10.969500px;}
.y62{bottom:11.020500px;}
.y73{bottom:11.289000px;}
.y6d{bottom:11.562000px;}
.y2a{bottom:11.736000px;}
.y4c{bottom:11.845500px;}
.y4{bottom:12.240000px;}
.y5d{bottom:12.543000px;}
.y79{bottom:12.544500px;}
.y75{bottom:12.909000px;}
.y40{bottom:13.129500px;}
.y4f{bottom:14.593500px;}
.y43{bottom:15.015000px;}
.y68{bottom:15.511500px;}
.y83{bottom:16.383000px;}
.y54{bottom:16.734000px;}
.y89{bottom:17.625000px;}
.y7c{bottom:19.395000px;}
.y52{bottom:20.203500px;}
.y3d{bottom:22.453500px;}
.y4e{bottom:24.436500px;}
.y60{bottom:25.675500px;}
.y87{bottom:26.850000px;}
.y5a{bottom:27.162000px;}
.y64{bottom:28.534500px;}
.y7d{bottom:29.766000px;}
.y6e{bottom:29.937000px;}
.y42{bottom:30.501000px;}
.y55{bottom:30.516000px;}
.y4d{bottom:30.559500px;}
.y81{bottom:34.006500px;}
.y53{bottom:35.532000px;}
.y3a{bottom:35.671500px;}
.y63{bottom:38.781000px;}
.y58{bottom:43.153500px;}
.y80{bottom:44.179500px;}
.y61{bottom:45.154500px;}
.y3c{bottom:46.500000px;}
.y6c{bottom:47.562000px;}
.y84{bottom:48.319500px;}
.y82{bottom:58.491000px;}
.y3{bottom:63.975000px;}
.y86{bottom:68.959500px;}
.y28{bottom:108.000000px;}
.y27{bottom:118.515000px;}
.y76{bottom:125.250000px;}
.y24{bottom:166.125000px;}
.y23{bottom:176.655000px;}
.y72{bottom:182.325000px;}
.y22{bottom:223.636500px;}
.y6f{bottom:240.450000px;}
.y70{bottom:244.875000px;}
.y21{bottom:265.396500px;}
.y20{bottom:286.096500px;}
.y6b{bottom:294.075000px;}
.y1f{bottom:306.795000px;}
.y6a{bottom:316.515000px;}
.y1e{bottom:327.496500px;}
.y1d{bottom:348.196500px;}
.y1c{bottom:368.896500px;}
.y66{bottom:387.000000px;}
.y1b{bottom:389.596500px;}
.y69{bottom:399.136500px;}
.y1a{bottom:431.175000px;}
.y65{bottom:454.755000px;}
.y9a{bottom:468.615000px;}
.y19{bottom:472.936500px;}
.y99{bottom:489.315000px;}
.y5f{bottom:492.600000px;}
.y18{bottom:493.636500px;}
.y98{bottom:510.015000px;}
.y17{bottom:514.336500px;}
.y97{bottom:530.715000px;}
.y16{bottom:535.036500px;}
.y96{bottom:551.415000px;}
.y15{bottom:555.736500px;}
.y95{bottom:572.115000px;}
.y14{bottom:576.436500px;}
.y5e{bottom:585.975000px;}
.y94{bottom:592.815000px;}
.y93{bottom:613.515000px;}
.y13{bottom:618.195000px;}
.y57{bottom:623.700000px;}
.y92{bottom:634.215000px;}
.y5b{bottom:635.925000px;}
.y56{bottom:646.275000px;}
.y91{bottom:654.915000px;}
.y12{bottom:659.775000px;}
.y11{bottom:680.475000px;}
.y51{bottom:689.025000px;}
.y90{bottom:696.675000px;}
.y4b{bottom:699.600000px;}
.y50{bottom:711.615000px;}
.y10{bottom:722.236500px;}
.y8f{bottom:738.436500px;}
.yf{bottom:763.996500px;}
.y47{bottom:764.400000px;}
.y4a{bottom:774.975000px;}
.y8e{bottom:780.015000px;}
.ye{bottom:784.695000px;}
.y46{bottom:798.736500px;}
.yd{bottom:805.395000px;}
.y8d{bottom:821.775000px;}
.y3f{bottom:836.400000px;}
.y44{bottom:842.550000px;}
.yc{bottom:846.975000px;}
.y8c{bottom:863.536500px;}
.y88{bottom:881.250000px;}
.y8b{bottom:884.236500px;}
.yb{bottom:888.736500px;}
.y39{bottom:904.800000px;}
.ya{bottom:909.436500px;}
.y3e{bottom:927.255000px;}
.y7f{bottom:938.100000px;}
.y9{bottom:951.195000px;}
.y38{bottom:988.275000px;}
.y8{bottom:992.775000px;}
.y36{bottom:1026.000000px;}
.y7e{bottom:1051.995000px;}
.y7{bottom:1076.295000px;}
.y35{bottom:1078.995000px;}
.y7a{bottom:1089.675000px;}
.y32{bottom:1116.900000px;}
.y6{bottom:1117.875000px;}
.y31{bottom:1121.295000px;}
.y2c{bottom:1149.300000px;}
.y2e{bottom:1149.450000px;}
.y2b{bottom:1153.875000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h42{height:21.450000px;}
.h13{height:23.550000px;}
.hf{height:24.825000px;}
.h20{height:25.950000px;}
.h11{height:27.000000px;}
.h16{height:28.050000px;}
.h1b{height:28.670520px;}
.h2c{height:28.690682px;}
.h22{height:30.450000px;}
.h7{height:32.550000px;}
.h3{height:32.700000px;}
.h4a{height:34.243717px;}
.h28{height:35.144508px;}
.h27{height:35.169223px;}
.h30{height:36.000000px;}
.h4d{height:36.069363px;}
.h46{height:36.094729px;}
.h37{height:36.994219px;}
.hb{height:37.050000px;}
.h3d{height:37.919074px;}
.h3b{height:37.945740px;}
.h1f{height:41.618496px;}
.h1e{height:41.647764px;}
.h3a{height:42.825000px;}
.h25{height:43.950000px;}
.h4c{height:45.000000px;}
.h4f{height:46.275293px;}
.h1c{height:47.400000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.ha{height:49.592250px;}
.h1a{height:49.627125px;}
.h5{height:50.027344px;}
.h44{height:51.192000px;}
.h24{height:51.228000px;}
.h43{height:53.633393px;}
.h2a{height:54.000000px;}
.he{height:55.991250px;}
.h6{height:56.277773px;}
.h19{height:58.500000px;}
.h12{height:59.190750px;}
.h32{height:59.232375px;}
.h29{height:60.790500px;}
.h2f{height:60.833250px;}
.h4b{height:62.225957px;}
.h49{height:62.390250px;}
.h47{height:62.434125px;}
.h39{height:63.990000px;}
.h36{height:64.035000px;}
.h35{height:64.749000px;}
.h8{height:64.960682px;}
.h2e{height:65.325000px;}
.h3e{height:65.589750px;}
.h3c{height:65.635875px;}
.h48{height:65.765098px;}
.h17{height:67.189500px;}
.h41{height:67.236750px;}
.h33{height:68.625000px;}
.h3f{height:68.807849px;}
.h23{height:69.455813px;}
.h18{height:70.823952px;}
.h9{height:71.204520px;}
.h14{height:71.988750px;}
.h40{height:72.000000px;}
.hc{height:73.342705px;}
.h10{height:75.188250px;}
.h15{height:76.788000px;}
.h31{height:77.533717px;}
.h2b{height:78.262770px;}
.h50{height:79.987500px;}
.hd{height:80.789941px;}
.h2d{height:80.984520px;}
.h45{height:81.724729px;}
.h21{height:82.460867px;}
.h4e{height:88.950000px;}
.h1d{height:94.297764px;}
.h26{height:95.935008px;}
.h34{height:100.984219px;}
.h38{height:131.184000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:10.050000px;}
.w5{width:13.500000px;}
.w8{width:14.550000px;}
.wd{width:22.500000px;}
.w9{width:30.450000px;}
.w1a{width:38.325000px;}
.w15{width:68.550000px;}
.w7{width:83.325000px;}
.wa{width:112.500000px;}
.w10{width:115.950000px;}
.w14{width:127.050000px;}
.wc{width:144.000000px;}
.we{width:171.000000px;}
.w11{width:187.950000px;}
.wf{width:253.050000px;}
.w13{width:262.050000px;}
.w16{width:317.325000px;}
.w12{width:326.325000px;}
.w3{width:345.450000px;}
.wb{width:360.000000px;}
.w19{width:408.450000px;}
.w17{width:419.550000px;}
.w18{width:443.325000px;}
.w4{width:488.325000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:2.158500px;}
.x11{left:3.415500px;}
.x5a{left:5.239500px;}
.x29{left:6.516000px;}
.x4{left:11.760000px;}
.x52{left:16.848000px;}
.x3c{left:18.022500px;}
.x2e{left:21.715500px;}
.x1d{left:23.191500px;}
.x35{left:24.753000px;}
.xc{left:25.815000px;}
.x4f{left:26.883000px;}
.x43{left:28.863000px;}
.xd{left:31.306500px;}
.x46{left:33.376500px;}
.x2b{left:38.088000px;}
.x10{left:39.751500px;}
.x1f{left:43.032000px;}
.x23{left:45.000000px;}
.x40{left:46.038000px;}
.x51{left:47.055000px;}
.x1e{left:48.234000px;}
.x44{left:49.383000px;}
.x49{left:54.828000px;}
.x4a{left:56.340000px;}
.x50{left:58.443000px;}
.x31{left:61.156500px;}
.x4e{left:62.709000px;}
.x3b{left:64.045500px;}
.x24{left:66.291000px;}
.x3a{left:67.716000px;}
.x37{left:71.497500px;}
.x42{left:74.842500px;}
.x56{left:79.584000px;}
.x55{left:92.701500px;}
.x1c{left:94.243500px;}
.x33{left:97.701000px;}
.x2d{left:102.895500px;}
.x34{left:104.158500px;}
.x2c{left:109.774500px;}
.x45{left:119.857500px;}
.x41{left:121.239000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x25{left:128.754000px;}
.x59{left:132.463500px;}
.x2a{left:147.600000px;}
.x4c{left:148.860000px;}
.x58{left:153.403500px;}
.xa{left:159.300000px;}
.x2{left:160.560000px;}
.x57{left:166.285500px;}
.x18{left:169.575000px;}
.x36{left:175.890000px;}
.x48{left:177.675000px;}
.x22{left:179.100000px;}
.x3d{left:186.150000px;}
.x53{left:187.674000px;}
.x19{left:193.138500px;}
.x8{left:204.838500px;}
.x1a{left:214.725000px;}
.x54{left:223.636500px;}
.xb{left:228.225000px;}
.x32{left:233.772000px;}
.x1b{left:245.160000px;}
.xf{left:266.025000px;}
.x7{left:290.880000px;}
.x3e{left:303.120000px;}
.x4b{left:304.738500px;}
.x6{left:313.020000px;}
.x12{left:317.700000px;}
.x2f{left:321.300000px;}
.x26{left:323.100000px;}
.x5{left:325.438500px;}
.x13{left:339.838500px;}
.x20{left:348.891000px;}
.x9{left:353.880000px;}
.x14{left:363.450000px;}
.x15{left:388.620000px;}
.x30{left:417.975000px;}
.x21{left:485.100000px;}
.x47{left:495.360000px;}
.x3f{left:512.460000px;}
.x27{left:517.125000px;}
.x28{left:539.460000px;}
.x16{left:557.850000px;}
.x4d{left:586.260000px;}
.x17{left:649.620000px;}
.x38{left:686.338500px;}
.x39{left:713.325000px;}
@media print{
.v8{vertical-align:-62.272000pt;}
.v4{vertical-align:-56.768000pt;}
.v6{vertical-align:-49.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:37.808000pt;}
.v3{vertical-align:43.040000pt;}
.v5{vertical-align:46.501333pt;}
.v7{vertical-align:59.093333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:18.461824pt;}
.ls1{letter-spacing:18.783147pt;}
.ls3{letter-spacing:25.272320pt;}
.ls6{letter-spacing:26.895189pt;}
.ls5{letter-spacing:46.397909pt;}
.ls7{letter-spacing:141.920000pt;}
.ls4{letter-spacing:161.440000pt;}
.ls8{letter-spacing:452.825387pt;}
.ws59{word-spacing:-66.834432pt;}
.ws49{word-spacing:-60.469248pt;}
.ws5b{word-spacing:-50.921472pt;}
.ws70{word-spacing:-50.610144pt;}
.ws5{word-spacing:-49.728000pt;}
.ws47{word-spacing:-49.330176pt;}
.ws7e{word-spacing:-34.545600pt;}
.ws15{word-spacing:-34.364800pt;}
.ws3{word-spacing:-34.353600pt;}
.ws5a{word-spacing:-34.348800pt;}
.wsa{word-spacing:-34.343467pt;}
.ws7{word-spacing:-34.286667pt;}
.ws32{word-spacing:-34.172800pt;}
.ws33{word-spacing:-34.168000pt;}
.ws78{word-spacing:-34.161600pt;}
.ws12{word-spacing:-33.925333pt;}
.ws4{word-spacing:-33.917333pt;}
.ws4e{word-spacing:-33.916800pt;}
.ws25{word-spacing:-33.903467pt;}
.ws54{word-spacing:-33.856000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws8{word-spacing:-33.846400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws22{word-spacing:-33.726400pt;}
.ws14{word-spacing:-33.720000pt;}
.wsc{word-spacing:-33.718400pt;}
.ws5c{word-spacing:-33.711200pt;}
.ws11{word-spacing:-33.658400pt;}
.ws20{word-spacing:-33.532800pt;}
.ws69{word-spacing:-33.508800pt;}
.ws74{word-spacing:-33.457600pt;}
.ws3c{word-spacing:-33.280000pt;}
.ws13{word-spacing:-33.274667pt;}
.wsb{word-spacing:-33.272800pt;}
.ws29{word-spacing:-33.272000pt;}
.ws1e{word-spacing:-33.271467pt;}
.ws9{word-spacing:-33.267200pt;}
.ws76{word-spacing:-33.088000pt;}
.ws36{word-spacing:-33.085600pt;}
.ws7b{word-spacing:-33.081600pt;}
.ws26{word-spacing:-32.893600pt;}
.ws6{word-spacing:-32.866400pt;}
.ws24{word-spacing:-32.636800pt;}
.ws1a{word-spacing:-32.440000pt;}
.ws10{word-spacing:-32.435200pt;}
.ws19{word-spacing:-31.796800pt;}
.ws1c{word-spacing:-29.248000pt;}
.ws48{word-spacing:-27.932843pt;}
.ws31{word-spacing:-26.679733pt;}
.ws2d{word-spacing:-26.491200pt;}
.wse{word-spacing:-26.360800pt;}
.wsd{word-spacing:-26.053333pt;}
.ws16{word-spacing:-26.048000pt;}
.ws2e{word-spacing:-25.844800pt;}
.ws45{word-spacing:-25.522176pt;}
.ws77{word-spacing:-25.407200pt;}
.ws17{word-spacing:-22.840000pt;}
.ws65{word-spacing:-22.691285pt;}
.ws1f{word-spacing:-21.758933pt;}
.ws3d{word-spacing:-20.088000pt;}
.ws52{word-spacing:-18.945707pt;}
.ws6c{word-spacing:-18.588544pt;}
.ws7d{word-spacing:-17.920000pt;}
.ws7a{word-spacing:-17.845867pt;}
.ws1d{word-spacing:-17.720000pt;}
.ws73{word-spacing:-17.531200pt;}
.wsf{word-spacing:-17.408000pt;}
.ws56{word-spacing:-16.653013pt;}
.ws23{word-spacing:-16.642400pt;}
.ws21{word-spacing:-16.640000pt;}
.ws4c{word-spacing:-15.661952pt;}
.ws3e{word-spacing:-14.573620pt;}
.ws42{word-spacing:-14.528000pt;}
.ws41{word-spacing:-12.336555pt;}
.ws46{word-spacing:-11.844523pt;}
.ws1b{word-spacing:-11.328000pt;}
.ws7c{word-spacing:-8.128000pt;}
.ws4a{word-spacing:-8.104790pt;}
.ws79{word-spacing:-3.186400pt;}
.ws2c{word-spacing:0.000000pt;}
.ws38{word-spacing:3.245824pt;}
.ws62{word-spacing:3.564288pt;}
.ws28{word-spacing:4.035157pt;}
.ws68{word-spacing:5.242837pt;}
.ws60{word-spacing:5.614123pt;}
.ws18{word-spacing:6.148267pt;}
.ws66{word-spacing:6.343381pt;}
.ws5f{word-spacing:8.753579pt;}
.ws2f{word-spacing:9.241429pt;}
.ws2b{word-spacing:10.912640pt;}
.ws53{word-spacing:11.399680pt;}
.ws6a{word-spacing:11.571456pt;}
.ws37{word-spacing:21.597824pt;}
.ws75{word-spacing:23.872000pt;}
.ws4b{word-spacing:25.186048pt;}
.ws51{word-spacing:29.788160pt;}
.ws34{word-spacing:30.946901pt;}
.ws6b{word-spacing:41.823392pt;}
.ws63{word-spacing:42.807210pt;}
.ws3b{word-spacing:43.591680pt;}
.ws5d{word-spacing:44.597015pt;}
.ws30{word-spacing:48.880171pt;}
.ws6f{word-spacing:82.612192pt;}
.ws50{word-spacing:83.548160pt;}
.ws3a{word-spacing:88.201440pt;}
.ws35{word-spacing:100.462464pt;}
.ws44{word-spacing:116.829824pt;}
.ws55{word-spacing:134.788864pt;}
.ws57{word-spacing:134.862635pt;}
.ws67{word-spacing:146.926848pt;}
.ws61{word-spacing:162.725490pt;}
.ws64{word-spacing:166.873184pt;}
.ws6e{word-spacing:173.879056pt;}
.ws4d{word-spacing:182.165504pt;}
.ws5e{word-spacing:182.947915pt;}
.ws43{word-spacing:184.530848pt;}
.ws40{word-spacing:200.366997pt;}
.ws3f{word-spacing:213.439548pt;}
.ws4f{word-spacing:227.062187pt;}
.ws39{word-spacing:249.219798pt;}
.ws72{word-spacing:358.006688pt;}
.ws6d{word-spacing:362.988288pt;}
.ws58{word-spacing:539.715072pt;}
.ws1{word-spacing:922.208800pt;}
.ws71{word-spacing:935.280736pt;}
.ws27{word-spacing:1380.013691pt;}
.ws2a{word-spacing:2014.752794pt;}
._37{margin-left:-1439.467200pt;}
._30{margin-left:-1046.520000pt;}
._25{margin-left:-632.374091pt;}
._1e{margin-left:-312.176000pt;}
._27{margin-left:-249.725250pt;}
._18{margin-left:-222.752000pt;}
._24{margin-left:-7.296000pt;}
._14{margin-left:-6.245333pt;}
._3f{margin-left:-3.744000pt;}
._e{margin-left:-2.832000pt;}
._3{margin-left:-0.954133pt;}
._0{width:0.956800pt;}
._15{width:5.801600pt;}
._f{width:7.125333pt;}
._11{width:8.842667pt;}
._28{width:9.856000pt;}
._1{width:16.860800pt;}
._4{width:18.560000pt;}
._8{width:19.587200pt;}
._a{width:21.376533pt;}
._6{width:24.696000pt;}
._16{width:26.389333pt;}
._7{width:28.096000pt;}
._b{width:29.057067pt;}
._1f{width:31.090667pt;}
._2{width:32.256000pt;}
._5{width:33.536000pt;}
._9{width:37.184000pt;}
._23{width:39.474987pt;}
._22{width:43.442987pt;}
._4a{width:47.632000pt;}
._c{width:51.962667pt;}
._1b{width:53.568000pt;}
._1c{width:56.778667pt;}
._d{width:58.312533pt;}
._13{width:61.416533pt;}
._44{width:64.154581pt;}
._39{width:66.405333pt;}
._10{width:67.744000pt;}
._12{width:68.885333pt;}
._48{width:74.907200pt;}
._17{width:75.835136pt;}
._1a{width:81.344000pt;}
._19{width:84.816000pt;}
._47{width:90.549680pt;}
._46{width:92.418768pt;}
._38{width:97.527381pt;}
._21{width:111.828053pt;}
._20{width:123.279189pt;}
._29{width:130.720427pt;}
._1d{width:136.679040pt;}
._3c{width:151.066752pt;}
._32{width:163.296811pt;}
._36{width:170.043648pt;}
._3b{width:180.101419pt;}
._31{width:196.923477pt;}
._3e{width:201.494400pt;}
._2b{width:221.005867pt;}
._26{width:277.970048pt;}
._2a{width:332.707840pt;}
._35{width:380.458667pt;}
._43{width:385.632000pt;}
._40{width:397.987200pt;}
._2f{width:404.149333pt;}
._2c{width:407.524341pt;}
._42{width:410.592000pt;}
._33{width:564.937340pt;}
._49{width:589.990544pt;}
._45{width:591.046144pt;}
._3d{width:608.544085pt;}
._2e{width:622.684070pt;}
._2d{width:625.423932pt;}
._34{width:652.644959pt;}
._3a{width:813.964715pt;}
._41{width:941.318144pt;}
.fs4{font-size:36.704000pt;}
.fs7{font-size:41.440000pt;}
.fs1{font-size:41.600000pt;}
.fs23{font-size:43.808000pt;}
.fs14{font-size:44.992000pt;}
.fs20{font-size:46.176000pt;}
.fs19{font-size:47.360000pt;}
.fs1b{font-size:48.544000pt;}
.fsf{font-size:53.280000pt;}
.fs25{font-size:59.200000pt;}
.fs3{font-size:63.488000pt;}
.fs0{font-size:64.000000pt;}
.fs12{font-size:65.536000pt;}
.fs1e{font-size:68.661472pt;}
.fs6{font-size:71.680000pt;}
.fs9{font-size:75.776000pt;}
.fs15{font-size:77.824000pt;}
.fs24{font-size:79.661672pt;}
.fs21{font-size:79.872000pt;}
.fs1a{font-size:81.920000pt;}
.fs2{font-size:83.162667pt;}
.fs1c{font-size:83.968000pt;}
.fs22{font-size:84.192480pt;}
.fsc{font-size:86.016000pt;}
.fs1d{font-size:88.087811pt;}
.fs11{font-size:88.917333pt;}
.fsd{font-size:90.668825pt;}
.fsa{font-size:92.160000pt;}
.fs5{font-size:93.893333pt;}
.fs8{font-size:96.256000pt;}
.fsb{font-size:98.304000pt;}
.fs17{font-size:99.258667pt;}
.fs16{font-size:100.192000pt;}
.fs26{font-size:102.400000pt;}
.fs1f{font-size:104.624000pt;}
.fs10{font-size:105.566404pt;}
.fse{font-size:120.720000pt;}
.fs13{font-size:122.816000pt;}
.fs18{font-size:129.280000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:4.042667pt;}
.y8a{bottom:4.200000pt;}
.y30{bottom:4.678667pt;}
.y37{bottom:5.286667pt;}
.y85{bottom:5.520000pt;}
.y33{bottom:5.649333pt;}
.y2f{bottom:5.937333pt;}
.y2d{bottom:5.956000pt;}
.y34{bottom:6.136000pt;}
.y78{bottom:6.200000pt;}
.y45{bottom:6.225333pt;}
.y74{bottom:6.381333pt;}
.y41{bottom:7.421333pt;}
.y3b{bottom:7.708000pt;}
.y25{bottom:8.014667pt;}
.y48{bottom:8.120000pt;}
.y7b{bottom:8.281333pt;}
.y67{bottom:8.434667pt;}
.y29{bottom:9.122667pt;}
.y26{bottom:9.165333pt;}
.y59{bottom:9.325333pt;}
.y49{bottom:9.430667pt;}
.y5c{bottom:9.749333pt;}
.y77{bottom:9.750667pt;}
.y62{bottom:9.796000pt;}
.y73{bottom:10.034667pt;}
.y6d{bottom:10.277333pt;}
.y2a{bottom:10.432000pt;}
.y4c{bottom:10.529333pt;}
.y4{bottom:10.880000pt;}
.y5d{bottom:11.149333pt;}
.y79{bottom:11.150667pt;}
.y75{bottom:11.474667pt;}
.y40{bottom:11.670667pt;}
.y4f{bottom:12.972000pt;}
.y43{bottom:13.346667pt;}
.y68{bottom:13.788000pt;}
.y83{bottom:14.562667pt;}
.y54{bottom:14.874667pt;}
.y89{bottom:15.666667pt;}
.y7c{bottom:17.240000pt;}
.y52{bottom:17.958667pt;}
.y3d{bottom:19.958667pt;}
.y4e{bottom:21.721333pt;}
.y60{bottom:22.822667pt;}
.y87{bottom:23.866667pt;}
.y5a{bottom:24.144000pt;}
.y64{bottom:25.364000pt;}
.y7d{bottom:26.458667pt;}
.y6e{bottom:26.610667pt;}
.y42{bottom:27.112000pt;}
.y55{bottom:27.125333pt;}
.y4d{bottom:27.164000pt;}
.y81{bottom:30.228000pt;}
.y53{bottom:31.584000pt;}
.y3a{bottom:31.708000pt;}
.y63{bottom:34.472000pt;}
.y58{bottom:38.358667pt;}
.y80{bottom:39.270667pt;}
.y61{bottom:40.137333pt;}
.y3c{bottom:41.333333pt;}
.y6c{bottom:42.277333pt;}
.y84{bottom:42.950667pt;}
.y82{bottom:51.992000pt;}
.y3{bottom:56.866667pt;}
.y86{bottom:61.297333pt;}
.y28{bottom:96.000000pt;}
.y27{bottom:105.346667pt;}
.y76{bottom:111.333333pt;}
.y24{bottom:147.666667pt;}
.y23{bottom:157.026667pt;}
.y72{bottom:162.066667pt;}
.y22{bottom:198.788000pt;}
.y6f{bottom:213.733333pt;}
.y70{bottom:217.666667pt;}
.y21{bottom:235.908000pt;}
.y20{bottom:254.308000pt;}
.y6b{bottom:261.400000pt;}
.y1f{bottom:272.706667pt;}
.y6a{bottom:281.346667pt;}
.y1e{bottom:291.108000pt;}
.y1d{bottom:309.508000pt;}
.y1c{bottom:327.908000pt;}
.y66{bottom:344.000000pt;}
.y1b{bottom:346.308000pt;}
.y69{bottom:354.788000pt;}
.y1a{bottom:383.266667pt;}
.y65{bottom:404.226667pt;}
.y9a{bottom:416.546667pt;}
.y19{bottom:420.388000pt;}
.y99{bottom:434.946667pt;}
.y5f{bottom:437.866667pt;}
.y18{bottom:438.788000pt;}
.y98{bottom:453.346667pt;}
.y17{bottom:457.188000pt;}
.y97{bottom:471.746667pt;}
.y16{bottom:475.588000pt;}
.y96{bottom:490.146667pt;}
.y15{bottom:493.988000pt;}
.y95{bottom:508.546667pt;}
.y14{bottom:512.388000pt;}
.y5e{bottom:520.866667pt;}
.y94{bottom:526.946667pt;}
.y93{bottom:545.346667pt;}
.y13{bottom:549.506667pt;}
.y57{bottom:554.400000pt;}
.y92{bottom:563.746667pt;}
.y5b{bottom:565.266667pt;}
.y56{bottom:574.466667pt;}
.y91{bottom:582.146667pt;}
.y12{bottom:586.466667pt;}
.y11{bottom:604.866667pt;}
.y51{bottom:612.466667pt;}
.y90{bottom:619.266667pt;}
.y4b{bottom:621.866667pt;}
.y50{bottom:632.546667pt;}
.y10{bottom:641.988000pt;}
.y8f{bottom:656.388000pt;}
.yf{bottom:679.108000pt;}
.y47{bottom:679.466667pt;}
.y4a{bottom:688.866667pt;}
.y8e{bottom:693.346667pt;}
.ye{bottom:697.506667pt;}
.y46{bottom:709.988000pt;}
.yd{bottom:715.906667pt;}
.y8d{bottom:730.466667pt;}
.y3f{bottom:743.466667pt;}
.y44{bottom:748.933333pt;}
.yc{bottom:752.866667pt;}
.y8c{bottom:767.588000pt;}
.y88{bottom:783.333333pt;}
.y8b{bottom:785.988000pt;}
.yb{bottom:789.988000pt;}
.y39{bottom:804.266667pt;}
.ya{bottom:808.388000pt;}
.y3e{bottom:824.226667pt;}
.y7f{bottom:833.866667pt;}
.y9{bottom:845.506667pt;}
.y38{bottom:878.466667pt;}
.y8{bottom:882.466667pt;}
.y36{bottom:912.000000pt;}
.y7e{bottom:935.106667pt;}
.y7{bottom:956.706667pt;}
.y35{bottom:959.106667pt;}
.y7a{bottom:968.600000pt;}
.y32{bottom:992.800000pt;}
.y6{bottom:993.666667pt;}
.y31{bottom:996.706667pt;}
.y2c{bottom:1021.600000pt;}
.y2e{bottom:1021.733333pt;}
.y2b{bottom:1025.666667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h42{height:19.066667pt;}
.h13{height:20.933333pt;}
.hf{height:22.066667pt;}
.h20{height:23.066667pt;}
.h11{height:24.000000pt;}
.h16{height:24.933333pt;}
.h1b{height:25.484906pt;}
.h2c{height:25.502828pt;}
.h22{height:27.066667pt;}
.h7{height:28.933333pt;}
.h3{height:29.066667pt;}
.h4a{height:30.438859pt;}
.h28{height:31.239563pt;}
.h27{height:31.261531pt;}
.h30{height:32.000000pt;}
.h4d{height:32.061656pt;}
.h46{height:32.084203pt;}
.h37{height:32.883750pt;}
.hb{height:32.933333pt;}
.h3d{height:33.705844pt;}
.h3b{height:33.729547pt;}
.h1f{height:36.994219pt;}
.h1e{height:37.020234pt;}
.h3a{height:38.066667pt;}
.h25{height:39.066667pt;}
.h4c{height:40.000000pt;}
.h4f{height:41.133594pt;}
.h1c{height:42.133333pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.ha{height:44.082000pt;}
.h1a{height:44.113000pt;}
.h5{height:44.468750pt;}
.h44{height:45.504000pt;}
.h24{height:45.536000pt;}
.h43{height:47.674127pt;}
.h2a{height:48.000000pt;}
.he{height:49.770000pt;}
.h6{height:50.024687pt;}
.h19{height:52.000000pt;}
.h12{height:52.614000pt;}
.h32{height:52.651000pt;}
.h29{height:54.036000pt;}
.h2f{height:54.074000pt;}
.h4b{height:55.311962pt;}
.h49{height:55.458000pt;}
.h47{height:55.497000pt;}
.h39{height:56.880000pt;}
.h36{height:56.920000pt;}
.h35{height:57.554667pt;}
.h8{height:57.742828pt;}
.h2e{height:58.066667pt;}
.h3e{height:58.302000pt;}
.h3c{height:58.343000pt;}
.h48{height:58.457865pt;}
.h17{height:59.724000pt;}
.h41{height:59.766000pt;}
.h33{height:61.000000pt;}
.h3f{height:61.162533pt;}
.h23{height:61.738500pt;}
.h18{height:62.954624pt;}
.h9{height:63.292906pt;}
.h14{height:63.990000pt;}
.h40{height:64.000000pt;}
.hc{height:65.193516pt;}
.h10{height:66.834000pt;}
.h15{height:68.256000pt;}
.h31{height:68.918859pt;}
.h2b{height:69.566906pt;}
.h50{height:71.100000pt;}
.hd{height:71.813281pt;}
.h2d{height:71.986240pt;}
.h45{height:72.644203pt;}
.h21{height:73.298548pt;}
.h4e{height:79.066667pt;}
.h1d{height:83.820234pt;}
.h26{height:85.275563pt;}
.h34{height:89.763750pt;}
.h38{height:116.608000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:8.933333pt;}
.w5{width:12.000000pt;}
.w8{width:12.933333pt;}
.wd{width:20.000000pt;}
.w9{width:27.066667pt;}
.w1a{width:34.066667pt;}
.w15{width:60.933333pt;}
.w7{width:74.066667pt;}
.wa{width:100.000000pt;}
.w10{width:103.066667pt;}
.w14{width:112.933333pt;}
.wc{width:128.000000pt;}
.we{width:152.000000pt;}
.w11{width:167.066667pt;}
.wf{width:224.933333pt;}
.w13{width:232.933333pt;}
.w16{width:282.066667pt;}
.w12{width:290.066667pt;}
.w3{width:307.066667pt;}
.wb{width:320.000000pt;}
.w19{width:363.066667pt;}
.w17{width:372.933333pt;}
.w18{width:394.066667pt;}
.w4{width:434.066667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.918667pt;}
.x11{left:3.036000pt;}
.x5a{left:4.657333pt;}
.x29{left:5.792000pt;}
.x4{left:10.453333pt;}
.x52{left:14.976000pt;}
.x3c{left:16.020000pt;}
.x2e{left:19.302667pt;}
.x1d{left:20.614667pt;}
.x35{left:22.002667pt;}
.xc{left:22.946667pt;}
.x4f{left:23.896000pt;}
.x43{left:25.656000pt;}
.xd{left:27.828000pt;}
.x46{left:29.668000pt;}
.x2b{left:33.856000pt;}
.x10{left:35.334667pt;}
.x1f{left:38.250667pt;}
.x23{left:40.000000pt;}
.x40{left:40.922667pt;}
.x51{left:41.826667pt;}
.x1e{left:42.874667pt;}
.x44{left:43.896000pt;}
.x49{left:48.736000pt;}
.x4a{left:50.080000pt;}
.x50{left:51.949333pt;}
.x31{left:54.361333pt;}
.x4e{left:55.741333pt;}
.x3b{left:56.929333pt;}
.x24{left:58.925333pt;}
.x3a{left:60.192000pt;}
.x37{left:63.553333pt;}
.x42{left:66.526667pt;}
.x56{left:70.741333pt;}
.x55{left:82.401333pt;}
.x1c{left:83.772000pt;}
.x33{left:86.845333pt;}
.x2d{left:91.462667pt;}
.x34{left:92.585333pt;}
.x2c{left:97.577333pt;}
.x45{left:106.540000pt;}
.x41{left:107.768000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x25{left:114.448000pt;}
.x59{left:117.745333pt;}
.x2a{left:131.200000pt;}
.x4c{left:132.320000pt;}
.x58{left:136.358667pt;}
.xa{left:141.600000pt;}
.x2{left:142.720000pt;}
.x57{left:147.809333pt;}
.x18{left:150.733333pt;}
.x36{left:156.346667pt;}
.x48{left:157.933333pt;}
.x22{left:159.200000pt;}
.x3d{left:165.466667pt;}
.x53{left:166.821333pt;}
.x19{left:171.678667pt;}
.x8{left:182.078667pt;}
.x1a{left:190.866667pt;}
.x54{left:198.788000pt;}
.xb{left:202.866667pt;}
.x32{left:207.797333pt;}
.x1b{left:217.920000pt;}
.xf{left:236.466667pt;}
.x7{left:258.560000pt;}
.x3e{left:269.440000pt;}
.x4b{left:270.878667pt;}
.x6{left:278.240000pt;}
.x12{left:282.400000pt;}
.x2f{left:285.600000pt;}
.x26{left:287.200000pt;}
.x5{left:289.278667pt;}
.x13{left:302.078667pt;}
.x20{left:310.125333pt;}
.x9{left:314.560000pt;}
.x14{left:323.066667pt;}
.x15{left:345.440000pt;}
.x30{left:371.533333pt;}
.x21{left:431.200000pt;}
.x47{left:440.320000pt;}
.x3f{left:455.520000pt;}
.x27{left:459.666667pt;}
.x28{left:479.520000pt;}
.x16{left:495.866667pt;}
.x4d{left:521.120000pt;}
.x17{left:577.440000pt;}
.x38{left:610.078667pt;}
.x39{left:634.066667pt;}
}




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