
    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_95d6197c9baa1c422c31c98c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_c952e391d5ea7f2928d3fd67.woff')format("woff");}.ff2{font-family:ff2;line-height:0.964844;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_a9e15e60173f678e227c3023.woff')format("woff");}.ff3{font-family:ff3;line-height:0.947000;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_8ecce08a190fef74f2a1bf88.woff')format("woff");}.ff4{font-family:ff4;line-height:2.098145;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_1e05374566a93840a556e3d7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678000;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_af9929e873608d3cfcb085f7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b77147bb282761e38afaf2e6.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e6348381d68f441934523ff.woff')format("woff");}.ff8{font-family:ff8;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4ef276d78d3a6fd351603e8f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_105d8b36cef50041aba5e8d9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.799805;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:ffb;src:url('chunks/assets/font_48b5a7de86f0f0342429d3f7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.678000;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:ffc;src:url('chunks/assets/font_f52a3ec09177dbd9f18bfe83.woff')format("woff");}.ffc{font-family:ffc;line-height:0.766113;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);}
.v0{vertical-align:0.000000px;}
.va{vertical-align:15.662400px;}
.vb{vertical-align:20.041800px;}
.v3{vertical-align:22.059600px;}
.v7{vertical-align:24.817200px;}
.v8{vertical-align:29.180400px;}
.v1{vertical-align:48.815400px;}
.v4{vertical-align:56.516400px;}
.v9{vertical-align:63.637200px;}
.v2{vertical-align:70.875600px;}
.vc{vertical-align:81.334200px;}
.v5{vertical-align:105.331800px;}
.v6{vertical-align:127.392000px;}
.lsd{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000240px;}
.ls26{letter-spacing:0.003840px;}
.ls29{letter-spacing:0.004440px;}
.ls6{letter-spacing:0.005220px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.005460px;}
.ls5{letter-spacing:0.005520px;}
.lsf{letter-spacing:0.005616px;}
.ls2{letter-spacing:0.006000px;}
.ls35{letter-spacing:0.007776px;}
.ls19{letter-spacing:2.159640px;}
.ls27{letter-spacing:2.159846px;}
.ls15{letter-spacing:2.160240px;}
.ls28{letter-spacing:2.160446px;}
.ls34{letter-spacing:2.381184px;}
.lse{letter-spacing:2.398464px;}
.ls37{letter-spacing:6.005460px;}
.ls8{letter-spacing:12.000000px;}
.ls2a{letter-spacing:12.000120px;}
.lsb{letter-spacing:12.005400px;}
.ls1a{letter-spacing:12.005700px;}
.ls11{letter-spacing:12.006000px;}
.ls25{letter-spacing:12.662246px;}
.ls23{letter-spacing:12.662846px;}
.ls10{letter-spacing:14.159640px;}
.ls14{letter-spacing:14.160240px;}
.ls30{letter-spacing:14.792340px;}
.ls18{letter-spacing:14.792400px;}
.ls1c{letter-spacing:14.792580px;}
.ls17{letter-spacing:14.793000px;}
.ls16{letter-spacing:14.797800px;}
.ls13{letter-spacing:14.798400px;}
.ls12{letter-spacing:16.952040px;}
.lsc{letter-spacing:16.952640px;}
.ls2e{letter-spacing:16.952820px;}
.ls33{letter-spacing:18.000000px;}
.ls3{letter-spacing:18.005400px;}
.ls32{letter-spacing:18.005520px;}
.ls4{letter-spacing:18.012000px;}
.ls9{letter-spacing:22.114200px;}
.ls22{letter-spacing:22.114800px;}
.lsa{letter-spacing:24.269040px;}
.ls2f{letter-spacing:31.745040px;}
.ls36{letter-spacing:32.798040px;}
.ls31{letter-spacing:33.701400px;}
.ls1f{letter-spacing:51.706800px;}
.ls21{letter-spacing:89.198400px;}
.ls1b{letter-spacing:92.628000px;}
.ls2b{letter-spacing:92.628600px;}
.ls2d{letter-spacing:94.782240px;}
.ls1d{letter-spacing:94.782840px;}
.ls7{letter-spacing:95.835600px;}
.ls20{letter-spacing:109.244400px;}
.ls2c{letter-spacing:179.206440px;}
.ls1e{letter-spacing:527.616840px;}
.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:-24.192000px;}
.ws0{word-spacing:-17.280000px;}
.ws12{word-spacing:-14.784000px;}
.ws19{word-spacing:-2.415744px;}
.wsc{word-spacing:-0.086400px;}
.ws5{word-spacing:-0.061776px;}
.ws11{word-spacing:-0.061560px;}
.ws1{word-spacing:-0.056160px;}
.wsd{word-spacing:-0.039874px;}
.ws1a{word-spacing:-0.038880px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:10.462766px;}
.ws10{word-spacing:10.463006px;}
.wse{word-spacing:10.463366px;}
.ws4{word-spacing:11.943840px;}
.wsb{word-spacing:11.944140px;}
.ws8{word-spacing:14.736240px;}
.ws7{word-spacing:14.736360px;}
.ws9{word-spacing:14.736420px;}
.wsa{word-spacing:14.736840px;}
.ws2{word-spacing:17.943840px;}
.ws3{word-spacing:17.949240px;}
.ws16{word-spacing:29.523192px;}
.ws18{word-spacing:32.736360px;}
.ws15{word-spacing:33.633972px;}
.ws17{word-spacing:33.639840px;}
.ws13{word-spacing:39.650820px;}
._1{width:6.011460px;}
._2{width:12.005400px;}
._3{width:14.798400px;}
._4{width:17.999820px;}
._0{width:32.803200px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(194,75,22);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(198,108,41);}
.fs4{font-size:28.310256px;}
.fs1{font-size:34.560000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:39.873600px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:51.840000px;}
.fs2{font-size:56.160000px;}
.fs0{font-size:86.400000px;}
.fs7{font-size:120.960000px;}
.y8d{bottom:-1144.205055px;}
.y0{bottom:0.000000px;}
.ydb{bottom:2.092800px;}
.ybb{bottom:2.103150px;}
.y9b{bottom:2.382900px;}
.y9c{bottom:2.471550px;}
.y111{bottom:2.484300px;}
.yd9{bottom:2.544300px;}
.y83{bottom:2.604300px;}
.y5c{bottom:3.123600px;}
.yd0{bottom:3.441600px;}
.yeb{bottom:3.565200px;}
.ye8{bottom:3.578400px;}
.ye5{bottom:3.588450px;}
.ya3{bottom:3.693150px;}
.yea{bottom:3.723750px;}
.ydd{bottom:3.761850px;}
.yb4{bottom:3.873000px;}
.yd2{bottom:3.920700px;}
.y2a{bottom:3.924300px;}
.ya9{bottom:3.949350px;}
.yce{bottom:3.983100px;}
.y4a{bottom:3.984300px;}
.ye3{bottom:4.006800px;}
.y1d{bottom:4.044300px;}
.y58{bottom:4.044375px;}
.y8{bottom:4.104300px;}
.ya1{bottom:4.107750px;}
.yb2{bottom:4.138200px;}
.yf6{bottom:4.164300px;}
.y89{bottom:4.164375px;}
.y5a{bottom:4.197735px;}
.ye{bottom:4.224300px;}
.yc3{bottom:4.231500px;}
.yad{bottom:4.251450px;}
.yc1{bottom:4.261800px;}
.ybf{bottom:4.292100px;}
.ybd{bottom:4.322400px;}
.ya7{bottom:4.363950px;}
.yd4{bottom:4.399950px;}
.y101{bottom:4.400400px;}
.ye1{bottom:4.425150px;}
.yf0{bottom:4.430700px;}
.yb6{bottom:4.490400px;}
.yb8{bottom:4.499700px;}
.y10b{bottom:4.510950px;}
.y3d{bottom:4.517850px;}
.ya0{bottom:4.522350px;}
.yca{bottom:4.524750px;}
.y12e{bottom:4.549350px;}
.y5e{bottom:4.563600px;}
.yee{bottom:4.589400px;}
.ye6{bottom:4.670250px;}
.y11f{bottom:4.774350px;}
.ya5{bottom:4.778550px;}
.yc8{bottom:4.792800px;}
.y9e{bottom:4.816950px;}
.ya{bottom:4.824900px;}
.y10e{bottom:4.825950px;}
.ydf{bottom:4.843500px;}
.y131{bottom:4.864350px;}
.yc5{bottom:4.903050px;}
.yec{bottom:4.906500px;}
.y28{bottom:4.993950px;}
.ycc{bottom:5.004000px;}
.y92{bottom:5.008350px;}
.y8b{bottom:5.015640px;}
.yb0{bottom:5.086050px;}
.y122{bottom:5.089350px;}
.y134{bottom:5.179350px;}
.yfb{bottom:5.210400px;}
.y85{bottom:5.211600px;}
.y98{bottom:5.278350px;}
.y95{bottom:5.323350px;}
.y125{bottom:5.404350px;}
.y139{bottom:5.449350px;}
.y136{bottom:5.494350px;}
.yfe{bottom:5.525400px;}
.yd7{bottom:5.570550px;}
.y12b{bottom:5.674350px;}
.y128{bottom:5.719350px;}
.y20{bottom:5.737050px;}
.y48{bottom:5.808900px;}
.y6e{bottom:5.813550px;}
.y6{bottom:5.862000px;}
.y23{bottom:6.061800px;}
.y19{bottom:6.075000px;}
.y1b{bottom:6.127950px;}
.y11c{bottom:6.327450px;}
.y11{bottom:6.328800px;}
.y25{bottom:6.390900px;}
.y87{bottom:6.412605px;}
.y110{bottom:6.465750px;}
.y81{bottom:6.608550px;}
.yfa{bottom:6.763500px;}
.y6b{bottom:6.850500px;}
.y56{bottom:7.034700px;}
.y45{bottom:7.205850px;}
.yf4{bottom:7.280850px;}
.y3a{bottom:7.354800px;}
.y103{bottom:7.401450px;}
.yc{bottom:7.465950px;}
.y8f{bottom:8.404050px;}
.yf2{bottom:8.710500px;}
.y42{bottom:8.977800px;}
.y7e{bottom:9.269100px;}
.yab{bottom:9.447150px;}
.y36{bottom:11.551650px;}
.y68{bottom:11.616450px;}
.y7b{bottom:11.736750px;}
.y53{bottom:11.800650px;}
.y41{bottom:17.729250px;}
.y1f{bottom:19.866150px;}
.y35{bottom:27.460950px;}
.y67{bottom:27.525750px;}
.y7a{bottom:27.646050px;}
.y52{bottom:27.709950px;}
.y108{bottom:27.764250px;}
.y18{bottom:28.135200px;}
.y11b{bottom:28.387650px;}
.y10{bottom:28.389000px;}
.yf9{bottom:28.823700px;}
.y5{bottom:34.092900px;}
.y22{bottom:34.292850px;}
.y80{bottom:34.839450px;}
.y39{bottom:35.585700px;}
.y40{bottom:39.384000px;}
.y107{bottom:49.824300px;}
.y17{bottom:50.195250px;}
.y11a{bottom:50.447700px;}
.yf8{bottom:50.883900px;}
.y37{bottom:52.902150px;}
.y69{bottom:52.967100px;}
.y7c{bottom:53.087400px;}
.y54{bottom:53.151150px;}
.y4{bottom:62.323800px;}
.y106{bottom:71.884500px;}
.y16{bottom:72.255450px;}
.y119{bottom:72.507900px;}
.y43{bottom:76.688250px;}
.y34{bottom:83.254800px;}
.y66{bottom:83.319600px;}
.y79{bottom:83.439900px;}
.y51{bottom:83.503650px;}
.y8a{bottom:83.880000px;}
.y65{bottom:85.099650px;}
.y59{bottom:90.000000px;}
.y3{bottom:90.554850px;}
.y15{bottom:94.315650px;}
.y118{bottom:94.568100px;}
.y33{bottom:99.164100px;}
.y64{bottom:99.228900px;}
.y78{bottom:99.349200px;}
.y50{bottom:99.412950px;}
.y88{bottom:103.320000px;}
.y57{bottom:109.440000px;}
.y14{bottom:116.375700px;}
.y117{bottom:116.628150px;}
.y2{bottom:118.785750px;}
.y86{bottom:131.760000px;}
.y55{bottom:136.440000px;}
.y116{bottom:138.688350px;}
.y32{bottom:152.949600px;}
.y63{bottom:153.014550px;}
.y77{bottom:153.134700px;}
.y4f{bottom:153.198600px;}
.y115{bottom:160.748550px;}
.y31{bottom:168.858900px;}
.y62{bottom:168.923700px;}
.y76{bottom:169.044000px;}
.y4e{bottom:169.107900px;}
.y84{bottom:180.000000px;}
.y114{bottom:182.808600px;}
.y4b{bottom:185.760000px;}
.y82{bottom:200.880000px;}
.y113{bottom:204.868800px;}
.y30{bottom:220.760550px;}
.y61{bottom:220.825350px;}
.y75{bottom:220.945650px;}
.y4d{bottom:221.009550px;}
.y7f{bottom:227.880000px;}
.y60{bottom:248.939700px;}
.y4c{bottom:249.123900px;}
.y2f{bottom:251.072250px;}
.y74{bottom:251.257350px;}
.yda{bottom:269.640000px;}
.y2e{bottom:275.573850px;}
.y73{bottom:275.758950px;}
.y10d{bottom:275.760000px;}
.ydc{bottom:294.000000px;}
.y10c{bottom:295.560000px;}
.y2d{bottom:300.075450px;}
.y7d{bottom:308.880000px;}
.y10a{bottom:319.320000px;}
.y2c{bottom:322.379700px;}
.y72{bottom:322.781850px;}
.yde{bottom:328.500000px;}
.y109{bottom:338.760000px;}
.y105{bottom:357.120000px;}
.yb1{bottom:358.500000px;}
.ye0{bottom:364.500000px;}
.y71{bottom:365.768550px;}
.y70{bottom:376.560000px;}
.y27{bottom:387.000000px;}
.ye2{bottom:400.500000px;}
.yaf{bottom:405.000000px;}
.y26{bottom:406.440000px;}
.y24{bottom:434.880000px;}
.ye4{bottom:436.500000px;}
.y138{bottom:441.000000px;}
.y104{bottom:443.880000px;}
.y49{bottom:450.000000px;}
.y137{bottom:461.880000px;}
.y102{bottom:470.880000px;}
.yb3{bottom:471.000000px;}
.y47{bottom:472.320000px;}
.y21{bottom:477.000000px;}
.y135{bottom:484.200000px;}
.y46{bottom:493.560000px;}
.yd8{bottom:505.440000px;}
.y44{bottom:520.200000px;}
.yd6{bottom:522.000000px;}
.y100{bottom:526.320000px;}
.yb5{bottom:526.500000px;}
.y133{bottom:527.760000px;}
.yd5{bottom:542.880000px;}
.yff{bottom:545.760000px;}
.y132{bottom:547.560000px;}
.y1e{bottom:553.680000px;}
.yae{bottom:567.000000px;}
.yfd{bottom:568.440000px;}
.y3f{bottom:569.880000px;}
.y130{bottom:571.320000px;}
.yc9{bottom:580.500000px;}
.yac{bottom:585.000000px;}
.yfc{bottom:589.320000px;}
.y12f{bottom:590.760000px;}
.y1c{bottom:604.440000px;}
.ycb{bottom:612.000000px;}
.y12d{bottom:614.880000px;}
.yaa{bottom:631.440000px;}
.y1a{bottom:632.880000px;}
.y12c{bottom:634.320000px;}
.ycd{bottom:645.000000px;}
.yf7{bottom:649.440000px;}
.y3e{bottom:655.560000px;}
.y12a{bottom:657.000000px;}
.yc7{bottom:667.500000px;}
.y129{bottom:677.880000px;}
.y3c{bottom:679.320000px;}
.y13{bottom:681.120000px;}
.y3b{bottom:698.760000px;}
.y127{bottom:700.200000px;}
.y9a{bottom:704.880000px;}
.ycf{bottom:709.500000px;}
.yf5{bottom:715.320000px;}
.y126{bottom:721.440000px;}
.y38{bottom:725.760000px;}
.y9d{bottom:735.120000px;}
.yd1{bottom:741.000000px;}
.yf3{bottom:742.320000px;}
.y124{bottom:743.760000px;}
.y6f{bottom:757.440000px;}
.y123{bottom:765.000000px;}
.y9f{bottom:768.000000px;}
.yd3{bottom:772.500000px;}
.y6d{bottom:779.760000px;}
.y121{bottom:787.320000px;}
.yf1{bottom:796.320000px;}
.yc6{bottom:797.760000px;}
.y6c{bottom:801.000000px;}
.y2b{bottom:803.880000px;}
.y120{bottom:806.760000px;}
.y12{bottom:812.880000px;}
.yc4{bottom:815.760000px;}
.y6a{bottom:828.000000px;}
.y11e{bottom:830.880000px;}
.ya2{bottom:834.000000px;}
.yf{bottom:835.560000px;}
.y11d{bottom:850.320000px;}
.yba{bottom:865.080000px;}
.ya4{bottom:865.500000px;}
.y112{bottom:868.320000px;}
.y5f{bottom:877.320000px;}
.yd{bottom:878.760000px;}
.ye9{bottom:880.500000px;}
.ya6{bottom:898.500000px;}
.yb{bottom:905.760000px;}
.ybc{bottom:922.500000px;}
.ya8{bottom:931.500000px;}
.y99{bottom:945.000000px;}
.y9{bottom:955.440000px;}
.y97{bottom:963.000000px;}
.ybe{bottom:973.500000px;}
.y7{bottom:974.880000px;}
.y96{bottom:983.880000px;}
.ye7{bottom:997.500000px;}
.y1{bottom:1003.680000px;}
.y94{bottom:1006.200000px;}
.yc0{bottom:1024.500000px;}
.y93{bottom:1026.000000px;}
.yed{bottom:1047.000000px;}
.y91{bottom:1049.760000px;}
.y90{bottom:1069.560000px;}
.yc2{bottom:1075.500000px;}
.yef{bottom:1089.000000px;}
.y8e{bottom:1098.000000px;}
.yb9{bottom:1103.760000px;}
.y10f{bottom:1116.000000px;}
.yb7{bottom:1121.760000px;}
.y29{bottom:1141.560000px;}
.y5d{bottom:1154.880000px;}
.y5b{bottom:1156.320000px;}
.y8c{bottom:1170.000000px;}
.h23{height:-9.000000px;}
.h22{height:10.800000px;}
.h3{height:12.240000px;}
.h29{height:12.780000px;}
.h2e{height:13.320000px;}
.h24{height:13.620000px;}
.h18{height:13.680000px;}
.h2d{height:13.860000px;}
.h2c{height:13.920000px;}
.h27{height:15.000000px;}
.h1a{height:15.120000px;}
.h26{height:16.380000px;}
.h28{height:16.500000px;}
.h5{height:19.800000px;}
.h25{height:27.945000px;}
.h4{height:28.080000px;}
.h7{height:28.800000px;}
.h13{height:29.187475px;}
.h31{height:30.240000px;}
.h2b{height:31.096406px;}
.h19{height:31.500000px;}
.h1c{height:31.910156px;}
.h1b{height:34.551562px;}
.h30{height:37.402560px;}
.h20{height:39.240000px;}
.h2a{height:40.680000px;}
.h6{height:41.109120px;}
.h33{height:43.024922px;}
.h8{height:43.560000px;}
.hb{height:51.120000px;}
.he{height:51.247075px;}
.h16{height:52.236752px;}
.hf{height:57.240000px;}
.h2{height:63.244800px;}
.h2f{height:66.240000px;}
.h9{height:73.572891px;}
.h15{height:82.190552px;}
.h14{height:85.680000px;}
.h32{height:87.120000px;}
.h21{height:88.542720px;}
.h1d{height:100.062475px;}
.hc{height:100.063075px;}
.h11{height:122.388291px;}
.ha{height:130.680000px;}
.h12{height:137.210091px;}
.h1{height:141.120000px;}
.hd{height:178.904691px;}
.h1e{height:178.905291px;}
.h34{height:219.240000px;}
.h17{height:264.240000px;}
.h10{height:337.680000px;}
.h1f{height:381.240000px;}
.h0{height:1188.000000px;}
.wc{width:9.000000px;}
.wd{width:13.680000px;}
.w20{width:16.080000px;}
.w19{width:16.500000px;}
.w1e{width:18.000000px;}
.w1a{width:19.080000px;}
.w17{width:19.500000px;}
.w1d{width:20.580000px;}
.w1c{width:20.820000px;}
.w18{width:21.000000px;}
.w24{width:24.000000px;}
.w23{width:26.580000px;}
.w22{width:30.000000px;}
.w21{width:32.580000px;}
.w28{width:37.440000px;}
.w27{width:62.640000px;}
.w14{width:70.920000px;}
.w2a{width:72.720000px;}
.w2d{width:81.000000px;}
.w3{width:87.840000px;}
.w2c{width:97.920000px;}
.w15{width:100.440000px;}
.we{width:172.800000px;}
.w29{width:186.120000px;}
.w26{width:194.760000px;}
.w2b{width:253.440000px;}
.w7{width:357.480000px;}
.w9{width:365.760000px;}
.w6{width:391.320000px;}
.w16{width:456.120000px;}
.w1b{width:506.520000px;}
.w1f{width:515.160000px;}
.w4{width:518.760000px;}
.w5{width:666.720000px;}
.w12{width:671.040000px;}
.w13{width:704.520000px;}
.wa{width:718.200000px;}
.wb{width:765.000000px;}
.w8{width:786.600000px;}
.wf{width:796.320000px;}
.w10{width:804.960000px;}
.w25{width:814.680000px;}
.w11{width:825.120000px;}
.w2{width:835.560000px;}
.w1{width:882.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:1.389900px;}
.x29{left:2.693700px;}
.x14{left:7.434840px;}
.x7{left:9.894000px;}
.x1{left:18.000000px;}
.x1f{left:19.800000px;}
.x13{left:27.000000px;}
.x3{left:28.440000px;}
.x2{left:41.400000px;}
.xa{left:45.841365px;}
.x8{left:55.764000px;}
.x15{left:56.880000px;}
.xc{left:64.938000px;}
.x19{left:74.112000px;}
.x4{left:79.200000px;}
.x1c{left:83.286000px;}
.x2d{left:150.000000px;}
.x25{left:153.000000px;}
.x2a{left:154.500000px;}
.x34{left:159.000000px;}
.x30{left:163.500000px;}
.x16{left:240.027600px;}
.x2e{left:241.500000px;}
.x26{left:243.000000px;}
.x2b{left:244.500000px;}
.x35{left:247.500000px;}
.x31{left:250.500000px;}
.x5{left:257.893050px;}
.xd{left:265.695750px;}
.x1d{left:284.043750px;}
.x17{left:305.986950px;}
.x6{left:325.701600px;}
.x2f{left:331.500000px;}
.x27{left:333.000000px;}
.x2c{left:334.500000px;}
.x36{left:336.000000px;}
.x32{left:337.500000px;}
.x12{left:357.668850px;}
.xf{left:360.874350px;}
.x28{left:423.000000px;}
.x33{left:424.500000px;}
.xe{left:470.172600px;}
.x9{left:481.859400px;}
.x1e{left:488.520600px;}
.x1a{left:514.178700px;}
.xb{left:554.739300px;}
.x10{left:562.998450px;}
.x1b{left:573.087300px;}
.x18{left:585.800700px;}
.x20{left:688.320000px;}
.x11{left:702.585600px;}
.x23{left:854.315100px;}
.x22{left:859.320000px;}
.x24{left:882.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.va{vertical-align:13.922133pt;}
.vb{vertical-align:17.814933pt;}
.v3{vertical-align:19.608533pt;}
.v7{vertical-align:22.059733pt;}
.v8{vertical-align:25.938133pt;}
.v1{vertical-align:43.391467pt;}
.v4{vertical-align:50.236800pt;}
.v9{vertical-align:56.566400pt;}
.v2{vertical-align:63.000533pt;}
.vc{vertical-align:72.297067pt;}
.v5{vertical-align:93.628267pt;}
.v6{vertical-align:113.237333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000213pt;}
.ls26{letter-spacing:0.003413pt;}
.ls29{letter-spacing:0.003947pt;}
.ls6{letter-spacing:0.004640pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.004853pt;}
.ls5{letter-spacing:0.004907pt;}
.lsf{letter-spacing:0.004992pt;}
.ls2{letter-spacing:0.005333pt;}
.ls35{letter-spacing:0.006912pt;}
.ls19{letter-spacing:1.919680pt;}
.ls27{letter-spacing:1.919863pt;}
.ls15{letter-spacing:1.920213pt;}
.ls28{letter-spacing:1.920397pt;}
.ls34{letter-spacing:2.116608pt;}
.lse{letter-spacing:2.131968pt;}
.ls37{letter-spacing:5.338187pt;}
.ls8{letter-spacing:10.666667pt;}
.ls2a{letter-spacing:10.666773pt;}
.lsb{letter-spacing:10.671467pt;}
.ls1a{letter-spacing:10.671733pt;}
.ls11{letter-spacing:10.672000pt;}
.ls25{letter-spacing:11.255330pt;}
.ls23{letter-spacing:11.255863pt;}
.ls10{letter-spacing:12.586347pt;}
.ls14{letter-spacing:12.586880pt;}
.ls30{letter-spacing:13.148747pt;}
.ls18{letter-spacing:13.148800pt;}
.ls1c{letter-spacing:13.148960pt;}
.ls17{letter-spacing:13.149333pt;}
.ls16{letter-spacing:13.153600pt;}
.ls13{letter-spacing:13.154133pt;}
.ls12{letter-spacing:15.068480pt;}
.lsc{letter-spacing:15.069013pt;}
.ls2e{letter-spacing:15.069173pt;}
.ls33{letter-spacing:16.000000pt;}
.ls3{letter-spacing:16.004800pt;}
.ls32{letter-spacing:16.004907pt;}
.ls4{letter-spacing:16.010667pt;}
.ls9{letter-spacing:19.657067pt;}
.ls22{letter-spacing:19.657600pt;}
.lsa{letter-spacing:21.572480pt;}
.ls2f{letter-spacing:28.217813pt;}
.ls36{letter-spacing:29.153813pt;}
.ls31{letter-spacing:29.956800pt;}
.ls1f{letter-spacing:45.961600pt;}
.ls21{letter-spacing:79.287467pt;}
.ls1b{letter-spacing:82.336000pt;}
.ls2b{letter-spacing:82.336533pt;}
.ls2d{letter-spacing:84.250880pt;}
.ls1d{letter-spacing:84.251413pt;}
.ls7{letter-spacing:85.187200pt;}
.ls20{letter-spacing:97.106133pt;}
.ls2c{letter-spacing:159.294613pt;}
.ls1e{letter-spacing:468.992747pt;}
.ws14{word-spacing:-21.504000pt;}
.ws0{word-spacing:-15.360000pt;}
.ws12{word-spacing:-13.141333pt;}
.ws19{word-spacing:-2.147328pt;}
.wsc{word-spacing:-0.076800pt;}
.ws5{word-spacing:-0.054912pt;}
.ws11{word-spacing:-0.054720pt;}
.ws1{word-spacing:-0.049920pt;}
.wsd{word-spacing:-0.035443pt;}
.ws1a{word-spacing:-0.034560pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:9.300237pt;}
.ws10{word-spacing:9.300450pt;}
.wse{word-spacing:9.300770pt;}
.ws4{word-spacing:10.616747pt;}
.wsb{word-spacing:10.617013pt;}
.ws8{word-spacing:13.098880pt;}
.ws7{word-spacing:13.098987pt;}
.ws9{word-spacing:13.099040pt;}
.wsa{word-spacing:13.099413pt;}
.ws2{word-spacing:15.950080pt;}
.ws3{word-spacing:15.954880pt;}
.ws16{word-spacing:26.242837pt;}
.ws18{word-spacing:29.098987pt;}
.ws15{word-spacing:29.896864pt;}
.ws17{word-spacing:29.902080pt;}
.ws13{word-spacing:35.245173pt;}
._1{width:5.343520pt;}
._2{width:10.671467pt;}
._3{width:13.154133pt;}
._4{width:15.999840pt;}
._0{width:29.158400pt;}
.fs4{font-size:25.164672pt;}
.fs1{font-size:30.720000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:35.443200pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:46.080000pt;}
.fs2{font-size:49.920000pt;}
.fs0{font-size:76.800000pt;}
.fs7{font-size:107.520000pt;}
.y8d{bottom:-1017.071160pt;}
.y0{bottom:0.000000pt;}
.ydb{bottom:1.860267pt;}
.ybb{bottom:1.869467pt;}
.y9b{bottom:2.118133pt;}
.y9c{bottom:2.196933pt;}
.y111{bottom:2.208267pt;}
.yd9{bottom:2.261600pt;}
.y83{bottom:2.314933pt;}
.y5c{bottom:2.776533pt;}
.yd0{bottom:3.059200pt;}
.yeb{bottom:3.169067pt;}
.ye8{bottom:3.180800pt;}
.ye5{bottom:3.189733pt;}
.ya3{bottom:3.282800pt;}
.yea{bottom:3.310000pt;}
.ydd{bottom:3.343867pt;}
.yb4{bottom:3.442667pt;}
.yd2{bottom:3.485067pt;}
.y2a{bottom:3.488267pt;}
.ya9{bottom:3.510533pt;}
.yce{bottom:3.540533pt;}
.y4a{bottom:3.541600pt;}
.ye3{bottom:3.561600pt;}
.y1d{bottom:3.594933pt;}
.y58{bottom:3.595000pt;}
.y8{bottom:3.648267pt;}
.ya1{bottom:3.651333pt;}
.yb2{bottom:3.678400pt;}
.yf6{bottom:3.701600pt;}
.y89{bottom:3.701667pt;}
.y5a{bottom:3.731320pt;}
.ye{bottom:3.754933pt;}
.yc3{bottom:3.761333pt;}
.yad{bottom:3.779067pt;}
.yc1{bottom:3.788267pt;}
.ybf{bottom:3.815200pt;}
.ybd{bottom:3.842133pt;}
.ya7{bottom:3.879067pt;}
.yd4{bottom:3.911067pt;}
.y101{bottom:3.911467pt;}
.ye1{bottom:3.933467pt;}
.yf0{bottom:3.938400pt;}
.yb6{bottom:3.991467pt;}
.yb8{bottom:3.999733pt;}
.y10b{bottom:4.009733pt;}
.y3d{bottom:4.015867pt;}
.ya0{bottom:4.019867pt;}
.yca{bottom:4.022000pt;}
.y12e{bottom:4.043867pt;}
.y5e{bottom:4.056533pt;}
.yee{bottom:4.079467pt;}
.ye6{bottom:4.151333pt;}
.y11f{bottom:4.243867pt;}
.ya5{bottom:4.247600pt;}
.yc8{bottom:4.260267pt;}
.y9e{bottom:4.281733pt;}
.ya{bottom:4.288800pt;}
.y10e{bottom:4.289733pt;}
.ydf{bottom:4.305333pt;}
.y131{bottom:4.323867pt;}
.yc5{bottom:4.358267pt;}
.yec{bottom:4.361333pt;}
.y28{bottom:4.439067pt;}
.ycc{bottom:4.448000pt;}
.y92{bottom:4.451867pt;}
.y8b{bottom:4.458347pt;}
.yb0{bottom:4.520933pt;}
.y122{bottom:4.523867pt;}
.y134{bottom:4.603867pt;}
.yfb{bottom:4.631467pt;}
.y85{bottom:4.632533pt;}
.y98{bottom:4.691867pt;}
.y95{bottom:4.731867pt;}
.y125{bottom:4.803867pt;}
.y139{bottom:4.843867pt;}
.y136{bottom:4.883867pt;}
.yfe{bottom:4.911467pt;}
.yd7{bottom:4.951600pt;}
.y12b{bottom:5.043867pt;}
.y128{bottom:5.083867pt;}
.y20{bottom:5.099600pt;}
.y48{bottom:5.163467pt;}
.y6e{bottom:5.167600pt;}
.y6{bottom:5.210667pt;}
.y23{bottom:5.388267pt;}
.y19{bottom:5.400000pt;}
.y1b{bottom:5.447067pt;}
.y11c{bottom:5.624400pt;}
.y11{bottom:5.625600pt;}
.y25{bottom:5.680800pt;}
.y87{bottom:5.700093pt;}
.y110{bottom:5.747333pt;}
.y81{bottom:5.874267pt;}
.yfa{bottom:6.012000pt;}
.y6b{bottom:6.089333pt;}
.y56{bottom:6.253067pt;}
.y45{bottom:6.405200pt;}
.yf4{bottom:6.471867pt;}
.y3a{bottom:6.537600pt;}
.y103{bottom:6.579067pt;}
.yc{bottom:6.636400pt;}
.y8f{bottom:7.470267pt;}
.yf2{bottom:7.742667pt;}
.y42{bottom:7.980267pt;}
.y7e{bottom:8.239200pt;}
.yab{bottom:8.397467pt;}
.y36{bottom:10.268133pt;}
.y68{bottom:10.325733pt;}
.y7b{bottom:10.432667pt;}
.y53{bottom:10.489467pt;}
.y41{bottom:15.759333pt;}
.y1f{bottom:17.658800pt;}
.y35{bottom:24.409733pt;}
.y67{bottom:24.467333pt;}
.y7a{bottom:24.574267pt;}
.y52{bottom:24.631067pt;}
.y108{bottom:24.679333pt;}
.y18{bottom:25.009067pt;}
.y11b{bottom:25.233467pt;}
.y10{bottom:25.234667pt;}
.yf9{bottom:25.621067pt;}
.y5{bottom:30.304800pt;}
.y22{bottom:30.482533pt;}
.y80{bottom:30.968400pt;}
.y39{bottom:31.631733pt;}
.y40{bottom:35.008000pt;}
.y107{bottom:44.288267pt;}
.y17{bottom:44.618000pt;}
.y11a{bottom:44.842400pt;}
.yf8{bottom:45.230133pt;}
.y37{bottom:47.024133pt;}
.y69{bottom:47.081867pt;}
.y7c{bottom:47.188800pt;}
.y54{bottom:47.245467pt;}
.y4{bottom:55.398933pt;}
.y106{bottom:63.897333pt;}
.y16{bottom:64.227067pt;}
.y119{bottom:64.451467pt;}
.y43{bottom:68.167333pt;}
.y34{bottom:74.004267pt;}
.y66{bottom:74.061867pt;}
.y79{bottom:74.168800pt;}
.y51{bottom:74.225467pt;}
.y8a{bottom:74.560000pt;}
.y65{bottom:75.644133pt;}
.y59{bottom:80.000000pt;}
.y3{bottom:80.493200pt;}
.y15{bottom:83.836133pt;}
.y118{bottom:84.060533pt;}
.y33{bottom:88.145867pt;}
.y64{bottom:88.203467pt;}
.y78{bottom:88.310400pt;}
.y50{bottom:88.367067pt;}
.y88{bottom:91.840000pt;}
.y57{bottom:97.280000pt;}
.y14{bottom:103.445067pt;}
.y117{bottom:103.669467pt;}
.y2{bottom:105.587333pt;}
.y86{bottom:117.120000pt;}
.y55{bottom:121.280000pt;}
.y116{bottom:123.278533pt;}
.y32{bottom:135.955200pt;}
.y63{bottom:136.012933pt;}
.y77{bottom:136.119733pt;}
.y4f{bottom:136.176533pt;}
.y115{bottom:142.887600pt;}
.y31{bottom:150.096800pt;}
.y62{bottom:150.154400pt;}
.y76{bottom:150.261333pt;}
.y4e{bottom:150.318133pt;}
.y84{bottom:160.000000pt;}
.y114{bottom:162.496533pt;}
.y4b{bottom:165.120000pt;}
.y82{bottom:178.560000pt;}
.y113{bottom:182.105600pt;}
.y30{bottom:196.231600pt;}
.y61{bottom:196.289200pt;}
.y75{bottom:196.396133pt;}
.y4d{bottom:196.452933pt;}
.y7f{bottom:202.560000pt;}
.y60{bottom:221.279733pt;}
.y4c{bottom:221.443467pt;}
.y2f{bottom:223.175333pt;}
.y74{bottom:223.339867pt;}
.yda{bottom:239.680000pt;}
.y2e{bottom:244.954533pt;}
.y73{bottom:245.119067pt;}
.y10d{bottom:245.120000pt;}
.ydc{bottom:261.333333pt;}
.y10c{bottom:262.720000pt;}
.y2d{bottom:266.733733pt;}
.y7d{bottom:274.560000pt;}
.y10a{bottom:283.840000pt;}
.y2c{bottom:286.559733pt;}
.y72{bottom:286.917200pt;}
.yde{bottom:292.000000pt;}
.y109{bottom:301.120000pt;}
.y105{bottom:317.440000pt;}
.yb1{bottom:318.666667pt;}
.ye0{bottom:324.000000pt;}
.y71{bottom:325.127600pt;}
.y70{bottom:334.720000pt;}
.y27{bottom:344.000000pt;}
.ye2{bottom:356.000000pt;}
.yaf{bottom:360.000000pt;}
.y26{bottom:361.280000pt;}
.y24{bottom:386.560000pt;}
.ye4{bottom:388.000000pt;}
.y138{bottom:392.000000pt;}
.y104{bottom:394.560000pt;}
.y49{bottom:400.000000pt;}
.y137{bottom:410.560000pt;}
.y102{bottom:418.560000pt;}
.yb3{bottom:418.666667pt;}
.y47{bottom:419.840000pt;}
.y21{bottom:424.000000pt;}
.y135{bottom:430.400000pt;}
.y46{bottom:438.720000pt;}
.yd8{bottom:449.280000pt;}
.y44{bottom:462.400000pt;}
.yd6{bottom:464.000000pt;}
.y100{bottom:467.840000pt;}
.yb5{bottom:468.000000pt;}
.y133{bottom:469.120000pt;}
.yd5{bottom:482.560000pt;}
.yff{bottom:485.120000pt;}
.y132{bottom:486.720000pt;}
.y1e{bottom:492.160000pt;}
.yae{bottom:504.000000pt;}
.yfd{bottom:505.280000pt;}
.y3f{bottom:506.560000pt;}
.y130{bottom:507.840000pt;}
.yc9{bottom:516.000000pt;}
.yac{bottom:520.000000pt;}
.yfc{bottom:523.840000pt;}
.y12f{bottom:525.120000pt;}
.y1c{bottom:537.280000pt;}
.ycb{bottom:544.000000pt;}
.y12d{bottom:546.560000pt;}
.yaa{bottom:561.280000pt;}
.y1a{bottom:562.560000pt;}
.y12c{bottom:563.840000pt;}
.ycd{bottom:573.333333pt;}
.yf7{bottom:577.280000pt;}
.y3e{bottom:582.720000pt;}
.y12a{bottom:584.000000pt;}
.yc7{bottom:593.333333pt;}
.y129{bottom:602.560000pt;}
.y3c{bottom:603.840000pt;}
.y13{bottom:605.440000pt;}
.y3b{bottom:621.120000pt;}
.y127{bottom:622.400000pt;}
.y9a{bottom:626.560000pt;}
.ycf{bottom:630.666667pt;}
.yf5{bottom:635.840000pt;}
.y126{bottom:641.280000pt;}
.y38{bottom:645.120000pt;}
.y9d{bottom:653.440000pt;}
.yd1{bottom:658.666667pt;}
.yf3{bottom:659.840000pt;}
.y124{bottom:661.120000pt;}
.y6f{bottom:673.280000pt;}
.y123{bottom:680.000000pt;}
.y9f{bottom:682.666667pt;}
.yd3{bottom:686.666667pt;}
.y6d{bottom:693.120000pt;}
.y121{bottom:699.840000pt;}
.yf1{bottom:707.840000pt;}
.yc6{bottom:709.120000pt;}
.y6c{bottom:712.000000pt;}
.y2b{bottom:714.560000pt;}
.y120{bottom:717.120000pt;}
.y12{bottom:722.560000pt;}
.yc4{bottom:725.120000pt;}
.y6a{bottom:736.000000pt;}
.y11e{bottom:738.560000pt;}
.ya2{bottom:741.333333pt;}
.yf{bottom:742.720000pt;}
.y11d{bottom:755.840000pt;}
.yba{bottom:768.960000pt;}
.ya4{bottom:769.333333pt;}
.y112{bottom:771.840000pt;}
.y5f{bottom:779.840000pt;}
.yd{bottom:781.120000pt;}
.ye9{bottom:782.666667pt;}
.ya6{bottom:798.666667pt;}
.yb{bottom:805.120000pt;}
.ybc{bottom:820.000000pt;}
.ya8{bottom:828.000000pt;}
.y99{bottom:840.000000pt;}
.y9{bottom:849.280000pt;}
.y97{bottom:856.000000pt;}
.ybe{bottom:865.333333pt;}
.y7{bottom:866.560000pt;}
.y96{bottom:874.560000pt;}
.ye7{bottom:886.666667pt;}
.y1{bottom:892.160000pt;}
.y94{bottom:894.400000pt;}
.yc0{bottom:910.666667pt;}
.y93{bottom:912.000000pt;}
.yed{bottom:930.666667pt;}
.y91{bottom:933.120000pt;}
.y90{bottom:950.720000pt;}
.yc2{bottom:956.000000pt;}
.yef{bottom:968.000000pt;}
.y8e{bottom:976.000000pt;}
.yb9{bottom:981.120000pt;}
.y10f{bottom:992.000000pt;}
.yb7{bottom:997.120000pt;}
.y29{bottom:1014.720000pt;}
.y5d{bottom:1026.560000pt;}
.y5b{bottom:1027.840000pt;}
.y8c{bottom:1040.000000pt;}
.h23{height:-8.000000pt;}
.h22{height:9.600000pt;}
.h3{height:10.880000pt;}
.h29{height:11.360000pt;}
.h2e{height:11.840000pt;}
.h24{height:12.106667pt;}
.h18{height:12.160000pt;}
.h2d{height:12.320000pt;}
.h2c{height:12.373333pt;}
.h27{height:13.333333pt;}
.h1a{height:13.440000pt;}
.h26{height:14.560000pt;}
.h28{height:14.666667pt;}
.h5{height:17.600000pt;}
.h25{height:24.840000pt;}
.h4{height:24.960000pt;}
.h7{height:25.600000pt;}
.h13{height:25.944422pt;}
.h31{height:26.880000pt;}
.h2b{height:27.641250pt;}
.h19{height:28.000000pt;}
.h1c{height:28.364583pt;}
.h1b{height:30.712500pt;}
.h30{height:33.246720pt;}
.h20{height:34.880000pt;}
.h2a{height:36.160000pt;}
.h6{height:36.541440pt;}
.h33{height:38.244375pt;}
.h8{height:38.720000pt;}
.hb{height:45.440000pt;}
.he{height:45.552956pt;}
.h16{height:46.432669pt;}
.hf{height:50.880000pt;}
.h2{height:56.217600pt;}
.h2f{height:58.880000pt;}
.h9{height:65.398125pt;}
.h15{height:73.058269pt;}
.h14{height:76.160000pt;}
.h32{height:77.440000pt;}
.h21{height:78.704640pt;}
.h1d{height:88.944422pt;}
.hc{height:88.944956pt;}
.h11{height:108.789592pt;}
.ha{height:116.160000pt;}
.h12{height:121.964525pt;}
.h1{height:125.440000pt;}
.hd{height:159.026392pt;}
.h1e{height:159.026925pt;}
.h34{height:194.880000pt;}
.h17{height:234.880000pt;}
.h10{height:300.160000pt;}
.h1f{height:338.880000pt;}
.h0{height:1056.000000pt;}
.wc{width:8.000000pt;}
.wd{width:12.160000pt;}
.w20{width:14.293333pt;}
.w19{width:14.666667pt;}
.w1e{width:16.000000pt;}
.w1a{width:16.960000pt;}
.w17{width:17.333333pt;}
.w1d{width:18.293333pt;}
.w1c{width:18.506667pt;}
.w18{width:18.666667pt;}
.w24{width:21.333333pt;}
.w23{width:23.626667pt;}
.w22{width:26.666667pt;}
.w21{width:28.960000pt;}
.w28{width:33.280000pt;}
.w27{width:55.680000pt;}
.w14{width:63.040000pt;}
.w2a{width:64.640000pt;}
.w2d{width:72.000000pt;}
.w3{width:78.080000pt;}
.w2c{width:87.040000pt;}
.w15{width:89.280000pt;}
.we{width:153.600000pt;}
.w29{width:165.440000pt;}
.w26{width:173.120000pt;}
.w2b{width:225.280000pt;}
.w7{width:317.760000pt;}
.w9{width:325.120000pt;}
.w6{width:347.840000pt;}
.w16{width:405.440000pt;}
.w1b{width:450.240000pt;}
.w1f{width:457.920000pt;}
.w4{width:461.120000pt;}
.w5{width:592.640000pt;}
.w12{width:596.480000pt;}
.w13{width:626.240000pt;}
.wa{width:638.400000pt;}
.wb{width:680.000000pt;}
.w8{width:699.200000pt;}
.wf{width:707.840000pt;}
.w10{width:715.520000pt;}
.w25{width:724.160000pt;}
.w11{width:733.440000pt;}
.w2{width:742.720000pt;}
.w1{width:784.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.235467pt;}
.x29{left:2.394400pt;}
.x14{left:6.608747pt;}
.x7{left:8.794667pt;}
.x1{left:16.000000pt;}
.x1f{left:17.600000pt;}
.x13{left:24.000000pt;}
.x3{left:25.280000pt;}
.x2{left:36.800000pt;}
.xa{left:40.747880pt;}
.x8{left:49.568000pt;}
.x15{left:50.560000pt;}
.xc{left:57.722667pt;}
.x19{left:65.877333pt;}
.x4{left:70.400000pt;}
.x1c{left:74.032000pt;}
.x2d{left:133.333333pt;}
.x25{left:136.000000pt;}
.x2a{left:137.333333pt;}
.x34{left:141.333333pt;}
.x30{left:145.333333pt;}
.x16{left:213.357867pt;}
.x2e{left:214.666667pt;}
.x26{left:216.000000pt;}
.x2b{left:217.333333pt;}
.x35{left:220.000000pt;}
.x31{left:222.666667pt;}
.x5{left:229.238267pt;}
.xd{left:236.174000pt;}
.x1d{left:252.483333pt;}
.x17{left:271.988400pt;}
.x6{left:289.512533pt;}
.x2f{left:294.666667pt;}
.x27{left:296.000000pt;}
.x2c{left:297.333333pt;}
.x36{left:298.666667pt;}
.x32{left:300.000000pt;}
.x12{left:317.927867pt;}
.xf{left:320.777200pt;}
.x28{left:376.000000pt;}
.x33{left:377.333333pt;}
.xe{left:417.931200pt;}
.x9{left:428.319467pt;}
.x1e{left:434.240533pt;}
.x1a{left:457.047733pt;}
.xb{left:493.101600pt;}
.x10{left:500.443067pt;}
.x1b{left:509.410933pt;}
.x18{left:520.711733pt;}
.x20{left:611.840000pt;}
.x11{left:624.520533pt;}
.x23{left:759.391200pt;}
.x22{left:763.840000pt;}
.x24{left:784.000000pt;}
}




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