
    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_0c4615ead03aca94c35c32f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_bfdab92cf06570897fa96c3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_f8e3983a8bb227ce21328fca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_51e908578bc4b9c5966069fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_f3932f83c5f230d37b46f645.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_67d06c16fa3454f04d4bf1ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051758;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_82587bc3519785303736545a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_54cfbbb0b4aed4cb15cad578.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.990000;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_e15c7eb0c760884de87d6c07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.763000;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_61d9722615de39bc334a85eb.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls2{letter-spacing:-20.580000px;}
.ls3{letter-spacing:-3.264000px;}
.ls4{letter-spacing:-2.496000px;}
.ls5{letter-spacing:-0.810000px;}
.ls1{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-60.000000px;}
.ws1c{word-spacing:-59.400000px;}
.ws9e{word-spacing:-54.000000px;}
.ws9d{word-spacing:-53.460000px;}
.ws4e{word-spacing:-49.320000px;}
.ws64{word-spacing:-48.120000px;}
.ws75{word-spacing:-43.800000px;}
.ws83{word-spacing:-43.080000px;}
.ws0{word-spacing:-18.984000px;}
.ws2{word-spacing:-15.048000px;}
.ws63{word-spacing:-15.000000px;}
.ws8f{word-spacing:-13.500000px;}
.ws4d{word-spacing:-10.272000px;}
.ws1a{word-spacing:-9.504000px;}
.ws1b{word-spacing:-8.745000px;}
.ws9f{word-spacing:-5.508000px;}
.wsa3{word-spacing:-4.428000px;}
.ws20{word-spacing:-4.140000px;}
.wsbf{word-spacing:-4.104000px;}
.ws3d{word-spacing:-3.780000px;}
.ws65{word-spacing:-3.300000px;}
.wsbd{word-spacing:-3.078000px;}
.ws61{word-spacing:-3.060000px;}
.ws25{word-spacing:-3.000000px;}
.ws62{word-spacing:-2.940000px;}
.ws76{word-spacing:-2.760000px;}
.ws2c{word-spacing:-2.700000px;}
.ws77{word-spacing:-2.580000px;}
.wsac{word-spacing:-2.538000px;}
.ws7c{word-spacing:-2.400000px;}
.ws68{word-spacing:-2.280000px;}
.ws7f{word-spacing:-2.220000px;}
.ws47{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.100000px;}
.wsab{word-spacing:-1.998000px;}
.ws5e{word-spacing:-1.980000px;}
.ws6e{word-spacing:-1.860000px;}
.ws86{word-spacing:-1.620000px;}
.ws4a{word-spacing:-1.500000px;}
.ws90{word-spacing:-1.440000px;}
.ws5{word-spacing:-1.380000px;}
.ws93{word-spacing:-1.350000px;}
.ws12{word-spacing:-1.320000px;}
.ws98{word-spacing:-1.242000px;}
.ws51{word-spacing:-1.140000px;}
.ws15{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.020000px;}
.ws7a{word-spacing:-0.900000px;}
.ws33{word-spacing:-0.840000px;}
.ws78{word-spacing:-0.780000px;}
.ws3c{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.660000px;}
.ws3e{word-spacing:-0.600000px;}
.ws43{word-spacing:-0.540000px;}
.ws45{word-spacing:-0.480000px;}
.ws72{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.240000px;}
.ws42{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.120000px;}
.ws16{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:0.120000px;}
.ws69{word-spacing:0.180000px;}
.wsb1{word-spacing:0.216000px;}
.ws7{word-spacing:0.240000px;}
.ws2f{word-spacing:0.300000px;}
.ws8e{word-spacing:0.360000px;}
.wsa2{word-spacing:0.432000px;}
.ws6c{word-spacing:0.480000px;}
.wsa0{word-spacing:0.540000px;}
.ws1f{word-spacing:0.600000px;}
.ws11{word-spacing:0.720000px;}
.ws95{word-spacing:0.810000px;}
.ws4b{word-spacing:0.840000px;}
.ws9b{word-spacing:0.864000px;}
.ws21{word-spacing:0.900000px;}
.ws29{word-spacing:0.960000px;}
.ws46{word-spacing:1.020000px;}
.ws9a{word-spacing:1.080000px;}
.wsa1{word-spacing:1.188000px;}
.ws94{word-spacing:1.242000px;}
.ws54{word-spacing:1.380000px;}
.ws3a{word-spacing:1.440000px;}
.ws79{word-spacing:1.560000px;}
.ws49{word-spacing:1.680000px;}
.wsa9{word-spacing:1.728000px;}
.ws22{word-spacing:1.740000px;}
.ws6d{word-spacing:1.800000px;}
.ws80{word-spacing:1.860000px;}
.ws14{word-spacing:1.980000px;}
.wsad{word-spacing:1.998000px;}
.ws88{word-spacing:2.040000px;}
.ws8d{word-spacing:2.160000px;}
.wsb5{word-spacing:2.214000px;}
.wsc{word-spacing:2.220000px;}
.ws13{word-spacing:2.280000px;}
.ws5a{word-spacing:2.340000px;}
.ws50{word-spacing:2.400000px;}
.ws5f{word-spacing:2.460000px;}
.ws73{word-spacing:2.520000px;}
.ws66{word-spacing:2.580000px;}
.ws41{word-spacing:2.700000px;}
.ws4c{word-spacing:2.760000px;}
.ws37{word-spacing:2.880000px;}
.ws52{word-spacing:3.120000px;}
.ws59{word-spacing:3.240000px;}
.ws48{word-spacing:3.300000px;}
.ws60{word-spacing:3.360000px;}
.ws55{word-spacing:3.480000px;}
.ws35{word-spacing:3.540000px;}
.ws92{word-spacing:3.564000px;}
.ws1d{word-spacing:3.660000px;}
.ws10{word-spacing:3.720000px;}
.wsbe{word-spacing:3.726000px;}
.ws67{word-spacing:3.840000px;}
.wsbb{word-spacing:3.942000px;}
.ws31{word-spacing:3.960000px;}
.ws5b{word-spacing:4.020000px;}
.ws91{word-spacing:4.080000px;}
.ws34{word-spacing:4.140000px;}
.wsbc{word-spacing:4.374000px;}
.ws2b{word-spacing:4.500000px;}
.ws3b{word-spacing:4.680000px;}
.wsae{word-spacing:4.698000px;}
.wsb{word-spacing:4.740000px;}
.ws40{word-spacing:4.920000px;}
.ws7e{word-spacing:4.980000px;}
.wse{word-spacing:5.040000px;}
.ws3f{word-spacing:5.160000px;}
.wsb7{word-spacing:5.184000px;}
.wsa6{word-spacing:5.292000px;}
.ws71{word-spacing:5.340000px;}
.ws4{word-spacing:5.460000px;}
.ws24{word-spacing:5.640000px;}
.ws38{word-spacing:5.700000px;}
.ws8a{word-spacing:5.760000px;}
.ws1e{word-spacing:5.820000px;}
.ws99{word-spacing:5.886000px;}
.ws18{word-spacing:6.060000px;}
.ws7d{word-spacing:6.180000px;}
.ws6a{word-spacing:6.300000px;}
.ws70{word-spacing:6.360000px;}
.ws8c{word-spacing:6.420000px;}
.ws97{word-spacing:6.480000px;}
.ws6f{word-spacing:6.540000px;}
.wsa7{word-spacing:6.588000px;}
.ws58{word-spacing:6.600000px;}
.ws6{word-spacing:6.660000px;}
.ws44{word-spacing:6.720000px;}
.ws87{word-spacing:6.900000px;}
.wsa4{word-spacing:7.236000px;}
.ws6b{word-spacing:7.260000px;}
.ws96{word-spacing:7.290000px;}
.ws27{word-spacing:7.440000px;}
.ws23{word-spacing:7.680000px;}
.wsb2{word-spacing:7.776000px;}
.wsb0{word-spacing:7.884000px;}
.ws8b{word-spacing:7.920000px;}
.wsf{word-spacing:7.980000px;}
.ws30{word-spacing:8.040000px;}
.ws4f{word-spacing:8.100000px;}
.wsd{word-spacing:8.340000px;}
.wsa5{word-spacing:8.424000px;}
.ws8{word-spacing:8.520000px;}
.ws36{word-spacing:9.000000px;}
.wsba{word-spacing:9.018000px;}
.ws9{word-spacing:9.180000px;}
.wsb9{word-spacing:9.234000px;}
.ws74{word-spacing:9.480000px;}
.wsb4{word-spacing:9.828000px;}
.ws32{word-spacing:9.840000px;}
.ws57{word-spacing:10.260000px;}
.ws7b{word-spacing:10.740000px;}
.wsa8{word-spacing:10.854000px;}
.wsb6{word-spacing:10.908000px;}
.ws5c{word-spacing:10.980000px;}
.ws39{word-spacing:11.040000px;}
.ws82{word-spacing:11.460000px;}
.ws2a{word-spacing:11.940000px;}
.wsaf{word-spacing:12.204000px;}
.ws85{word-spacing:12.360000px;}
.ws17{word-spacing:13.800000px;}
.wsaa{word-spacing:15.282000px;}
.wsb8{word-spacing:15.876000px;}
.ws2d{word-spacing:16.440000px;}
.ws9c{word-spacing:16.740000px;}
.ws2e{word-spacing:17.160000px;}
.wsb3{word-spacing:17.604000px;}
.ws84{word-spacing:17.760000px;}
.ws81{word-spacing:17.880000px;}
.ws19{word-spacing:20.580000px;}
.wsc0{word-spacing:24.354000px;}
._11{margin-left:-1005.840000px;}
._20{margin-left:-37.192800px;}
._1c{margin-left:-28.836000px;}
._10{margin-left:-27.360000px;}
._5{margin-left:-23.580000px;}
._1d{margin-left:-21.384000px;}
._c{margin-left:-20.220000px;}
._13{margin-left:-18.540000px;}
._1e{margin-left:-17.442000px;}
._6{margin-left:-15.000000px;}
._1a{margin-left:-13.500000px;}
._1f{margin-left:-10.674000px;}
._18{margin-left:-8.596800px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-5.791200px;}
._3{margin-left:-4.284000px;}
._9{margin-left:-3.264000px;}
._1{margin-left:-1.996800px;}
._4{width:1.080000px;}
._d{width:2.112000px;}
._a{width:3.264000px;}
._e{width:4.320000px;}
._0{width:5.587200px;}
._f{width:7.005600px;}
._7{width:8.040000px;}
._15{width:9.126000px;}
._19{width:10.906800px;}
._1b{width:15.214800px;}
._17{width:16.686000px;}
._14{width:19.632000px;}
._16{width:24.138000px;}
._b{width:35.424000px;}
._12{width:988.740000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:102.000000px;}
.fs5{font-size:210.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y37{bottom:64.138650px;}
.y18{bottom:91.590000px;}
.y13{bottom:99.795000px;}
.yd1{bottom:100.020900px;}
.y63{bottom:100.021050px;}
.y8c{bottom:100.046700px;}
.y9c{bottom:101.521050px;}
.y32{bottom:109.362450px;}
.yed{bottom:113.187900px;}
.y11d{bottom:113.202000px;}
.y17{bottom:113.670000px;}
.yd0{bottom:118.770900px;}
.y62{bottom:118.771050px;}
.y8b{bottom:118.796700px;}
.y9b{bottom:120.271050px;}
.y31{bottom:128.112450px;}
.yec{bottom:129.684900px;}
.y11c{bottom:129.699000px;}
.y16{bottom:135.750000px;}
.ycf{bottom:137.520900px;}
.y61{bottom:137.521050px;}
.y8a{bottom:137.546700px;}
.y9a{bottom:139.021050px;}
.yeb{bottom:146.181900px;}
.y11b{bottom:146.196000px;}
.y30{bottom:146.862450px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.yd4{bottom:156.270900px;}
.y60{bottom:156.271050px;}
.y89{bottom:156.296700px;}
.y99{bottom:157.771050px;}
.y15{bottom:157.830000px;}
.yea{bottom:162.678900px;}
.y11a{bottom:162.693000px;}
.y2f{bottom:165.612450px;}
.yce{bottom:165.645900px;}
.yd3{bottom:175.020900px;}
.y5f{bottom:175.021050px;}
.y88{bottom:175.046700px;}
.y98{bottom:176.521050px;}
.ye9{bottom:179.175900px;}
.y119{bottom:179.190000px;}
.y2e{bottom:184.362450px;}
.yd2{bottom:193.770900px;}
.y5e{bottom:193.771050px;}
.y87{bottom:193.896900px;}
.y97{bottom:195.271050px;}
.ye8{bottom:195.672900px;}
.y118{bottom:195.687000px;}
.y2d{bottom:203.112450px;}
.ye7{bottom:212.169900px;}
.y117{bottom:212.184000px;}
.ycd{bottom:212.520900px;}
.y5d{bottom:212.521050px;}
.y86{bottom:212.646900px;}
.y96{bottom:214.021050px;}
.y2c{bottom:221.862450px;}
.ye6{bottom:228.666900px;}
.y116{bottom:228.681000px;}
.ycc{bottom:231.270900px;}
.y5c{bottom:231.271050px;}
.y85{bottom:231.396900px;}
.y95{bottom:232.771050px;}
.y2b{bottom:240.612450px;}
.ye5{bottom:245.163900px;}
.y115{bottom:245.178000px;}
.ycb{bottom:250.020900px;}
.y5b{bottom:250.021050px;}
.y84{bottom:250.146900px;}
.y94{bottom:251.521050px;}
.y2a{bottom:259.362450px;}
.ye4{bottom:261.660900px;}
.y114{bottom:261.675000px;}
.yca{bottom:268.770900px;}
.y5a{bottom:268.771050px;}
.y83{bottom:268.896900px;}
.y93{bottom:270.271050px;}
.y29{bottom:278.112450px;}
.ye3{bottom:278.157900px;}
.y113{bottom:278.172000px;}
.yc9{bottom:287.520900px;}
.y59{bottom:287.521050px;}
.y82{bottom:287.646900px;}
.y92{bottom:289.021050px;}
.ye2{bottom:294.654900px;}
.y112{bottom:294.669000px;}
.y28{bottom:296.862450px;}
.yc8{bottom:306.270900px;}
.y58{bottom:306.271050px;}
.y81{bottom:306.396900px;}
.y91{bottom:307.771050px;}
.ye1{bottom:311.151900px;}
.y111{bottom:311.166000px;}
.y27{bottom:315.612450px;}
.yc7{bottom:325.020900px;}
.y57{bottom:325.021050px;}
.y80{bottom:325.146900px;}
.y90{bottom:326.521050px;}
.ye0{bottom:327.648900px;}
.y110{bottom:327.663000px;}
.y26{bottom:334.362450px;}
.yc6{bottom:343.770900px;}
.y56{bottom:343.771050px;}
.y7f{bottom:343.896900px;}
.ydf{bottom:344.145900px;}
.y10f{bottom:344.160000px;}
.ya{bottom:344.680500px;}
.y8f{bottom:345.271050px;}
.y25{bottom:353.112450px;}
.y10e{bottom:360.657000px;}
.yc5{bottom:362.520900px;}
.y55{bottom:362.521050px;}
.y7e{bottom:362.646900px;}
.y8e{bottom:364.021050px;}
.yde{bottom:370.020900px;}
.y24{bottom:371.862450px;}
.y10d{bottom:377.154000px;}
.yc4{bottom:381.270900px;}
.y54{bottom:381.271050px;}
.y7d{bottom:381.396900px;}
.ya8{bottom:382.771050px;}
.yd{bottom:386.490000px;}
.y23{bottom:390.612450px;}
.y8d{bottom:392.146050px;}
.y10c{bottom:393.651000px;}
.y9{bottom:395.689500px;}
.yc3{bottom:400.020900px;}
.y53{bottom:400.021050px;}
.y7c{bottom:400.146900px;}
.ya7{bottom:401.521050px;}
.y22{bottom:409.362450px;}
.y10b{bottom:410.148000px;}
.ydd{bottom:411.276900px;}
.yc2{bottom:418.770900px;}
.y52{bottom:418.771050px;}
.y7b{bottom:418.896900px;}
.ya6{bottom:420.271050px;}
.ydc{bottom:426.275400px;}
.y10a{bottom:426.645000px;}
.y21{bottom:428.112450px;}
.yb{bottom:434.850000px;}
.yc1{bottom:437.520900px;}
.y51{bottom:437.521050px;}
.y7a{bottom:437.646900px;}
.ya5{bottom:439.021050px;}
.ydb{bottom:441.273900px;}
.y109{bottom:443.142000px;}
.y8{bottom:446.698500px;}
.y20{bottom:446.862450px;}
.yc0{bottom:456.270900px;}
.y50{bottom:456.271050px;}
.yda{bottom:456.272400px;}
.y79{bottom:456.396900px;}
.ya4{bottom:457.771050px;}
.y108{bottom:459.639000px;}
.y1f{bottom:465.612450px;}
.yd9{bottom:471.270900px;}
.ybf{bottom:475.020900px;}
.y4f{bottom:475.021050px;}
.y78{bottom:475.146900px;}
.y107{bottom:476.136000px;}
.ya3{bottom:476.521050px;}
.y1e{bottom:484.362450px;}
.y10{bottom:488.055000px;}
.y106{bottom:492.633000px;}
.ybe{bottom:493.770900px;}
.y4e{bottom:493.771050px;}
.y77{bottom:493.896900px;}
.ya2{bottom:495.271050px;}
.yd8{bottom:495.645900px;}
.y7{bottom:497.707500px;}
.y1d{bottom:503.112450px;}
.y105{bottom:509.130000px;}
.ybd{bottom:512.520900px;}
.y4d{bottom:512.521050px;}
.y76{bottom:512.646900px;}
.ya1{bottom:514.021050px;}
.y1c{bottom:521.862450px;}
.y104{bottom:525.627000px;}
.ybc{bottom:531.270900px;}
.y4c{bottom:531.271050px;}
.y75{bottom:531.396900px;}
.ya0{bottom:532.771050px;}
.yd7{bottom:536.895900px;}
.y11{bottom:538.230000px;}
.y1b{bottom:540.612450px;}
.y103{bottom:542.124000px;}
.y6{bottom:548.716500px;}
.ybb{bottom:550.020900px;}
.y4b{bottom:550.021050px;}
.y74{bottom:550.146900px;}
.y9f{bottom:551.521050px;}
.yd6{bottom:555.645900px;}
.y102{bottom:558.621000px;}
.y1a{bottom:568.737450px;}
.yba{bottom:568.770900px;}
.y4a{bottom:568.771050px;}
.y9e{bottom:570.271050px;}
.y101{bottom:575.118000px;}
.y73{bottom:578.277300px;}
.yd5{bottom:583.770900px;}
.yb9{bottom:587.520900px;}
.y49{bottom:587.521050px;}
.y19{bottom:589.605000px;}
.y100{bottom:591.615000px;}
.y9d{bottom:598.396050px;}
.y5{bottom:599.725500px;}
.yb8{bottom:606.270900px;}
.y48{bottom:606.271050px;}
.yff{bottom:608.112000px;}
.yfe{bottom:624.609000px;}
.y72{bottom:625.006350px;}
.yb7{bottom:625.020900px;}
.y47{bottom:625.021050px;}
.ye{bottom:631.920000px;}
.yfd{bottom:641.106000px;}
.y71{bottom:643.756350px;}
.yb6{bottom:643.770900px;}
.y46{bottom:643.771050px;}
.yfc{bottom:657.603000px;}
.y70{bottom:662.506350px;}
.yb5{bottom:662.520900px;}
.y45{bottom:662.521050px;}
.yfb{bottom:674.100000px;}
.y6f{bottom:681.256350px;}
.yb4{bottom:681.270900px;}
.y44{bottom:681.271050px;}
.yfa{bottom:690.597000px;}
.y6e{bottom:700.006350px;}
.yb3{bottom:700.020900px;}
.y43{bottom:700.021050px;}
.yf9{bottom:707.094000px;}
.y36{bottom:716.951250px;}
.y6d{bottom:718.756350px;}
.yb2{bottom:718.770900px;}
.y42{bottom:718.771050px;}
.yf8{bottom:723.591000px;}
.y6c{bottom:737.506350px;}
.yb1{bottom:737.520900px;}
.y41{bottom:737.521050px;}
.yf7{bottom:740.088000px;}
.y6b{bottom:756.256350px;}
.yb0{bottom:756.270900px;}
.y40{bottom:756.271050px;}
.yf6{bottom:756.585000px;}
.y35{bottom:766.451250px;}
.yf5{bottom:773.082000px;}
.y6a{bottom:775.006350px;}
.yaf{bottom:775.020900px;}
.y3f{bottom:775.021050px;}
.y4{bottom:778.225500px;}
.yf4{bottom:789.579000px;}
.y69{bottom:793.756350px;}
.yae{bottom:793.770900px;}
.y3e{bottom:793.771050px;}
.yf3{bottom:806.076000px;}
.y34{bottom:809.951250px;}
.y68{bottom:812.506350px;}
.yad{bottom:812.520900px;}
.y3d{bottom:812.521050px;}
.y12{bottom:815.670000px;}
.yf2{bottom:822.573000px;}
.y67{bottom:831.256350px;}
.yac{bottom:831.270900px;}
.y3c{bottom:831.271050px;}
.yf1{bottom:839.070000px;}
.y66{bottom:850.006350px;}
.yab{bottom:850.020900px;}
.y3b{bottom:850.021050px;}
.yf0{bottom:855.567000px;}
.y33{bottom:857.951250px;}
.y65{bottom:868.756350px;}
.yaa{bottom:868.770900px;}
.y3a{bottom:868.771050px;}
.yef{bottom:872.064000px;}
.y64{bottom:887.506350px;}
.ya9{bottom:887.520900px;}
.y39{bottom:887.521050px;}
.yee{bottom:888.561000px;}
.y3{bottom:905.716500px;}
.y38{bottom:922.874850px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.h4{height:33.000000px;}
.h14{height:36.048000px;}
.h13{height:40.031250px;}
.hb{height:42.294000px;}
.h15{height:45.035156px;}
.h17{height:45.140625px;}
.h16{height:47.276367px;}
.hc{height:50.039062px;}
.he{height:50.156250px;}
.hd{height:52.529297px;}
.h12{height:57.720000px;}
.h3{height:58.406250px;}
.h11{height:61.656000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h10{height:75.684000px;}
.h7{height:115.215000px;}
.hf{height:154.140000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:994.960500px;}
.ha{height:995.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:663.000000px;}
.w9{width:663.307500px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:85.039350px;}
.xb{left:103.024350px;}
.xe{left:106.045350px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xd{left:223.852050px;}
.xc{left:414.275550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls2{letter-spacing:-18.293333pt;}
.ls3{letter-spacing:-2.901333pt;}
.ls4{letter-spacing:-2.218667pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls1{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-53.333333pt;}
.ws1c{word-spacing:-52.800000pt;}
.ws9e{word-spacing:-48.000000pt;}
.ws9d{word-spacing:-47.520000pt;}
.ws4e{word-spacing:-43.840000pt;}
.ws64{word-spacing:-42.773333pt;}
.ws75{word-spacing:-38.933333pt;}
.ws83{word-spacing:-38.293333pt;}
.ws0{word-spacing:-16.874667pt;}
.ws2{word-spacing:-13.376000pt;}
.ws63{word-spacing:-13.333333pt;}
.ws8f{word-spacing:-12.000000pt;}
.ws4d{word-spacing:-9.130667pt;}
.ws1a{word-spacing:-8.448000pt;}
.ws1b{word-spacing:-7.773333pt;}
.ws9f{word-spacing:-4.896000pt;}
.wsa3{word-spacing:-3.936000pt;}
.ws20{word-spacing:-3.680000pt;}
.wsbf{word-spacing:-3.648000pt;}
.ws3d{word-spacing:-3.360000pt;}
.ws65{word-spacing:-2.933333pt;}
.wsbd{word-spacing:-2.736000pt;}
.ws61{word-spacing:-2.720000pt;}
.ws25{word-spacing:-2.666667pt;}
.ws62{word-spacing:-2.613333pt;}
.ws76{word-spacing:-2.453333pt;}
.ws2c{word-spacing:-2.400000pt;}
.ws77{word-spacing:-2.293333pt;}
.wsac{word-spacing:-2.256000pt;}
.ws7c{word-spacing:-2.133333pt;}
.ws68{word-spacing:-2.026667pt;}
.ws7f{word-spacing:-1.973333pt;}
.ws47{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.866667pt;}
.wsab{word-spacing:-1.776000pt;}
.ws5e{word-spacing:-1.760000pt;}
.ws6e{word-spacing:-1.653333pt;}
.ws86{word-spacing:-1.440000pt;}
.ws4a{word-spacing:-1.333333pt;}
.ws90{word-spacing:-1.280000pt;}
.ws5{word-spacing:-1.226667pt;}
.ws93{word-spacing:-1.200000pt;}
.ws12{word-spacing:-1.173333pt;}
.ws98{word-spacing:-1.104000pt;}
.ws51{word-spacing:-1.013333pt;}
.ws15{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.800000pt;}
.ws33{word-spacing:-0.746667pt;}
.ws78{word-spacing:-0.693333pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.586667pt;}
.ws3e{word-spacing:-0.533333pt;}
.ws43{word-spacing:-0.480000pt;}
.ws45{word-spacing:-0.426667pt;}
.ws72{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.213333pt;}
.ws42{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.106667pt;}
.ws16{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:0.106667pt;}
.ws69{word-spacing:0.160000pt;}
.wsb1{word-spacing:0.192000pt;}
.ws7{word-spacing:0.213333pt;}
.ws2f{word-spacing:0.266667pt;}
.ws8e{word-spacing:0.320000pt;}
.wsa2{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.426667pt;}
.wsa0{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws11{word-spacing:0.640000pt;}
.ws95{word-spacing:0.720000pt;}
.ws4b{word-spacing:0.746667pt;}
.ws9b{word-spacing:0.768000pt;}
.ws21{word-spacing:0.800000pt;}
.ws29{word-spacing:0.853333pt;}
.ws46{word-spacing:0.906667pt;}
.ws9a{word-spacing:0.960000pt;}
.wsa1{word-spacing:1.056000pt;}
.ws94{word-spacing:1.104000pt;}
.ws54{word-spacing:1.226667pt;}
.ws3a{word-spacing:1.280000pt;}
.ws79{word-spacing:1.386667pt;}
.ws49{word-spacing:1.493333pt;}
.wsa9{word-spacing:1.536000pt;}
.ws22{word-spacing:1.546667pt;}
.ws6d{word-spacing:1.600000pt;}
.ws80{word-spacing:1.653333pt;}
.ws14{word-spacing:1.760000pt;}
.wsad{word-spacing:1.776000pt;}
.ws88{word-spacing:1.813333pt;}
.ws8d{word-spacing:1.920000pt;}
.wsb5{word-spacing:1.968000pt;}
.wsc{word-spacing:1.973333pt;}
.ws13{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.080000pt;}
.ws50{word-spacing:2.133333pt;}
.ws5f{word-spacing:2.186667pt;}
.ws73{word-spacing:2.240000pt;}
.ws66{word-spacing:2.293333pt;}
.ws41{word-spacing:2.400000pt;}
.ws4c{word-spacing:2.453333pt;}
.ws37{word-spacing:2.560000pt;}
.ws52{word-spacing:2.773333pt;}
.ws59{word-spacing:2.880000pt;}
.ws48{word-spacing:2.933333pt;}
.ws60{word-spacing:2.986667pt;}
.ws55{word-spacing:3.093333pt;}
.ws35{word-spacing:3.146667pt;}
.ws92{word-spacing:3.168000pt;}
.ws1d{word-spacing:3.253333pt;}
.ws10{word-spacing:3.306667pt;}
.wsbe{word-spacing:3.312000pt;}
.ws67{word-spacing:3.413333pt;}
.wsbb{word-spacing:3.504000pt;}
.ws31{word-spacing:3.520000pt;}
.ws5b{word-spacing:3.573333pt;}
.ws91{word-spacing:3.626667pt;}
.ws34{word-spacing:3.680000pt;}
.wsbc{word-spacing:3.888000pt;}
.ws2b{word-spacing:4.000000pt;}
.ws3b{word-spacing:4.160000pt;}
.wsae{word-spacing:4.176000pt;}
.wsb{word-spacing:4.213333pt;}
.ws40{word-spacing:4.373333pt;}
.ws7e{word-spacing:4.426667pt;}
.wse{word-spacing:4.480000pt;}
.ws3f{word-spacing:4.586667pt;}
.wsb7{word-spacing:4.608000pt;}
.wsa6{word-spacing:4.704000pt;}
.ws71{word-spacing:4.746667pt;}
.ws4{word-spacing:4.853333pt;}
.ws24{word-spacing:5.013333pt;}
.ws38{word-spacing:5.066667pt;}
.ws8a{word-spacing:5.120000pt;}
.ws1e{word-spacing:5.173333pt;}
.ws99{word-spacing:5.232000pt;}
.ws18{word-spacing:5.386667pt;}
.ws7d{word-spacing:5.493333pt;}
.ws6a{word-spacing:5.600000pt;}
.ws70{word-spacing:5.653333pt;}
.ws8c{word-spacing:5.706667pt;}
.ws97{word-spacing:5.760000pt;}
.ws6f{word-spacing:5.813333pt;}
.wsa7{word-spacing:5.856000pt;}
.ws58{word-spacing:5.866667pt;}
.ws6{word-spacing:5.920000pt;}
.ws44{word-spacing:5.973333pt;}
.ws87{word-spacing:6.133333pt;}
.wsa4{word-spacing:6.432000pt;}
.ws6b{word-spacing:6.453333pt;}
.ws96{word-spacing:6.480000pt;}
.ws27{word-spacing:6.613333pt;}
.ws23{word-spacing:6.826667pt;}
.wsb2{word-spacing:6.912000pt;}
.wsb0{word-spacing:7.008000pt;}
.ws8b{word-spacing:7.040000pt;}
.wsf{word-spacing:7.093333pt;}
.ws30{word-spacing:7.146667pt;}
.ws4f{word-spacing:7.200000pt;}
.wsd{word-spacing:7.413333pt;}
.wsa5{word-spacing:7.488000pt;}
.ws8{word-spacing:7.573333pt;}
.ws36{word-spacing:8.000000pt;}
.wsba{word-spacing:8.016000pt;}
.ws9{word-spacing:8.160000pt;}
.wsb9{word-spacing:8.208000pt;}
.ws74{word-spacing:8.426667pt;}
.wsb4{word-spacing:8.736000pt;}
.ws32{word-spacing:8.746667pt;}
.ws57{word-spacing:9.120000pt;}
.ws7b{word-spacing:9.546667pt;}
.wsa8{word-spacing:9.648000pt;}
.wsb6{word-spacing:9.696000pt;}
.ws5c{word-spacing:9.760000pt;}
.ws39{word-spacing:9.813333pt;}
.ws82{word-spacing:10.186667pt;}
.ws2a{word-spacing:10.613333pt;}
.wsaf{word-spacing:10.848000pt;}
.ws85{word-spacing:10.986667pt;}
.ws17{word-spacing:12.266667pt;}
.wsaa{word-spacing:13.584000pt;}
.wsb8{word-spacing:14.112000pt;}
.ws2d{word-spacing:14.613333pt;}
.ws9c{word-spacing:14.880000pt;}
.ws2e{word-spacing:15.253333pt;}
.wsb3{word-spacing:15.648000pt;}
.ws84{word-spacing:15.786667pt;}
.ws81{word-spacing:15.893333pt;}
.ws19{word-spacing:18.293333pt;}
.wsc0{word-spacing:21.648000pt;}
._11{margin-left:-894.080000pt;}
._20{margin-left:-33.060267pt;}
._1c{margin-left:-25.632000pt;}
._10{margin-left:-24.320000pt;}
._5{margin-left:-20.960000pt;}
._1d{margin-left:-19.008000pt;}
._c{margin-left:-17.973333pt;}
._13{margin-left:-16.480000pt;}
._1e{margin-left:-15.504000pt;}
._6{margin-left:-13.333333pt;}
._1a{margin-left:-12.000000pt;}
._1f{margin-left:-9.488000pt;}
._18{margin-left:-7.641600pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-5.147733pt;}
._3{margin-left:-3.808000pt;}
._9{margin-left:-2.901333pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.960000pt;}
._d{width:1.877333pt;}
._a{width:2.901333pt;}
._e{width:3.840000pt;}
._0{width:4.966400pt;}
._f{width:6.227200pt;}
._7{width:7.146667pt;}
._15{width:8.112000pt;}
._19{width:9.694933pt;}
._1b{width:13.524267pt;}
._17{width:14.832000pt;}
._14{width:17.450667pt;}
._16{width:21.456000pt;}
._b{width:31.488000pt;}
._12{width:878.880000pt;}
.fs9{font-size:31.093333pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:90.666667pt;}
.fs5{font-size:186.666667pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y37{bottom:57.012133pt;}
.y18{bottom:81.413333pt;}
.y13{bottom:88.706667pt;}
.yd1{bottom:88.907467pt;}
.y63{bottom:88.907600pt;}
.y8c{bottom:88.930400pt;}
.y9c{bottom:90.240933pt;}
.y32{bottom:97.211067pt;}
.yed{bottom:100.611467pt;}
.y11d{bottom:100.624000pt;}
.y17{bottom:101.040000pt;}
.yd0{bottom:105.574133pt;}
.y62{bottom:105.574267pt;}
.y8b{bottom:105.597067pt;}
.y9b{bottom:106.907600pt;}
.y31{bottom:113.877733pt;}
.yec{bottom:115.275467pt;}
.y11c{bottom:115.288000pt;}
.y16{bottom:120.666667pt;}
.ycf{bottom:122.240800pt;}
.y61{bottom:122.240933pt;}
.y8a{bottom:122.263733pt;}
.y9a{bottom:123.574267pt;}
.yeb{bottom:129.939467pt;}
.y11b{bottom:129.952000pt;}
.y30{bottom:130.544400pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.yd4{bottom:138.907467pt;}
.y60{bottom:138.907600pt;}
.y89{bottom:138.930400pt;}
.y99{bottom:140.240933pt;}
.y15{bottom:140.293333pt;}
.yea{bottom:144.603467pt;}
.y11a{bottom:144.616000pt;}
.y2f{bottom:147.211067pt;}
.yce{bottom:147.240800pt;}
.yd3{bottom:155.574133pt;}
.y5f{bottom:155.574267pt;}
.y88{bottom:155.597067pt;}
.y98{bottom:156.907600pt;}
.ye9{bottom:159.267467pt;}
.y119{bottom:159.280000pt;}
.y2e{bottom:163.877733pt;}
.yd2{bottom:172.240800pt;}
.y5e{bottom:172.240933pt;}
.y87{bottom:172.352800pt;}
.y97{bottom:173.574267pt;}
.ye8{bottom:173.931467pt;}
.y118{bottom:173.944000pt;}
.y2d{bottom:180.544400pt;}
.ye7{bottom:188.595467pt;}
.y117{bottom:188.608000pt;}
.ycd{bottom:188.907467pt;}
.y5d{bottom:188.907600pt;}
.y86{bottom:189.019467pt;}
.y96{bottom:190.240933pt;}
.y2c{bottom:197.211067pt;}
.ye6{bottom:203.259467pt;}
.y116{bottom:203.272000pt;}
.ycc{bottom:205.574133pt;}
.y5c{bottom:205.574267pt;}
.y85{bottom:205.686133pt;}
.y95{bottom:206.907600pt;}
.y2b{bottom:213.877733pt;}
.ye5{bottom:217.923467pt;}
.y115{bottom:217.936000pt;}
.ycb{bottom:222.240800pt;}
.y5b{bottom:222.240933pt;}
.y84{bottom:222.352800pt;}
.y94{bottom:223.574267pt;}
.y2a{bottom:230.544400pt;}
.ye4{bottom:232.587467pt;}
.y114{bottom:232.600000pt;}
.yca{bottom:238.907467pt;}
.y5a{bottom:238.907600pt;}
.y83{bottom:239.019467pt;}
.y93{bottom:240.240933pt;}
.y29{bottom:247.211067pt;}
.ye3{bottom:247.251467pt;}
.y113{bottom:247.264000pt;}
.yc9{bottom:255.574133pt;}
.y59{bottom:255.574267pt;}
.y82{bottom:255.686133pt;}
.y92{bottom:256.907600pt;}
.ye2{bottom:261.915467pt;}
.y112{bottom:261.928000pt;}
.y28{bottom:263.877733pt;}
.yc8{bottom:272.240800pt;}
.y58{bottom:272.240933pt;}
.y81{bottom:272.352800pt;}
.y91{bottom:273.574267pt;}
.ye1{bottom:276.579467pt;}
.y111{bottom:276.592000pt;}
.y27{bottom:280.544400pt;}
.yc7{bottom:288.907467pt;}
.y57{bottom:288.907600pt;}
.y80{bottom:289.019467pt;}
.y90{bottom:290.240933pt;}
.ye0{bottom:291.243467pt;}
.y110{bottom:291.256000pt;}
.y26{bottom:297.211067pt;}
.yc6{bottom:305.574133pt;}
.y56{bottom:305.574267pt;}
.y7f{bottom:305.686133pt;}
.ydf{bottom:305.907467pt;}
.y10f{bottom:305.920000pt;}
.ya{bottom:306.382667pt;}
.y8f{bottom:306.907600pt;}
.y25{bottom:313.877733pt;}
.y10e{bottom:320.584000pt;}
.yc5{bottom:322.240800pt;}
.y55{bottom:322.240933pt;}
.y7e{bottom:322.352800pt;}
.y8e{bottom:323.574267pt;}
.yde{bottom:328.907467pt;}
.y24{bottom:330.544400pt;}
.y10d{bottom:335.248000pt;}
.yc4{bottom:338.907467pt;}
.y54{bottom:338.907600pt;}
.y7d{bottom:339.019467pt;}
.ya8{bottom:340.240933pt;}
.yd{bottom:343.546667pt;}
.y23{bottom:347.211067pt;}
.y8d{bottom:348.574267pt;}
.y10c{bottom:349.912000pt;}
.y9{bottom:351.724000pt;}
.yc3{bottom:355.574133pt;}
.y53{bottom:355.574267pt;}
.y7c{bottom:355.686133pt;}
.ya7{bottom:356.907600pt;}
.y22{bottom:363.877733pt;}
.y10b{bottom:364.576000pt;}
.ydd{bottom:365.579467pt;}
.yc2{bottom:372.240800pt;}
.y52{bottom:372.240933pt;}
.y7b{bottom:372.352800pt;}
.ya6{bottom:373.574267pt;}
.ydc{bottom:378.911467pt;}
.y10a{bottom:379.240000pt;}
.y21{bottom:380.544400pt;}
.yb{bottom:386.533333pt;}
.yc1{bottom:388.907467pt;}
.y51{bottom:388.907600pt;}
.y7a{bottom:389.019467pt;}
.ya5{bottom:390.240933pt;}
.ydb{bottom:392.243467pt;}
.y109{bottom:393.904000pt;}
.y8{bottom:397.065333pt;}
.y20{bottom:397.211067pt;}
.yc0{bottom:405.574133pt;}
.y50{bottom:405.574267pt;}
.yda{bottom:405.575467pt;}
.y79{bottom:405.686133pt;}
.ya4{bottom:406.907600pt;}
.y108{bottom:408.568000pt;}
.y1f{bottom:413.877733pt;}
.yd9{bottom:418.907467pt;}
.ybf{bottom:422.240800pt;}
.y4f{bottom:422.240933pt;}
.y78{bottom:422.352800pt;}
.y107{bottom:423.232000pt;}
.ya3{bottom:423.574267pt;}
.y1e{bottom:430.544400pt;}
.y10{bottom:433.826667pt;}
.y106{bottom:437.896000pt;}
.ybe{bottom:438.907467pt;}
.y4e{bottom:438.907600pt;}
.y77{bottom:439.019467pt;}
.ya2{bottom:440.240933pt;}
.yd8{bottom:440.574133pt;}
.y7{bottom:442.406667pt;}
.y1d{bottom:447.211067pt;}
.y105{bottom:452.560000pt;}
.ybd{bottom:455.574133pt;}
.y4d{bottom:455.574267pt;}
.y76{bottom:455.686133pt;}
.ya1{bottom:456.907600pt;}
.y1c{bottom:463.877733pt;}
.y104{bottom:467.224000pt;}
.ybc{bottom:472.240800pt;}
.y4c{bottom:472.240933pt;}
.y75{bottom:472.352800pt;}
.ya0{bottom:473.574267pt;}
.yd7{bottom:477.240800pt;}
.y11{bottom:478.426667pt;}
.y1b{bottom:480.544400pt;}
.y103{bottom:481.888000pt;}
.y6{bottom:487.748000pt;}
.ybb{bottom:488.907467pt;}
.y4b{bottom:488.907600pt;}
.y74{bottom:489.019467pt;}
.y9f{bottom:490.240933pt;}
.yd6{bottom:493.907467pt;}
.y102{bottom:496.552000pt;}
.y1a{bottom:505.544400pt;}
.yba{bottom:505.574133pt;}
.y4a{bottom:505.574267pt;}
.y9e{bottom:506.907600pt;}
.y101{bottom:511.216000pt;}
.y73{bottom:514.024267pt;}
.yd5{bottom:518.907467pt;}
.yb9{bottom:522.240800pt;}
.y49{bottom:522.240933pt;}
.y19{bottom:524.093333pt;}
.y100{bottom:525.880000pt;}
.y9d{bottom:531.907600pt;}
.y5{bottom:533.089333pt;}
.yb8{bottom:538.907467pt;}
.y48{bottom:538.907600pt;}
.yff{bottom:540.544000pt;}
.yfe{bottom:555.208000pt;}
.y72{bottom:555.561200pt;}
.yb7{bottom:555.574133pt;}
.y47{bottom:555.574267pt;}
.ye{bottom:561.706667pt;}
.yfd{bottom:569.872000pt;}
.y71{bottom:572.227867pt;}
.yb6{bottom:572.240800pt;}
.y46{bottom:572.240933pt;}
.yfc{bottom:584.536000pt;}
.y70{bottom:588.894533pt;}
.yb5{bottom:588.907467pt;}
.y45{bottom:588.907600pt;}
.yfb{bottom:599.200000pt;}
.y6f{bottom:605.561200pt;}
.yb4{bottom:605.574133pt;}
.y44{bottom:605.574267pt;}
.yfa{bottom:613.864000pt;}
.y6e{bottom:622.227867pt;}
.yb3{bottom:622.240800pt;}
.y43{bottom:622.240933pt;}
.yf9{bottom:628.528000pt;}
.y36{bottom:637.290000pt;}
.y6d{bottom:638.894533pt;}
.yb2{bottom:638.907467pt;}
.y42{bottom:638.907600pt;}
.yf8{bottom:643.192000pt;}
.y6c{bottom:655.561200pt;}
.yb1{bottom:655.574133pt;}
.y41{bottom:655.574267pt;}
.yf7{bottom:657.856000pt;}
.y6b{bottom:672.227867pt;}
.yb0{bottom:672.240800pt;}
.y40{bottom:672.240933pt;}
.yf6{bottom:672.520000pt;}
.y35{bottom:681.290000pt;}
.yf5{bottom:687.184000pt;}
.y6a{bottom:688.894533pt;}
.yaf{bottom:688.907467pt;}
.y3f{bottom:688.907600pt;}
.y4{bottom:691.756000pt;}
.yf4{bottom:701.848000pt;}
.y69{bottom:705.561200pt;}
.yae{bottom:705.574133pt;}
.y3e{bottom:705.574267pt;}
.yf3{bottom:716.512000pt;}
.y34{bottom:719.956667pt;}
.y68{bottom:722.227867pt;}
.yad{bottom:722.240800pt;}
.y3d{bottom:722.240933pt;}
.y12{bottom:725.040000pt;}
.yf2{bottom:731.176000pt;}
.y67{bottom:738.894533pt;}
.yac{bottom:738.907467pt;}
.y3c{bottom:738.907600pt;}
.yf1{bottom:745.840000pt;}
.y66{bottom:755.561200pt;}
.yab{bottom:755.574133pt;}
.y3b{bottom:755.574267pt;}
.yf0{bottom:760.504000pt;}
.y33{bottom:762.623333pt;}
.y65{bottom:772.227867pt;}
.yaa{bottom:772.240800pt;}
.y3a{bottom:772.240933pt;}
.yef{bottom:775.168000pt;}
.y64{bottom:788.894533pt;}
.ya9{bottom:788.907467pt;}
.y39{bottom:788.907600pt;}
.yee{bottom:789.832000pt;}
.y3{bottom:805.081333pt;}
.y38{bottom:820.333200pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.h4{height:29.333333pt;}
.h14{height:32.042667pt;}
.h13{height:35.583333pt;}
.hb{height:37.594667pt;}
.h15{height:40.031250pt;}
.h17{height:40.125000pt;}
.h16{height:42.023438pt;}
.hc{height:44.479167pt;}
.he{height:44.583333pt;}
.hd{height:46.692708pt;}
.h12{height:51.306667pt;}
.h3{height:51.916667pt;}
.h11{height:54.805333pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h10{height:67.274667pt;}
.h7{height:102.413333pt;}
.hf{height:137.013333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:884.409333pt;}
.ha{height:884.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:589.333333pt;}
.w9{width:589.606667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:75.590533pt;}
.xb{left:91.577200pt;}
.xe{left:94.262533pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xd{left:198.979600pt;}
.xc{left:368.244933pt;}
}




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