
    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_092f7090577984d495d9a55a.woff2')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_9904c448345d2ef0ec5eceff.woff2')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_96fa533adb54bb77b01c3f4d.woff2')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_fc0526b390b761c092737a15.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;}
.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;}
.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;}
}
.ws7b{word-spacing:-55.944000px;}
.wsc5{word-spacing:-38.863800px;}
.ws1d{word-spacing:-38.668200px;}
.ws6{word-spacing:-38.657700px;}
.ws9e{word-spacing:-38.655600px;}
.ws13{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.wsd4{word-spacing:-38.645100px;}
.ws78{word-spacing:-38.643600px;}
.ws8e{word-spacing:-38.638800px;}
.ws25{word-spacing:-38.448600px;}
.ws7d{word-spacing:-38.445000px;}
.ws8b{word-spacing:-38.439600px;}
.ws8d{word-spacing:-38.439000px;}
.ws74{word-spacing:-38.437200px;}
.wsc{word-spacing:-38.429100px;}
.wsb6{word-spacing:-38.422800px;}
.ws3{word-spacing:-38.374200px;}
.ws8c{word-spacing:-38.160000px;}
.ws56{word-spacing:-38.158200px;}
.wsaa{word-spacing:-38.146500px;}
.wsa{word-spacing:-38.066400px;}
.wsb0{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws7f{word-spacing:-37.943700px;}
.ws4c{word-spacing:-37.942200px;}
.ws16{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.wsb{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.ws3e{word-spacing:-37.920600px;}
.ws7e{word-spacing:-37.732200px;}
.ws9{word-spacing:-37.725000px;}
.ws27{word-spacing:-37.713600px;}
.ws9a{word-spacing:-37.706400px;}
.ws43{word-spacing:-37.440000px;}
.wsc6{word-spacing:-37.223100px;}
.ws31{word-spacing:-37.217400px;}
.ws93{word-spacing:-37.208700px;}
.wsc4{word-spacing:-37.178400px;}
.ws12{word-spacing:-36.997200px;}
.ws81{word-spacing:-36.478800px;}
.ws99{word-spacing:-36.280800px;}
.ws39{word-spacing:-36.275400px;}
.wsbb{word-spacing:-35.274600px;}
.ws49{word-spacing:-35.047800px;}
.ws2f{word-spacing:-34.830000px;}
.ws34{word-spacing:-34.342800px;}
.wsa1{word-spacing:-34.328700px;}
.wsbf{word-spacing:-34.327800px;}
.wsbd{word-spacing:-34.326000px;}
.ws82{word-spacing:-34.320600px;}
.ws4f{word-spacing:-34.114800px;}
.ws57{word-spacing:-33.610500px;}
.ws8{word-spacing:-33.547800px;}
.ws24{word-spacing:-33.543000px;}
.ws5b{word-spacing:-33.400800px;}
.wsaf{word-spacing:-33.120000px;}
.wsb1{word-spacing:-33.103800px;}
.ws68{word-spacing:-32.904000px;}
.ws69{word-spacing:-32.895000px;}
.wsad{word-spacing:-32.682600px;}
.ws1e{word-spacing:-32.400000px;}
.ws50{word-spacing:-32.398200px;}
.ws1f{word-spacing:-32.383800px;}
.ws6e{word-spacing:-32.381400px;}
.wsc0{word-spacing:-32.173800px;}
.ws70{word-spacing:-32.173200px;}
.wscd{word-spacing:-31.680000px;}
.ws21{word-spacing:-31.676400px;}
.wsca{word-spacing:-31.454100px;}
.ws5c{word-spacing:-30.960000px;}
.ws20{word-spacing:-30.954000px;}
.ws60{word-spacing:-30.222900px;}
.ws9c{word-spacing:-30.024000px;}
.ws48{word-spacing:-30.009600px;}
.ws87{word-spacing:-30.000600px;}
.ws4b{word-spacing:-29.801400px;}
.wsc9{word-spacing:-29.794500px;}
.wsa8{word-spacing:-29.498400px;}
.wsb3{word-spacing:-28.796400px;}
.ws46{word-spacing:-28.789800px;}
.ws90{word-spacing:-28.789200px;}
.ws76{word-spacing:-28.582200px;}
.ws42{word-spacing:-28.357200px;}
.ws14{word-spacing:-28.074000px;}
.wsb7{word-spacing:-27.870000px;}
.ws3f{word-spacing:-27.858600px;}
.ws15{word-spacing:-27.846900px;}
.ws3b{word-spacing:-27.356400px;}
.ws64{word-spacing:-27.129600px;}
.ws53{word-spacing:-26.911800px;}
.wsb4{word-spacing:-26.904600px;}
.ws10{word-spacing:-26.410500px;}
.ws40{word-spacing:-26.205000px;}
.ws22{word-spacing:-25.920000px;}
.ws65{word-spacing:-25.707300px;}
.ws86{word-spacing:-25.691400px;}
.ws30{word-spacing:-25.474200px;}
.ws17{word-spacing:-25.200000px;}
.ws98{word-spacing:-25.194000px;}
.wscc{word-spacing:-24.989100px;}
.ws89{word-spacing:-24.981300px;}
.ws2b{word-spacing:-24.757200px;}
.ws18{word-spacing:-24.696000px;}
.ws54{word-spacing:-24.467400px;}
.wsd1{word-spacing:-24.260100px;}
.ws61{word-spacing:-24.245100px;}
.ws55{word-spacing:-23.760000px;}
.ws4a{word-spacing:-23.538600px;}
.ws29{word-spacing:-23.532300px;}
.ws28{word-spacing:-23.529600px;}
.wsb9{word-spacing:-23.317200px;}
.ws6a{word-spacing:-23.022000px;}
.wsc3{word-spacing:-22.815000px;}
.ws7c{word-spacing:-22.804500px;}
.ws72{word-spacing:-22.320000px;}
.ws44{word-spacing:-22.309200px;}
.wsc8{word-spacing:-22.104000px;}
.wsa2{word-spacing:-21.600600px;}
.wsae{word-spacing:-21.373200px;}
.ws71{word-spacing:-21.161400px;}
.wsa6{word-spacing:-20.886000px;}
.wscf{word-spacing:-20.637900px;}
.ws6f{word-spacing:-19.929600px;}
.wsa5{word-spacing:-19.706400px;}
.ws5e{word-spacing:-19.436400px;}
.ws85{word-spacing:-19.213200px;}
.wsac{word-spacing:-19.000800px;}
.wsa3{word-spacing:-18.495000px;}
.wsc2{word-spacing:-18.477600px;}
.ws7{word-spacing:-18.472500px;}
.ws58{word-spacing:-18.286200px;}
.wsd3{word-spacing:-17.784000px;}
.ws19{word-spacing:-17.766900px;}
.wsa9{word-spacing:-16.837200px;}
.ws37{word-spacing:-16.542000px;}
.wsa7{word-spacing:-15.840000px;}
.ws1c{word-spacing:-15.048000px;}
.ws38{word-spacing:-14.896800px;}
.ws63{word-spacing:-14.895600px;}
.ws77{word-spacing:-14.675400px;}
.ws66{word-spacing:-14.400000px;}
.ws23{word-spacing:-14.394000px;}
.ws5a{word-spacing:-13.674000px;}
.ws96{word-spacing:-13.462200px;}
.wsc1{word-spacing:-13.248600px;}
.ws9b{word-spacing:-12.729600px;}
.wsa0{word-spacing:-12.526200px;}
.ws9f{word-spacing:-12.230100px;}
.ws67{word-spacing:-11.797200px;}
.ws9d{word-spacing:-11.520000px;}
.wscb{word-spacing:-11.300400px;}
.ws52{word-spacing:-10.800000px;}
.ws2a{word-spacing:-10.794600px;}
.ws33{word-spacing:-10.581300px;}
.ws5d{word-spacing:-10.575000px;}
.ws73{word-spacing:-10.569600px;}
.wsd0{word-spacing:-9.860400px;}
.ws3c{word-spacing:-9.135600px;}
.ws3a{word-spacing:-8.622900px;}
.wsce{word-spacing:-8.424000px;}
.ws92{word-spacing:-7.477200px;}
.ws2e{word-spacing:-6.749100px;}
.ws88{word-spacing:-6.467400px;}
.ws36{word-spacing:-6.255600px;}
.wsbc{word-spacing:-6.022800px;}
.ws32{word-spacing:-5.760000px;}
.wsd2{word-spacing:-5.547300px;}
.wsc7{word-spacing:-5.541900px;}
.ws11{word-spacing:-5.529600px;}
.ws5f{word-spacing:-4.822200px;}
.ws97{word-spacing:-4.582800px;}
.wsab{word-spacing:-4.294800px;}
.ws41{word-spacing:-3.373800px;}
.ws3d{word-spacing:-2.649600px;}
.ws94{word-spacing:-2.154000px;}
.ws2c{word-spacing:-1.935600px;}
.ws1b{word-spacing:-1.653900px;}
.ws80{word-spacing:-1.440000px;}
.ws95{word-spacing:-0.991800px;}
.wsa4{word-spacing:-0.711000px;}
.ws6b{word-spacing:0.000000px;}
.wsb2{word-spacing:0.010800px;}
.ws83{word-spacing:0.228600px;}
.wsbe{word-spacing:0.940800px;}
.ws1a{word-spacing:1.153200px;}
.ws91{word-spacing:1.462500px;}
.ws75{word-spacing:1.658700px;}
.wsba{word-spacing:1.667400px;}
.ws84{word-spacing:2.181600px;}
.ws79{word-spacing:2.377800px;}
.ws8f{word-spacing:2.378700px;}
.ws35{word-spacing:3.105000px;}
.ws62{word-spacing:4.323600px;}
.ws7a{word-spacing:5.769000px;}
.wsb8{word-spacing:8.869500px;}
.ws45{word-spacing:9.585000px;}
.ws6c{word-spacing:10.305300px;}
.ws51{word-spacing:11.039400px;}
.wse{word-spacing:12.458700px;}
.wsf{word-spacing:13.399200px;}
.wsd{word-spacing:13.680000px;}
.ws26{word-spacing:13.918200px;}
.ws47{word-spacing:16.786800px;}
.wsb5{word-spacing:21.617100px;}
.ws2d{word-spacing:26.652600px;}
.ws6d{word-spacing:27.076800px;}
.ws59{word-spacing:28.521000px;}
.ws4d{word-spacing:30.257100px;}
.ws4e{word-spacing:31.185900px;}
.ws8a{word-spacing:73.669500px;}
.ws1{word-spacing:455.092800px;}
._19{margin-left:-2.298900px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._2f{width:2.363700px;}
._4{width:18.775800px;}
._9{width:20.020800px;}
._8{width:21.085200px;}
._1f{width:22.159800px;}
._11{width:23.448000px;}
._21{width:24.550200px;}
._f{width:25.707600px;}
._1e{width:27.072000px;}
._2a{width:28.202400px;}
._a{width:29.274600px;}
._6{width:30.661800px;}
._15{width:32.098200px;}
._23{width:33.840000px;}
._1b{width:34.963200px;}
._1{width:36.000000px;}
._25{width:37.508400px;}
._29{width:38.599200px;}
._b{width:39.654900px;}
._17{width:40.877100px;}
._e{width:41.904000px;}
._10{width:43.047600px;}
._2c{width:44.397600px;}
._27{width:45.426000px;}
._13{width:46.434600px;}
._18{width:48.936900px;}
._2b{width:50.084400px;}
._7{width:51.459600px;}
._26{width:52.700400px;}
._1a{width:54.420000px;}
._d{width:55.522500px;}
._14{width:56.703900px;}
._2d{width:57.861600px;}
._c{width:58.960800px;}
._16{width:60.327000px;}
._28{width:63.201000px;}
._1c{width:64.467000px;}
._22{width:68.033400px;}
._5{width:69.618600px;}
._12{width:71.041800px;}
._1d{width:74.985600px;}
._2e{width:78.894900px;}
._24{width:85.501800px;}
._20{width:87.623700px;}
._0{width:612.144000px;}
._30{width:1715.760000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y84{bottom:5.640000px;}
.y80{bottom:5.700000px;}
.y79{bottom:5.761500px;}
.y7c{bottom:5.821500px;}
.y86{bottom:6.525000px;}
.y92{bottom:6.646500px;}
.y7d{bottom:16.080000px;}
.y81{bottom:16.140000px;}
.y76{bottom:16.200000px;}
.y93{bottom:16.905000px;}
.y7b{bottom:26.340000px;}
.y7f{bottom:26.400000px;}
.y78{bottom:26.461500px;}
.y91{bottom:27.165000px;}
.y8a{bottom:36.840000px;}
.y75{bottom:36.900000px;}
.y8b{bottom:47.100000px;}
.y77{bottom:47.161500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y5c{bottom:103.396500px;}
.y88{bottom:103.755000px;}
.ya7{bottom:104.115000px;}
.y2e{bottom:121.575000px;}
.y5b{bottom:124.096500px;}
.y87{bottom:124.455000px;}
.ya6{bottom:124.815000px;}
.y2d{bottom:142.275000px;}
.yb7{bottom:143.896500px;}
.y5a{bottom:144.796500px;}
.ya5{bottom:145.515000px;}
.y2c{bottom:162.975000px;}
.y85{bottom:164.550000px;}
.yb6{bottom:164.596500px;}
.y59{bottom:165.496500px;}
.ya4{bottom:166.215000px;}
.y2b{bottom:183.675000px;}
.yb5{bottom:185.296500px;}
.y58{bottom:186.196500px;}
.y83{bottom:192.075000px;}
.y2a{bottom:204.375000px;}
.yb4{bottom:205.996500px;}
.y57{bottom:206.896500px;}
.ya3{bottom:207.975000px;}
.y82{bottom:218.775000px;}
.y29{bottom:225.075000px;}
.yb3{bottom:226.696500px;}
.y56{bottom:227.596500px;}
.ya2{bottom:228.675000px;}
.y7e{bottom:245.475000px;}
.y28{bottom:245.775000px;}
.yb2{bottom:247.396500px;}
.y55{bottom:248.295000px;}
.ya1{bottom:249.375000px;}
.y27{bottom:266.475000px;}
.y54{bottom:268.996500px;}
.ya0{bottom:270.075000px;}
.y26{bottom:287.175000px;}
.yb1{bottom:288.975000px;}
.y53{bottom:289.696500px;}
.y9f{bottom:290.775000px;}
.y7a{bottom:292.875000px;}
.y25{bottom:307.875000px;}
.y52{bottom:310.396500px;}
.y9e{bottom:311.475000px;}
.y24{bottom:328.575000px;}
.yb0{bottom:330.736500px;}
.y51{bottom:331.096500px;}
.y9d{bottom:332.175000px;}
.y74{bottom:340.275000px;}
.y23{bottom:349.275000px;}
.yaf{bottom:351.436500px;}
.y50{bottom:351.795000px;}
.y9c{bottom:352.875000px;}
.yae{bottom:372.136500px;}
.y4f{bottom:372.496500px;}
.y9b{bottom:373.575000px;}
.y22{bottom:391.036500px;}
.yad{bottom:392.836500px;}
.y4e{bottom:393.196500px;}
.y9a{bottom:394.275000px;}
.y21{bottom:411.736500px;}
.yac{bottom:413.536500px;}
.y4d{bottom:413.896500px;}
.y99{bottom:414.975000px;}
.y73{bottom:433.875000px;}
.yab{bottom:434.236500px;}
.y4c{bottom:434.596500px;}
.y98{bottom:435.675000px;}
.y20{bottom:453.496500px;}
.y72{bottom:454.575000px;}
.yaa{bottom:454.936500px;}
.y4b{bottom:455.295000px;}
.y97{bottom:456.375000px;}
.y1f{bottom:474.196500px;}
.ya9{bottom:475.636500px;}
.y4a{bottom:475.996500px;}
.y96{bottom:477.075000px;}
.y1e{bottom:494.896500px;}
.y71{bottom:496.336500px;}
.y49{bottom:496.695000px;}
.y95{bottom:497.775000px;}
.y1d{bottom:515.596500px;}
.y70{bottom:517.036500px;}
.y48{bottom:517.396500px;}
.y94{bottom:518.475000px;}
.y1c{bottom:536.296500px;}
.y6f{bottom:537.736500px;}
.y6e{bottom:558.436500px;}
.y90{bottom:558.450000px;}
.y47{bottom:558.975000px;}
.y1b{bottom:577.875000px;}
.y6d{bottom:579.136500px;}
.y46{bottom:579.675000px;}
.y1a{bottom:598.575000px;}
.y6c{bottom:599.836500px;}
.y45{bottom:600.375000px;}
.y8f{bottom:606.675000px;}
.y6b{bottom:620.536500px;}
.y44{bottom:621.075000px;}
.y8e{bottom:633.375000px;}
.y19{bottom:640.336500px;}
.ya8{bottom:641.236500px;}
.y43{bottom:641.775000px;}
.y8d{bottom:660.075000px;}
.y18{bottom:661.036500px;}
.y6a{bottom:662.295000px;}
.y42{bottom:662.475000px;}
.y17{bottom:681.736500px;}
.y69{bottom:682.996500px;}
.y41{bottom:683.175000px;}
.y16{bottom:702.436500px;}
.y68{bottom:703.695000px;}
.y40{bottom:703.875000px;}
.y8c{bottom:707.475000px;}
.y15{bottom:723.136500px;}
.y67{bottom:724.396500px;}
.y3f{bottom:724.575000px;}
.y14{bottom:743.836500px;}
.y66{bottom:745.096500px;}
.y3e{bottom:745.275000px;}
.y89{bottom:754.875000px;}
.y65{bottom:765.795000px;}
.y3d{bottom:765.975000px;}
.y13{bottom:785.596500px;}
.y64{bottom:786.496500px;}
.y3c{bottom:786.675000px;}
.y12{bottom:806.295000px;}
.y63{bottom:807.195000px;}
.y3b{bottom:807.375000px;}
.y62{bottom:827.895000px;}
.y3a{bottom:828.075000px;}
.y11{bottom:847.875000px;}
.y61{bottom:848.596500px;}
.y39{bottom:848.775000px;}
.y10{bottom:868.575000px;}
.y60{bottom:869.295000px;}
.y38{bottom:869.475000px;}
.yf{bottom:889.275000px;}
.y5f{bottom:889.995000px;}
.y37{bottom:890.175000px;}
.ye{bottom:909.975000px;}
.y5e{bottom:910.695000px;}
.y36{bottom:910.875000px;}
.yd{bottom:930.675000px;}
.y5d{bottom:931.395000px;}
.y35{bottom:931.575000px;}
.yc{bottom:951.375000px;}
.y34{bottom:952.275000px;}
.y33{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y32{bottom:993.675000px;}
.y31{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y30{bottom:1035.075000px;}
.y2f{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;}
.h4{height:20.175000px;}
.h8{height:24.375000px;}
.h9{height:25.200000px;}
.h7{height:45.075000px;}
.h3{height:45.095654px;}
.ha{height:45.900000px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h6{height:66.525000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.wb{width:72.150000px;}
.w6{width:84.675000px;}
.w7{width:99.450000px;}
.w5{width:100.800000px;}
.wa{width:107.925000px;}
.wc{width:108.225000px;}
.w4{width:112.800000px;}
.we{width:118.500000px;}
.wd{width:139.500000px;}
.w8{width:142.950000px;}
.w9{width:148.275000px;}
.w3{width:153.900000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.920000px;}
.x9{left:125.700000px;}
.x1{left:127.620000px;}
.x5{left:155.520000px;}
.x8{left:170.100000px;}
.x4{left:176.400000px;}
.x10{left:276.150000px;}
.xb{left:281.775000px;}
.x11{left:386.250000px;}
.xc{left:396.750000px;}
.x12{left:460.575000px;}
.x3{left:461.625000px;}
.xd{left:499.725000px;}
.x7{left:550.800000px;}
.x6{left:568.080000px;}
.x13{left:570.975000px;}
.xe{left:586.575000px;}
.xf{left:688.200000px;}
.x14{left:712.650000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7b{word-spacing:-49.728000pt;}
.wsc5{word-spacing:-34.545600pt;}
.ws1d{word-spacing:-34.371733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws9e{word-spacing:-34.360533pt;}
.ws13{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.wsd4{word-spacing:-34.351200pt;}
.ws78{word-spacing:-34.349867pt;}
.ws8e{word-spacing:-34.345600pt;}
.ws25{word-spacing:-34.176533pt;}
.ws7d{word-spacing:-34.173333pt;}
.ws8b{word-spacing:-34.168533pt;}
.ws8d{word-spacing:-34.168000pt;}
.ws74{word-spacing:-34.166400pt;}
.wsc{word-spacing:-34.159200pt;}
.wsb6{word-spacing:-34.153600pt;}
.ws3{word-spacing:-34.110400pt;}
.ws8c{word-spacing:-33.920000pt;}
.ws56{word-spacing:-33.918400pt;}
.wsaa{word-spacing:-33.908000pt;}
.wsa{word-spacing:-33.836800pt;}
.wsb0{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws7f{word-spacing:-33.727733pt;}
.ws4c{word-spacing:-33.726400pt;}
.ws16{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.wsb{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.ws3e{word-spacing:-33.707200pt;}
.ws7e{word-spacing:-33.539733pt;}
.ws9{word-spacing:-33.533333pt;}
.ws27{word-spacing:-33.523200pt;}
.ws9a{word-spacing:-33.516800pt;}
.ws43{word-spacing:-33.280000pt;}
.wsc6{word-spacing:-33.087200pt;}
.ws31{word-spacing:-33.082133pt;}
.ws93{word-spacing:-33.074400pt;}
.wsc4{word-spacing:-33.047467pt;}
.ws12{word-spacing:-32.886400pt;}
.ws81{word-spacing:-32.425600pt;}
.ws99{word-spacing:-32.249600pt;}
.ws39{word-spacing:-32.244800pt;}
.wsbb{word-spacing:-31.355200pt;}
.ws49{word-spacing:-31.153600pt;}
.ws2f{word-spacing:-30.960000pt;}
.ws34{word-spacing:-30.526933pt;}
.wsa1{word-spacing:-30.514400pt;}
.wsbf{word-spacing:-30.513600pt;}
.wsbd{word-spacing:-30.512000pt;}
.ws82{word-spacing:-30.507200pt;}
.ws4f{word-spacing:-30.324267pt;}
.ws57{word-spacing:-29.876000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws24{word-spacing:-29.816000pt;}
.ws5b{word-spacing:-29.689600pt;}
.wsaf{word-spacing:-29.440000pt;}
.wsb1{word-spacing:-29.425600pt;}
.ws68{word-spacing:-29.248000pt;}
.ws69{word-spacing:-29.240000pt;}
.wsad{word-spacing:-29.051200pt;}
.ws1e{word-spacing:-28.800000pt;}
.ws50{word-spacing:-28.798400pt;}
.ws1f{word-spacing:-28.785600pt;}
.ws6e{word-spacing:-28.783467pt;}
.wsc0{word-spacing:-28.598933pt;}
.ws70{word-spacing:-28.598400pt;}
.wscd{word-spacing:-28.160000pt;}
.ws21{word-spacing:-28.156800pt;}
.wsca{word-spacing:-27.959200pt;}
.ws5c{word-spacing:-27.520000pt;}
.ws20{word-spacing:-27.514667pt;}
.ws60{word-spacing:-26.864800pt;}
.ws9c{word-spacing:-26.688000pt;}
.ws48{word-spacing:-26.675200pt;}
.ws87{word-spacing:-26.667200pt;}
.ws4b{word-spacing:-26.490133pt;}
.wsc9{word-spacing:-26.484000pt;}
.wsa8{word-spacing:-26.220800pt;}
.wsb3{word-spacing:-25.596800pt;}
.ws46{word-spacing:-25.590933pt;}
.ws90{word-spacing:-25.590400pt;}
.ws76{word-spacing:-25.406400pt;}
.ws42{word-spacing:-25.206400pt;}
.ws14{word-spacing:-24.954667pt;}
.wsb7{word-spacing:-24.773333pt;}
.ws3f{word-spacing:-24.763200pt;}
.ws15{word-spacing:-24.752800pt;}
.ws3b{word-spacing:-24.316800pt;}
.ws64{word-spacing:-24.115200pt;}
.ws53{word-spacing:-23.921600pt;}
.wsb4{word-spacing:-23.915200pt;}
.ws10{word-spacing:-23.476000pt;}
.ws40{word-spacing:-23.293333pt;}
.ws22{word-spacing:-23.040000pt;}
.ws65{word-spacing:-22.850933pt;}
.ws86{word-spacing:-22.836800pt;}
.ws30{word-spacing:-22.643733pt;}
.ws17{word-spacing:-22.400000pt;}
.ws98{word-spacing:-22.394667pt;}
.wscc{word-spacing:-22.212533pt;}
.ws89{word-spacing:-22.205600pt;}
.ws2b{word-spacing:-22.006400pt;}
.ws18{word-spacing:-21.952000pt;}
.ws54{word-spacing:-21.748800pt;}
.wsd1{word-spacing:-21.564533pt;}
.ws61{word-spacing:-21.551200pt;}
.ws55{word-spacing:-21.120000pt;}
.ws4a{word-spacing:-20.923200pt;}
.ws29{word-spacing:-20.917600pt;}
.ws28{word-spacing:-20.915200pt;}
.wsb9{word-spacing:-20.726400pt;}
.ws6a{word-spacing:-20.464000pt;}
.wsc3{word-spacing:-20.280000pt;}
.ws7c{word-spacing:-20.270667pt;}
.ws72{word-spacing:-19.840000pt;}
.ws44{word-spacing:-19.830400pt;}
.wsc8{word-spacing:-19.648000pt;}
.wsa2{word-spacing:-19.200533pt;}
.wsae{word-spacing:-18.998400pt;}
.ws71{word-spacing:-18.810133pt;}
.wsa6{word-spacing:-18.565333pt;}
.wscf{word-spacing:-18.344800pt;}
.ws6f{word-spacing:-17.715200pt;}
.wsa5{word-spacing:-17.516800pt;}
.ws5e{word-spacing:-17.276800pt;}
.ws85{word-spacing:-17.078400pt;}
.wsac{word-spacing:-16.889600pt;}
.wsa3{word-spacing:-16.440000pt;}
.wsc2{word-spacing:-16.424533pt;}
.ws7{word-spacing:-16.420000pt;}
.ws58{word-spacing:-16.254400pt;}
.wsd3{word-spacing:-15.808000pt;}
.ws19{word-spacing:-15.792800pt;}
.wsa9{word-spacing:-14.966400pt;}
.ws37{word-spacing:-14.704000pt;}
.wsa7{word-spacing:-14.080000pt;}
.ws1c{word-spacing:-13.376000pt;}
.ws38{word-spacing:-13.241600pt;}
.ws63{word-spacing:-13.240533pt;}
.ws77{word-spacing:-13.044800pt;}
.ws66{word-spacing:-12.800000pt;}
.ws23{word-spacing:-12.794667pt;}
.ws5a{word-spacing:-12.154667pt;}
.ws96{word-spacing:-11.966400pt;}
.wsc1{word-spacing:-11.776533pt;}
.ws9b{word-spacing:-11.315200pt;}
.wsa0{word-spacing:-11.134400pt;}
.ws9f{word-spacing:-10.871200pt;}
.ws67{word-spacing:-10.486400pt;}
.ws9d{word-spacing:-10.240000pt;}
.wscb{word-spacing:-10.044800pt;}
.ws52{word-spacing:-9.600000pt;}
.ws2a{word-spacing:-9.595200pt;}
.ws33{word-spacing:-9.405600pt;}
.ws5d{word-spacing:-9.400000pt;}
.ws73{word-spacing:-9.395200pt;}
.wsd0{word-spacing:-8.764800pt;}
.ws3c{word-spacing:-8.120533pt;}
.ws3a{word-spacing:-7.664800pt;}
.wsce{word-spacing:-7.488000pt;}
.ws92{word-spacing:-6.646400pt;}
.ws2e{word-spacing:-5.999200pt;}
.ws88{word-spacing:-5.748800pt;}
.ws36{word-spacing:-5.560533pt;}
.wsbc{word-spacing:-5.353600pt;}
.ws32{word-spacing:-5.120000pt;}
.wsd2{word-spacing:-4.930933pt;}
.wsc7{word-spacing:-4.926133pt;}
.ws11{word-spacing:-4.915200pt;}
.ws5f{word-spacing:-4.286400pt;}
.ws97{word-spacing:-4.073600pt;}
.wsab{word-spacing:-3.817600pt;}
.ws41{word-spacing:-2.998933pt;}
.ws3d{word-spacing:-2.355200pt;}
.ws94{word-spacing:-1.914667pt;}
.ws2c{word-spacing:-1.720533pt;}
.ws1b{word-spacing:-1.470133pt;}
.ws80{word-spacing:-1.280000pt;}
.ws95{word-spacing:-0.881600pt;}
.wsa4{word-spacing:-0.632000pt;}
.ws6b{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.009600pt;}
.ws83{word-spacing:0.203200pt;}
.wsbe{word-spacing:0.836267pt;}
.ws1a{word-spacing:1.025067pt;}
.ws91{word-spacing:1.300000pt;}
.ws75{word-spacing:1.474400pt;}
.wsba{word-spacing:1.482133pt;}
.ws84{word-spacing:1.939200pt;}
.ws79{word-spacing:2.113600pt;}
.ws8f{word-spacing:2.114400pt;}
.ws35{word-spacing:2.760000pt;}
.ws62{word-spacing:3.843200pt;}
.ws7a{word-spacing:5.128000pt;}
.wsb8{word-spacing:7.884000pt;}
.ws45{word-spacing:8.520000pt;}
.ws6c{word-spacing:9.160267pt;}
.ws51{word-spacing:9.812800pt;}
.wse{word-spacing:11.074400pt;}
.wsf{word-spacing:11.910400pt;}
.wsd{word-spacing:12.160000pt;}
.ws26{word-spacing:12.371733pt;}
.ws47{word-spacing:14.921600pt;}
.wsb5{word-spacing:19.215200pt;}
.ws2d{word-spacing:23.691200pt;}
.ws6d{word-spacing:24.068267pt;}
.ws59{word-spacing:25.352000pt;}
.ws4d{word-spacing:26.895200pt;}
.ws4e{word-spacing:27.720800pt;}
.ws8a{word-spacing:65.484000pt;}
.ws1{word-spacing:404.526933pt;}
._19{margin-left:-2.043467pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._2f{width:2.101067pt;}
._4{width:16.689600pt;}
._9{width:17.796267pt;}
._8{width:18.742400pt;}
._1f{width:19.697600pt;}
._11{width:20.842667pt;}
._21{width:21.822400pt;}
._f{width:22.851200pt;}
._1e{width:24.064000pt;}
._2a{width:25.068800pt;}
._a{width:26.021867pt;}
._6{width:27.254933pt;}
._15{width:28.531733pt;}
._23{width:30.080000pt;}
._1b{width:31.078400pt;}
._1{width:32.000000pt;}
._25{width:33.340800pt;}
._29{width:34.310400pt;}
._b{width:35.248800pt;}
._17{width:36.335200pt;}
._e{width:37.248000pt;}
._10{width:38.264533pt;}
._2c{width:39.464533pt;}
._27{width:40.378667pt;}
._13{width:41.275200pt;}
._18{width:43.499467pt;}
._2b{width:44.519467pt;}
._7{width:45.741867pt;}
._26{width:46.844800pt;}
._1a{width:48.373333pt;}
._d{width:49.353333pt;}
._14{width:50.403467pt;}
._2d{width:51.432533pt;}
._c{width:52.409600pt;}
._16{width:53.624000pt;}
._28{width:56.178667pt;}
._1c{width:57.304000pt;}
._22{width:60.474133pt;}
._5{width:61.883200pt;}
._12{width:63.148267pt;}
._1d{width:66.653867pt;}
._2e{width:70.128800pt;}
._24{width:76.001600pt;}
._20{width:77.887733pt;}
._0{width:544.128000pt;}
._30{width:1525.120000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y84{bottom:5.013333pt;}
.y80{bottom:5.066667pt;}
.y79{bottom:5.121333pt;}
.y7c{bottom:5.174667pt;}
.y86{bottom:5.800000pt;}
.y92{bottom:5.908000pt;}
.y7d{bottom:14.293333pt;}
.y81{bottom:14.346667pt;}
.y76{bottom:14.400000pt;}
.y93{bottom:15.026667pt;}
.y7b{bottom:23.413333pt;}
.y7f{bottom:23.466667pt;}
.y78{bottom:23.521333pt;}
.y91{bottom:24.146667pt;}
.y8a{bottom:32.746667pt;}
.y75{bottom:32.800000pt;}
.y8b{bottom:41.866667pt;}
.y77{bottom:41.921333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y5c{bottom:91.908000pt;}
.y88{bottom:92.226667pt;}
.ya7{bottom:92.546667pt;}
.y2e{bottom:108.066667pt;}
.y5b{bottom:110.308000pt;}
.y87{bottom:110.626667pt;}
.ya6{bottom:110.946667pt;}
.y2d{bottom:126.466667pt;}
.yb7{bottom:127.908000pt;}
.y5a{bottom:128.708000pt;}
.ya5{bottom:129.346667pt;}
.y2c{bottom:144.866667pt;}
.y85{bottom:146.266667pt;}
.yb6{bottom:146.308000pt;}
.y59{bottom:147.108000pt;}
.ya4{bottom:147.746667pt;}
.y2b{bottom:163.266667pt;}
.yb5{bottom:164.708000pt;}
.y58{bottom:165.508000pt;}
.y83{bottom:170.733333pt;}
.y2a{bottom:181.666667pt;}
.yb4{bottom:183.108000pt;}
.y57{bottom:183.908000pt;}
.ya3{bottom:184.866667pt;}
.y82{bottom:194.466667pt;}
.y29{bottom:200.066667pt;}
.yb3{bottom:201.508000pt;}
.y56{bottom:202.308000pt;}
.ya2{bottom:203.266667pt;}
.y7e{bottom:218.200000pt;}
.y28{bottom:218.466667pt;}
.yb2{bottom:219.908000pt;}
.y55{bottom:220.706667pt;}
.ya1{bottom:221.666667pt;}
.y27{bottom:236.866667pt;}
.y54{bottom:239.108000pt;}
.ya0{bottom:240.066667pt;}
.y26{bottom:255.266667pt;}
.yb1{bottom:256.866667pt;}
.y53{bottom:257.508000pt;}
.y9f{bottom:258.466667pt;}
.y7a{bottom:260.333333pt;}
.y25{bottom:273.666667pt;}
.y52{bottom:275.908000pt;}
.y9e{bottom:276.866667pt;}
.y24{bottom:292.066667pt;}
.yb0{bottom:293.988000pt;}
.y51{bottom:294.308000pt;}
.y9d{bottom:295.266667pt;}
.y74{bottom:302.466667pt;}
.y23{bottom:310.466667pt;}
.yaf{bottom:312.388000pt;}
.y50{bottom:312.706667pt;}
.y9c{bottom:313.666667pt;}
.yae{bottom:330.788000pt;}
.y4f{bottom:331.108000pt;}
.y9b{bottom:332.066667pt;}
.y22{bottom:347.588000pt;}
.yad{bottom:349.188000pt;}
.y4e{bottom:349.508000pt;}
.y9a{bottom:350.466667pt;}
.y21{bottom:365.988000pt;}
.yac{bottom:367.588000pt;}
.y4d{bottom:367.908000pt;}
.y99{bottom:368.866667pt;}
.y73{bottom:385.666667pt;}
.yab{bottom:385.988000pt;}
.y4c{bottom:386.308000pt;}
.y98{bottom:387.266667pt;}
.y20{bottom:403.108000pt;}
.y72{bottom:404.066667pt;}
.yaa{bottom:404.388000pt;}
.y4b{bottom:404.706667pt;}
.y97{bottom:405.666667pt;}
.y1f{bottom:421.508000pt;}
.ya9{bottom:422.788000pt;}
.y4a{bottom:423.108000pt;}
.y96{bottom:424.066667pt;}
.y1e{bottom:439.908000pt;}
.y71{bottom:441.188000pt;}
.y49{bottom:441.506667pt;}
.y95{bottom:442.466667pt;}
.y1d{bottom:458.308000pt;}
.y70{bottom:459.588000pt;}
.y48{bottom:459.908000pt;}
.y94{bottom:460.866667pt;}
.y1c{bottom:476.708000pt;}
.y6f{bottom:477.988000pt;}
.y6e{bottom:496.388000pt;}
.y90{bottom:496.400000pt;}
.y47{bottom:496.866667pt;}
.y1b{bottom:513.666667pt;}
.y6d{bottom:514.788000pt;}
.y46{bottom:515.266667pt;}
.y1a{bottom:532.066667pt;}
.y6c{bottom:533.188000pt;}
.y45{bottom:533.666667pt;}
.y8f{bottom:539.266667pt;}
.y6b{bottom:551.588000pt;}
.y44{bottom:552.066667pt;}
.y8e{bottom:563.000000pt;}
.y19{bottom:569.188000pt;}
.ya8{bottom:569.988000pt;}
.y43{bottom:570.466667pt;}
.y8d{bottom:586.733333pt;}
.y18{bottom:587.588000pt;}
.y6a{bottom:588.706667pt;}
.y42{bottom:588.866667pt;}
.y17{bottom:605.988000pt;}
.y69{bottom:607.108000pt;}
.y41{bottom:607.266667pt;}
.y16{bottom:624.388000pt;}
.y68{bottom:625.506667pt;}
.y40{bottom:625.666667pt;}
.y8c{bottom:628.866667pt;}
.y15{bottom:642.788000pt;}
.y67{bottom:643.908000pt;}
.y3f{bottom:644.066667pt;}
.y14{bottom:661.188000pt;}
.y66{bottom:662.308000pt;}
.y3e{bottom:662.466667pt;}
.y89{bottom:671.000000pt;}
.y65{bottom:680.706667pt;}
.y3d{bottom:680.866667pt;}
.y13{bottom:698.308000pt;}
.y64{bottom:699.108000pt;}
.y3c{bottom:699.266667pt;}
.y12{bottom:716.706667pt;}
.y63{bottom:717.506667pt;}
.y3b{bottom:717.666667pt;}
.y62{bottom:735.906667pt;}
.y3a{bottom:736.066667pt;}
.y11{bottom:753.666667pt;}
.y61{bottom:754.308000pt;}
.y39{bottom:754.466667pt;}
.y10{bottom:772.066667pt;}
.y60{bottom:772.706667pt;}
.y38{bottom:772.866667pt;}
.yf{bottom:790.466667pt;}
.y5f{bottom:791.106667pt;}
.y37{bottom:791.266667pt;}
.ye{bottom:808.866667pt;}
.y5e{bottom:809.506667pt;}
.y36{bottom:809.666667pt;}
.yd{bottom:827.266667pt;}
.y5d{bottom:827.906667pt;}
.y35{bottom:828.066667pt;}
.yc{bottom:845.666667pt;}
.y34{bottom:846.466667pt;}
.y33{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y32{bottom:883.266667pt;}
.y31{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y30{bottom:920.066667pt;}
.y2f{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;}
.h4{height:17.933333pt;}
.h8{height:21.666667pt;}
.h9{height:22.400000pt;}
.h7{height:40.066667pt;}
.h3{height:40.085026pt;}
.ha{height:40.800000pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h6{height:59.133333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.wb{width:64.133333pt;}
.w6{width:75.266667pt;}
.w7{width:88.400000pt;}
.w5{width:89.600000pt;}
.wa{width:95.933333pt;}
.wc{width:96.200000pt;}
.w4{width:100.266667pt;}
.we{width:105.333333pt;}
.wd{width:124.000000pt;}
.w8{width:127.066667pt;}
.w9{width:131.800000pt;}
.w3{width:136.800000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.706667pt;}
.x9{left:111.733333pt;}
.x1{left:113.440000pt;}
.x5{left:138.240000pt;}
.x8{left:151.200000pt;}
.x4{left:156.800000pt;}
.x10{left:245.466667pt;}
.xb{left:250.466667pt;}
.x11{left:343.333333pt;}
.xc{left:352.666667pt;}
.x12{left:409.400000pt;}
.x3{left:410.333333pt;}
.xd{left:444.200000pt;}
.x7{left:489.600000pt;}
.x6{left:504.960000pt;}
.x13{left:507.533333pt;}
.xe{left:521.400000pt;}
.xf{left:611.733333pt;}
.x14{left:633.466667pt;}
.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; }
  