
    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_f03248a507459de52a557303.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_5b9bb66e16b30f7e8fff8a7b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_7f2e39a3c21a95680b8b7a3b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964865;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_8f89ac9ceb2ac3a257147057.woff')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_20321e97fad3c8dc782b7b30.woff')format("woff");}.ff5{font-family:ff5;line-height:1.135742;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_25756b72c15aeefdb7966347.woff')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_e17fbf88368c224019f70914.woff')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_ec9c54e536c6b4f6231a2a85.woff')format("woff");}.ff8{font-family:ff8;line-height:1.026855;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_9f5cd46e7bbe7660bc545947.woff')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_8a2909099195613dba6eccd6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.964868;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_b08a79d272998513d201fd50.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_3ab0e4220ce48576d161d620.woff')format("woff");}.ffc{font-family:ffc;line-height:1.026855;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_a6e7cfa6bc8dde6f64cbe264.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964897;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_d19ba75076ca6ab5df665dec.woff')format("woff");}.ffe{font-family:ffe;line-height:0.970370;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_99a1648c06e18b328925ca09.woff')format("woff");}.fff{font-family:fff;line-height:0.964863;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_39d495a59e6eb42a7df50a51.woff')format("woff");}.ff10{font-family:ff10;line-height:0.968262;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_c4908c91caaa629368cd5c25.woff')format("woff");}.ff11{font-family:ff11;line-height:0.770020;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:30.000000px;}
.lse{letter-spacing:-1.188000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-0.960000px;}
.ls1e{letter-spacing:-0.918000px;}
.ls9{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.702000px;}
.ls5{letter-spacing:-0.691200px;}
.ls8{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.408000px;}
.ls21{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.060000px;}
.ls1f{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls10{letter-spacing:0.016800px;}
.ls13{letter-spacing:0.017400px;}
.ls2{letter-spacing:0.025800px;}
.ls11{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.540000px;}
.ls1b{letter-spacing:13.824000px;}
.ls1a{letter-spacing:13.932000px;}
.ls20{letter-spacing:17.010000px;}
.lsf{letter-spacing:17.093400px;}
.ls0{letter-spacing:43.181364px;}
.ls15{letter-spacing:1061.527800px;}
.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;}
}
.ws5{word-spacing:-17.928000px;}
.ws83{word-spacing:-17.010000px;}
.ws25{word-spacing:-16.434000px;}
.ws85{word-spacing:-15.480000px;}
.ws29{word-spacing:-15.180000px;}
.ws2{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.880000px;}
.ws13{word-spacing:-14.700000px;}
.ws11{word-spacing:-14.640000px;}
.ws75{word-spacing:-13.932000px;}
.ws77{word-spacing:-13.824000px;}
.ws31{word-spacing:-13.446000px;}
.ws6d{word-spacing:-13.392000px;}
.ws7d{word-spacing:-13.338000px;}
.ws3{word-spacing:-13.230000px;}
.ws71{word-spacing:-12.960000px;}
.ws7b{word-spacing:-12.312000px;}
.ws8{word-spacing:-12.150000px;}
.ws7{word-spacing:-12.042000px;}
.ws6{word-spacing:-11.772000px;}
.ws0{word-spacing:-10.896000px;}
.ws1{word-spacing:-9.417600px;}
.ws14{word-spacing:-8.675040px;}
.ws4{word-spacing:-7.807536px;}
.ws51{word-spacing:-4.320000px;}
.ws27{word-spacing:-3.300000px;}
.wse{word-spacing:-3.294000px;}
.wsd{word-spacing:-3.240000px;}
.ws2f{word-spacing:-2.862000px;}
.ws30{word-spacing:-2.808000px;}
.ws73{word-spacing:-2.268000px;}
.ws22{word-spacing:-2.214000px;}
.ws24{word-spacing:-2.160000px;}
.ws81{word-spacing:-2.106000px;}
.ws48{word-spacing:-1.680000px;}
.ws28{word-spacing:-1.320000px;}
.wsa{word-spacing:-1.254000px;}
.ws26{word-spacing:-1.200000px;}
.ws70{word-spacing:-1.026000px;}
.ws2a{word-spacing:-0.960000px;}
.ws1c{word-spacing:-0.840000px;}
.ws6b{word-spacing:-0.702000px;}
.ws50{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.480000px;}
.ws47{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.300000px;}
.ws86{word-spacing:-0.270000px;}
.ws46{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.216000px;}
.ws9{word-spacing:0.000000px;}
.ws7e{word-spacing:0.054000px;}
.ws16{word-spacing:0.060000px;}
.ws49{word-spacing:0.120000px;}
.ws79{word-spacing:0.162000px;}
.ws15{word-spacing:0.180000px;}
.ws2d{word-spacing:0.240000px;}
.ws87{word-spacing:0.270000px;}
.ws72{word-spacing:0.432000px;}
.ws4d{word-spacing:0.480000px;}
.ws6e{word-spacing:0.540000px;}
.ws53{word-spacing:0.600000px;}
.ws6f{word-spacing:0.648000px;}
.ws21{word-spacing:0.660000px;}
.wsc{word-spacing:0.691200px;}
.ws33{word-spacing:0.702000px;}
.ws23{word-spacing:0.810000px;}
.ws7c{word-spacing:0.918000px;}
.ws6c{word-spacing:0.960000px;}
.ws7a{word-spacing:1.080000px;}
.wsf{word-spacing:1.566000px;}
.ws1d{word-spacing:1.620000px;}
.ws20{word-spacing:1.860000px;}
.ws1e{word-spacing:1.920000px;}
.ws52{word-spacing:2.400000px;}
.ws2e{word-spacing:2.520000px;}
.ws1a{word-spacing:2.820000px;}
.ws4f{word-spacing:3.180000px;}
.ws2b{word-spacing:3.300000px;}
.ws18{word-spacing:3.420000px;}
.ws1f{word-spacing:3.540000px;}
.ws17{word-spacing:3.660000px;}
.ws4b{word-spacing:3.720000px;}
.ws4e{word-spacing:3.780000px;}
.ws69{word-spacing:3.840000px;}
.ws34{word-spacing:4.320000px;}
.ws32{word-spacing:4.374000px;}
.ws54{word-spacing:4.440000px;}
.ws10{word-spacing:4.644000px;}
.ws35{word-spacing:4.860000px;}
.ws6a{word-spacing:4.920000px;}
.ws80{word-spacing:6.048000px;}
.ws4a{word-spacing:6.300000px;}
.ws4c{word-spacing:6.660000px;}
.ws7f{word-spacing:7.344000px;}
.ws45{word-spacing:7.680000px;}
.ws19{word-spacing:9.060000px;}
.ws78{word-spacing:11.178000px;}
.ws89{word-spacing:11.502000px;}
.ws88{word-spacing:11.664000px;}
.ws76{word-spacing:13.716000px;}
.ws74{word-spacing:13.770000px;}
.ws84{word-spacing:15.768000px;}
.ws82{word-spacing:16.848000px;}
.ws44{word-spacing:16.956000px;}
.ws43{word-spacing:17.226000px;}
.ws3b{word-spacing:514.647000px;}
.ws3a{word-spacing:520.176600px;}
.ws3c{word-spacing:538.104600px;}
.ws36{word-spacing:542.784600px;}
.ws41{word-spacing:565.795800px;}
.ws3f{word-spacing:576.903000px;}
.ws3e{word-spacing:612.567000px;}
.ws42{word-spacing:613.699800px;}
.ws40{word-spacing:621.379800px;}
.ws38{word-spacing:660.547800px;}
.ws65{word-spacing:693.655800px;}
.ws67{word-spacing:702.828600px;}
.ws59{word-spacing:723.099000px;}
.ws63{word-spacing:851.095800px;}
.ws66{word-spacing:873.384000px;}
.ws5e{word-spacing:876.609600px;}
.ws60{word-spacing:877.908600px;}
.ws57{word-spacing:881.976000px;}
.ws5d{word-spacing:908.028600px;}
.ws55{word-spacing:912.443400px;}
.ws61{word-spacing:960.180600px;}
.ws5a{word-spacing:967.087800px;}
.ws5b{word-spacing:977.743800px;}
.ws5f{word-spacing:983.388600px;}
.ws56{word-spacing:995.671800px;}
.ws62{word-spacing:1002.648000px;}
.ws5c{word-spacing:1003.020600px;}
.ws58{word-spacing:1036.124400px;}
.ws68{word-spacing:1036.147200px;}
.ws64{word-spacing:1049.623800px;}
.ws37{word-spacing:1610.616600px;}
.ws39{word-spacing:1670.040600px;}
.ws3d{word-spacing:1695.949200px;}
._42{margin-left:-17.355600px;}
._36{margin-left:-14.628000px;}
._a{margin-left:-10.387800px;}
._e{margin-left:-8.853000px;}
._37{margin-left:-6.937200px;}
._9{margin-left:-5.766600px;}
._2{margin-left:-3.782400px;}
._4{margin-left:-2.659200px;}
._0{margin-left:-1.632000px;}
._1{width:1.213800px;}
._7{width:3.208800px;}
._8{width:5.077200px;}
._5{width:6.674400px;}
._6{width:7.786800px;}
._b{width:9.546000px;}
._d{width:10.608000px;}
._f{width:12.018000px;}
._c{width:13.848000px;}
._3f{width:15.365400px;}
._10{width:16.776000px;}
._11{width:17.949600px;}
._3e{width:19.209000px;}
._34{width:21.336000px;}
._35{width:22.806000px;}
._43{width:24.196200px;}
._44{width:25.267800px;}
._41{width:26.668800px;}
._40{width:33.678000px;}
._3{width:36.624000px;}
._3d{width:43.183800px;}
._38{width:120.792000px;}
._2a{width:243.475800px;}
._1f{width:266.947800px;}
._1d{width:301.651800px;}
._28{width:324.499800px;}
._14{width:350.707800px;}
._2e{width:364.819800px;}
._24{width:394.867800px;}
._16{width:406.627800px;}
._1b{width:408.883800px;}
._2c{width:431.443800px;}
._22{width:436.195800px;}
._26{width:448.483800px;}
._31{width:475.795800px;}
._33{width:518.371800px;}
._18{width:531.091800px;}
._1a{width:593.299800px;}
._30{width:726.253200px;}
._13{width:737.415600px;}
._12{width:861.795000px;}
._3b{width:1034.158200px;}
._3c{width:1047.739200px;}
._39{width:1060.985400px;}
._3a{width:1062.132600px;}
._2b{width:1334.701200px;}
._1e{width:1368.504600px;}
._15{width:1464.624600px;}
._20{width:1491.565200px;}
._32{width:1503.421200px;}
._17{width:1520.665200px;}
._1c{width:1525.368600px;}
._27{width:1526.413200px;}
._19{width:1530.084600px;}
._29{width:1534.141200px;}
._23{width:1538.845200px;}
._21{width:1550.070000px;}
._2d{width:1605.421200px;}
._2f{width:1639.069200px;}
._25{width:1655.514000px;}
.fc1{color:rgb(81,126,140);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.y79{bottom:113.078700px;}
.y6d{bottom:113.078850px;}
.yc4{bottom:117.103950px;}
.y2b{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.ya{bottom:132.275550px;}
.y78{bottom:134.078700px;}
.y6c{bottom:134.078850px;}
.yc3{bottom:137.159100px;}
.y2a{bottom:138.212550px;}
.y9{bottom:146.675550px;}
.y77{bottom:155.078700px;}
.y6b{bottom:155.078850px;}
.yc2{bottom:157.214100px;}
.y29{bottom:159.212550px;}
.y8{bottom:161.075550px;}
.y76{bottom:176.078700px;}
.y6a{bottom:176.078850px;}
.yc1{bottom:177.269250px;}
.y28{bottom:180.212550px;}
.y75{bottom:197.078700px;}
.y69{bottom:197.078850px;}
.yc0{bottom:197.324400px;}
.y37{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.ybf{bottom:217.379550px;}
.y36{bottom:217.392600px;}
.y74{bottom:218.078700px;}
.y68{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.yec{bottom:223.529250px;}
.y35{bottom:235.392600px;}
.ybe{bottom:237.434700px;}
.y73{bottom:239.078700px;}
.y67{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.y34{bottom:253.392600px;}
.ybd{bottom:257.489700px;}
.y72{bottom:260.078700px;}
.y66{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y33{bottom:271.392600px;}
.ybc{bottom:277.544850px;}
.y71{bottom:281.078700px;}
.y65{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y32{bottom:289.392600px;}
.ybb{bottom:297.600000px;}
.y70{bottom:302.078700px;}
.y64{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y31{bottom:307.392600px;}
.yba{bottom:317.655150px;}
.y6f{bottom:323.078700px;}
.y63{bottom:323.078850px;}
.y30{bottom:325.392600px;}
.y21{bottom:327.212550px;}
.yeb{bottom:328.529250px;}
.yb9{bottom:337.710300px;}
.ya6{bottom:341.581350px;}
.y6e{bottom:344.078700px;}
.y62{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.yb8{bottom:357.765300px;}
.y2f{bottom:360.400500px;}
.ya5{bottom:361.381350px;}
.y99{bottom:365.078700px;}
.y61{bottom:365.078850px;}
.ydd{bottom:369.700950px;}
.yb7{bottom:377.820450px;}
.y2e{bottom:378.400500px;}
.y9b{bottom:379.441050px;}
.ya4{bottom:381.181350px;}
.y1f{bottom:383.752350px;}
.yea{bottom:386.078700px;}
.y60{bottom:386.078850px;}
.y7b{bottom:390.881550px;}
.ydc{bottom:391.456950px;}
.y2d{bottom:396.400500px;}
.yb6{bottom:397.875600px;}
.y98{bottom:400.440900px;}
.ya3{bottom:400.981500px;}
.ye9{bottom:407.078700px;}
.y5f{bottom:407.078850px;}
.y7a{bottom:410.681550px;}
.ydb{bottom:413.212800px;}
.y2c{bottom:414.400500px;}
.ya0{bottom:415.681950px;}
.yb5{bottom:417.930750px;}
.ya2{bottom:420.781350px;}
.ye8{bottom:428.078700px;}
.y5e{bottom:428.078850px;}
.yda{bottom:434.968650px;}
.y9f{bottom:435.481950px;}
.yb4{bottom:437.985750px;}
.ya1{bottom:440.581350px;}
.yc6{bottom:442.441050px;}
.y97{bottom:449.078700px;}
.y5d{bottom:449.078850px;}
.y9e{bottom:455.281950px;}
.yd9{bottom:456.724650px;}
.yb3{bottom:458.040900px;}
.y1e{bottom:460.027950px;}
.y96{bottom:470.078700px;}
.y5c{bottom:470.078850px;}
.y9d{bottom:475.081950px;}
.ye7{bottom:475.529250px;}
.yb2{bottom:478.096050px;}
.yd8{bottom:478.480500px;}
.y95{bottom:491.078700px;}
.y5b{bottom:491.078850px;}
.y9c{bottom:494.881950px;}
.yb1{bottom:498.151200px;}
.yd7{bottom:500.236350px;}
.y1d{bottom:501.087750px;}
.yf4{bottom:504.513600px;}
.y94{bottom:512.078700px;}
.y5a{bottom:512.078850px;}
.yb0{bottom:518.206350px;}
.y1c{bottom:520.887750px;}
.yd6{bottom:521.992350px;}
.y93{bottom:533.078700px;}
.y59{bottom:533.078850px;}
.yf3{bottom:536.811150px;}
.yaf{bottom:538.261350px;}
.ye6{bottom:538.529250px;}
.y1b{bottom:540.687750px;}
.yd5{bottom:543.748200px;}
.y92{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.yae{bottom:558.316500px;}
.y1a{bottom:560.487750px;}
.yd4{bottom:565.504050px;}
.y91{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.yad{bottom:578.371650px;}
.y19{bottom:580.287750px;}
.yd3{bottom:587.260050px;}
.yc7{bottom:589.441050px;}
.y90{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.yac{bottom:598.426800px;}
.y18{bottom:600.087750px;}
.ye5{bottom:601.529250px;}
.yd2{bottom:609.015900px;}
.yc8{bottom:610.441050px;}
.y8f{bottom:617.078700px;}
.y55{bottom:617.078850px;}
.yab{bottom:618.481950px;}
.y17{bottom:619.887750px;}
.yd1{bottom:630.771900px;}
.y8e{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.yaa{bottom:638.836950px;}
.y16{bottom:639.687750px;}
.yd0{bottom:652.527750px;}
.y8d{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.y15{bottom:659.487750px;}
.ya9{bottom:669.318900px;}
.ycf{bottom:674.283600px;}
.y14{bottom:679.287750px;}
.y8c{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.ye4{bottom:685.529250px;}
.yce{bottom:696.039600px;}
.y13{bottom:699.087750px;}
.y51{bottom:701.078850px;}
.y8b{bottom:714.513450px;}
.yc5{bottom:715.441050px;}
.ycc{bottom:718.095450px;}
.y12{bottom:718.887750px;}
.ye3{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.ya8{bottom:723.419850px;}
.ycb{bottom:725.595450px;}
.ycd{bottom:733.095450px;}
.y11{bottom:738.687750px;}
.y4f{bottom:743.078850px;}
.ya7{bottom:743.219850px;}
.y8a{bottom:746.811000px;}
.ye2{bottom:748.936950px;}
.y10{bottom:758.487750px;}
.y4e{bottom:764.078850px;}
.yca{bottom:765.278100px;}
.yf2{bottom:777.513600px;}
.yf{bottom:778.287750px;}
.ye1{bottom:778.440900px;}
.yc9{bottom:785.078100px;}
.y4d{bottom:785.078850px;}
.ye{bottom:798.087750px;}
.yf1{bottom:798.513600px;}
.y89{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.yf0{bottom:819.513600px;}
.y88{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yd{bottom:829.185300px;}
.ye0{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.yef{bottom:851.811000px;}
.y87{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y86{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y7{bottom:908.466750px;}
.y85{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.y84{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.y9a{bottom:946.441050px;}
.y83{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.ydf{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y82{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.yee{bottom:1009.440900px;}
.y81{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y80{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y7f{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.y7e{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y7d{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.yde{bottom:1111.570800px;}
.y7c{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.yed{bottom:1125.451800px;}
.y39{bottom:1155.615300px;}
.y38{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h7{height:34.446094px;}
.h14{height:36.492188px;}
.h2{height:38.039062px;}
.h11{height:38.226562px;}
.hf{height:38.273438px;}
.h5{height:38.484375px;}
.h6{height:38.531250px;}
.he{height:42.793945px;}
.h8{height:43.004883px;}
.hd{height:43.057617px;}
.h12{height:43.500000px;}
.h9{height:45.615234px;}
.ha{height:48.937500px;}
.h10{height:50.176758px;}
.hc{height:54.375000px;}
.hb{height:54.738281px;}
.h4{height:59.812500px;}
.h13{height:68.226562px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xe{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x10{left:130.239900px;}
.xd{left:160.762500px;}
.x4{left:300.189000px;}
.x11{left:316.136400px;}
.x5{left:317.196900px;}
.x14{left:334.204650px;}
.xc{left:360.597000px;}
.x3{left:396.050700px;}
.x12{left:570.639150px;}
.x13{left:640.307700px;}
.xa{left:652.495050px;}
.x9{left:669.786150px;}
.xf{left:806.560800px;}
.x1{left:813.069600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:26.666667pt;}
.lse{letter-spacing:-1.056000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls1e{letter-spacing:-0.816000pt;}
.ls9{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.624000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls21{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls10{letter-spacing:0.014933pt;}
.ls13{letter-spacing:0.015467pt;}
.ls2{letter-spacing:0.022933pt;}
.ls11{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:12.288000pt;}
.ls1a{letter-spacing:12.384000pt;}
.ls20{letter-spacing:15.120000pt;}
.lsf{letter-spacing:15.194133pt;}
.ls0{letter-spacing:38.383435pt;}
.ls15{letter-spacing:943.580267pt;}
.ws5{word-spacing:-15.936000pt;}
.ws83{word-spacing:-15.120000pt;}
.ws25{word-spacing:-14.608000pt;}
.ws85{word-spacing:-13.760000pt;}
.ws29{word-spacing:-13.493333pt;}
.ws2{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.226667pt;}
.ws13{word-spacing:-13.066667pt;}
.ws11{word-spacing:-13.013333pt;}
.ws75{word-spacing:-12.384000pt;}
.ws77{word-spacing:-12.288000pt;}
.ws31{word-spacing:-11.952000pt;}
.ws6d{word-spacing:-11.904000pt;}
.ws7d{word-spacing:-11.856000pt;}
.ws3{word-spacing:-11.760000pt;}
.ws71{word-spacing:-11.520000pt;}
.ws7b{word-spacing:-10.944000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.704000pt;}
.ws6{word-spacing:-10.464000pt;}
.ws0{word-spacing:-9.685333pt;}
.ws1{word-spacing:-8.371200pt;}
.ws14{word-spacing:-7.711147pt;}
.ws4{word-spacing:-6.940032pt;}
.ws51{word-spacing:-3.840000pt;}
.ws27{word-spacing:-2.933333pt;}
.wse{word-spacing:-2.928000pt;}
.wsd{word-spacing:-2.880000pt;}
.ws2f{word-spacing:-2.544000pt;}
.ws30{word-spacing:-2.496000pt;}
.ws73{word-spacing:-2.016000pt;}
.ws22{word-spacing:-1.968000pt;}
.ws24{word-spacing:-1.920000pt;}
.ws81{word-spacing:-1.872000pt;}
.ws48{word-spacing:-1.493333pt;}
.ws28{word-spacing:-1.173333pt;}
.wsa{word-spacing:-1.114667pt;}
.ws26{word-spacing:-1.066667pt;}
.ws70{word-spacing:-0.912000pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws1c{word-spacing:-0.746667pt;}
.ws6b{word-spacing:-0.624000pt;}
.ws50{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.426667pt;}
.ws47{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.266667pt;}
.ws86{word-spacing:-0.240000pt;}
.ws46{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.192000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.048000pt;}
.ws16{word-spacing:0.053333pt;}
.ws49{word-spacing:0.106667pt;}
.ws79{word-spacing:0.144000pt;}
.ws15{word-spacing:0.160000pt;}
.ws2d{word-spacing:0.213333pt;}
.ws87{word-spacing:0.240000pt;}
.ws72{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.426667pt;}
.ws6e{word-spacing:0.480000pt;}
.ws53{word-spacing:0.533333pt;}
.ws6f{word-spacing:0.576000pt;}
.ws21{word-spacing:0.586667pt;}
.wsc{word-spacing:0.614400pt;}
.ws33{word-spacing:0.624000pt;}
.ws23{word-spacing:0.720000pt;}
.ws7c{word-spacing:0.816000pt;}
.ws6c{word-spacing:0.853333pt;}
.ws7a{word-spacing:0.960000pt;}
.wsf{word-spacing:1.392000pt;}
.ws1d{word-spacing:1.440000pt;}
.ws20{word-spacing:1.653333pt;}
.ws1e{word-spacing:1.706667pt;}
.ws52{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.240000pt;}
.ws1a{word-spacing:2.506667pt;}
.ws4f{word-spacing:2.826667pt;}
.ws2b{word-spacing:2.933333pt;}
.ws18{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.146667pt;}
.ws17{word-spacing:3.253333pt;}
.ws4b{word-spacing:3.306667pt;}
.ws4e{word-spacing:3.360000pt;}
.ws69{word-spacing:3.413333pt;}
.ws34{word-spacing:3.840000pt;}
.ws32{word-spacing:3.888000pt;}
.ws54{word-spacing:3.946667pt;}
.ws10{word-spacing:4.128000pt;}
.ws35{word-spacing:4.320000pt;}
.ws6a{word-spacing:4.373333pt;}
.ws80{word-spacing:5.376000pt;}
.ws4a{word-spacing:5.600000pt;}
.ws4c{word-spacing:5.920000pt;}
.ws7f{word-spacing:6.528000pt;}
.ws45{word-spacing:6.826667pt;}
.ws19{word-spacing:8.053333pt;}
.ws78{word-spacing:9.936000pt;}
.ws89{word-spacing:10.224000pt;}
.ws88{word-spacing:10.368000pt;}
.ws76{word-spacing:12.192000pt;}
.ws74{word-spacing:12.240000pt;}
.ws84{word-spacing:14.016000pt;}
.ws82{word-spacing:14.976000pt;}
.ws44{word-spacing:15.072000pt;}
.ws43{word-spacing:15.312000pt;}
.ws3b{word-spacing:457.464000pt;}
.ws3a{word-spacing:462.379200pt;}
.ws3c{word-spacing:478.315200pt;}
.ws36{word-spacing:482.475200pt;}
.ws41{word-spacing:502.929600pt;}
.ws3f{word-spacing:512.802667pt;}
.ws3e{word-spacing:544.504000pt;}
.ws42{word-spacing:545.510933pt;}
.ws40{word-spacing:552.337600pt;}
.ws38{word-spacing:587.153600pt;}
.ws65{word-spacing:616.582933pt;}
.ws67{word-spacing:624.736533pt;}
.ws59{word-spacing:642.754667pt;}
.ws63{word-spacing:756.529600pt;}
.ws66{word-spacing:776.341333pt;}
.ws5e{word-spacing:779.208533pt;}
.ws60{word-spacing:780.363200pt;}
.ws57{word-spacing:783.978667pt;}
.ws5d{word-spacing:807.136533pt;}
.ws55{word-spacing:811.060800pt;}
.ws61{word-spacing:853.493867pt;}
.ws5a{word-spacing:859.633600pt;}
.ws5b{word-spacing:869.105600pt;}
.ws5f{word-spacing:874.123200pt;}
.ws56{word-spacing:885.041600pt;}
.ws62{word-spacing:891.242667pt;}
.ws5c{word-spacing:891.573867pt;}
.ws58{word-spacing:920.999467pt;}
.ws68{word-spacing:921.019733pt;}
.ws64{word-spacing:932.998933pt;}
.ws37{word-spacing:1431.659200pt;}
.ws39{word-spacing:1484.480533pt;}
.ws3d{word-spacing:1507.510400pt;}
._42{margin-left:-15.427200pt;}
._36{margin-left:-13.002667pt;}
._a{margin-left:-9.233600pt;}
._e{margin-left:-7.869333pt;}
._37{margin-left:-6.166400pt;}
._9{margin-left:-5.125867pt;}
._2{margin-left:-3.362133pt;}
._4{margin-left:-2.363733pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.078933pt;}
._7{width:2.852267pt;}
._8{width:4.513067pt;}
._5{width:5.932800pt;}
._6{width:6.921600pt;}
._b{width:8.485333pt;}
._d{width:9.429333pt;}
._f{width:10.682667pt;}
._c{width:12.309333pt;}
._3f{width:13.658133pt;}
._10{width:14.912000pt;}
._11{width:15.955200pt;}
._3e{width:17.074667pt;}
._34{width:18.965333pt;}
._35{width:20.272000pt;}
._43{width:21.507733pt;}
._44{width:22.460267pt;}
._41{width:23.705600pt;}
._40{width:29.936000pt;}
._3{width:32.554667pt;}
._3d{width:38.385600pt;}
._38{width:107.370667pt;}
._2a{width:216.422933pt;}
._1f{width:237.286933pt;}
._1d{width:268.134933pt;}
._28{width:288.444267pt;}
._14{width:311.740267pt;}
._2e{width:324.284267pt;}
._24{width:350.993600pt;}
._16{width:361.446933pt;}
._1b{width:363.452267pt;}
._2c{width:383.505600pt;}
._22{width:387.729600pt;}
._26{width:398.652267pt;}
._31{width:422.929600pt;}
._33{width:460.774933pt;}
._18{width:472.081600pt;}
._1a{width:527.377600pt;}
._30{width:645.558400pt;}
._13{width:655.480533pt;}
._12{width:766.040000pt;}
._3b{width:919.251733pt;}
._3c{width:931.323733pt;}
._39{width:943.098133pt;}
._3a{width:944.117867pt;}
._2b{width:1186.401067pt;}
._1e{width:1216.448533pt;}
._15{width:1301.888533pt;}
._20{width:1325.835733pt;}
._32{width:1336.374400pt;}
._17{width:1351.702400pt;}
._1c{width:1355.883200pt;}
._27{width:1356.811733pt;}
._19{width:1360.075200pt;}
._29{width:1363.681067pt;}
._23{width:1367.862400pt;}
._21{width:1377.840000pt;}
._2d{width:1427.041067pt;}
._2f{width:1456.950400pt;}
._25{width:1471.568000pt;}
.fs8{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.y79{bottom:100.514400pt;}
.y6d{bottom:100.514533pt;}
.yc4{bottom:104.092400pt;}
.y2b{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.ya{bottom:117.578267pt;}
.y78{bottom:119.181067pt;}
.y6c{bottom:119.181200pt;}
.yc3{bottom:121.919200pt;}
.y2a{bottom:122.855600pt;}
.y9{bottom:130.378267pt;}
.y77{bottom:137.847733pt;}
.y6b{bottom:137.847867pt;}
.yc2{bottom:139.745867pt;}
.y29{bottom:141.522267pt;}
.y8{bottom:143.178267pt;}
.y76{bottom:156.514400pt;}
.y6a{bottom:156.514533pt;}
.yc1{bottom:157.572667pt;}
.y28{bottom:160.188933pt;}
.y75{bottom:175.181067pt;}
.y69{bottom:175.181200pt;}
.yc0{bottom:175.399467pt;}
.y37{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.ybf{bottom:193.226267pt;}
.y36{bottom:193.237867pt;}
.y74{bottom:193.847733pt;}
.y68{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.yec{bottom:198.692667pt;}
.y35{bottom:209.237867pt;}
.ybe{bottom:211.053067pt;}
.y73{bottom:212.514400pt;}
.y67{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.y34{bottom:225.237867pt;}
.ybd{bottom:228.879733pt;}
.y72{bottom:231.181067pt;}
.y66{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y33{bottom:241.237867pt;}
.ybc{bottom:246.706533pt;}
.y71{bottom:249.847733pt;}
.y65{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y32{bottom:257.237867pt;}
.ybb{bottom:264.533333pt;}
.y70{bottom:268.514400pt;}
.y64{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y31{bottom:273.237867pt;}
.yba{bottom:282.360133pt;}
.y6f{bottom:287.181067pt;}
.y63{bottom:287.181200pt;}
.y30{bottom:289.237867pt;}
.y21{bottom:290.855600pt;}
.yeb{bottom:292.026000pt;}
.yb9{bottom:300.186933pt;}
.ya6{bottom:303.627867pt;}
.y6e{bottom:305.847733pt;}
.y62{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.yb8{bottom:318.013600pt;}
.y2f{bottom:320.356000pt;}
.ya5{bottom:321.227867pt;}
.y99{bottom:324.514400pt;}
.y61{bottom:324.514533pt;}
.ydd{bottom:328.623067pt;}
.yb7{bottom:335.840400pt;}
.y2e{bottom:336.356000pt;}
.y9b{bottom:337.280933pt;}
.ya4{bottom:338.827867pt;}
.y1f{bottom:341.113200pt;}
.yea{bottom:343.181067pt;}
.y60{bottom:343.181200pt;}
.y7b{bottom:347.450267pt;}
.ydc{bottom:347.961733pt;}
.y2d{bottom:352.356000pt;}
.yb6{bottom:353.667200pt;}
.y98{bottom:355.947467pt;}
.ya3{bottom:356.428000pt;}
.ye9{bottom:361.847733pt;}
.y5f{bottom:361.847867pt;}
.y7a{bottom:365.050267pt;}
.ydb{bottom:367.300267pt;}
.y2c{bottom:368.356000pt;}
.ya0{bottom:369.495067pt;}
.yb5{bottom:371.494000pt;}
.ya2{bottom:374.027867pt;}
.ye8{bottom:380.514400pt;}
.y5e{bottom:380.514533pt;}
.yda{bottom:386.638800pt;}
.y9f{bottom:387.095067pt;}
.yb4{bottom:389.320667pt;}
.ya1{bottom:391.627867pt;}
.yc6{bottom:393.280933pt;}
.y97{bottom:399.181067pt;}
.y5d{bottom:399.181200pt;}
.y9e{bottom:404.695067pt;}
.yd9{bottom:405.977467pt;}
.yb3{bottom:407.147467pt;}
.y1e{bottom:408.913733pt;}
.y96{bottom:417.847733pt;}
.y5c{bottom:417.847867pt;}
.y9d{bottom:422.295067pt;}
.ye7{bottom:422.692667pt;}
.yb2{bottom:424.974267pt;}
.yd8{bottom:425.316000pt;}
.y95{bottom:436.514400pt;}
.y5b{bottom:436.514533pt;}
.y9c{bottom:439.895067pt;}
.yb1{bottom:442.801067pt;}
.yd7{bottom:444.654533pt;}
.y1d{bottom:445.411333pt;}
.yf4{bottom:448.456533pt;}
.y94{bottom:455.181067pt;}
.y5a{bottom:455.181200pt;}
.yb0{bottom:460.627867pt;}
.y1c{bottom:463.011333pt;}
.yd6{bottom:463.993200pt;}
.y93{bottom:473.847733pt;}
.y59{bottom:473.847867pt;}
.yf3{bottom:477.165467pt;}
.yaf{bottom:478.454533pt;}
.ye6{bottom:478.692667pt;}
.y1b{bottom:480.611333pt;}
.yd5{bottom:483.331733pt;}
.y92{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.yae{bottom:496.281333pt;}
.y1a{bottom:498.211333pt;}
.yd4{bottom:502.670267pt;}
.y91{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.yad{bottom:514.108133pt;}
.y19{bottom:515.811333pt;}
.yd3{bottom:522.008933pt;}
.yc7{bottom:523.947600pt;}
.y90{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.yac{bottom:531.934933pt;}
.y18{bottom:533.411333pt;}
.ye5{bottom:534.692667pt;}
.yd2{bottom:541.347467pt;}
.yc8{bottom:542.614267pt;}
.y8f{bottom:548.514400pt;}
.y55{bottom:548.514533pt;}
.yab{bottom:549.761733pt;}
.y17{bottom:551.011333pt;}
.yd1{bottom:560.686133pt;}
.y8e{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.yaa{bottom:567.855067pt;}
.y16{bottom:568.611333pt;}
.yd0{bottom:580.024667pt;}
.y8d{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.y15{bottom:586.211333pt;}
.ya9{bottom:594.950133pt;}
.ycf{bottom:599.363200pt;}
.y14{bottom:603.811333pt;}
.y8c{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.ye4{bottom:609.359333pt;}
.yce{bottom:618.701867pt;}
.y13{bottom:621.411333pt;}
.y51{bottom:623.181200pt;}
.y8b{bottom:635.123067pt;}
.yc5{bottom:635.947600pt;}
.ycc{bottom:638.307067pt;}
.y12{bottom:639.011333pt;}
.ye3{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.ya8{bottom:643.039867pt;}
.ycb{bottom:644.973733pt;}
.ycd{bottom:651.640400pt;}
.y11{bottom:656.611333pt;}
.y4f{bottom:660.514533pt;}
.ya7{bottom:660.639867pt;}
.y8a{bottom:663.832000pt;}
.ye2{bottom:665.721733pt;}
.y10{bottom:674.211333pt;}
.y4e{bottom:679.181200pt;}
.yca{bottom:680.247200pt;}
.yf2{bottom:691.123200pt;}
.yf{bottom:691.811333pt;}
.ye1{bottom:691.947467pt;}
.yc9{bottom:697.847200pt;}
.y4d{bottom:697.847867pt;}
.ye{bottom:709.411333pt;}
.yf1{bottom:709.789867pt;}
.y89{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.yf0{bottom:728.456533pt;}
.y88{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yd{bottom:737.053600pt;}
.ye0{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.yef{bottom:757.165333pt;}
.y87{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y86{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y7{bottom:807.526000pt;}
.y85{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.y84{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.y9a{bottom:841.280933pt;}
.y83{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.ydf{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y82{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.yee{bottom:897.280800pt;}
.y81{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y80{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y7f{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.y7e{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y7d{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.yde{bottom:988.062933pt;}
.y7c{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.yed{bottom:1000.401600pt;}
.y39{bottom:1027.213600pt;}
.y38{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h7{height:30.618750pt;}
.h14{height:32.437500pt;}
.h2{height:33.812500pt;}
.h11{height:33.979167pt;}
.hf{height:34.020833pt;}
.h5{height:34.208333pt;}
.h6{height:34.250000pt;}
.he{height:38.039062pt;}
.h8{height:38.226562pt;}
.hd{height:38.273438pt;}
.h12{height:38.666667pt;}
.h9{height:40.546875pt;}
.ha{height:43.500000pt;}
.h10{height:44.601562pt;}
.hc{height:48.333333pt;}
.hb{height:48.656250pt;}
.h4{height:53.166667pt;}
.h13{height:60.645833pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xe{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x10{left:115.768800pt;}
.xd{left:142.900000pt;}
.x4{left:266.834667pt;}
.x11{left:281.010133pt;}
.x5{left:281.952800pt;}
.x14{left:297.070800pt;}
.xc{left:320.530667pt;}
.x3{left:352.045067pt;}
.x12{left:507.234800pt;}
.x13{left:569.162400pt;}
.xa{left:579.995600pt;}
.x9{left:595.365467pt;}
.xf{left:716.942933pt;}
.x1{left:722.728533pt;}
}




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