
    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_abf6e53845939ee9eeedf308.woff')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_a52b668d1bff80d72c5427e3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_052d1eaa0212d5965482355b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f7339816319c82dd19980178.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_48f7b7fdc6165d57876b2c9b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1df0d37f100309fce1508500.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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:23.766000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:38.952000px;}
.ls2{letter-spacing:56.952000px;}
.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;}
}
.wsa{word-spacing:-55.944000px;}
.wsad{word-spacing:-38.857500px;}
.ws9{word-spacing:-38.666400px;}
.wsd5{word-spacing:-38.662200px;}
.ws1d{word-spacing:-38.661000px;}
.ws6{word-spacing:-38.657700px;}
.wsd3{word-spacing:-38.656800px;}
.ws69{word-spacing:-38.650500px;}
.ws5{word-spacing:-38.647800px;}
.wscd{word-spacing:-38.646000px;}
.wsa0{word-spacing:-38.588400px;}
.wsa4{word-spacing:-38.583000px;}
.wsc0{word-spacing:-38.581800px;}
.wsd0{word-spacing:-38.449500px;}
.ws31{word-spacing:-38.440800px;}
.ws43{word-spacing:-38.432700px;}
.wsd{word-spacing:-38.423100px;}
.ws3{word-spacing:-38.374200px;}
.ws97{word-spacing:-38.166000px;}
.wsc{word-spacing:-38.160000px;}
.wsc3{word-spacing:-38.157000px;}
.wsb{word-spacing:-38.156400px;}
.ws46{word-spacing:-38.155200px;}
.wsa5{word-spacing:-38.154600px;}
.ws95{word-spacing:-38.153700px;}
.ws51{word-spacing:-38.152800px;}
.wscb{word-spacing:-38.151900px;}
.wsd7{word-spacing:-38.149200px;}
.ws87{word-spacing:-38.140200px;}
.wsce{word-spacing:-38.085300px;}
.ws68{word-spacing:-38.072700px;}
.wsda{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws34{word-spacing:-37.943700px;}
.ws21{word-spacing:-37.942800px;}
.ws1f{word-spacing:-37.940400px;}
.ws54{word-spacing:-37.939500px;}
.ws4{word-spacing:-37.938600px;}
.ws6a{word-spacing:-37.935900px;}
.ws96{word-spacing:-37.935000px;}
.wscc{word-spacing:-37.934700px;}
.ws2{word-spacing:-37.931400px;}
.wsb5{word-spacing:-37.926900px;}
.ws52{word-spacing:-37.730400px;}
.ws71{word-spacing:-37.722600px;}
.ws2b{word-spacing:-37.718100px;}
.wsd1{word-spacing:-37.713600px;}
.wsc1{word-spacing:-37.446000px;}
.ws72{word-spacing:-37.442400px;}
.wsae{word-spacing:-37.436400px;}
.ws3e{word-spacing:-37.359600px;}
.wsaf{word-spacing:-37.222200px;}
.ws53{word-spacing:-37.220400px;}
.ws15{word-spacing:-37.209600px;}
.ws26{word-spacing:-36.992100px;}
.wsb2{word-spacing:-36.720000px;}
.ws8d{word-spacing:-36.710400px;}
.ws4a{word-spacing:-36.504000px;}
.ws73{word-spacing:-36.502200px;}
.ws2a{word-spacing:-36.489300px;}
.wsf{word-spacing:-35.996400px;}
.wsab{word-spacing:-35.784000px;}
.wsa9{word-spacing:-35.282400px;}
.ws5f{word-spacing:-35.277300px;}
.ws61{word-spacing:-35.276400px;}
.ws4e{word-spacing:-35.064000px;}
.ws92{word-spacing:-35.062200px;}
.wsa8{word-spacing:-34.562400px;}
.ws6f{word-spacing:-34.346400px;}
.ws9e{word-spacing:-34.268400px;}
.ws8f{word-spacing:-33.842400px;}
.ws82{word-spacing:-33.836400px;}
.ws3b{word-spacing:-33.624000px;}
.ws66{word-spacing:-33.621900px;}
.ws7c{word-spacing:-33.619500px;}
.ws80{word-spacing:-33.615900px;}
.ws2d{word-spacing:-33.604200px;}
.ws9a{word-spacing:-33.548400px;}
.ws8{word-spacing:-33.547800px;}
.ws9f{word-spacing:-33.395400px;}
.ws94{word-spacing:-33.116400px;}
.wsc4{word-spacing:-33.110400px;}
.ws89{word-spacing:-33.100200px;}
.ws84{word-spacing:-32.904000px;}
.ws8a{word-spacing:-32.891400px;}
.ws9c{word-spacing:-32.405100px;}
.ws14{word-spacing:-32.186400px;}
.ws81{word-spacing:-32.180400px;}
.ws16{word-spacing:-32.173200px;}
.ws41{word-spacing:-31.823100px;}
.wsd6{word-spacing:-31.674300px;}
.ws22{word-spacing:-31.667100px;}
.ws8e{word-spacing:-31.461300px;}
.wsb0{word-spacing:-31.460400px;}
.wsa3{word-spacing:-31.455000px;}
.ws9b{word-spacing:-31.452000px;}
.ws70{word-spacing:-31.451400px;}
.ws23{word-spacing:-31.451100px;}
.ws4c{word-spacing:-31.239600px;}
.ws7e{word-spacing:-30.960000px;}
.wsb1{word-spacing:-30.956100px;}
.ws3f{word-spacing:-30.744000px;}
.ws8b{word-spacing:-30.740400px;}
.wsa1{word-spacing:-30.736200px;}
.wsb6{word-spacing:-30.668100px;}
.wsb7{word-spacing:-30.534000px;}
.ws4f{word-spacing:-30.240000px;}
.wsb3{word-spacing:-30.236400px;}
.ws29{word-spacing:-30.007800px;}
.ws83{word-spacing:-29.948400px;}
.wscf{word-spacing:-29.808000px;}
.ws9d{word-spacing:-29.803500px;}
.wsd9{word-spacing:-29.802000px;}
.ws64{word-spacing:-29.295900px;}
.wsd4{word-spacing:-29.295000px;}
.ws99{word-spacing:-29.291400px;}
.ws91{word-spacing:-29.079000px;}
.wsc8{word-spacing:-28.791900px;}
.ws30{word-spacing:-28.585500px;}
.ws1a{word-spacing:-28.582200px;}
.ws2f{word-spacing:-28.566000px;}
.wsd8{word-spacing:-28.496700px;}
.ws7f{word-spacing:-27.857700px;}
.wsc5{word-spacing:-27.851400px;}
.ws58{word-spacing:-27.359100px;}
.ws59{word-spacing:-27.357000px;}
.ws98{word-spacing:-27.144000px;}
.ws6c{word-spacing:-27.140400px;}
.ws50{word-spacing:-27.129000px;}
.wsba{word-spacing:-26.640000px;}
.wsb8{word-spacing:-26.636400px;}
.wsa7{word-spacing:-26.420400px;}
.wsbb{word-spacing:-26.352000px;}
.ws5a{word-spacing:-26.350800px;}
.ws75{word-spacing:-25.920000px;}
.wsbe{word-spacing:-25.912800px;}
.wsbc{word-spacing:-25.911300px;}
.ws2c{word-spacing:-25.701300px;}
.ws4d{word-spacing:-25.488000px;}
.wsbd{word-spacing:-25.483500px;}
.ws90{word-spacing:-25.196400px;}
.ws17{word-spacing:-25.182000px;}
.ws40{word-spacing:-25.120800px;}
.ws93{word-spacing:-24.986400px;}
.ws5e{word-spacing:-24.910800px;}
.ws6e{word-spacing:-24.270000px;}
.ws76{word-spacing:-24.266400px;}
.ws78{word-spacing:-24.262200px;}
.ws6d{word-spacing:-24.046200px;}
.ws79{word-spacing:-24.044400px;}
.ws77{word-spacing:-24.040800px;}
.ws7a{word-spacing:-23.757300px;}
.wsb4{word-spacing:-23.756400px;}
.wsca{word-spacing:-23.544000px;}
.ws65{word-spacing:-23.536200px;}
.wsac{word-spacing:-23.042400px;}
.ws4b{word-spacing:-22.830000px;}
.ws67{word-spacing:-22.816800px;}
.ws6b{word-spacing:-22.815900px;}
.ws10{word-spacing:-22.316400px;}
.ws63{word-spacing:-22.306500px;}
.ws7d{word-spacing:-22.100400px;}
.ws13{word-spacing:-21.596400px;}
.wsc6{word-spacing:-21.390000px;}
.ws12{word-spacing:-21.373200px;}
.ws8c{word-spacing:-20.666400px;}
.ws7b{word-spacing:-20.664000px;}
.wsc9{word-spacing:-20.660400px;}
.ws25{word-spacing:-20.653200px;}
.wsbf{word-spacing:-19.440000px;}
.ws1c{word-spacing:-19.217700px;}
.ws20{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.716400px;}
.ws5b{word-spacing:-18.500400px;}
.ws7{word-spacing:-18.472500px;}
.ws62{word-spacing:-18.006000px;}
.ws74{word-spacing:-17.772300px;}
.wsaa{word-spacing:-17.771400px;}
.ws5d{word-spacing:-17.051400px;}
.ws33{word-spacing:-16.838100px;}
.ws32{word-spacing:-16.551900px;}
.wsc2{word-spacing:-16.335000px;}
.ws86{word-spacing:-16.323300px;}
.ws44{word-spacing:-15.840000px;}
.wsa2{word-spacing:-15.836400px;}
.ws45{word-spacing:-15.624000px;}
.ws1e{word-spacing:-15.408000px;}
.ws57{word-spacing:-14.904000px;}
.wsc7{word-spacing:-14.817600px;}
.ws18{word-spacing:-14.400000px;}
.ws19{word-spacing:-14.396400px;}
.ws88{word-spacing:-14.184000px;}
.ws37{word-spacing:-12.030000px;}
.ws38{word-spacing:-10.997100px;}
.ws27{word-spacing:-10.573800px;}
.ws24{word-spacing:-10.565100px;}
.ws2e{word-spacing:-9.855900px;}
.ws39{word-spacing:-9.849600px;}
.ws3a{word-spacing:-9.144000px;}
.ws36{word-spacing:-7.761600px;}
.ws35{word-spacing:-7.200000px;}
.ws85{word-spacing:-6.969600px;}
.ws49{word-spacing:-6.958200px;}
.ws48{word-spacing:-6.480000px;}
.ws47{word-spacing:-6.474000px;}
.ws11{word-spacing:-2.880000px;}
.ws28{word-spacing:-2.160000px;}
.wsd2{word-spacing:-1.944000px;}
.wsa6{word-spacing:0.000000px;}
.ws42{word-spacing:0.216000px;}
.wse{word-spacing:3.312000px;}
.ws60{word-spacing:4.320000px;}
.ws55{word-spacing:5.769900px;}
.ws56{word-spacing:5.978700px;}
.ws3d{word-spacing:12.456000px;}
.ws3c{word-spacing:12.530700px;}
.wsb9{word-spacing:23.766000px;}
.ws5c{word-spacing:39.600000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1f{width:17.612400px;}
._4{width:18.775800px;}
._11{width:20.009400px;}
._6{width:21.103200px;}
._20{width:22.170000px;}
._17{width:23.344800px;}
._9{width:25.204800px;}
._1a{width:26.274600px;}
._10{width:27.343800px;}
._c{width:28.419600px;}
._1b{width:30.075000px;}
._12{width:31.322400px;}
._a{width:32.346000px;}
._1e{width:33.370200px;}
._7{width:34.840800px;}
._1{width:36.000000px;}
._8{width:37.029600px;}
._1d{width:39.304800px;}
._13{width:40.353900px;}
._d{width:41.538000px;}
._b{width:42.696000px;}
._15{width:45.028800px;}
._e{width:46.853100px;}
._16{width:48.442800px;}
._14{width:50.241600px;}
._21{width:51.408000px;}
._22{width:52.488000px;}
._23{width:54.000000px;}
._f{width:55.440000px;}
._5{width:60.330000px;}
._1c{width:63.400200px;}
._25{width:64.975800px;}
._19{width:66.960000px;}
._18{width:69.851400px;}
._24{width:71.196600px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y30{bottom:101.236500px;}
.y79{bottom:103.215000px;}
.y2f{bottom:121.936500px;}
.y59{bottom:122.836500px;}
.y78{bottom:123.915000px;}
.y2e{bottom:142.636500px;}
.y91{bottom:143.355000px;}
.y58{bottom:143.536500px;}
.y77{bottom:144.615000px;}
.y2d{bottom:163.336500px;}
.y57{bottom:164.236500px;}
.y76{bottom:165.315000px;}
.y2c{bottom:184.036500px;}
.y56{bottom:184.936500px;}
.y75{bottom:185.836500px;}
.ya2{bottom:204.736500px;}
.y55{bottom:205.636500px;}
.y74{bottom:206.536500px;}
.ya1{bottom:225.436500px;}
.y2b{bottom:225.795000px;}
.y54{bottom:226.336500px;}
.y73{bottom:227.236500px;}
.ya0{bottom:246.136500px;}
.y2a{bottom:246.496500px;}
.y53{bottom:247.036500px;}
.y72{bottom:247.936500px;}
.y9f{bottom:266.836500px;}
.y52{bottom:267.736500px;}
.y71{bottom:268.636500px;}
.y29{bottom:288.075000px;}
.y51{bottom:288.436500px;}
.y70{bottom:289.336500px;}
.y9e{bottom:308.596500px;}
.y28{bottom:308.775000px;}
.y50{bottom:309.136500px;}
.y6f{bottom:310.036500px;}
.y27{bottom:329.475000px;}
.y4f{bottom:329.836500px;}
.y6e{bottom:330.736500px;}
.y26{bottom:350.175000px;}
.y4e{bottom:350.536500px;}
.y6d{bottom:351.436500px;}
.y25{bottom:370.875000px;}
.y4d{bottom:371.236500px;}
.y6c{bottom:372.136500px;}
.y24{bottom:391.575000px;}
.y6b{bottom:392.836500px;}
.ybd{bottom:393.196500px;}
.y23{bottom:412.275000px;}
.y9d{bottom:412.636500px;}
.y4c{bottom:412.996500px;}
.y6a{bottom:413.536500px;}
.ybc{bottom:413.896500px;}
.y22{bottom:432.975000px;}
.y9c{bottom:433.336500px;}
.y69{bottom:434.236500px;}
.ybb{bottom:434.596500px;}
.y21{bottom:453.675000px;}
.y9b{bottom:454.036500px;}
.y4b{bottom:454.575000px;}
.y68{bottom:454.936500px;}
.yba{bottom:455.295000px;}
.y90{bottom:463.215000px;}
.y20{bottom:474.375000px;}
.y4a{bottom:475.275000px;}
.y67{bottom:475.636500px;}
.yb9{bottom:475.996500px;}
.y8f{bottom:485.175000px;}
.y1f{bottom:495.075000px;}
.y9a{bottom:495.796500px;}
.y49{bottom:495.975000px;}
.y66{bottom:496.336500px;}
.yb8{bottom:496.695000px;}
.y8e{bottom:507.136500px;}
.y1e{bottom:515.775000px;}
.y99{bottom:516.496500px;}
.y65{bottom:517.036500px;}
.yb7{bottom:517.396500px;}
.y8d{bottom:529.096500px;}
.y1d{bottom:536.475000px;}
.y98{bottom:537.195000px;}
.y48{bottom:537.736500px;}
.yb6{bottom:538.096500px;}
.y8c{bottom:551.055000px;}
.y1c{bottom:557.175000px;}
.y47{bottom:558.436500px;}
.yb5{bottom:558.796500px;}
.y8b{bottom:573.015000px;}
.y97{bottom:578.775000px;}
.y46{bottom:579.136500px;}
.yb4{bottom:579.496500px;}
.y1b{bottom:598.936500px;}
.y96{bottom:599.475000px;}
.y45{bottom:599.836500px;}
.yb3{bottom:600.195000px;}
.y8a{bottom:616.036500px;}
.y1a{bottom:619.636500px;}
.y95{bottom:620.175000px;}
.y44{bottom:620.536500px;}
.yb2{bottom:620.896500px;}
.y89{bottom:636.736500px;}
.y94{bottom:640.875000px;}
.y43{bottom:641.236500px;}
.yb1{bottom:641.596500px;}
.y88{bottom:657.436500px;}
.y19{bottom:661.396500px;}
.y93{bottom:661.575000px;}
.y42{bottom:661.936500px;}
.yb0{bottom:662.295000px;}
.y87{bottom:678.136500px;}
.y18{bottom:682.096500px;}
.y41{bottom:682.636500px;}
.yaf{bottom:682.996500px;}
.y17{bottom:702.795000px;}
.y40{bottom:703.336500px;}
.yae{bottom:703.695000px;}
.y86{bottom:719.896500px;}
.y16{bottom:723.496500px;}
.y3f{bottom:724.036500px;}
.yad{bottom:724.396500px;}
.y85{bottom:740.596500px;}
.y15{bottom:744.195000px;}
.y3e{bottom:744.736500px;}
.yac{bottom:745.096500px;}
.y84{bottom:761.295000px;}
.y14{bottom:764.895000px;}
.y3d{bottom:765.436500px;}
.yab{bottom:765.795000px;}
.y83{bottom:781.996500px;}
.y13{bottom:785.596500px;}
.y3c{bottom:786.136500px;}
.yaa{bottom:786.496500px;}
.y12{bottom:806.295000px;}
.y64{bottom:806.836500px;}
.ya9{bottom:807.195000px;}
.y82{bottom:823.575000px;}
.y11{bottom:826.996500px;}
.y63{bottom:827.536500px;}
.y3b{bottom:827.895000px;}
.y81{bottom:844.275000px;}
.y10{bottom:847.695000px;}
.y62{bottom:848.236500px;}
.y3a{bottom:848.596500px;}
.y80{bottom:864.975000px;}
.yf{bottom:868.395000px;}
.y61{bottom:868.936500px;}
.y39{bottom:869.295000px;}
.y7f{bottom:885.675000px;}
.ye{bottom:889.095000px;}
.y60{bottom:889.636500px;}
.ya8{bottom:889.995000px;}
.y7e{bottom:906.375000px;}
.yd{bottom:909.795000px;}
.y5f{bottom:910.336500px;}
.ya7{bottom:910.695000px;}
.y38{bottom:910.875000px;}
.y5e{bottom:931.036500px;}
.y92{bottom:931.395000px;}
.y37{bottom:931.575000px;}
.y7d{bottom:948.136500px;}
.yc{bottom:951.375000px;}
.y5d{bottom:951.736500px;}
.ya6{bottom:952.095000px;}
.y36{bottom:952.275000px;}
.y7c{bottom:968.836500px;}
.y5c{bottom:972.436500px;}
.ya5{bottom:972.795000px;}
.y35{bottom:972.975000px;}
.y7b{bottom:990.795000px;}
.yb{bottom:993.136500px;}
.ya4{bottom:993.495000px;}
.y34{bottom:993.675000px;}
.y7a{bottom:1012.936500px;}
.y5b{bottom:1013.836500px;}
.ya3{bottom:1014.195000px;}
.y33{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y32{bottom:1035.075000px;}
.y5a{bottom:1055.595000px;}
.y31{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h9{height:49.992188px;}
.h6{height:60.082031px;}
.h2{height:61.734375px;}
.h8{height:62.807320px;}
.h7{height:62.819320px;}
.ha{height:63.533320px;}
.hb{height:63.539320px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xe{left:132.120000px;}
.xd{left:136.620000px;}
.xf{left:141.120000px;}
.x9{left:150.120000px;}
.x4{left:151.200000px;}
.xb{left:154.620000px;}
.xa{left:159.120000px;}
.x8{left:282.238500px;}
.xc{left:288.180000px;}
.x5{left:432.900000px;}
.x3{left:465.825000px;}
.x7{left:483.300000px;}
.x6{left:570.780000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.125333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:34.624000pt;}
.ls2{letter-spacing:50.624000pt;}
.wsa{word-spacing:-49.728000pt;}
.wsad{word-spacing:-34.540000pt;}
.ws9{word-spacing:-34.370133pt;}
.wsd5{word-spacing:-34.366400pt;}
.ws1d{word-spacing:-34.365333pt;}
.ws6{word-spacing:-34.362400pt;}
.wsd3{word-spacing:-34.361600pt;}
.ws69{word-spacing:-34.356000pt;}
.ws5{word-spacing:-34.353600pt;}
.wscd{word-spacing:-34.352000pt;}
.wsa0{word-spacing:-34.300800pt;}
.wsa4{word-spacing:-34.296000pt;}
.wsc0{word-spacing:-34.294933pt;}
.wsd0{word-spacing:-34.177333pt;}
.ws31{word-spacing:-34.169600pt;}
.ws43{word-spacing:-34.162400pt;}
.wsd{word-spacing:-34.153867pt;}
.ws3{word-spacing:-34.110400pt;}
.ws97{word-spacing:-33.925333pt;}
.wsc{word-spacing:-33.920000pt;}
.wsc3{word-spacing:-33.917333pt;}
.wsb{word-spacing:-33.916800pt;}
.ws46{word-spacing:-33.915733pt;}
.wsa5{word-spacing:-33.915200pt;}
.ws95{word-spacing:-33.914400pt;}
.ws51{word-spacing:-33.913600pt;}
.wscb{word-spacing:-33.912800pt;}
.wsd7{word-spacing:-33.910400pt;}
.ws87{word-spacing:-33.902400pt;}
.wsce{word-spacing:-33.853600pt;}
.ws68{word-spacing:-33.842400pt;}
.wsda{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws34{word-spacing:-33.727733pt;}
.ws21{word-spacing:-33.726933pt;}
.ws1f{word-spacing:-33.724800pt;}
.ws54{word-spacing:-33.724000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws6a{word-spacing:-33.720800pt;}
.ws96{word-spacing:-33.720000pt;}
.wscc{word-spacing:-33.719733pt;}
.ws2{word-spacing:-33.716800pt;}
.wsb5{word-spacing:-33.712800pt;}
.ws52{word-spacing:-33.538133pt;}
.ws71{word-spacing:-33.531200pt;}
.ws2b{word-spacing:-33.527200pt;}
.wsd1{word-spacing:-33.523200pt;}
.wsc1{word-spacing:-33.285333pt;}
.ws72{word-spacing:-33.282133pt;}
.wsae{word-spacing:-33.276800pt;}
.ws3e{word-spacing:-33.208533pt;}
.wsaf{word-spacing:-33.086400pt;}
.ws53{word-spacing:-33.084800pt;}
.ws15{word-spacing:-33.075200pt;}
.ws26{word-spacing:-32.881867pt;}
.wsb2{word-spacing:-32.640000pt;}
.ws8d{word-spacing:-32.631467pt;}
.ws4a{word-spacing:-32.448000pt;}
.ws73{word-spacing:-32.446400pt;}
.ws2a{word-spacing:-32.434933pt;}
.wsf{word-spacing:-31.996800pt;}
.wsab{word-spacing:-31.808000pt;}
.wsa9{word-spacing:-31.362133pt;}
.ws5f{word-spacing:-31.357600pt;}
.ws61{word-spacing:-31.356800pt;}
.ws4e{word-spacing:-31.168000pt;}
.ws92{word-spacing:-31.166400pt;}
.wsa8{word-spacing:-30.722133pt;}
.ws6f{word-spacing:-30.530133pt;}
.ws9e{word-spacing:-30.460800pt;}
.ws8f{word-spacing:-30.082133pt;}
.ws82{word-spacing:-30.076800pt;}
.ws3b{word-spacing:-29.888000pt;}
.ws66{word-spacing:-29.886133pt;}
.ws7c{word-spacing:-29.884000pt;}
.ws80{word-spacing:-29.880800pt;}
.ws2d{word-spacing:-29.870400pt;}
.ws9a{word-spacing:-29.820800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws9f{word-spacing:-29.684800pt;}
.ws94{word-spacing:-29.436800pt;}
.wsc4{word-spacing:-29.431467pt;}
.ws89{word-spacing:-29.422400pt;}
.ws84{word-spacing:-29.248000pt;}
.ws8a{word-spacing:-29.236800pt;}
.ws9c{word-spacing:-28.804533pt;}
.ws14{word-spacing:-28.610133pt;}
.ws81{word-spacing:-28.604800pt;}
.ws16{word-spacing:-28.598400pt;}
.ws41{word-spacing:-28.287200pt;}
.wsd6{word-spacing:-28.154933pt;}
.ws22{word-spacing:-28.148533pt;}
.ws8e{word-spacing:-27.965600pt;}
.wsb0{word-spacing:-27.964800pt;}
.wsa3{word-spacing:-27.960000pt;}
.ws9b{word-spacing:-27.957333pt;}
.ws70{word-spacing:-27.956800pt;}
.ws23{word-spacing:-27.956533pt;}
.ws4c{word-spacing:-27.768533pt;}
.ws7e{word-spacing:-27.520000pt;}
.wsb1{word-spacing:-27.516533pt;}
.ws3f{word-spacing:-27.328000pt;}
.ws8b{word-spacing:-27.324800pt;}
.wsa1{word-spacing:-27.321067pt;}
.wsb6{word-spacing:-27.260533pt;}
.wsb7{word-spacing:-27.141333pt;}
.ws4f{word-spacing:-26.880000pt;}
.wsb3{word-spacing:-26.876800pt;}
.ws29{word-spacing:-26.673600pt;}
.ws83{word-spacing:-26.620800pt;}
.wscf{word-spacing:-26.496000pt;}
.ws9d{word-spacing:-26.492000pt;}
.wsd9{word-spacing:-26.490667pt;}
.ws64{word-spacing:-26.040800pt;}
.wsd4{word-spacing:-26.040000pt;}
.ws99{word-spacing:-26.036800pt;}
.ws91{word-spacing:-25.848000pt;}
.wsc8{word-spacing:-25.592800pt;}
.ws30{word-spacing:-25.409333pt;}
.ws1a{word-spacing:-25.406400pt;}
.ws2f{word-spacing:-25.392000pt;}
.wsd8{word-spacing:-25.330400pt;}
.ws7f{word-spacing:-24.762400pt;}
.wsc5{word-spacing:-24.756800pt;}
.ws58{word-spacing:-24.319200pt;}
.ws59{word-spacing:-24.317333pt;}
.ws98{word-spacing:-24.128000pt;}
.ws6c{word-spacing:-24.124800pt;}
.ws50{word-spacing:-24.114667pt;}
.wsba{word-spacing:-23.680000pt;}
.wsb8{word-spacing:-23.676800pt;}
.wsa7{word-spacing:-23.484800pt;}
.wsbb{word-spacing:-23.424000pt;}
.ws5a{word-spacing:-23.422933pt;}
.ws75{word-spacing:-23.040000pt;}
.wsbe{word-spacing:-23.033600pt;}
.wsbc{word-spacing:-23.032267pt;}
.ws2c{word-spacing:-22.845600pt;}
.ws4d{word-spacing:-22.656000pt;}
.wsbd{word-spacing:-22.652000pt;}
.ws90{word-spacing:-22.396800pt;}
.ws17{word-spacing:-22.384000pt;}
.ws40{word-spacing:-22.329600pt;}
.ws93{word-spacing:-22.210133pt;}
.ws5e{word-spacing:-22.142933pt;}
.ws6e{word-spacing:-21.573333pt;}
.ws76{word-spacing:-21.570133pt;}
.ws78{word-spacing:-21.566400pt;}
.ws6d{word-spacing:-21.374400pt;}
.ws79{word-spacing:-21.372800pt;}
.ws77{word-spacing:-21.369600pt;}
.ws7a{word-spacing:-21.117600pt;}
.wsb4{word-spacing:-21.116800pt;}
.wsca{word-spacing:-20.928000pt;}
.ws65{word-spacing:-20.921067pt;}
.wsac{word-spacing:-20.482133pt;}
.ws4b{word-spacing:-20.293333pt;}
.ws67{word-spacing:-20.281600pt;}
.ws6b{word-spacing:-20.280800pt;}
.ws10{word-spacing:-19.836800pt;}
.ws63{word-spacing:-19.828000pt;}
.ws7d{word-spacing:-19.644800pt;}
.ws13{word-spacing:-19.196800pt;}
.wsc6{word-spacing:-19.013333pt;}
.ws12{word-spacing:-18.998400pt;}
.ws8c{word-spacing:-18.370133pt;}
.ws7b{word-spacing:-18.368000pt;}
.wsc9{word-spacing:-18.364800pt;}
.ws25{word-spacing:-18.358400pt;}
.wsbf{word-spacing:-17.280000pt;}
.ws1c{word-spacing:-17.082400pt;}
.ws20{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.636800pt;}
.ws5b{word-spacing:-16.444800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws62{word-spacing:-16.005333pt;}
.ws74{word-spacing:-15.797600pt;}
.wsaa{word-spacing:-15.796800pt;}
.ws5d{word-spacing:-15.156800pt;}
.ws33{word-spacing:-14.967200pt;}
.ws32{word-spacing:-14.712800pt;}
.wsc2{word-spacing:-14.520000pt;}
.ws86{word-spacing:-14.509600pt;}
.ws44{word-spacing:-14.080000pt;}
.wsa2{word-spacing:-14.076800pt;}
.ws45{word-spacing:-13.888000pt;}
.ws1e{word-spacing:-13.696000pt;}
.ws57{word-spacing:-13.248000pt;}
.wsc7{word-spacing:-13.171200pt;}
.ws18{word-spacing:-12.800000pt;}
.ws19{word-spacing:-12.796800pt;}
.ws88{word-spacing:-12.608000pt;}
.ws37{word-spacing:-10.693333pt;}
.ws38{word-spacing:-9.775200pt;}
.ws27{word-spacing:-9.398933pt;}
.ws24{word-spacing:-9.391200pt;}
.ws2e{word-spacing:-8.760800pt;}
.ws39{word-spacing:-8.755200pt;}
.ws3a{word-spacing:-8.128000pt;}
.ws36{word-spacing:-6.899200pt;}
.ws35{word-spacing:-6.400000pt;}
.ws85{word-spacing:-6.195200pt;}
.ws49{word-spacing:-6.185067pt;}
.ws48{word-spacing:-5.760000pt;}
.ws47{word-spacing:-5.754667pt;}
.ws11{word-spacing:-2.560000pt;}
.ws28{word-spacing:-1.920000pt;}
.wsd2{word-spacing:-1.728000pt;}
.wsa6{word-spacing:0.000000pt;}
.ws42{word-spacing:0.192000pt;}
.wse{word-spacing:2.944000pt;}
.ws60{word-spacing:3.840000pt;}
.ws55{word-spacing:5.128800pt;}
.ws56{word-spacing:5.314400pt;}
.ws3d{word-spacing:11.072000pt;}
.ws3c{word-spacing:11.138400pt;}
.wsb9{word-spacing:21.125333pt;}
.ws5c{word-spacing:35.200000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1f{width:15.655467pt;}
._4{width:16.689600pt;}
._11{width:17.786133pt;}
._6{width:18.758400pt;}
._20{width:19.706667pt;}
._17{width:20.750933pt;}
._9{width:22.404267pt;}
._1a{width:23.355200pt;}
._10{width:24.305600pt;}
._c{width:25.261867pt;}
._1b{width:26.733333pt;}
._12{width:27.842133pt;}
._a{width:28.752000pt;}
._1e{width:29.662400pt;}
._7{width:30.969600pt;}
._1{width:32.000000pt;}
._8{width:32.915200pt;}
._1d{width:34.937600pt;}
._13{width:35.870133pt;}
._d{width:36.922667pt;}
._b{width:37.952000pt;}
._15{width:40.025600pt;}
._e{width:41.647200pt;}
._16{width:43.060267pt;}
._14{width:44.659200pt;}
._21{width:45.696000pt;}
._22{width:46.656000pt;}
._23{width:48.000000pt;}
._f{width:49.280000pt;}
._5{width:53.626667pt;}
._1c{width:56.355733pt;}
._25{width:57.756267pt;}
._19{width:59.520000pt;}
._18{width:62.090133pt;}
._24{width:63.285867pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y30{bottom:89.988000pt;}
.y79{bottom:91.746667pt;}
.y2f{bottom:108.388000pt;}
.y59{bottom:109.188000pt;}
.y78{bottom:110.146667pt;}
.y2e{bottom:126.788000pt;}
.y91{bottom:127.426667pt;}
.y58{bottom:127.588000pt;}
.y77{bottom:128.546667pt;}
.y2d{bottom:145.188000pt;}
.y57{bottom:145.988000pt;}
.y76{bottom:146.946667pt;}
.y2c{bottom:163.588000pt;}
.y56{bottom:164.388000pt;}
.y75{bottom:165.188000pt;}
.ya2{bottom:181.988000pt;}
.y55{bottom:182.788000pt;}
.y74{bottom:183.588000pt;}
.ya1{bottom:200.388000pt;}
.y2b{bottom:200.706667pt;}
.y54{bottom:201.188000pt;}
.y73{bottom:201.988000pt;}
.ya0{bottom:218.788000pt;}
.y2a{bottom:219.108000pt;}
.y53{bottom:219.588000pt;}
.y72{bottom:220.388000pt;}
.y9f{bottom:237.188000pt;}
.y52{bottom:237.988000pt;}
.y71{bottom:238.788000pt;}
.y29{bottom:256.066667pt;}
.y51{bottom:256.388000pt;}
.y70{bottom:257.188000pt;}
.y9e{bottom:274.308000pt;}
.y28{bottom:274.466667pt;}
.y50{bottom:274.788000pt;}
.y6f{bottom:275.588000pt;}
.y27{bottom:292.866667pt;}
.y4f{bottom:293.188000pt;}
.y6e{bottom:293.988000pt;}
.y26{bottom:311.266667pt;}
.y4e{bottom:311.588000pt;}
.y6d{bottom:312.388000pt;}
.y25{bottom:329.666667pt;}
.y4d{bottom:329.988000pt;}
.y6c{bottom:330.788000pt;}
.y24{bottom:348.066667pt;}
.y6b{bottom:349.188000pt;}
.ybd{bottom:349.508000pt;}
.y23{bottom:366.466667pt;}
.y9d{bottom:366.788000pt;}
.y4c{bottom:367.108000pt;}
.y6a{bottom:367.588000pt;}
.ybc{bottom:367.908000pt;}
.y22{bottom:384.866667pt;}
.y9c{bottom:385.188000pt;}
.y69{bottom:385.988000pt;}
.ybb{bottom:386.308000pt;}
.y21{bottom:403.266667pt;}
.y9b{bottom:403.588000pt;}
.y4b{bottom:404.066667pt;}
.y68{bottom:404.388000pt;}
.yba{bottom:404.706667pt;}
.y90{bottom:411.746667pt;}
.y20{bottom:421.666667pt;}
.y4a{bottom:422.466667pt;}
.y67{bottom:422.788000pt;}
.yb9{bottom:423.108000pt;}
.y8f{bottom:431.266667pt;}
.y1f{bottom:440.066667pt;}
.y9a{bottom:440.708000pt;}
.y49{bottom:440.866667pt;}
.y66{bottom:441.188000pt;}
.yb8{bottom:441.506667pt;}
.y8e{bottom:450.788000pt;}
.y1e{bottom:458.466667pt;}
.y99{bottom:459.108000pt;}
.y65{bottom:459.588000pt;}
.yb7{bottom:459.908000pt;}
.y8d{bottom:470.308000pt;}
.y1d{bottom:476.866667pt;}
.y98{bottom:477.506667pt;}
.y48{bottom:477.988000pt;}
.yb6{bottom:478.308000pt;}
.y8c{bottom:489.826667pt;}
.y1c{bottom:495.266667pt;}
.y47{bottom:496.388000pt;}
.yb5{bottom:496.708000pt;}
.y8b{bottom:509.346667pt;}
.y97{bottom:514.466667pt;}
.y46{bottom:514.788000pt;}
.yb4{bottom:515.108000pt;}
.y1b{bottom:532.388000pt;}
.y96{bottom:532.866667pt;}
.y45{bottom:533.188000pt;}
.yb3{bottom:533.506667pt;}
.y8a{bottom:547.588000pt;}
.y1a{bottom:550.788000pt;}
.y95{bottom:551.266667pt;}
.y44{bottom:551.588000pt;}
.yb2{bottom:551.908000pt;}
.y89{bottom:565.988000pt;}
.y94{bottom:569.666667pt;}
.y43{bottom:569.988000pt;}
.yb1{bottom:570.308000pt;}
.y88{bottom:584.388000pt;}
.y19{bottom:587.908000pt;}
.y93{bottom:588.066667pt;}
.y42{bottom:588.388000pt;}
.yb0{bottom:588.706667pt;}
.y87{bottom:602.788000pt;}
.y18{bottom:606.308000pt;}
.y41{bottom:606.788000pt;}
.yaf{bottom:607.108000pt;}
.y17{bottom:624.706667pt;}
.y40{bottom:625.188000pt;}
.yae{bottom:625.506667pt;}
.y86{bottom:639.908000pt;}
.y16{bottom:643.108000pt;}
.y3f{bottom:643.588000pt;}
.yad{bottom:643.908000pt;}
.y85{bottom:658.308000pt;}
.y15{bottom:661.506667pt;}
.y3e{bottom:661.988000pt;}
.yac{bottom:662.308000pt;}
.y84{bottom:676.706667pt;}
.y14{bottom:679.906667pt;}
.y3d{bottom:680.388000pt;}
.yab{bottom:680.706667pt;}
.y83{bottom:695.108000pt;}
.y13{bottom:698.308000pt;}
.y3c{bottom:698.788000pt;}
.yaa{bottom:699.108000pt;}
.y12{bottom:716.706667pt;}
.y64{bottom:717.188000pt;}
.ya9{bottom:717.506667pt;}
.y82{bottom:732.066667pt;}
.y11{bottom:735.108000pt;}
.y63{bottom:735.588000pt;}
.y3b{bottom:735.906667pt;}
.y81{bottom:750.466667pt;}
.y10{bottom:753.506667pt;}
.y62{bottom:753.988000pt;}
.y3a{bottom:754.308000pt;}
.y80{bottom:768.866667pt;}
.yf{bottom:771.906667pt;}
.y61{bottom:772.388000pt;}
.y39{bottom:772.706667pt;}
.y7f{bottom:787.266667pt;}
.ye{bottom:790.306667pt;}
.y60{bottom:790.788000pt;}
.ya8{bottom:791.106667pt;}
.y7e{bottom:805.666667pt;}
.yd{bottom:808.706667pt;}
.y5f{bottom:809.188000pt;}
.ya7{bottom:809.506667pt;}
.y38{bottom:809.666667pt;}
.y5e{bottom:827.588000pt;}
.y92{bottom:827.906667pt;}
.y37{bottom:828.066667pt;}
.y7d{bottom:842.788000pt;}
.yc{bottom:845.666667pt;}
.y5d{bottom:845.988000pt;}
.ya6{bottom:846.306667pt;}
.y36{bottom:846.466667pt;}
.y7c{bottom:861.188000pt;}
.y5c{bottom:864.388000pt;}
.ya5{bottom:864.706667pt;}
.y35{bottom:864.866667pt;}
.y7b{bottom:880.706667pt;}
.yb{bottom:882.788000pt;}
.ya4{bottom:883.106667pt;}
.y34{bottom:883.266667pt;}
.y7a{bottom:900.388000pt;}
.y5b{bottom:901.188000pt;}
.ya3{bottom:901.506667pt;}
.y33{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y32{bottom:920.066667pt;}
.y5a{bottom:938.306667pt;}
.y31{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h9{height:44.437500pt;}
.h6{height:53.406250pt;}
.h2{height:54.875000pt;}
.h8{height:55.828729pt;}
.h7{height:55.839396pt;}
.ha{height:56.474062pt;}
.hb{height:56.479396pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xe{left:117.440000pt;}
.xd{left:121.440000pt;}
.xf{left:125.440000pt;}
.x9{left:133.440000pt;}
.x4{left:134.400000pt;}
.xb{left:137.440000pt;}
.xa{left:141.440000pt;}
.x8{left:250.878667pt;}
.xc{left:256.160000pt;}
.x5{left:384.800000pt;}
.x3{left:414.066667pt;}
.x7{left:429.600000pt;}
.x6{left:507.360000pt;}
.x2{left:649.920000pt;}
}




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