
    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_409945c59ec76e6ce9d44616.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_5ab288f6f32e307cd59370a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c7cfaea1e7efbfe0f2270a15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;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_c991a841f4f82858d9951519.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1b2ef2828603af682c31670a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706055;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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.956000px;}
.ls2{letter-spacing:-6.192000px;}
.ls1{letter-spacing:-1.294260px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.864000px;}
.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;}
}
.ws0{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws64{word-spacing:-13.500000px;}
.wsc1{word-spacing:-12.816000px;}
.wsc2{word-spacing:-12.384000px;}
.ws9b{word-spacing:-12.000000px;}
.ws1{word-spacing:-9.000000px;}
.ws3{word-spacing:-8.745000px;}
.ws63{word-spacing:-7.450740px;}
.ws9c{word-spacing:-5.808000px;}
.ws57{word-spacing:-3.540000px;}
.wsb1{word-spacing:-2.940000px;}
.ws60{word-spacing:-2.880000px;}
.ws37{word-spacing:-2.640000px;}
.ws31{word-spacing:-2.460000px;}
.ws6c{word-spacing:-2.400000px;}
.ws3c{word-spacing:-2.280000px;}
.wsa8{word-spacing:-2.160000px;}
.ws88{word-spacing:-2.100000px;}
.wsb2{word-spacing:-2.040000px;}
.ws81{word-spacing:-1.980000px;}
.ws6{word-spacing:-1.944000px;}
.ws2e{word-spacing:-1.920000px;}
.ws48{word-spacing:-1.860000px;}
.ws77{word-spacing:-1.740000px;}
.wse4{word-spacing:-1.680000px;}
.ws16{word-spacing:-1.560000px;}
.ws7e{word-spacing:-1.500000px;}
.ws8f{word-spacing:-1.440000px;}
.ws7a{word-spacing:-1.380000px;}
.wsd1{word-spacing:-1.152000px;}
.ws52{word-spacing:-1.140000px;}
.wsac{word-spacing:-1.020000px;}
.ws14{word-spacing:-0.960000px;}
.wscf{word-spacing:-0.864000px;}
.ws53{word-spacing:-0.780000px;}
.ws5d{word-spacing:-0.720000px;}
.wsd2{word-spacing:-0.672000px;}
.ws98{word-spacing:-0.660000px;}
.ws78{word-spacing:-0.540000px;}
.ws20{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.360000px;}
.ws7c{word-spacing:-0.300000px;}
.ws1f{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.180000px;}
.ws5{word-spacing:-0.144000px;}
.ws39{word-spacing:-0.120000px;}
.wsc5{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws21{word-spacing:0.120000px;}
.ws1e{word-spacing:0.360000px;}
.wse1{word-spacing:0.384000px;}
.ws7f{word-spacing:0.480000px;}
.ws4b{word-spacing:0.540000px;}
.ws49{word-spacing:0.600000px;}
.ws5e{word-spacing:0.660000px;}
.wsb9{word-spacing:0.720000px;}
.ws25{word-spacing:0.840000px;}
.ws44{word-spacing:0.900000px;}
.ws33{word-spacing:0.960000px;}
.wsb7{word-spacing:1.020000px;}
.ws24{word-spacing:1.080000px;}
.ws7{word-spacing:1.188000px;}
.ws15{word-spacing:1.200000px;}
.wsda{word-spacing:1.296000px;}
.ws86{word-spacing:1.320000px;}
.ws27{word-spacing:1.440000px;}
.ws68{word-spacing:1.560000px;}
.wsde{word-spacing:1.584000px;}
.ws4a{word-spacing:1.620000px;}
.wsce{word-spacing:1.680000px;}
.ws89{word-spacing:1.800000px;}
.wsb6{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.ws43{word-spacing:1.980000px;}
.wsdb{word-spacing:2.112000px;}
.wsba{word-spacing:2.160000px;}
.wsf{word-spacing:2.220000px;}
.ws2b{word-spacing:2.280000px;}
.ws7b{word-spacing:2.400000px;}
.wsc9{word-spacing:2.448000px;}
.ws29{word-spacing:2.460000px;}
.ws17{word-spacing:2.580000px;}
.wscd{word-spacing:2.592000px;}
.ws2f{word-spacing:2.640000px;}
.ws46{word-spacing:2.700000px;}
.wsa2{word-spacing:2.760000px;}
.wse0{word-spacing:2.784000px;}
.ws92{word-spacing:2.940000px;}
.wsdf{word-spacing:2.976000px;}
.ws6d{word-spacing:3.000000px;}
.wse3{word-spacing:3.024000px;}
.ws5f{word-spacing:3.060000px;}
.ws35{word-spacing:3.120000px;}
.ws1b{word-spacing:3.180000px;}
.ws67{word-spacing:3.240000px;}
.wsc6{word-spacing:3.360000px;}
.ws3f{word-spacing:3.420000px;}
.ws42{word-spacing:3.480000px;}
.ws56{word-spacing:3.540000px;}
.ws45{word-spacing:3.660000px;}
.wsc3{word-spacing:3.696000px;}
.ws58{word-spacing:3.720000px;}
.wsd9{word-spacing:3.744000px;}
.ws30{word-spacing:3.780000px;}
.ws80{word-spacing:3.840000px;}
.ws54{word-spacing:3.900000px;}
.ws84{word-spacing:4.020000px;}
.ws36{word-spacing:4.080000px;}
.ws1c{word-spacing:4.260000px;}
.ws8d{word-spacing:4.320000px;}
.ws96{word-spacing:4.380000px;}
.ws1a{word-spacing:4.500000px;}
.ws74{word-spacing:4.560000px;}
.wsdd{word-spacing:4.608000px;}
.wsc{word-spacing:4.620000px;}
.wsa4{word-spacing:4.800000px;}
.wse{word-spacing:4.860000px;}
.wsd0{word-spacing:4.896000px;}
.wsaf{word-spacing:4.920000px;}
.ws51{word-spacing:4.980000px;}
.ws4e{word-spacing:5.100000px;}
.wsc7{word-spacing:5.136000px;}
.wsb3{word-spacing:5.160000px;}
.wsb8{word-spacing:5.220000px;}
.wsd4{word-spacing:5.232000px;}
.ws22{word-spacing:5.280000px;}
.ws12{word-spacing:5.340000px;}
.ws23{word-spacing:5.400000px;}
.wsd7{word-spacing:5.424000px;}
.ws19{word-spacing:5.460000px;}
.wsb0{word-spacing:5.520000px;}
.wsd5{word-spacing:5.616000px;}
.ws32{word-spacing:5.640000px;}
.ws95{word-spacing:5.700000px;}
.ws79{word-spacing:5.760000px;}
.ws4f{word-spacing:5.820000px;}
.wsd6{word-spacing:5.856000px;}
.wsdc{word-spacing:6.048000px;}
.ws34{word-spacing:6.120000px;}
.wsa0{word-spacing:6.240000px;}
.ws3d{word-spacing:6.300000px;}
.wscc{word-spacing:6.336000px;}
.ws66{word-spacing:6.360000px;}
.ws5a{word-spacing:6.420000px;}
.ws4c{word-spacing:6.480000px;}
.wsb{word-spacing:6.540000px;}
.ws70{word-spacing:6.600000px;}
.ws3e{word-spacing:6.660000px;}
.ws69{word-spacing:6.720000px;}
.ws47{word-spacing:6.780000px;}
.ws94{word-spacing:6.840000px;}
.ws50{word-spacing:6.900000px;}
.ws99{word-spacing:6.960000px;}
.ws26{word-spacing:7.020000px;}
.wsc4{word-spacing:7.104000px;}
.ws9e{word-spacing:7.140000px;}
.ws61{word-spacing:7.260000px;}
.wsd8{word-spacing:7.296000px;}
.wsb5{word-spacing:7.320000px;}
.ws7d{word-spacing:7.380000px;}
.ws3a{word-spacing:7.440000px;}
.ws71{word-spacing:7.680000px;}
.wsbb{word-spacing:7.920000px;}
.ws87{word-spacing:7.980000px;}
.ws83{word-spacing:8.040000px;}
.ws9f{word-spacing:8.160000px;}
.ws82{word-spacing:8.220000px;}
.wsd3{word-spacing:8.256000px;}
.wsa7{word-spacing:8.280000px;}
.ws41{word-spacing:8.520000px;}
.ws18{word-spacing:8.580000px;}
.ws6f{word-spacing:8.640000px;}
.ws9{word-spacing:8.700000px;}
.ws3b{word-spacing:8.760000px;}
.ws38{word-spacing:8.820000px;}
.ws85{word-spacing:8.880000px;}
.ws6b{word-spacing:9.060000px;}
.ws93{word-spacing:9.180000px;}
.ws76{word-spacing:9.240000px;}
.ws97{word-spacing:9.300000px;}
.ws55{word-spacing:9.360000px;}
.ws8{word-spacing:9.480000px;}
.ws5b{word-spacing:9.540000px;}
.wsc8{word-spacing:9.696000px;}
.ws9a{word-spacing:9.720000px;}
.ws2c{word-spacing:9.840000px;}
.wsbd{word-spacing:9.900000px;}
.ws62{word-spacing:10.080000px;}
.wsae{word-spacing:10.140000px;}
.ws8e{word-spacing:10.260000px;}
.wscb{word-spacing:10.416000px;}
.ws72{word-spacing:10.560000px;}
.ws59{word-spacing:10.800000px;}
.wsd{word-spacing:10.920000px;}
.wsa1{word-spacing:11.220000px;}
.wsc0{word-spacing:11.280000px;}
.ws2a{word-spacing:11.460000px;}
.ws91{word-spacing:11.580000px;}
.wsab{word-spacing:11.820000px;}
.wsa{word-spacing:12.120000px;}
.wsaa{word-spacing:12.360000px;}
.wsa9{word-spacing:12.480000px;}
.ws8b{word-spacing:12.540000px;}
.ws2d{word-spacing:12.720000px;}
.ws4d{word-spacing:13.440000px;}
.ws73{word-spacing:13.560000px;}
.wsb4{word-spacing:13.800000px;}
.ws9d{word-spacing:14.040000px;}
.wsbc{word-spacing:14.520000px;}
.wsa5{word-spacing:14.820000px;}
.ws65{word-spacing:15.240000px;}
.ws90{word-spacing:16.020000px;}
.wsa3{word-spacing:16.080000px;}
.ws8a{word-spacing:16.560000px;}
.ws75{word-spacing:16.980000px;}
.ws8c{word-spacing:17.100000px;}
.ws28{word-spacing:17.580000px;}
.wsad{word-spacing:17.700000px;}
.wsca{word-spacing:17.856000px;}
.ws11{word-spacing:18.480000px;}
.wsa6{word-spacing:19.800000px;}
.wsbf{word-spacing:19.860000px;}
.ws1d{word-spacing:20.100000px;}
.ws6a{word-spacing:20.220000px;}
.wse2{word-spacing:20.352000px;}
.ws5c{word-spacing:20.580000px;}
.ws6e{word-spacing:21.780000px;}
.wsbe{word-spacing:22.680000px;}
._1{margin-left:-7.740000px;}
._3{margin-left:-5.532000px;}
._2{margin-left:-4.440000px;}
._4{margin-left:-3.420000px;}
._6{margin-left:-2.400000px;}
._0{margin-left:-1.188000px;}
._c{width:1.440000px;}
._a{width:2.736000px;}
._7{width:4.560000px;}
._5{width:5.580000px;}
._9{width:6.960000px;}
._8{width:8.040000px;}
._10{width:9.072000px;}
._d{width:10.200000px;}
._e{width:11.880000px;}
._b{width:13.260000px;}
._f{width:14.472000px;}
._11{width:18.480000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(122,7,30);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:34.980000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:45.774600px;}
.y99{bottom:45.777450px;}
.yce{bottom:45.781050px;}
.ye{bottom:75.822750px;}
.yc3{bottom:85.251300px;}
.ycb{bottom:85.263000px;}
.y46{bottom:90.642900px;}
.yb5{bottom:94.263000px;}
.yd{bottom:97.422750px;}
.y77{bottom:98.001300px;}
.y98{bottom:98.013000px;}
.y104{bottom:98.277150px;}
.yc2{bottom:101.751300px;}
.yca{bottom:101.763000px;}
.y45{bottom:107.142900px;}
.yc{bottom:108.222750px;}
.yb4{bottom:110.763000px;}
.y103{bottom:111.777150px;}
.y76{bottom:114.501300px;}
.y97{bottom:114.513000px;}
.yc1{bottom:118.251300px;}
.yb{bottom:119.022750px;}
.y44{bottom:123.642900px;}
.y102{bottom:125.277150px;}
.yb3{bottom:127.263000px;}
.ya{bottom:129.822750px;}
.y75{bottom:131.001300px;}
.y96{bottom:131.013000px;}
.yc0{bottom:134.751300px;}
.y101{bottom:138.777150px;}
.y43{bottom:140.142900px;}
.yb2{bottom:143.763000px;}
.y74{bottom:147.501300px;}
.yc9{bottom:147.513000px;}
.y29{bottom:149.142900px;}
.ybf{bottom:151.251300px;}
.y100{bottom:152.277150px;}
.yc6{bottom:156.513000px;}
.y42{bottom:156.642900px;}
.y95{bottom:160.263000px;}
.y73{bottom:164.013000px;}
.y28{bottom:165.642900px;}
.yff{bottom:170.025150px;}
.yc5{bottom:173.013000px;}
.y41{bottom:173.142900px;}
.y94{bottom:176.763000px;}
.ybe{bottom:180.501300px;}
.y72{bottom:180.513000px;}
.y27{bottom:182.142900px;}
.yfe{bottom:183.525150px;}
.yc4{bottom:189.513000px;}
.y40{bottom:189.642900px;}
.yb1{bottom:193.263000px;}
.ybd{bottom:197.001300px;}
.y71{bottom:197.013000px;}
.yfd{bottom:197.025150px;}
.y26{bottom:198.642900px;}
.y93{bottom:206.013000px;}
.y3f{bottom:206.142900px;}
.yb0{bottom:209.763000px;}
.yfc{bottom:210.525150px;}
.ybc{bottom:213.501300px;}
.y70{bottom:213.513000px;}
.y25{bottom:215.142900px;}
.y92{bottom:222.513000px;}
.yfb{bottom:224.025150px;}
.yaf{bottom:226.263000px;}
.y6f{bottom:230.013000px;}
.y24{bottom:231.642900px;}
.y3e{bottom:235.392900px;}
.y91{bottom:239.013000px;}
.yfa{bottom:241.773150px;}
.yae{bottom:242.763000px;}
.y6e{bottom:246.513000px;}
.y23{bottom:248.142900px;}
.y3d{bottom:251.892900px;}
.yf9{bottom:255.273150px;}
.y90{bottom:255.513000px;}
.yad{bottom:259.263000px;}
.y6d{bottom:263.013000px;}
.y22{bottom:264.642900px;}
.y3c{bottom:268.392900px;}
.yf8{bottom:268.773150px;}
.y8f{bottom:272.013000px;}
.yac{bottom:275.763000px;}
.y6c{bottom:279.513000px;}
.y21{bottom:281.142900px;}
.yf7{bottom:282.273150px;}
.y3b{bottom:284.892900px;}
.y8e{bottom:288.513000px;}
.yab{bottom:292.263000px;}
.yf6{bottom:295.773150px;}
.y6b{bottom:296.013000px;}
.y20{bottom:297.642900px;}
.y3a{bottom:301.392900px;}
.y8d{bottom:305.013000px;}
.yaa{bottom:308.763000px;}
.y6a{bottom:312.513000px;}
.yf5{bottom:313.521150px;}
.y1f{bottom:314.142900px;}
.y39{bottom:317.892900px;}
.y8c{bottom:321.513000px;}
.ya9{bottom:325.263000px;}
.yf4{bottom:327.021150px;}
.y69{bottom:329.013000px;}
.y1e{bottom:330.648900px;}
.y38{bottom:334.392900px;}
.y8b{bottom:338.013000px;}
.yf3{bottom:340.521150px;}
.ya8{bottom:341.763000px;}
.y68{bottom:345.513000px;}
.y1d{bottom:347.148900px;}
.y37{bottom:350.892900px;}
.y8a{bottom:354.513000px;}
.ya7{bottom:358.263000px;}
.yf2{bottom:358.269150px;}
.y67{bottom:362.013000px;}
.y1c{bottom:363.648900px;}
.y36{bottom:367.392900px;}
.y89{bottom:371.013000px;}
.yf1{bottom:371.769150px;}
.ya6{bottom:374.763000px;}
.y66{bottom:378.513000px;}
.y1b{bottom:380.148900px;}
.y35{bottom:383.892900px;}
.yf0{bottom:385.269150px;}
.y88{bottom:387.513000px;}
.ya5{bottom:391.263000px;}
.y65{bottom:395.013000px;}
.yef{bottom:398.769150px;}
.y34{bottom:400.392900px;}
.y87{bottom:404.013000px;}
.ya4{bottom:407.763000px;}
.y1a{bottom:409.398900px;}
.yee{bottom:416.517150px;}
.y33{bottom:416.892900px;}
.y86{bottom:420.513000px;}
.y64{bottom:424.263000px;}
.y19{bottom:425.898900px;}
.yed{bottom:430.017150px;}
.y32{bottom:433.392900px;}
.y85{bottom:437.013000px;}
.y63{bottom:440.763000px;}
.y18{bottom:442.398900px;}
.yec{bottom:443.517150px;}
.y31{bottom:449.892900px;}
.y84{bottom:453.513000px;}
.ya3{bottom:457.263000px;}
.y17{bottom:458.898900px;}
.yeb{bottom:461.265150px;}
.y62{bottom:470.013000px;}
.ya2{bottom:473.763000px;}
.yea{bottom:474.765150px;}
.y16{bottom:475.398900px;}
.y30{bottom:479.142900px;}
.y61{bottom:486.513000px;}
.ya1{bottom:490.263000px;}
.y15{bottom:491.898900px;}
.ye9{bottom:492.513150px;}
.y60{bottom:503.013000px;}
.ye8{bottom:506.013150px;}
.ybb{bottom:506.763000px;}
.y2f{bottom:508.392900px;}
.y14{bottom:508.398900px;}
.y5f{bottom:519.513000px;}
.ye7{bottom:519.513150px;}
.yba{bottom:523.263000px;}
.y2e{bottom:524.892900px;}
.y13{bottom:524.898900px;}
.ye6{bottom:533.013150px;}
.y5e{bottom:536.013000px;}
.yb9{bottom:539.763000px;}
.y2d{bottom:541.392900px;}
.y12{bottom:541.398900px;}
.ye5{bottom:550.761150px;}
.y5d{bottom:552.513000px;}
.yb8{bottom:556.263000px;}
.y2c{bottom:557.892900px;}
.y11{bottom:557.898900px;}
.ye4{bottom:564.261150px;}
.y5c{bottom:569.013000px;}
.y11a{bottom:571.389150px;}
.yb7{bottom:572.763000px;}
.y2b{bottom:574.392900px;}
.y10{bottom:574.398900px;}
.ye3{bottom:577.761150px;}
.y5b{bottom:585.513000px;}
.yb6{bottom:589.263000px;}
.y2a{bottom:590.892900px;}
.yf{bottom:590.898900px;}
.ye2{bottom:591.261150px;}
.y119{bottom:593.397150px;}
.y5a{bottom:602.013000px;}
.ye1{bottom:604.761150px;}
.yc8{bottom:605.763000px;}
.y118{bottom:606.897150px;}
.ye0{bottom:618.261150px;}
.y59{bottom:618.513000px;}
.yc7{bottom:622.263000px;}
.y9{bottom:623.766600px;}
.y117{bottom:624.645150px;}
.ydf{bottom:631.761150px;}
.y58{bottom:635.013000px;}
.y116{bottom:638.145150px;}
.y8{bottom:638.765100px;}
.yde{bottom:645.261150px;}
.y57{bottom:651.513000px;}
.y115{bottom:651.645150px;}
.y7{bottom:658.016100px;}
.ydd{bottom:658.761150px;}
.y114{bottom:665.145150px;}
.y56{bottom:668.013000px;}
.ya0{bottom:668.013150px;}
.ydc{bottom:672.261150px;}
.y6{bottom:673.014600px;}
.y113{bottom:682.893150px;}
.y55{bottom:684.513000px;}
.y9f{bottom:684.513150px;}
.ydb{bottom:690.009150px;}
.y112{bottom:696.393150px;}
.y54{bottom:701.013000px;}
.y9e{bottom:701.013150px;}
.y83{bottom:701.016300px;}
.yda{bottom:703.509150px;}
.y111{bottom:709.893150px;}
.y5{bottom:711.517500px;}
.yd9{bottom:717.009150px;}
.y53{bottom:717.513000px;}
.y9d{bottom:717.513150px;}
.y82{bottom:717.516300px;}
.y110{bottom:723.393150px;}
.yd8{bottom:730.509150px;}
.y52{bottom:734.013000px;}
.y9c{bottom:734.013150px;}
.y81{bottom:734.016300px;}
.y10f{bottom:741.141150px;}
.yd7{bottom:744.009150px;}
.y3{bottom:750.022500px;}
.y51{bottom:750.513000px;}
.y9b{bottom:750.513150px;}
.y80{bottom:750.516300px;}
.y10e{bottom:754.641150px;}
.yd6{bottom:757.509150px;}
.y50{bottom:767.013000px;}
.y7f{bottom:767.016300px;}
.y2{bottom:768.022500px;}
.y10d{bottom:768.141150px;}
.yd5{bottom:771.009150px;}
.y10c{bottom:781.641150px;}
.y4f{bottom:783.513000px;}
.y7e{bottom:783.516300px;}
.yd4{bottom:784.509150px;}
.y10b{bottom:799.389150px;}
.y4e{bottom:800.013000px;}
.y7d{bottom:800.016300px;}
.yd3{bottom:802.257150px;}
.y1{bottom:807.247350px;}
.y10a{bottom:812.889150px;}
.yd2{bottom:815.757150px;}
.y4d{bottom:816.513000px;}
.y7c{bottom:816.516300px;}
.y109{bottom:826.389150px;}
.yd1{bottom:829.257150px;}
.y4c{bottom:833.013000px;}
.y7b{bottom:833.016300px;}
.yd0{bottom:842.757150px;}
.y108{bottom:844.137150px;}
.y4b{bottom:849.513000px;}
.y7a{bottom:849.516300px;}
.ycf{bottom:856.257150px;}
.y107{bottom:857.637150px;}
.y4a{bottom:866.013000px;}
.y79{bottom:866.016300px;}
.y106{bottom:871.137150px;}
.y4{bottom:873.494100px;}
.y49{bottom:882.513000px;}
.y78{bottom:882.516300px;}
.y105{bottom:884.637150px;}
.y47{bottom:924.867600px;}
.ycc{bottom:924.870450px;}
.y9a{bottom:926.994450px;}
.ycd{bottom:926.998050px;}
.h4{height:31.587891px;}
.h6{height:31.974609px;}
.hb{height:33.351562px;}
.h8{height:41.689453px;}
.ha{height:42.117188px;}
.h5{height:47.381836px;}
.h7{height:52.646484px;}
.h9{height:52.647084px;}
.h3{height:53.291016px;}
.h2{height:58.620117px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:80.787450px;}
.x10{left:83.436900px;}
.x9{left:85.393650px;}
.xd{left:87.688800px;}
.x1{left:90.793650px;}
.xf{left:95.787450px;}
.x5{left:97.795200px;}
.xa{left:141.207450px;}
.x11{left:164.346750px;}
.x2{left:231.471000px;}
.x3{left:339.126000px;}
.x7{left:369.902850px;}
.x8{left:380.687850px;}
.x6{left:386.912850px;}
.xc{left:389.218950px;}
.xb{left:405.973950px;}
.xe{left:465.778800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.738667pt;}
.ls2{letter-spacing:-5.504000pt;}
.ls1{letter-spacing:-1.150453pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.768000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws64{word-spacing:-12.000000pt;}
.wsc1{word-spacing:-11.392000pt;}
.wsc2{word-spacing:-11.008000pt;}
.ws9b{word-spacing:-10.666667pt;}
.ws1{word-spacing:-8.000000pt;}
.ws3{word-spacing:-7.773333pt;}
.ws63{word-spacing:-6.622880pt;}
.ws9c{word-spacing:-5.162667pt;}
.ws57{word-spacing:-3.146667pt;}
.wsb1{word-spacing:-2.613333pt;}
.ws60{word-spacing:-2.560000pt;}
.ws37{word-spacing:-2.346667pt;}
.ws31{word-spacing:-2.186667pt;}
.ws6c{word-spacing:-2.133333pt;}
.ws3c{word-spacing:-2.026667pt;}
.wsa8{word-spacing:-1.920000pt;}
.ws88{word-spacing:-1.866667pt;}
.wsb2{word-spacing:-1.813333pt;}
.ws81{word-spacing:-1.760000pt;}
.ws6{word-spacing:-1.728000pt;}
.ws2e{word-spacing:-1.706667pt;}
.ws48{word-spacing:-1.653333pt;}
.ws77{word-spacing:-1.546667pt;}
.wse4{word-spacing:-1.493333pt;}
.ws16{word-spacing:-1.386667pt;}
.ws7e{word-spacing:-1.333333pt;}
.ws8f{word-spacing:-1.280000pt;}
.ws7a{word-spacing:-1.226667pt;}
.wsd1{word-spacing:-1.024000pt;}
.ws52{word-spacing:-1.013333pt;}
.wsac{word-spacing:-0.906667pt;}
.ws14{word-spacing:-0.853333pt;}
.wscf{word-spacing:-0.768000pt;}
.ws53{word-spacing:-0.693333pt;}
.ws5d{word-spacing:-0.640000pt;}
.wsd2{word-spacing:-0.597333pt;}
.ws98{word-spacing:-0.586667pt;}
.ws78{word-spacing:-0.480000pt;}
.ws20{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.320000pt;}
.ws7c{word-spacing:-0.266667pt;}
.ws1f{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.160000pt;}
.ws5{word-spacing:-0.128000pt;}
.ws39{word-spacing:-0.106667pt;}
.wsc5{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws21{word-spacing:0.106667pt;}
.ws1e{word-spacing:0.320000pt;}
.wse1{word-spacing:0.341333pt;}
.ws7f{word-spacing:0.426667pt;}
.ws4b{word-spacing:0.480000pt;}
.ws49{word-spacing:0.533333pt;}
.ws5e{word-spacing:0.586667pt;}
.wsb9{word-spacing:0.640000pt;}
.ws25{word-spacing:0.746667pt;}
.ws44{word-spacing:0.800000pt;}
.ws33{word-spacing:0.853333pt;}
.wsb7{word-spacing:0.906667pt;}
.ws24{word-spacing:0.960000pt;}
.ws7{word-spacing:1.056000pt;}
.ws15{word-spacing:1.066667pt;}
.wsda{word-spacing:1.152000pt;}
.ws86{word-spacing:1.173333pt;}
.ws27{word-spacing:1.280000pt;}
.ws68{word-spacing:1.386667pt;}
.wsde{word-spacing:1.408000pt;}
.ws4a{word-spacing:1.440000pt;}
.wsce{word-spacing:1.493333pt;}
.ws89{word-spacing:1.600000pt;}
.wsb6{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.ws43{word-spacing:1.760000pt;}
.wsdb{word-spacing:1.877333pt;}
.wsba{word-spacing:1.920000pt;}
.wsf{word-spacing:1.973333pt;}
.ws2b{word-spacing:2.026667pt;}
.ws7b{word-spacing:2.133333pt;}
.wsc9{word-spacing:2.176000pt;}
.ws29{word-spacing:2.186667pt;}
.ws17{word-spacing:2.293333pt;}
.wscd{word-spacing:2.304000pt;}
.ws2f{word-spacing:2.346667pt;}
.ws46{word-spacing:2.400000pt;}
.wsa2{word-spacing:2.453333pt;}
.wse0{word-spacing:2.474667pt;}
.ws92{word-spacing:2.613333pt;}
.wsdf{word-spacing:2.645333pt;}
.ws6d{word-spacing:2.666667pt;}
.wse3{word-spacing:2.688000pt;}
.ws5f{word-spacing:2.720000pt;}
.ws35{word-spacing:2.773333pt;}
.ws1b{word-spacing:2.826667pt;}
.ws67{word-spacing:2.880000pt;}
.wsc6{word-spacing:2.986667pt;}
.ws3f{word-spacing:3.040000pt;}
.ws42{word-spacing:3.093333pt;}
.ws56{word-spacing:3.146667pt;}
.ws45{word-spacing:3.253333pt;}
.wsc3{word-spacing:3.285333pt;}
.ws58{word-spacing:3.306667pt;}
.wsd9{word-spacing:3.328000pt;}
.ws30{word-spacing:3.360000pt;}
.ws80{word-spacing:3.413333pt;}
.ws54{word-spacing:3.466667pt;}
.ws84{word-spacing:3.573333pt;}
.ws36{word-spacing:3.626667pt;}
.ws1c{word-spacing:3.786667pt;}
.ws8d{word-spacing:3.840000pt;}
.ws96{word-spacing:3.893333pt;}
.ws1a{word-spacing:4.000000pt;}
.ws74{word-spacing:4.053333pt;}
.wsdd{word-spacing:4.096000pt;}
.wsc{word-spacing:4.106667pt;}
.wsa4{word-spacing:4.266667pt;}
.wse{word-spacing:4.320000pt;}
.wsd0{word-spacing:4.352000pt;}
.wsaf{word-spacing:4.373333pt;}
.ws51{word-spacing:4.426667pt;}
.ws4e{word-spacing:4.533333pt;}
.wsc7{word-spacing:4.565333pt;}
.wsb3{word-spacing:4.586667pt;}
.wsb8{word-spacing:4.640000pt;}
.wsd4{word-spacing:4.650667pt;}
.ws22{word-spacing:4.693333pt;}
.ws12{word-spacing:4.746667pt;}
.ws23{word-spacing:4.800000pt;}
.wsd7{word-spacing:4.821333pt;}
.ws19{word-spacing:4.853333pt;}
.wsb0{word-spacing:4.906667pt;}
.wsd5{word-spacing:4.992000pt;}
.ws32{word-spacing:5.013333pt;}
.ws95{word-spacing:5.066667pt;}
.ws79{word-spacing:5.120000pt;}
.ws4f{word-spacing:5.173333pt;}
.wsd6{word-spacing:5.205333pt;}
.wsdc{word-spacing:5.376000pt;}
.ws34{word-spacing:5.440000pt;}
.wsa0{word-spacing:5.546667pt;}
.ws3d{word-spacing:5.600000pt;}
.wscc{word-spacing:5.632000pt;}
.ws66{word-spacing:5.653333pt;}
.ws5a{word-spacing:5.706667pt;}
.ws4c{word-spacing:5.760000pt;}
.wsb{word-spacing:5.813333pt;}
.ws70{word-spacing:5.866667pt;}
.ws3e{word-spacing:5.920000pt;}
.ws69{word-spacing:5.973333pt;}
.ws47{word-spacing:6.026667pt;}
.ws94{word-spacing:6.080000pt;}
.ws50{word-spacing:6.133333pt;}
.ws99{word-spacing:6.186667pt;}
.ws26{word-spacing:6.240000pt;}
.wsc4{word-spacing:6.314667pt;}
.ws9e{word-spacing:6.346667pt;}
.ws61{word-spacing:6.453333pt;}
.wsd8{word-spacing:6.485333pt;}
.wsb5{word-spacing:6.506667pt;}
.ws7d{word-spacing:6.560000pt;}
.ws3a{word-spacing:6.613333pt;}
.ws71{word-spacing:6.826667pt;}
.wsbb{word-spacing:7.040000pt;}
.ws87{word-spacing:7.093333pt;}
.ws83{word-spacing:7.146667pt;}
.ws9f{word-spacing:7.253333pt;}
.ws82{word-spacing:7.306667pt;}
.wsd3{word-spacing:7.338667pt;}
.wsa7{word-spacing:7.360000pt;}
.ws41{word-spacing:7.573333pt;}
.ws18{word-spacing:7.626667pt;}
.ws6f{word-spacing:7.680000pt;}
.ws9{word-spacing:7.733333pt;}
.ws3b{word-spacing:7.786667pt;}
.ws38{word-spacing:7.840000pt;}
.ws85{word-spacing:7.893333pt;}
.ws6b{word-spacing:8.053333pt;}
.ws93{word-spacing:8.160000pt;}
.ws76{word-spacing:8.213333pt;}
.ws97{word-spacing:8.266667pt;}
.ws55{word-spacing:8.320000pt;}
.ws8{word-spacing:8.426667pt;}
.ws5b{word-spacing:8.480000pt;}
.wsc8{word-spacing:8.618667pt;}
.ws9a{word-spacing:8.640000pt;}
.ws2c{word-spacing:8.746667pt;}
.wsbd{word-spacing:8.800000pt;}
.ws62{word-spacing:8.960000pt;}
.wsae{word-spacing:9.013333pt;}
.ws8e{word-spacing:9.120000pt;}
.wscb{word-spacing:9.258667pt;}
.ws72{word-spacing:9.386667pt;}
.ws59{word-spacing:9.600000pt;}
.wsd{word-spacing:9.706667pt;}
.wsa1{word-spacing:9.973333pt;}
.wsc0{word-spacing:10.026667pt;}
.ws2a{word-spacing:10.186667pt;}
.ws91{word-spacing:10.293333pt;}
.wsab{word-spacing:10.506667pt;}
.wsa{word-spacing:10.773333pt;}
.wsaa{word-spacing:10.986667pt;}
.wsa9{word-spacing:11.093333pt;}
.ws8b{word-spacing:11.146667pt;}
.ws2d{word-spacing:11.306667pt;}
.ws4d{word-spacing:11.946667pt;}
.ws73{word-spacing:12.053333pt;}
.wsb4{word-spacing:12.266667pt;}
.ws9d{word-spacing:12.480000pt;}
.wsbc{word-spacing:12.906667pt;}
.wsa5{word-spacing:13.173333pt;}
.ws65{word-spacing:13.546667pt;}
.ws90{word-spacing:14.240000pt;}
.wsa3{word-spacing:14.293333pt;}
.ws8a{word-spacing:14.720000pt;}
.ws75{word-spacing:15.093333pt;}
.ws8c{word-spacing:15.200000pt;}
.ws28{word-spacing:15.626667pt;}
.wsad{word-spacing:15.733333pt;}
.wsca{word-spacing:15.872000pt;}
.ws11{word-spacing:16.426667pt;}
.wsa6{word-spacing:17.600000pt;}
.wsbf{word-spacing:17.653333pt;}
.ws1d{word-spacing:17.866667pt;}
.ws6a{word-spacing:17.973333pt;}
.wse2{word-spacing:18.090667pt;}
.ws5c{word-spacing:18.293333pt;}
.ws6e{word-spacing:19.360000pt;}
.wsbe{word-spacing:20.160000pt;}
._1{margin-left:-6.880000pt;}
._3{margin-left:-4.917333pt;}
._2{margin-left:-3.946667pt;}
._4{margin-left:-3.040000pt;}
._6{margin-left:-2.133333pt;}
._0{margin-left:-1.056000pt;}
._c{width:1.280000pt;}
._a{width:2.432000pt;}
._7{width:4.053333pt;}
._5{width:4.960000pt;}
._9{width:6.186667pt;}
._8{width:7.146667pt;}
._10{width:8.064000pt;}
._d{width:9.066667pt;}
._e{width:10.560000pt;}
._b{width:11.786667pt;}
._f{width:12.864000pt;}
._11{width:16.426667pt;}
.fs4{font-size:31.093333pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:40.688533pt;}
.y99{bottom:40.691067pt;}
.yce{bottom:40.694267pt;}
.ye{bottom:67.398000pt;}
.yc3{bottom:75.778933pt;}
.ycb{bottom:75.789333pt;}
.y46{bottom:80.571467pt;}
.yb5{bottom:83.789333pt;}
.yd{bottom:86.598000pt;}
.y77{bottom:87.112267pt;}
.y98{bottom:87.122667pt;}
.y104{bottom:87.357467pt;}
.yc2{bottom:90.445600pt;}
.yca{bottom:90.456000pt;}
.y45{bottom:95.238133pt;}
.yc{bottom:96.198000pt;}
.yb4{bottom:98.456000pt;}
.y103{bottom:99.357467pt;}
.y76{bottom:101.778933pt;}
.y97{bottom:101.789333pt;}
.yc1{bottom:105.112267pt;}
.yb{bottom:105.798000pt;}
.y44{bottom:109.904800pt;}
.y102{bottom:111.357467pt;}
.yb3{bottom:113.122667pt;}
.ya{bottom:115.398000pt;}
.y75{bottom:116.445600pt;}
.y96{bottom:116.456000pt;}
.yc0{bottom:119.778933pt;}
.y101{bottom:123.357467pt;}
.y43{bottom:124.571467pt;}
.yb2{bottom:127.789333pt;}
.y74{bottom:131.112267pt;}
.yc9{bottom:131.122667pt;}
.y29{bottom:132.571467pt;}
.ybf{bottom:134.445600pt;}
.y100{bottom:135.357467pt;}
.yc6{bottom:139.122667pt;}
.y42{bottom:139.238133pt;}
.y95{bottom:142.456000pt;}
.y73{bottom:145.789333pt;}
.y28{bottom:147.238133pt;}
.yff{bottom:151.133467pt;}
.yc5{bottom:153.789333pt;}
.y41{bottom:153.904800pt;}
.y94{bottom:157.122667pt;}
.ybe{bottom:160.445600pt;}
.y72{bottom:160.456000pt;}
.y27{bottom:161.904800pt;}
.yfe{bottom:163.133467pt;}
.yc4{bottom:168.456000pt;}
.y40{bottom:168.571467pt;}
.yb1{bottom:171.789333pt;}
.ybd{bottom:175.112267pt;}
.y71{bottom:175.122667pt;}
.yfd{bottom:175.133467pt;}
.y26{bottom:176.571467pt;}
.y93{bottom:183.122667pt;}
.y3f{bottom:183.238133pt;}
.yb0{bottom:186.456000pt;}
.yfc{bottom:187.133467pt;}
.ybc{bottom:189.778933pt;}
.y70{bottom:189.789333pt;}
.y25{bottom:191.238133pt;}
.y92{bottom:197.789333pt;}
.yfb{bottom:199.133467pt;}
.yaf{bottom:201.122667pt;}
.y6f{bottom:204.456000pt;}
.y24{bottom:205.904800pt;}
.y3e{bottom:209.238133pt;}
.y91{bottom:212.456000pt;}
.yfa{bottom:214.909467pt;}
.yae{bottom:215.789333pt;}
.y6e{bottom:219.122667pt;}
.y23{bottom:220.571467pt;}
.y3d{bottom:223.904800pt;}
.yf9{bottom:226.909467pt;}
.y90{bottom:227.122667pt;}
.yad{bottom:230.456000pt;}
.y6d{bottom:233.789333pt;}
.y22{bottom:235.238133pt;}
.y3c{bottom:238.571467pt;}
.yf8{bottom:238.909467pt;}
.y8f{bottom:241.789333pt;}
.yac{bottom:245.122667pt;}
.y6c{bottom:248.456000pt;}
.y21{bottom:249.904800pt;}
.yf7{bottom:250.909467pt;}
.y3b{bottom:253.238133pt;}
.y8e{bottom:256.456000pt;}
.yab{bottom:259.789333pt;}
.yf6{bottom:262.909467pt;}
.y6b{bottom:263.122667pt;}
.y20{bottom:264.571467pt;}
.y3a{bottom:267.904800pt;}
.y8d{bottom:271.122667pt;}
.yaa{bottom:274.456000pt;}
.y6a{bottom:277.789333pt;}
.yf5{bottom:278.685467pt;}
.y1f{bottom:279.238133pt;}
.y39{bottom:282.571467pt;}
.y8c{bottom:285.789333pt;}
.ya9{bottom:289.122667pt;}
.yf4{bottom:290.685467pt;}
.y69{bottom:292.456000pt;}
.y1e{bottom:293.910133pt;}
.y38{bottom:297.238133pt;}
.y8b{bottom:300.456000pt;}
.yf3{bottom:302.685467pt;}
.ya8{bottom:303.789333pt;}
.y68{bottom:307.122667pt;}
.y1d{bottom:308.576800pt;}
.y37{bottom:311.904800pt;}
.y8a{bottom:315.122667pt;}
.ya7{bottom:318.456000pt;}
.yf2{bottom:318.461467pt;}
.y67{bottom:321.789333pt;}
.y1c{bottom:323.243467pt;}
.y36{bottom:326.571467pt;}
.y89{bottom:329.789333pt;}
.yf1{bottom:330.461467pt;}
.ya6{bottom:333.122667pt;}
.y66{bottom:336.456000pt;}
.y1b{bottom:337.910133pt;}
.y35{bottom:341.238133pt;}
.yf0{bottom:342.461467pt;}
.y88{bottom:344.456000pt;}
.ya5{bottom:347.789333pt;}
.y65{bottom:351.122667pt;}
.yef{bottom:354.461467pt;}
.y34{bottom:355.904800pt;}
.y87{bottom:359.122667pt;}
.ya4{bottom:362.456000pt;}
.y1a{bottom:363.910133pt;}
.yee{bottom:370.237467pt;}
.y33{bottom:370.571467pt;}
.y86{bottom:373.789333pt;}
.y64{bottom:377.122667pt;}
.y19{bottom:378.576800pt;}
.yed{bottom:382.237467pt;}
.y32{bottom:385.238133pt;}
.y85{bottom:388.456000pt;}
.y63{bottom:391.789333pt;}
.y18{bottom:393.243467pt;}
.yec{bottom:394.237467pt;}
.y31{bottom:399.904800pt;}
.y84{bottom:403.122667pt;}
.ya3{bottom:406.456000pt;}
.y17{bottom:407.910133pt;}
.yeb{bottom:410.013467pt;}
.y62{bottom:417.789333pt;}
.ya2{bottom:421.122667pt;}
.yea{bottom:422.013467pt;}
.y16{bottom:422.576800pt;}
.y30{bottom:425.904800pt;}
.y61{bottom:432.456000pt;}
.ya1{bottom:435.789333pt;}
.y15{bottom:437.243467pt;}
.ye9{bottom:437.789467pt;}
.y60{bottom:447.122667pt;}
.ye8{bottom:449.789467pt;}
.ybb{bottom:450.456000pt;}
.y2f{bottom:451.904800pt;}
.y14{bottom:451.910133pt;}
.y5f{bottom:461.789333pt;}
.ye7{bottom:461.789467pt;}
.yba{bottom:465.122667pt;}
.y2e{bottom:466.571467pt;}
.y13{bottom:466.576800pt;}
.ye6{bottom:473.789467pt;}
.y5e{bottom:476.456000pt;}
.yb9{bottom:479.789333pt;}
.y2d{bottom:481.238133pt;}
.y12{bottom:481.243467pt;}
.ye5{bottom:489.565467pt;}
.y5d{bottom:491.122667pt;}
.yb8{bottom:494.456000pt;}
.y2c{bottom:495.904800pt;}
.y11{bottom:495.910133pt;}
.ye4{bottom:501.565467pt;}
.y5c{bottom:505.789333pt;}
.y11a{bottom:507.901467pt;}
.yb7{bottom:509.122667pt;}
.y2b{bottom:510.571467pt;}
.y10{bottom:510.576800pt;}
.ye3{bottom:513.565467pt;}
.y5b{bottom:520.456000pt;}
.yb6{bottom:523.789333pt;}
.y2a{bottom:525.238133pt;}
.yf{bottom:525.243467pt;}
.ye2{bottom:525.565467pt;}
.y119{bottom:527.464133pt;}
.y5a{bottom:535.122667pt;}
.ye1{bottom:537.565467pt;}
.yc8{bottom:538.456000pt;}
.y118{bottom:539.464133pt;}
.ye0{bottom:549.565467pt;}
.y59{bottom:549.789333pt;}
.yc7{bottom:553.122667pt;}
.y9{bottom:554.459200pt;}
.y117{bottom:555.240133pt;}
.ydf{bottom:561.565467pt;}
.y58{bottom:564.456000pt;}
.y116{bottom:567.240133pt;}
.y8{bottom:567.791200pt;}
.yde{bottom:573.565467pt;}
.y57{bottom:579.122667pt;}
.y115{bottom:579.240133pt;}
.y7{bottom:584.903200pt;}
.ydd{bottom:585.565467pt;}
.y114{bottom:591.240133pt;}
.y56{bottom:593.789333pt;}
.ya0{bottom:593.789467pt;}
.ydc{bottom:597.565467pt;}
.y6{bottom:598.235200pt;}
.y113{bottom:607.016133pt;}
.y55{bottom:608.456000pt;}
.y9f{bottom:608.456133pt;}
.ydb{bottom:613.341467pt;}
.y112{bottom:619.016133pt;}
.y54{bottom:623.122667pt;}
.y9e{bottom:623.122800pt;}
.y83{bottom:623.125600pt;}
.yda{bottom:625.341467pt;}
.y111{bottom:631.016133pt;}
.y5{bottom:632.460000pt;}
.yd9{bottom:637.341467pt;}
.y53{bottom:637.789333pt;}
.y9d{bottom:637.789467pt;}
.y82{bottom:637.792267pt;}
.y110{bottom:643.016133pt;}
.yd8{bottom:649.341467pt;}
.y52{bottom:652.456000pt;}
.y9c{bottom:652.456133pt;}
.y81{bottom:652.458933pt;}
.y10f{bottom:658.792133pt;}
.yd7{bottom:661.341467pt;}
.y3{bottom:666.686667pt;}
.y51{bottom:667.122667pt;}
.y9b{bottom:667.122800pt;}
.y80{bottom:667.125600pt;}
.y10e{bottom:670.792133pt;}
.yd6{bottom:673.341467pt;}
.y50{bottom:681.789333pt;}
.y7f{bottom:681.792267pt;}
.y2{bottom:682.686667pt;}
.y10d{bottom:682.792133pt;}
.yd5{bottom:685.341467pt;}
.y10c{bottom:694.792133pt;}
.y4f{bottom:696.456000pt;}
.y7e{bottom:696.458933pt;}
.yd4{bottom:697.341467pt;}
.y10b{bottom:710.568133pt;}
.y4e{bottom:711.122667pt;}
.y7d{bottom:711.125600pt;}
.yd3{bottom:713.117467pt;}
.y1{bottom:717.553200pt;}
.y10a{bottom:722.568133pt;}
.yd2{bottom:725.117467pt;}
.y4d{bottom:725.789333pt;}
.y7c{bottom:725.792267pt;}
.y109{bottom:734.568133pt;}
.yd1{bottom:737.117467pt;}
.y4c{bottom:740.456000pt;}
.y7b{bottom:740.458933pt;}
.yd0{bottom:749.117467pt;}
.y108{bottom:750.344133pt;}
.y4b{bottom:755.122667pt;}
.y7a{bottom:755.125600pt;}
.ycf{bottom:761.117467pt;}
.y107{bottom:762.344133pt;}
.y4a{bottom:769.789333pt;}
.y79{bottom:769.792267pt;}
.y106{bottom:774.344133pt;}
.y4{bottom:776.439200pt;}
.y49{bottom:784.456000pt;}
.y78{bottom:784.458933pt;}
.y105{bottom:786.344133pt;}
.y47{bottom:822.104533pt;}
.ycc{bottom:822.107067pt;}
.y9a{bottom:823.995067pt;}
.ycd{bottom:823.998267pt;}
.h4{height:28.078125pt;}
.h6{height:28.421875pt;}
.hb{height:29.645833pt;}
.h8{height:37.057292pt;}
.ha{height:37.437500pt;}
.h5{height:42.117188pt;}
.h7{height:46.796875pt;}
.h9{height:46.797408pt;}
.h3{height:47.369792pt;}
.h2{height:52.106771pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:71.811067pt;}
.x10{left:74.166133pt;}
.x9{left:75.905467pt;}
.xd{left:77.945600pt;}
.x1{left:80.705467pt;}
.xf{left:85.144400pt;}
.x5{left:86.929067pt;}
.xa{left:125.517733pt;}
.x11{left:146.086000pt;}
.x2{left:205.752000pt;}
.x3{left:301.445333pt;}
.x7{left:328.802533pt;}
.x8{left:338.389200pt;}
.x6{left:343.922533pt;}
.xc{left:345.972400pt;}
.xb{left:360.865733pt;}
.xe{left:414.025600pt;}
}




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