
    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_cf41bc37f7cf082367f5a3df.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0fcd8d3a8d7c2770e6906f8d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fe3b9e6ae82b4be4eef2f525.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ffe0278cd0e70bbb892fb2aa.woff')format("woff");}.ff4{font-family:ff4;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;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:17.778000px;}
.ls2{letter-spacing:28.800000px;}
.ls1{letter-spacing:29.514000px;}
.ls6{letter-spacing:30.024000px;}
.ls5{letter-spacing:45.144000px;}
.ls3{letter-spacing:109.397700px;}
.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;}
}
.ws14{word-spacing:-55.944000px;}
.wsc5{word-spacing:-38.866500px;}
.wsaa{word-spacing:-38.661000px;}
.wsa9{word-spacing:-38.656800px;}
.ws68{word-spacing:-38.655000px;}
.wsc9{word-spacing:-38.653200px;}
.ws2a{word-spacing:-38.651100px;}
.ws71{word-spacing:-38.647800px;}
.ws60{word-spacing:-38.646600px;}
.ws67{word-spacing:-38.643600px;}
.wsc0{word-spacing:-38.640600px;}
.wscd{word-spacing:-38.631600px;}
.ws6e{word-spacing:-38.569800px;}
.ws69{word-spacing:-38.446800px;}
.ws56{word-spacing:-38.442600px;}
.ws93{word-spacing:-38.440800px;}
.wsc1{word-spacing:-38.439000px;}
.ws9a{word-spacing:-38.437800px;}
.ws42{word-spacing:-38.430900px;}
.wsd2{word-spacing:-38.430000px;}
.wsc2{word-spacing:-38.428200px;}
.ws3{word-spacing:-38.367900px;}
.ws5b{word-spacing:-38.166000px;}
.wsbb{word-spacing:-38.160000px;}
.ws83{word-spacing:-38.154600px;}
.wsc3{word-spacing:-38.154000px;}
.ws35{word-spacing:-38.143800px;}
.ws1c{word-spacing:-38.143200px;}
.ws87{word-spacing:-38.142000px;}
.wsb6{word-spacing:-38.136600px;}
.ws2{word-spacing:-38.081700px;}
.ws5{word-spacing:-38.075400px;}
.ws0{word-spacing:-37.944000px;}
.wsbf{word-spacing:-37.942800px;}
.ws37{word-spacing:-37.939500px;}
.wsa0{word-spacing:-37.938600px;}
.ws41{word-spacing:-37.937400px;}
.ws6d{word-spacing:-37.936800px;}
.ws7b{word-spacing:-37.935000px;}
.ws48{word-spacing:-37.930800px;}
.ws62{word-spacing:-37.929600px;}
.wsbc{word-spacing:-37.922400px;}
.wsc4{word-spacing:-37.918800px;}
.wsbe{word-spacing:-37.857000px;}
.ws20{word-spacing:-37.722600px;}
.ws6{word-spacing:-37.717500px;}
.wsae{word-spacing:-37.713600px;}
.ws7f{word-spacing:-37.710900px;}
.ws8e{word-spacing:-37.706700px;}
.ws2e{word-spacing:-37.644300px;}
.ws99{word-spacing:-37.440000px;}
.wsa5{word-spacing:-37.431000px;}
.wsf{word-spacing:-37.428000px;}
.ws4{word-spacing:-37.423800px;}
.ws81{word-spacing:-37.224000px;}
.ws82{word-spacing:-37.216800px;}
.ws9c{word-spacing:-37.215000px;}
.ws9b{word-spacing:-37.213200px;}
.ws80{word-spacing:-37.211400px;}
.ws13{word-spacing:-36.998100px;}
.ws7c{word-spacing:-36.722400px;}
.ws76{word-spacing:-36.720000px;}
.ws1b{word-spacing:-36.717300px;}
.wsdc{word-spacing:-36.697800px;}
.wsa{word-spacing:-36.489600px;}
.wsb5{word-spacing:-36.286200px;}
.wsa1{word-spacing:-36.280800px;}
.ws4c{word-spacing:-36.278100px;}
.ws5d{word-spacing:-35.996400px;}
.ws4b{word-spacing:-35.784000px;}
.ws17{word-spacing:-35.778600px;}
.ws2f{word-spacing:-35.775000px;}
.ws4d{word-spacing:-35.774400px;}
.wsba{word-spacing:-35.772000px;}
.ws3d{word-spacing:-35.769600px;}
.wsa7{word-spacing:-35.560800px;}
.wse0{word-spacing:-35.559000px;}
.ws5c{word-spacing:-35.545500px;}
.wsb8{word-spacing:-35.276400px;}
.wse1{word-spacing:-35.060400px;}
.ws72{word-spacing:-35.059500px;}
.ws9{word-spacing:-34.335600px;}
.ws88{word-spacing:-34.335000px;}
.ws70{word-spacing:-34.329600px;}
.ws39{word-spacing:-33.611400px;}
.wsde{word-spacing:-32.388300px;}
.wscb{word-spacing:-32.319900px;}
.ws5e{word-spacing:-31.948200px;}
.ws54{word-spacing:-31.893300px;}
.wsce{word-spacing:-31.870800px;}
.ws53{word-spacing:-31.674600px;}
.ws55{word-spacing:-31.663800px;}
.ws19{word-spacing:-31.462200px;}
.wsaf{word-spacing:-31.460100px;}
.wscf{word-spacing:-31.457400px;}
.ws30{word-spacing:-31.453200px;}
.ws18{word-spacing:-31.452000px;}
.ws5f{word-spacing:-31.444200px;}
.ws7a{word-spacing:-31.248000px;}
.ws74{word-spacing:-30.953700px;}
.ws79{word-spacing:-30.746400px;}
.ws73{word-spacing:-30.744000px;}
.ws75{word-spacing:-30.741300px;}
.ws7d{word-spacing:-30.524400px;}
.wsad{word-spacing:-30.517800px;}
.wsd1{word-spacing:-30.231000px;}
.wsdf{word-spacing:-30.022200px;}
.ws9e{word-spacing:-30.021300px;}
.ws6a{word-spacing:-30.015600px;}
.wsd0{word-spacing:-30.005100px;}
.wsb7{word-spacing:-29.800800px;}
.ws24{word-spacing:-29.526000px;}
.ws65{word-spacing:-29.514300px;}
.ws78{word-spacing:-29.509200px;}
.wsb4{word-spacing:-29.505600px;}
.ws64{word-spacing:-29.489400px;}
.ws66{word-spacing:-29.293200px;}
.ws5a{word-spacing:-29.291400px;}
.ws9d{word-spacing:-29.289600px;}
.ws49{word-spacing:-28.796400px;}
.wsb3{word-spacing:-28.777800px;}
.wscc{word-spacing:-28.575000px;}
.ws4a{word-spacing:-28.573200px;}
.wsb2{word-spacing:-28.570800px;}
.ws59{word-spacing:-28.355400px;}
.wsda{word-spacing:-28.291200px;}
.wsdd{word-spacing:-28.069200px;}
.wsa6{word-spacing:-27.864600px;}
.wsdb{word-spacing:-27.859500px;}
.ws8a{word-spacing:-27.849600px;}
.wsd{word-spacing:-27.838800px;}
.ws8b{word-spacing:-27.644400px;}
.ws8c{word-spacing:-27.131400px;}
.ws89{word-spacing:-26.923500px;}
.wsd7{word-spacing:-26.918100px;}
.ws85{word-spacing:-26.627400px;}
.ws52{word-spacing:-26.622000px;}
.wsc6{word-spacing:-26.430000px;}
.ws40{word-spacing:-26.413200px;}
.ws11{word-spacing:-26.409600px;}
.ws84{word-spacing:-26.403600px;}
.ws51{word-spacing:-26.346300px;}
.wsc7{word-spacing:-26.208000px;}
.ws10{word-spacing:-25.917900px;}
.ws22{word-spacing:-25.910100px;}
.ws50{word-spacing:-25.845300px;}
.ws4f{word-spacing:-25.694100px;}
.ws21{word-spacing:-25.200000px;}
.ws3c{word-spacing:-24.969600px;}
.ws1d{word-spacing:-24.469200px;}
.wsd8{word-spacing:-24.258600px;}
.wsd3{word-spacing:-24.258000px;}
.wsab{word-spacing:-24.249000px;}
.ws1e{word-spacing:-24.037200px;}
.ws77{word-spacing:-23.544000px;}
.ws33{word-spacing:-23.539200px;}
.wsb{word-spacing:-23.535600px;}
.ws9f{word-spacing:-23.535000px;}
.wsb0{word-spacing:-23.525100px;}
.wsd9{word-spacing:-22.600800px;}
.ws38{word-spacing:-22.104000px;}
.ws31{word-spacing:-21.373200px;}
.wse{word-spacing:-21.367200px;}
.wsa4{word-spacing:-20.880000px;}
.wsa8{word-spacing:-20.876400px;}
.wsac{word-spacing:-20.646600px;}
.ws2c{word-spacing:-19.944000px;}
.wse2{word-spacing:-19.940400px;}
.ws3f{word-spacing:-19.926600px;}
.ws2b{word-spacing:-19.421100px;}
.ws1a{word-spacing:-19.222200px;}
.ws15{word-spacing:-18.498300px;}
.ws43{word-spacing:-17.996400px;}
.ws44{word-spacing:-17.784000px;}
.wsbd{word-spacing:-17.769600px;}
.wsca{word-spacing:-17.487000px;}
.ws6c{word-spacing:-17.276400px;}
.ws57{word-spacing:-16.834500px;}
.ws58{word-spacing:-16.128000px;}
.ws3a{word-spacing:-16.104600px;}
.ws34{word-spacing:-15.827400px;}
.ws7{word-spacing:-15.101100px;}
.ws8{word-spacing:-14.905500px;}
.ws16{word-spacing:-14.396400px;}
.ws32{word-spacing:-13.464000px;}
.ws1f{word-spacing:-12.731400px;}
.ws28{word-spacing:-12.240000px;}
.wsd5{word-spacing:-11.732400px;}
.ws86{word-spacing:-10.800000px;}
.wsa3{word-spacing:-10.771200px;}
.ws25{word-spacing:-10.584000px;}
.wsd6{word-spacing:-10.062000px;}
.ws61{word-spacing:-9.856800px;}
.ws12{word-spacing:-9.135000px;}
.wsb1{word-spacing:-8.184600px;}
.ws6f{word-spacing:-7.920000px;}
.wsa2{word-spacing:-6.255000px;}
.ws97{word-spacing:-5.529600px;}
.ws3e{word-spacing:-5.031000px;}
.ws96{word-spacing:-4.824000px;}
.ws95{word-spacing:-4.821300px;}
.wsc{word-spacing:-4.784400px;}
.wsd4{word-spacing:-4.320000px;}
.wsb9{word-spacing:-3.574800px;}
.ws29{word-spacing:-3.381000px;}
.ws36{word-spacing:-2.659500px;}
.ws6b{word-spacing:-2.155200px;}
.ws98{word-spacing:-1.942800px;}
.ws7e{word-spacing:-1.210800px;}
.ws46{word-spacing:-0.501000px;}
.ws45{word-spacing:-0.489600px;}
.ws63{word-spacing:0.000000px;}
.ws3b{word-spacing:0.948600px;}
.ws47{word-spacing:3.324600px;}
.ws8d{word-spacing:3.830400px;}
.ws4e{word-spacing:4.552200px;}
.wsc8{word-spacing:5.270100px;}
.ws26{word-spacing:6.201000px;}
.ws23{word-spacing:6.696000px;}
.ws94{word-spacing:8.142000px;}
.ws92{word-spacing:16.782000px;}
.ws2d{word-spacing:24.702000px;}
.ws27{word-spacing:46.656000px;}
.ws90{word-spacing:47.030100px;}
.ws91{word-spacing:50.622000px;}
.wse3{word-spacing:126.930000px;}
.ws8f{word-spacing:216.216000px;}
.ws1{word-spacing:1037.484900px;}
._17{margin-left:-2.054700px;}
._2{margin-left:-1.029600px;}
._0{width:1.076400px;}
._27{width:2.270700px;}
._3{width:17.262000px;}
._1{width:18.968400px;}
._5{width:20.926800px;}
._4{width:22.680000px;}
._22{width:23.682600px;}
._28{width:24.768000px;}
._f{width:25.776000px;}
._12{width:27.504000px;}
._9{width:29.494800px;}
._b{width:30.595800px;}
._11{width:31.797900px;}
._6{width:33.543600px;}
._1a{width:34.843200px;}
._a{width:36.114000px;}
._19{width:37.636200px;}
._d{width:39.024000px;}
._1f{width:40.306500px;}
._1b{width:41.315400px;}
._e{width:42.836400px;}
._10{width:44.771400px;}
._29{width:45.804000px;}
._13{width:46.841400px;}
._c{width:48.004200px;}
._21{width:49.176000px;}
._7{width:52.416000px;}
._8{width:53.492400px;}
._16{width:54.573000px;}
._20{width:55.723200px;}
._1d{width:56.879100px;}
._1c{width:58.010400px;}
._1e{width:60.300900px;}
._23{width:61.605900px;}
._14{width:63.498000px;}
._26{width:65.850300px;}
._25{width:73.770300px;}
._18{width:81.792000px;}
._2a{width:82.800000px;}
._15{width:103.824000px;}
._24{width:107.610300px;}
._2b{width:184.542000px;}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(43,43,43);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:5.686500px;}
.y86{bottom:5.700000px;}
.y98{bottom:5.730000px;}
.y8c{bottom:5.746500px;}
.y90{bottom:5.805000px;}
.y92{bottom:6.511500px;}
.y9a{bottom:6.540000px;}
.y4{bottom:12.240000px;}
.y8e{bottom:16.065000px;}
.y84{bottom:16.140000px;}
.y96{bottom:16.170000px;}
.y8a{bottom:16.186500px;}
.y8f{bottom:26.325000px;}
.y82{bottom:26.400000px;}
.y94{bottom:26.430000px;}
.y8b{bottom:26.446500px;}
.y83{bottom:36.840000px;}
.y95{bottom:36.870000px;}
.y85{bottom:47.100000px;}
.y97{bottom:47.130000px;}
.y3{bottom:63.975000px;}
.y91{bottom:110.025000px;}
.yc9{bottom:110.055000px;}
.y2b{bottom:121.215000px;}
.y58{bottom:123.555000px;}
.yc8{bottom:130.755000px;}
.y8d{bottom:137.550000px;}
.y57{bottom:144.255000px;}
.yc7{bottom:151.455000px;}
.y2a{bottom:162.975000px;}
.y56{bottom:164.955000px;}
.yc6{bottom:172.155000px;}
.y29{bottom:183.675000px;}
.y89{bottom:184.950000px;}
.y55{bottom:185.655000px;}
.yc5{bottom:192.855000px;}
.y28{bottom:204.375000px;}
.y54{bottom:206.175000px;}
.ycf{bottom:207.615000px;}
.yc4{bottom:213.555000px;}
.y53{bottom:226.875000px;}
.yce{bottom:228.315000px;}
.y87{bottom:232.350000px;}
.yc3{bottom:234.255000px;}
.y27{bottom:246.136500px;}
.y52{bottom:247.575000px;}
.ycd{bottom:249.015000px;}
.yc2{bottom:254.955000px;}
.y81{bottom:258.975000px;}
.y26{bottom:266.836500px;}
.y51{bottom:268.275000px;}
.ycc{bottom:269.715000px;}
.yc1{bottom:275.655000px;}
.y25{bottom:287.536500px;}
.y50{bottom:288.975000px;}
.ycb{bottom:290.236500px;}
.yc0{bottom:296.355000px;}
.y24{bottom:308.236500px;}
.y4f{bottom:309.675000px;}
.yca{bottom:310.936500px;}
.ybf{bottom:317.055000px;}
.y23{bottom:328.936500px;}
.y4e{bottom:330.375000px;}
.y80{bottom:331.636500px;}
.ybe{bottom:337.755000px;}
.y22{bottom:349.636500px;}
.y4d{bottom:351.075000px;}
.y7f{bottom:352.336500px;}
.ybd{bottom:358.455000px;}
.y21{bottom:370.336500px;}
.y4c{bottom:371.775000px;}
.y7e{bottom:373.036500px;}
.ybc{bottom:379.155000px;}
.y20{bottom:391.036500px;}
.y4b{bottom:392.475000px;}
.y7d{bottom:393.736500px;}
.ybb{bottom:399.855000px;}
.y1f{bottom:411.736500px;}
.y4a{bottom:413.175000px;}
.y7c{bottom:414.436500px;}
.yba{bottom:420.555000px;}
.y49{bottom:433.875000px;}
.y7b{bottom:435.136500px;}
.yb9{bottom:441.255000px;}
.y1e{bottom:453.315000px;}
.y48{bottom:454.575000px;}
.y7a{bottom:455.836500px;}
.yb8{bottom:461.955000px;}
.y1d{bottom:474.015000px;}
.y47{bottom:475.275000px;}
.y79{bottom:476.536500px;}
.yb7{bottom:482.655000px;}
.y1c{bottom:494.715000px;}
.y46{bottom:495.975000px;}
.y78{bottom:497.236500px;}
.yb6{bottom:503.355000px;}
.y45{bottom:516.675000px;}
.y77{bottom:517.936500px;}
.yb5{bottom:524.055000px;}
.y1b{bottom:536.475000px;}
.y44{bottom:537.375000px;}
.y76{bottom:538.636500px;}
.yb4{bottom:544.755000px;}
.y1a{bottom:557.175000px;}
.y43{bottom:558.075000px;}
.y75{bottom:559.336500px;}
.yb3{bottom:565.455000px;}
.y19{bottom:577.875000px;}
.y42{bottom:578.775000px;}
.y74{bottom:580.036500px;}
.yb2{bottom:586.155000px;}
.y18{bottom:598.575000px;}
.y41{bottom:599.475000px;}
.y73{bottom:600.736500px;}
.yb1{bottom:606.855000px;}
.y17{bottom:619.275000px;}
.y40{bottom:620.175000px;}
.y72{bottom:621.436500px;}
.yb0{bottom:627.555000px;}
.y16{bottom:639.975000px;}
.y3f{bottom:640.875000px;}
.y71{bottom:642.136500px;}
.yaf{bottom:648.255000px;}
.y15{bottom:660.675000px;}
.y70{bottom:662.836500px;}
.yae{bottom:668.955000px;}
.y14{bottom:681.375000px;}
.y3e{bottom:682.636500px;}
.y6f{bottom:683.536500px;}
.yad{bottom:689.655000px;}
.y3d{bottom:703.336500px;}
.y6e{bottom:704.236500px;}
.yac{bottom:710.355000px;}
.y13{bottom:723.136500px;}
.y3c{bottom:724.036500px;}
.y6d{bottom:724.936500px;}
.yab{bottom:731.055000px;}
.y12{bottom:743.836500px;}
.y3b{bottom:744.736500px;}
.y6c{bottom:745.636500px;}
.yaa{bottom:751.755000px;}
.y11{bottom:764.536500px;}
.y3a{bottom:765.436500px;}
.y6b{bottom:766.336500px;}
.ya9{bottom:772.455000px;}
.y39{bottom:786.136500px;}
.y6a{bottom:787.036500px;}
.ya8{bottom:793.155000px;}
.y10{bottom:806.115000px;}
.y69{bottom:807.736500px;}
.ya7{bottom:813.855000px;}
.yf{bottom:826.815000px;}
.y38{bottom:827.895000px;}
.y68{bottom:828.436500px;}
.ya6{bottom:834.555000px;}
.ye{bottom:847.515000px;}
.y37{bottom:848.596500px;}
.y67{bottom:849.136500px;}
.ya5{bottom:855.255000px;}
.yd{bottom:868.215000px;}
.y36{bottom:869.295000px;}
.y66{bottom:869.836500px;}
.ya4{bottom:875.955000px;}
.yc{bottom:888.915000px;}
.y35{bottom:889.995000px;}
.y65{bottom:890.536500px;}
.ya3{bottom:896.655000px;}
.yb{bottom:909.615000px;}
.y34{bottom:910.695000px;}
.y64{bottom:911.236500px;}
.ya2{bottom:917.355000px;}
.ya{bottom:930.315000px;}
.y33{bottom:931.395000px;}
.y63{bottom:931.936500px;}
.ya1{bottom:938.055000px;}
.y9{bottom:951.015000px;}
.y32{bottom:952.095000px;}
.y62{bottom:952.636500px;}
.ya0{bottom:958.755000px;}
.y61{bottom:973.336500px;}
.y9f{bottom:979.455000px;}
.y8{bottom:992.775000px;}
.y31{bottom:993.675000px;}
.y60{bottom:994.036500px;}
.y9e{bottom:1000.155000px;}
.y7{bottom:1013.475000px;}
.y30{bottom:1014.375000px;}
.y5f{bottom:1014.736500px;}
.y9d{bottom:1020.855000px;}
.y2f{bottom:1035.075000px;}
.y5e{bottom:1035.436500px;}
.y9c{bottom:1041.555000px;}
.y2e{bottom:1055.775000px;}
.y5d{bottom:1056.136500px;}
.y9b{bottom:1062.255000px;}
.y2d{bottom:1076.475000px;}
.y5c{bottom:1076.836500px;}
.y99{bottom:1081.275000px;}
.y2c{bottom:1097.175000px;}
.y5b{bottom:1097.536500px;}
.y93{bottom:1108.725000px;}
.y6{bottom:1117.875000px;}
.y5a{bottom:1118.236500px;}
.y59{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h7{height:24.375000px;}
.h9{height:25.200000px;}
.h3{height:32.700000px;}
.h8{height:45.075000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h6{height:66.525000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:155.850000px;}
.w4{width:178.800000px;}
.w5{width:198.000000px;}
.w6{width:240.675000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x9{left:51.300000px;}
.xa{left:73.800000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x7{left:150.300000px;}
.x2{left:160.560000px;}
.xb{left:209.325000px;}
.x6{left:254.520000px;}
.x5{left:366.480000px;}
.xc{left:390.300000px;}
.x8{left:406.438500px;}
.xd{left:590.475000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:15.802667pt;}
.ls2{letter-spacing:25.600000pt;}
.ls1{letter-spacing:26.234667pt;}
.ls6{letter-spacing:26.688000pt;}
.ls5{letter-spacing:40.128000pt;}
.ls3{letter-spacing:97.242400pt;}
.ws14{word-spacing:-49.728000pt;}
.wsc5{word-spacing:-34.548000pt;}
.wsaa{word-spacing:-34.365333pt;}
.wsa9{word-spacing:-34.361600pt;}
.ws68{word-spacing:-34.360000pt;}
.wsc9{word-spacing:-34.358400pt;}
.ws2a{word-spacing:-34.356533pt;}
.ws71{word-spacing:-34.353600pt;}
.ws60{word-spacing:-34.352533pt;}
.ws67{word-spacing:-34.349867pt;}
.wsc0{word-spacing:-34.347200pt;}
.wscd{word-spacing:-34.339200pt;}
.ws6e{word-spacing:-34.284267pt;}
.ws69{word-spacing:-34.174933pt;}
.ws56{word-spacing:-34.171200pt;}
.ws93{word-spacing:-34.169600pt;}
.wsc1{word-spacing:-34.168000pt;}
.ws9a{word-spacing:-34.166933pt;}
.ws42{word-spacing:-34.160800pt;}
.wsd2{word-spacing:-34.160000pt;}
.wsc2{word-spacing:-34.158400pt;}
.ws3{word-spacing:-34.104800pt;}
.ws5b{word-spacing:-33.925333pt;}
.wsbb{word-spacing:-33.920000pt;}
.ws83{word-spacing:-33.915200pt;}
.wsc3{word-spacing:-33.914667pt;}
.ws35{word-spacing:-33.905600pt;}
.ws1c{word-spacing:-33.905067pt;}
.ws87{word-spacing:-33.904000pt;}
.wsb6{word-spacing:-33.899200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws5{word-spacing:-33.844800pt;}
.ws0{word-spacing:-33.728000pt;}
.wsbf{word-spacing:-33.726933pt;}
.ws37{word-spacing:-33.724000pt;}
.wsa0{word-spacing:-33.723200pt;}
.ws41{word-spacing:-33.722133pt;}
.ws6d{word-spacing:-33.721600pt;}
.ws7b{word-spacing:-33.720000pt;}
.ws48{word-spacing:-33.716267pt;}
.ws62{word-spacing:-33.715200pt;}
.wsbc{word-spacing:-33.708800pt;}
.wsc4{word-spacing:-33.705600pt;}
.wsbe{word-spacing:-33.650667pt;}
.ws20{word-spacing:-33.531200pt;}
.ws6{word-spacing:-33.526667pt;}
.wsae{word-spacing:-33.523200pt;}
.ws7f{word-spacing:-33.520800pt;}
.ws8e{word-spacing:-33.517067pt;}
.ws2e{word-spacing:-33.461600pt;}
.ws99{word-spacing:-33.280000pt;}
.wsa5{word-spacing:-33.272000pt;}
.wsf{word-spacing:-33.269333pt;}
.ws4{word-spacing:-33.265600pt;}
.ws81{word-spacing:-33.088000pt;}
.ws82{word-spacing:-33.081600pt;}
.ws9c{word-spacing:-33.080000pt;}
.ws9b{word-spacing:-33.078400pt;}
.ws80{word-spacing:-33.076800pt;}
.ws13{word-spacing:-32.887200pt;}
.ws7c{word-spacing:-32.642133pt;}
.ws76{word-spacing:-32.640000pt;}
.ws1b{word-spacing:-32.637600pt;}
.wsdc{word-spacing:-32.620267pt;}
.wsa{word-spacing:-32.435200pt;}
.wsb5{word-spacing:-32.254400pt;}
.wsa1{word-spacing:-32.249600pt;}
.ws4c{word-spacing:-32.247200pt;}
.ws5d{word-spacing:-31.996800pt;}
.ws4b{word-spacing:-31.808000pt;}
.ws17{word-spacing:-31.803200pt;}
.ws2f{word-spacing:-31.800000pt;}
.ws4d{word-spacing:-31.799467pt;}
.wsba{word-spacing:-31.797333pt;}
.ws3d{word-spacing:-31.795200pt;}
.wsa7{word-spacing:-31.609600pt;}
.wse0{word-spacing:-31.608000pt;}
.ws5c{word-spacing:-31.596000pt;}
.wsb8{word-spacing:-31.356800pt;}
.wse1{word-spacing:-31.164800pt;}
.ws72{word-spacing:-31.164000pt;}
.ws9{word-spacing:-30.520533pt;}
.ws88{word-spacing:-30.520000pt;}
.ws70{word-spacing:-30.515200pt;}
.ws39{word-spacing:-29.876800pt;}
.wsde{word-spacing:-28.789600pt;}
.wscb{word-spacing:-28.728800pt;}
.ws5e{word-spacing:-28.398400pt;}
.ws54{word-spacing:-28.349600pt;}
.wsce{word-spacing:-28.329600pt;}
.ws53{word-spacing:-28.155200pt;}
.ws55{word-spacing:-28.145600pt;}
.ws19{word-spacing:-27.966400pt;}
.wsaf{word-spacing:-27.964533pt;}
.wscf{word-spacing:-27.962133pt;}
.ws30{word-spacing:-27.958400pt;}
.ws18{word-spacing:-27.957333pt;}
.ws5f{word-spacing:-27.950400pt;}
.ws7a{word-spacing:-27.776000pt;}
.ws74{word-spacing:-27.514400pt;}
.ws79{word-spacing:-27.330133pt;}
.ws73{word-spacing:-27.328000pt;}
.ws75{word-spacing:-27.325600pt;}
.ws7d{word-spacing:-27.132800pt;}
.wsad{word-spacing:-27.126933pt;}
.wsd1{word-spacing:-26.872000pt;}
.wsdf{word-spacing:-26.686400pt;}
.ws9e{word-spacing:-26.685600pt;}
.ws6a{word-spacing:-26.680533pt;}
.wsd0{word-spacing:-26.671200pt;}
.wsb7{word-spacing:-26.489600pt;}
.ws24{word-spacing:-26.245333pt;}
.ws65{word-spacing:-26.234933pt;}
.ws78{word-spacing:-26.230400pt;}
.wsb4{word-spacing:-26.227200pt;}
.ws64{word-spacing:-26.212800pt;}
.ws66{word-spacing:-26.038400pt;}
.ws5a{word-spacing:-26.036800pt;}
.ws9d{word-spacing:-26.035200pt;}
.ws49{word-spacing:-25.596800pt;}
.wsb3{word-spacing:-25.580267pt;}
.wscc{word-spacing:-25.400000pt;}
.ws4a{word-spacing:-25.398400pt;}
.wsb2{word-spacing:-25.396267pt;}
.ws59{word-spacing:-25.204800pt;}
.wsda{word-spacing:-25.147733pt;}
.wsdd{word-spacing:-24.950400pt;}
.wsa6{word-spacing:-24.768533pt;}
.wsdb{word-spacing:-24.764000pt;}
.ws8a{word-spacing:-24.755200pt;}
.wsd{word-spacing:-24.745600pt;}
.ws8b{word-spacing:-24.572800pt;}
.ws8c{word-spacing:-24.116800pt;}
.ws89{word-spacing:-23.932000pt;}
.wsd7{word-spacing:-23.927200pt;}
.ws85{word-spacing:-23.668800pt;}
.ws52{word-spacing:-23.664000pt;}
.wsc6{word-spacing:-23.493333pt;}
.ws40{word-spacing:-23.478400pt;}
.ws11{word-spacing:-23.475200pt;}
.ws84{word-spacing:-23.469867pt;}
.ws51{word-spacing:-23.418933pt;}
.wsc7{word-spacing:-23.296000pt;}
.ws10{word-spacing:-23.038133pt;}
.ws22{word-spacing:-23.031200pt;}
.ws50{word-spacing:-22.973600pt;}
.ws4f{word-spacing:-22.839200pt;}
.ws21{word-spacing:-22.400000pt;}
.ws3c{word-spacing:-22.195200pt;}
.ws1d{word-spacing:-21.750400pt;}
.wsd8{word-spacing:-21.563200pt;}
.wsd3{word-spacing:-21.562667pt;}
.wsab{word-spacing:-21.554667pt;}
.ws1e{word-spacing:-21.366400pt;}
.ws77{word-spacing:-20.928000pt;}
.ws33{word-spacing:-20.923733pt;}
.wsb{word-spacing:-20.920533pt;}
.ws9f{word-spacing:-20.920000pt;}
.wsb0{word-spacing:-20.911200pt;}
.wsd9{word-spacing:-20.089600pt;}
.ws38{word-spacing:-19.648000pt;}
.ws31{word-spacing:-18.998400pt;}
.wse{word-spacing:-18.993067pt;}
.wsa4{word-spacing:-18.560000pt;}
.wsa8{word-spacing:-18.556800pt;}
.wsac{word-spacing:-18.352533pt;}
.ws2c{word-spacing:-17.728000pt;}
.wse2{word-spacing:-17.724800pt;}
.ws3f{word-spacing:-17.712533pt;}
.ws2b{word-spacing:-17.263200pt;}
.ws1a{word-spacing:-17.086400pt;}
.ws15{word-spacing:-16.442933pt;}
.ws43{word-spacing:-15.996800pt;}
.ws44{word-spacing:-15.808000pt;}
.wsbd{word-spacing:-15.795200pt;}
.wsca{word-spacing:-15.544000pt;}
.ws6c{word-spacing:-15.356800pt;}
.ws57{word-spacing:-14.964000pt;}
.ws58{word-spacing:-14.336000pt;}
.ws3a{word-spacing:-14.315200pt;}
.ws34{word-spacing:-14.068800pt;}
.ws7{word-spacing:-13.423200pt;}
.ws8{word-spacing:-13.249333pt;}
.ws16{word-spacing:-12.796800pt;}
.ws32{word-spacing:-11.968000pt;}
.ws1f{word-spacing:-11.316800pt;}
.ws28{word-spacing:-10.880000pt;}
.wsd5{word-spacing:-10.428800pt;}
.ws86{word-spacing:-9.600000pt;}
.wsa3{word-spacing:-9.574400pt;}
.ws25{word-spacing:-9.408000pt;}
.wsd6{word-spacing:-8.944000pt;}
.ws61{word-spacing:-8.761600pt;}
.ws12{word-spacing:-8.120000pt;}
.wsb1{word-spacing:-7.275200pt;}
.ws6f{word-spacing:-7.040000pt;}
.wsa2{word-spacing:-5.560000pt;}
.ws97{word-spacing:-4.915200pt;}
.ws3e{word-spacing:-4.472000pt;}
.ws96{word-spacing:-4.288000pt;}
.ws95{word-spacing:-4.285600pt;}
.wsc{word-spacing:-4.252800pt;}
.wsd4{word-spacing:-3.840000pt;}
.wsb9{word-spacing:-3.177600pt;}
.ws29{word-spacing:-3.005333pt;}
.ws36{word-spacing:-2.364000pt;}
.ws6b{word-spacing:-1.915733pt;}
.ws98{word-spacing:-1.726933pt;}
.ws7e{word-spacing:-1.076267pt;}
.ws46{word-spacing:-0.445333pt;}
.ws45{word-spacing:-0.435200pt;}
.ws63{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.843200pt;}
.ws47{word-spacing:2.955200pt;}
.ws8d{word-spacing:3.404800pt;}
.ws4e{word-spacing:4.046400pt;}
.wsc8{word-spacing:4.684533pt;}
.ws26{word-spacing:5.512000pt;}
.ws23{word-spacing:5.952000pt;}
.ws94{word-spacing:7.237333pt;}
.ws92{word-spacing:14.917333pt;}
.ws2d{word-spacing:21.957333pt;}
.ws27{word-spacing:41.472000pt;}
.ws90{word-spacing:41.804533pt;}
.ws91{word-spacing:44.997333pt;}
.wse3{word-spacing:112.826667pt;}
.ws8f{word-spacing:192.192000pt;}
.ws1{word-spacing:922.208800pt;}
._17{margin-left:-1.826400pt;}
._2{margin-left:-0.915200pt;}
._0{width:0.956800pt;}
._27{width:2.018400pt;}
._3{width:15.344000pt;}
._1{width:16.860800pt;}
._5{width:18.601600pt;}
._4{width:20.160000pt;}
._22{width:21.051200pt;}
._28{width:22.016000pt;}
._f{width:22.912000pt;}
._12{width:24.448000pt;}
._9{width:26.217600pt;}
._b{width:27.196267pt;}
._11{width:28.264800pt;}
._6{width:29.816533pt;}
._1a{width:30.971733pt;}
._a{width:32.101333pt;}
._19{width:33.454400pt;}
._d{width:34.688000pt;}
._1f{width:35.828000pt;}
._1b{width:36.724800pt;}
._e{width:38.076800pt;}
._10{width:39.796800pt;}
._29{width:40.714667pt;}
._13{width:41.636800pt;}
._c{width:42.670400pt;}
._21{width:43.712000pt;}
._7{width:46.592000pt;}
._8{width:47.548800pt;}
._16{width:48.509333pt;}
._20{width:49.531733pt;}
._1d{width:50.559200pt;}
._1c{width:51.564800pt;}
._1e{width:53.600800pt;}
._23{width:54.760800pt;}
._14{width:56.442667pt;}
._26{width:58.533600pt;}
._25{width:65.573600pt;}
._18{width:72.704000pt;}
._2a{width:73.600000pt;}
._15{width:92.288000pt;}
._24{width:95.653600pt;}
._2b{width:164.037333pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:5.054667pt;}
.y86{bottom:5.066667pt;}
.y98{bottom:5.093333pt;}
.y8c{bottom:5.108000pt;}
.y90{bottom:5.160000pt;}
.y92{bottom:5.788000pt;}
.y9a{bottom:5.813333pt;}
.y4{bottom:10.880000pt;}
.y8e{bottom:14.280000pt;}
.y84{bottom:14.346667pt;}
.y96{bottom:14.373333pt;}
.y8a{bottom:14.388000pt;}
.y8f{bottom:23.400000pt;}
.y82{bottom:23.466667pt;}
.y94{bottom:23.493333pt;}
.y8b{bottom:23.508000pt;}
.y83{bottom:32.746667pt;}
.y95{bottom:32.773333pt;}
.y85{bottom:41.866667pt;}
.y97{bottom:41.893333pt;}
.y3{bottom:56.866667pt;}
.y91{bottom:97.800000pt;}
.yc9{bottom:97.826667pt;}
.y2b{bottom:107.746667pt;}
.y58{bottom:109.826667pt;}
.yc8{bottom:116.226667pt;}
.y8d{bottom:122.266667pt;}
.y57{bottom:128.226667pt;}
.yc7{bottom:134.626667pt;}
.y2a{bottom:144.866667pt;}
.y56{bottom:146.626667pt;}
.yc6{bottom:153.026667pt;}
.y29{bottom:163.266667pt;}
.y89{bottom:164.400000pt;}
.y55{bottom:165.026667pt;}
.yc5{bottom:171.426667pt;}
.y28{bottom:181.666667pt;}
.y54{bottom:183.266667pt;}
.ycf{bottom:184.546667pt;}
.yc4{bottom:189.826667pt;}
.y53{bottom:201.666667pt;}
.yce{bottom:202.946667pt;}
.y87{bottom:206.533333pt;}
.yc3{bottom:208.226667pt;}
.y27{bottom:218.788000pt;}
.y52{bottom:220.066667pt;}
.ycd{bottom:221.346667pt;}
.yc2{bottom:226.626667pt;}
.y81{bottom:230.200000pt;}
.y26{bottom:237.188000pt;}
.y51{bottom:238.466667pt;}
.ycc{bottom:239.746667pt;}
.yc1{bottom:245.026667pt;}
.y25{bottom:255.588000pt;}
.y50{bottom:256.866667pt;}
.ycb{bottom:257.988000pt;}
.yc0{bottom:263.426667pt;}
.y24{bottom:273.988000pt;}
.y4f{bottom:275.266667pt;}
.yca{bottom:276.388000pt;}
.ybf{bottom:281.826667pt;}
.y23{bottom:292.388000pt;}
.y4e{bottom:293.666667pt;}
.y80{bottom:294.788000pt;}
.ybe{bottom:300.226667pt;}
.y22{bottom:310.788000pt;}
.y4d{bottom:312.066667pt;}
.y7f{bottom:313.188000pt;}
.ybd{bottom:318.626667pt;}
.y21{bottom:329.188000pt;}
.y4c{bottom:330.466667pt;}
.y7e{bottom:331.588000pt;}
.ybc{bottom:337.026667pt;}
.y20{bottom:347.588000pt;}
.y4b{bottom:348.866667pt;}
.y7d{bottom:349.988000pt;}
.ybb{bottom:355.426667pt;}
.y1f{bottom:365.988000pt;}
.y4a{bottom:367.266667pt;}
.y7c{bottom:368.388000pt;}
.yba{bottom:373.826667pt;}
.y49{bottom:385.666667pt;}
.y7b{bottom:386.788000pt;}
.yb9{bottom:392.226667pt;}
.y1e{bottom:402.946667pt;}
.y48{bottom:404.066667pt;}
.y7a{bottom:405.188000pt;}
.yb8{bottom:410.626667pt;}
.y1d{bottom:421.346667pt;}
.y47{bottom:422.466667pt;}
.y79{bottom:423.588000pt;}
.yb7{bottom:429.026667pt;}
.y1c{bottom:439.746667pt;}
.y46{bottom:440.866667pt;}
.y78{bottom:441.988000pt;}
.yb6{bottom:447.426667pt;}
.y45{bottom:459.266667pt;}
.y77{bottom:460.388000pt;}
.yb5{bottom:465.826667pt;}
.y1b{bottom:476.866667pt;}
.y44{bottom:477.666667pt;}
.y76{bottom:478.788000pt;}
.yb4{bottom:484.226667pt;}
.y1a{bottom:495.266667pt;}
.y43{bottom:496.066667pt;}
.y75{bottom:497.188000pt;}
.yb3{bottom:502.626667pt;}
.y19{bottom:513.666667pt;}
.y42{bottom:514.466667pt;}
.y74{bottom:515.588000pt;}
.yb2{bottom:521.026667pt;}
.y18{bottom:532.066667pt;}
.y41{bottom:532.866667pt;}
.y73{bottom:533.988000pt;}
.yb1{bottom:539.426667pt;}
.y17{bottom:550.466667pt;}
.y40{bottom:551.266667pt;}
.y72{bottom:552.388000pt;}
.yb0{bottom:557.826667pt;}
.y16{bottom:568.866667pt;}
.y3f{bottom:569.666667pt;}
.y71{bottom:570.788000pt;}
.yaf{bottom:576.226667pt;}
.y15{bottom:587.266667pt;}
.y70{bottom:589.188000pt;}
.yae{bottom:594.626667pt;}
.y14{bottom:605.666667pt;}
.y3e{bottom:606.788000pt;}
.y6f{bottom:607.588000pt;}
.yad{bottom:613.026667pt;}
.y3d{bottom:625.188000pt;}
.y6e{bottom:625.988000pt;}
.yac{bottom:631.426667pt;}
.y13{bottom:642.788000pt;}
.y3c{bottom:643.588000pt;}
.y6d{bottom:644.388000pt;}
.yab{bottom:649.826667pt;}
.y12{bottom:661.188000pt;}
.y3b{bottom:661.988000pt;}
.y6c{bottom:662.788000pt;}
.yaa{bottom:668.226667pt;}
.y11{bottom:679.588000pt;}
.y3a{bottom:680.388000pt;}
.y6b{bottom:681.188000pt;}
.ya9{bottom:686.626667pt;}
.y39{bottom:698.788000pt;}
.y6a{bottom:699.588000pt;}
.ya8{bottom:705.026667pt;}
.y10{bottom:716.546667pt;}
.y69{bottom:717.988000pt;}
.ya7{bottom:723.426667pt;}
.yf{bottom:734.946667pt;}
.y38{bottom:735.906667pt;}
.y68{bottom:736.388000pt;}
.ya6{bottom:741.826667pt;}
.ye{bottom:753.346667pt;}
.y37{bottom:754.308000pt;}
.y67{bottom:754.788000pt;}
.ya5{bottom:760.226667pt;}
.yd{bottom:771.746667pt;}
.y36{bottom:772.706667pt;}
.y66{bottom:773.188000pt;}
.ya4{bottom:778.626667pt;}
.yc{bottom:790.146667pt;}
.y35{bottom:791.106667pt;}
.y65{bottom:791.588000pt;}
.ya3{bottom:797.026667pt;}
.yb{bottom:808.546667pt;}
.y34{bottom:809.506667pt;}
.y64{bottom:809.988000pt;}
.ya2{bottom:815.426667pt;}
.ya{bottom:826.946667pt;}
.y33{bottom:827.906667pt;}
.y63{bottom:828.388000pt;}
.ya1{bottom:833.826667pt;}
.y9{bottom:845.346667pt;}
.y32{bottom:846.306667pt;}
.y62{bottom:846.788000pt;}
.ya0{bottom:852.226667pt;}
.y61{bottom:865.188000pt;}
.y9f{bottom:870.626667pt;}
.y8{bottom:882.466667pt;}
.y31{bottom:883.266667pt;}
.y60{bottom:883.588000pt;}
.y9e{bottom:889.026667pt;}
.y7{bottom:900.866667pt;}
.y30{bottom:901.666667pt;}
.y5f{bottom:901.988000pt;}
.y9d{bottom:907.426667pt;}
.y2f{bottom:920.066667pt;}
.y5e{bottom:920.388000pt;}
.y9c{bottom:925.826667pt;}
.y2e{bottom:938.466667pt;}
.y5d{bottom:938.788000pt;}
.y9b{bottom:944.226667pt;}
.y2d{bottom:956.866667pt;}
.y5c{bottom:957.188000pt;}
.y99{bottom:961.133333pt;}
.y2c{bottom:975.266667pt;}
.y5b{bottom:975.588000pt;}
.y93{bottom:985.533333pt;}
.y6{bottom:993.666667pt;}
.y5a{bottom:993.988000pt;}
.y59{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h7{height:21.666667pt;}
.h9{height:22.400000pt;}
.h3{height:29.066667pt;}
.h8{height:40.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h6{height:59.133333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:138.533333pt;}
.w4{width:158.933333pt;}
.w5{width:176.000000pt;}
.w6{width:213.933333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x9{left:45.600000pt;}
.xa{left:65.600000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x7{left:133.600000pt;}
.x2{left:142.720000pt;}
.xb{left:186.066667pt;}
.x6{left:226.240000pt;}
.x5{left:325.760000pt;}
.xc{left:346.933333pt;}
.x8{left:361.278667pt;}
.xd{left:524.866667pt;}
}




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