
    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_7cfa37fe2ad9939a7e43ee18.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_96547fd7ca45d784a0c2caa9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9d1e37d10030b384b323c704.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_7a467abeb56557d5b3860d89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_f7d7eb03f43d290be422c608.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_62a39c90aa23bd0c7a144100.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_f0fc961688f5656c1295164b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c13bd2c09eb3fe81e979bde0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_527424cb3c7040e349922af6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v4{vertical-align:9.360000px;}
.v5{vertical-align:22.020000px;}
.v6{vertical-align:31.560000px;}
.v9{vertical-align:35.700000px;}
.v8{vertical-align:38.760000px;}
.v7{vertical-align:40.320000px;}
.v3{vertical-align:48.240000px;}
.v2{vertical-align:54.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.091200px;}
.ls10{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.216507px;}
.ls1d{letter-spacing:0.282712px;}
.ls6{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.327363px;}
.ls14{letter-spacing:0.327470px;}
.ls8{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.387540px;}
.ls1c{letter-spacing:0.483702px;}
.ls2{letter-spacing:0.720000px;}
.ls1b{letter-spacing:2.090465px;}
.lsd{letter-spacing:16.176000px;}
.lsb{letter-spacing:16.272000px;}
.lsa{letter-spacing:19.656000px;}
.ls9{letter-spacing:19.800000px;}
.lsc{letter-spacing:20.880000px;}
.ls4{letter-spacing:23.904000px;}
.ls3{letter-spacing:28.224000px;}
.ls5{letter-spacing:31.824000px;}
.lsf{letter-spacing:64.026720px;}
.ls1{letter-spacing:64.397280px;}
.lse{letter-spacing:96.456000px;}
.ls19{letter-spacing:179.661569px;}
.ls16{letter-spacing:506.982000px;}
.ls1e{letter-spacing:658.662000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws15{word-spacing:-22.759190px;}
.ws19{word-spacing:-22.751754px;}
.ws21{word-spacing:-21.547230px;}
.ws2{word-spacing:-21.060000px;}
.ws25{word-spacing:-20.062996px;}
.ws3{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.696000px;}
.ws9{word-spacing:-15.552000px;}
.wsb{word-spacing:-4.320000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.216000px;}
.wsd{word-spacing:2.664000px;}
.wsc{word-spacing:3.816000px;}
.ws23{word-spacing:26.752810px;}
.ws1d{word-spacing:77.274530px;}
.ws18{word-spacing:77.299786px;}
.ws1b{word-spacing:82.479811px;}
.ws17{word-spacing:82.506769px;}
.ws27{word-spacing:87.607859px;}
.ws22{word-spacing:100.088585px;}
.ws1c{word-spacing:102.690940px;}
.ws24{word-spacing:119.385188px;}
.ws8{word-spacing:127.416000px;}
.ws26{word-spacing:136.666709px;}
.wsf{word-spacing:143.340000px;}
.ws20{word-spacing:169.542000px;}
.ws1f{word-spacing:169.572000px;}
.ws2a{word-spacing:176.622000px;}
.ws29{word-spacing:176.700000px;}
.ws13{word-spacing:184.596000px;}
.ws11{word-spacing:186.540000px;}
.ws12{word-spacing:191.820000px;}
.ws10{word-spacing:208.260000px;}
.ws1a{word-spacing:232.336154px;}
.ws16{word-spacing:232.547689px;}
.ws1e{word-spacing:481.014000px;}
.ws28{word-spacing:632.754000px;}
._13{margin-left:-4.464000px;}
._b{margin-left:-3.168000px;}
._0{margin-left:-1.324800px;}
._1{width:1.330080px;}
._a{width:2.736000px;}
._8{width:4.392000px;}
._9{width:5.472000px;}
._11{width:6.631200px;}
._e{width:7.912800px;}
._d{width:9.100800px;}
._c{width:10.224000px;}
._f{width:11.808000px;}
._10{width:12.889920px;}
._17{width:14.196480px;}
._16{width:15.292800px;}
._15{width:16.300800px;}
._14{width:19.296000px;}
._19{width:20.592000px;}
._18{width:23.040000px;}
._2d{width:24.267840px;}
._3{width:27.770400px;}
._2{width:29.685600px;}
._4{width:38.984880px;}
._12{width:41.328000px;}
._2b{width:42.480000px;}
._7{width:60.147840px;}
._6{width:61.190640px;}
._5{width:80.640480px;}
._20{width:157.211869px;}
._24{width:162.418851px;}
._1f{width:163.661361px;}
._22{width:182.636586px;}
._28{width:183.942051px;}
._21{width:199.506823px;}
._23{width:209.425853px;}
._1e{width:219.758459px;}
._1a{width:223.380000px;}
._2a{width:229.976254px;}
._27{width:240.020819px;}
._29{width:245.192211px;}
._1b{width:300.426265px;}
._25{width:320.661666px;}
._1d{width:331.648832px;}
._1c{width:357.209149px;}
._26{width:377.425564px;}
._2c{width:972.300000px;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.169050px;}
.fs8{font-size:77.508022px;}
.fs7{font-size:81.840842px;}
.fs6{font-size:81.867591px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:3.863299px;}
.yd6{bottom:3.863300px;}
.yd2{bottom:3.863302px;}
.ybe{bottom:3.864567px;}
.yc5{bottom:3.864569px;}
.yc1{bottom:3.864573px;}
.y12c{bottom:4.824170px;}
.y116{bottom:4.824202px;}
.y113{bottom:4.856363px;}
.y121{bottom:4.864404px;}
.yde{bottom:5.125653px;}
.ycd{bottom:5.127367px;}
.y137{bottom:5.619639px;}
.y14d{bottom:5.835000px;}
.y12a{bottom:6.018448px;}
.y14f{bottom:6.225000px;}
.y12f{bottom:6.784494px;}
.y10d{bottom:7.268399px;}
.y10a{bottom:7.268400px;}
.y74{bottom:10.620000px;}
.yac{bottom:17.640000px;}
.y73{bottom:22.680000px;}
.y145{bottom:23.400000px;}
.y75{bottom:27.360000px;}
.y7d{bottom:27.540000px;}
.y136{bottom:29.328366px;}
.ycf{bottom:29.398321px;}
.ybd{bottom:29.407936px;}
.yc0{bottom:29.407937px;}
.y12e{bottom:30.492921px;}
.ydd{bottom:30.668806px;}
.ycc{bottom:30.678869px;}
.y128{bottom:31.426125px;}
.yaa{bottom:31.830000px;}
.y10c{bottom:32.675591px;}
.y109{bottom:32.675594px;}
.ya2{bottom:47.625000px;}
.y135{bottom:53.036793px;}
.ydc{bottom:56.212298px;}
.ycb{bottom:56.230709px;}
.y146{bottom:56.340000px;}
.y126{bottom:56.833319px;}
.yf8{bottom:56.910000px;}
.ya3{bottom:69.630000px;}
.y151{bottom:71.745000px;}
.yf6{bottom:79.350000px;}
.ydb{bottom:81.798151px;}
.yca{bottom:81.824925px;}
.y5{bottom:82.116000px;}
.y124{bottom:82.280714px;}
.y147{bottom:89.250000px;}
.y14e{bottom:96.555000px;}
.yf0{bottom:96.915000px;}
.ya9{bottom:100.800000px;}
.y4{bottom:102.636000px;}
.yda{bottom:107.341644px;}
.yc9{bottom:107.376766px;}
.y122{bottom:107.687908px;}
.ya4{bottom:108.285000px;}
.y3{bottom:121.536000px;}
.yf7{bottom:121.650000px;}
.y148{bottom:122.190000px;}
.yf1{bottom:131.910000px;}
.yd9{bottom:132.885137px;}
.yc8{bottom:132.928608px;}
.y11f{bottom:133.095102px;}
.y2{bottom:146.736000px;}
.ya5{bottom:146.955000px;}
.y149{bottom:155.130000px;}
.yd8{bottom:158.470990px;}
.y11d{bottom:158.502296px;}
.yc7{bottom:158.522823px;}
.yf2{bottom:166.890000px;}
.ybb{bottom:168.510000px;}
.y143{bottom:174.090000px;}
.y170{bottom:175.890000px;}
.y31{bottom:180.030000px;}
.y11b{bottom:183.912706px;}
.y50{bottom:184.890000px;}
.yee{bottom:185.250000px;}
.ya6{bottom:185.610000px;}
.y14a{bottom:188.070000px;}
.y16f{bottom:196.590000px;}
.yd7{bottom:196.812463px;}
.yd4{bottom:196.812478px;}
.yc6{bottom:196.876800px;}
.yc3{bottom:196.876831px;}
.yba{bottom:199.470000px;}
.y30{bottom:200.730000px;}
.yf3{bottom:201.885000px;}
.y71{bottom:207.390000px;}
.y105{bottom:207.750000px;}
.y119{bottom:209.319900px;}
.y4f{bottom:216.030000px;}
.yed{bottom:216.210000px;}
.y16e{bottom:217.290000px;}
.y14b{bottom:221.010000px;}
.y2f{bottom:221.430000px;}
.ya7{bottom:224.280000px;}
.ya0{bottom:225.210000px;}
.yb9{bottom:230.610000px;}
.y117{bottom:234.727094px;}
.yf4{bottom:236.880000px;}
.y142{bottom:237.090000px;}
.y16d{bottom:237.990000px;}
.y70{bottom:238.350000px;}
.y104{bottom:238.710000px;}
.y2e{bottom:242.130000px;}
.y4e{bottom:246.990000px;}
.yec{bottom:247.350000px;}
.y62{bottom:248.610000px;}
.y14c{bottom:253.950000px;}
.y9f{bottom:256.350000px;}
.y16c{bottom:258.690000px;}
.y114{bottom:260.134288px;}
.yb8{bottom:261.570000px;}
.y150{bottom:262.005000px;}
.y2d{bottom:262.830000px;}
.ya8{bottom:262.980000px;}
.y141{bottom:264.090000px;}
.y6f{bottom:269.490000px;}
.y103{bottom:269.850000px;}
.yf5{bottom:271.875000px;}
.y4d{bottom:277.950000px;}
.yeb{bottom:278.310000px;}
.y16b{bottom:279.390000px;}
.y61{bottom:279.570000px;}
.y2c{bottom:283.530000px;}
.y111{bottom:285.573643px;}
.y9e{bottom:287.310000px;}
.yab{bottom:291.165000px;}
.yb7{bottom:292.710000px;}
.yf9{bottom:300.060000px;}
.y16a{bottom:300.090000px;}
.y8c{bottom:300.270000px;}
.y6e{bottom:300.450000px;}
.y102{bottom:300.810000px;}
.y2b{bottom:304.230000px;}
.y4c{bottom:309.090000px;}
.yea{bottom:309.270000px;}
.y60{bottom:310.710000px;}
.y9d{bottom:318.270000px;}
.y169{bottom:320.790000px;}
.yb6{bottom:323.670000px;}
.y2a{bottom:324.930000px;}
.y107{bottom:326.707565px;}
.y6d{bottom:327.450000px;}
.y8b{bottom:331.410000px;}
.y101{bottom:331.950000px;}
.y4b{bottom:340.095000px;}
.ye9{bottom:340.455000px;}
.y168{bottom:341.535000px;}
.y5f{bottom:341.715000px;}
.y29{bottom:345.675000px;}
.y9c{bottom:349.455000px;}
.yb5{bottom:350.715000px;}
.yd3{bottom:351.447189px;}
.y167{bottom:362.235000px;}
.y8a{bottom:362.415000px;}
.y100{bottom:362.955000px;}
.y28{bottom:366.375000px;}
.y4a{bottom:371.235000px;}
.ye8{bottom:371.415000px;}
.y5e{bottom:372.855000px;}
.y9b{bottom:380.415000px;}
.y166{bottom:382.935000px;}
.y27{bottom:387.075000px;}
.y89{bottom:393.555000px;}
.yff{bottom:394.095000px;}
.y49{bottom:402.195000px;}
.ye7{bottom:402.555000px;}
.y165{bottom:403.635000px;}
.y5d{bottom:403.815000px;}
.y26{bottom:407.775000px;}
.y9a{bottom:411.555000px;}
.yfe{bottom:421.095000px;}
.y134{bottom:421.245000px;}
.y164{bottom:424.335000px;}
.y88{bottom:424.515000px;}
.y25{bottom:428.475000px;}
.y48{bottom:433.335000px;}
.ye6{bottom:433.515000px;}
.y5c{bottom:434.955000px;}
.y99{bottom:442.515000px;}
.y163{bottom:445.035000px;}
.y24{bottom:449.175000px;}
.y87{bottom:451.335000px;}
.y47{bottom:464.295000px;}
.ye5{bottom:464.655000px;}
.y162{bottom:465.735000px;}
.y5b{bottom:465.915000px;}
.y23{bottom:469.875000px;}
.y98{bottom:473.655000px;}
.y86{bottom:484.635000px;}
.y161{bottom:486.435000px;}
.y22{bottom:490.575000px;}
.y5a{bottom:492.735000px;}
.y133{bottom:493.442340px;}
.y132{bottom:493.442348px;}
.y131{bottom:493.442356px;}
.y130{bottom:493.442365px;}
.y12d{bottom:493.442373px;}
.y46{bottom:495.435000px;}
.ye4{bottom:495.615000px;}
.y97{bottom:504.615000px;}
.y160{bottom:507.135000px;}
.y21{bottom:511.275000px;}
.y85{bottom:518.475000px;}
.y59{bottom:522.975000px;}
.y45{bottom:526.395000px;}
.ye3{bottom:526.755000px;}
.y15f{bottom:527.835000px;}
.yd5{bottom:531.603432px;}
.yd1{bottom:531.603447px;}
.yce{bottom:531.603456px;}
.y20{bottom:531.975000px;}
.y96{bottom:535.755000px;}
.y15e{bottom:548.535000px;}
.y84{bottom:549.615000px;}
.y1f{bottom:552.675000px;}
.y58{bottom:555.555000px;}
.y44{bottom:557.535000px;}
.ye2{bottom:557.715000px;}
.yfd{bottom:559.515000px;}
.y95{bottom:566.715000px;}
.y15d{bottom:569.235000px;}
.y1e{bottom:573.375000px;}
.y83{bottom:580.575000px;}
.y57{bottom:582.555000px;}
.y43{bottom:588.495000px;}
.ye1{bottom:588.855000px;}
.y15c{bottom:589.935000px;}
.yfc{bottom:590.655000px;}
.y1d{bottom:594.075000px;}
.y140{bottom:596.055000px;}
.yb4{bottom:596.955000px;}
.y94{bottom:597.855000px;}
.y15b{bottom:610.665000px;}
.y82{bottom:611.745000px;}
.y1c{bottom:614.805000px;}
.y6c{bottom:615.705000px;}
.y42{bottom:619.665000px;}
.ye0{bottom:619.845000px;}
.yfb{bottom:621.645000px;}
.y13f{bottom:627.045000px;}
.yb3{bottom:627.945000px;}
.y93{bottom:628.845000px;}
.y15a{bottom:631.365000px;}
.y1b{bottom:635.505000px;}
.y81{bottom:642.705000px;}
.ydf{bottom:647.025000px;}
.yef{bottom:648.720000px;}
.y41{bottom:650.625000px;}
.y159{bottom:652.065000px;}
.y6b{bottom:652.785000px;}
.y1a{bottom:656.205000px;}
.y13e{bottom:658.185000px;}
.yb2{bottom:659.085000px;}
.y92{bottom:659.985000px;}
.y158{bottom:672.765000px;}
.y80{bottom:673.845000px;}
.y19{bottom:676.905000px;}
.y40{bottom:681.765000px;}
.y6a{bottom:683.745000px;}
.y13d{bottom:689.145000px;}
.yb1{bottom:690.045000px;}
.y91{bottom:690.945000px;}
.y157{bottom:693.465000px;}
.y18{bottom:697.605000px;}
.y7f{bottom:704.805000px;}
.y3f{bottom:712.725000px;}
.y156{bottom:714.165000px;}
.y69{bottom:714.885000px;}
.y17{bottom:718.305000px;}
.y13c{bottom:720.285000px;}
.yb0{bottom:721.185000px;}
.y90{bottom:722.085000px;}
.y155{bottom:734.865000px;}
.y7e{bottom:735.945000px;}
.y16{bottom:739.005000px;}
.y3e{bottom:743.865000px;}
.y68{bottom:745.845000px;}
.y13b{bottom:751.245000px;}
.yaf{bottom:752.145000px;}
.y7c{bottom:752.685000px;}
.y8f{bottom:753.045000px;}
.y154{bottom:755.565000px;}
.y15{bottom:759.705000px;}
.yfa{bottom:772.845000px;}
.y106{bottom:773.505000px;}
.y12b{bottom:774.699250px;}
.y3d{bottom:774.825000px;}
.y153{bottom:776.265000px;}
.y67{bottom:776.985000px;}
.y14{bottom:780.405000px;}
.y13a{bottom:782.385000px;}
.yae{bottom:783.285000px;}
.y8e{bottom:784.185000px;}
.y129{bottom:800.106894px;}
.y13{bottom:801.105000px;}
.y3c{bottom:805.965000px;}
.y152{bottom:806.505000px;}
.y66{bottom:807.945000px;}
.yad{bottom:810.285000px;}
.yc2{bottom:810.807152px;}
.y8d{bottom:811.185000px;}
.ya1{bottom:812.880000px;}
.y139{bottom:813.345000px;}
.y7b{bottom:818.565000px;}
.y12{bottom:821.805000px;}
.y127{bottom:825.514088px;}
.y3b{bottom:836.925000px;}
.y65{bottom:839.085000px;}
.y138{bottom:840.345000px;}
.y144{bottom:842.040000px;}
.y11{bottom:842.505000px;}
.y7a{bottom:849.885000px;}
.y125{bottom:850.921282px;}
.y10{bottom:863.205000px;}
.y3a{bottom:868.065000px;}
.y64{bottom:870.045000px;}
.y123{bottom:876.328476px;}
.y79{bottom:881.250000px;}
.yf{bottom:883.950000px;}
.y39{bottom:899.070000px;}
.y63{bottom:901.230000px;}
.y120{bottom:901.735670px;}
.ye{bottom:904.650000px;}
.y78{bottom:912.210000px;}
.yd{bottom:926.610000px;}
.y11e{bottom:927.183065px;}
.y38{bottom:930.210000px;}
.y56{bottom:932.190000px;}
.y77{bottom:941.010000px;}
.y76{bottom:943.350000px;}
.y11c{bottom:952.593475px;}
.yc{bottom:954.330000px;}
.y72{bottom:960.090000px;}
.y37{bottom:961.170000px;}
.y55{bottom:963.330000px;}
.y11a{bottom:978.000669px;}
.yb{bottom:981.870000px;}
.yc4{bottom:991.022288px;}
.ybf{bottom:991.022319px;}
.ybc{bottom:991.022336px;}
.y36{bottom:992.310000px;}
.y54{bottom:994.290000px;}
.y118{bottom:1003.407863px;}
.ya{bottom:1009.410000px;}
.y35{bottom:1023.270000px;}
.y53{bottom:1025.430000px;}
.y115{bottom:1028.815057px;}
.y9{bottom:1037.130000px;}
.y112{bottom:1054.222251px;}
.y34{bottom:1054.410000px;}
.y52{bottom:1056.390000px;}
.y8{bottom:1064.670000px;}
.y110{bottom:1079.629445px;}
.y10f{bottom:1079.629458px;}
.y10e{bottom:1079.629471px;}
.y10b{bottom:1079.629484px;}
.y108{bottom:1079.629498px;}
.y33{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.y32{bottom:1115.610000px;}
.y6{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h20{height:24.201237px;}
.h17{height:49.858532px;}
.h19{height:49.858534px;}
.h12{height:49.874835px;}
.h16{height:49.874836px;}
.h14{height:49.874838px;}
.h22{height:50.809107px;}
.h8{height:50.940000px;}
.hc{height:51.480000px;}
.hf{height:53.709961px;}
.h26{height:53.853187px;}
.h23{height:54.267743px;}
.h1f{height:54.472715px;}
.h1e{height:54.472717px;}
.h6{height:54.878906px;}
.h21{height:56.655034px;}
.h1d{height:58.282399px;}
.h3{height:59.383125px;}
.h10{height:59.439023px;}
.h18{height:59.822139px;}
.h13{height:59.841691px;}
.h2{height:64.546875px;}
.h5{height:72.988945px;}
.hb{height:73.906875px;}
.h7{height:74.820586px;}
.h11{height:83.787539px;}
.h4{height:85.052461px;}
.he{height:94.029961px;}
.ha{height:112.786875px;}
.h9{height:115.399687px;}
.h24{height:123.006154px;}
.h1a{height:230.018556px;}
.h15{height:230.093777px;}
.h25{height:293.220000px;}
.hd{height:322.380000px;}
.h1b{height:331.380000px;}
.h1c{height:360.593564px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.260000px;}
.w11{width:59.274491px;}
.w12{width:59.314705px;}
.w10{width:68.965911px;}
.w13{width:70.868597px;}
.wa{width:83.143252px;}
.w6{width:83.210262px;}
.wd{width:93.392624px;}
.w9{width:93.425332px;}
.w7{width:104.959849px;}
.wb{width:115.124695px;}
.w14{width:359.928682px;}
.wf{width:372.777839px;}
.w8{width:505.645985px;}
.w5{width:513.180000px;}
.wc{width:515.445624px;}
.we{width:528.660000px;}
.w15{width:611.280000px;}
.w3{width:643.065000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:3.619202px;}
.x42{left:4.865816px;}
.x24{left:6.384421px;}
.x11{left:8.100000px;}
.x3f{left:9.699462px;}
.x44{left:11.250766px;}
.x2e{left:12.801087px;}
.x29{left:16.633543px;}
.x25{left:19.195823px;}
.x26{left:21.749588px;}
.x49{left:25.865551px;}
.x2d{left:26.878023px;}
.x2b{left:28.176574px;}
.x4a{left:30.388290px;}
.x1c{left:33.090000px;}
.x1b{left:41.655000px;}
.x1a{left:48.495000px;}
.x19{left:55.335000px;}
.x4d{left:63.825000px;}
.x18{left:89.850000px;}
.x35{left:91.230000px;}
.x2{left:127.655987px;}
.x1f{left:134.715000px;}
.x36{left:144.690000px;}
.x4f{left:152.745000px;}
.xb{left:154.649987px;}
.x1e{left:163.230000px;}
.x8{left:170.129987px;}
.xe{left:173.199000px;}
.x6{left:174.269987px;}
.x4{left:179.849987px;}
.x27{left:197.150854px;}
.x34{left:203.220000px;}
.x2f{left:207.198929px;}
.x17{left:210.060000px;}
.x23{left:215.506864px;}
.x38{left:216.749987px;}
.x1d{left:223.995000px;}
.x15{left:227.189987px;}
.xc{left:253.829987px;}
.x20{left:260.849987px;}
.x13{left:274.719000px;}
.x3a{left:281.931401px;}
.x4e{left:290.010000px;}
.x2c{left:294.674938px;}
.x7{left:299.054987px;}
.x50{left:304.380000px;}
.x33{left:308.414987px;}
.x43{left:309.596318px;}
.x14{left:334.119000px;}
.xf{left:336.999000px;}
.x3b{left:342.452506px;}
.x9{left:344.594987px;}
.x45{left:381.586245px;}
.x2a{left:389.160120px;}
.x31{left:399.053567px;}
.x3c{left:412.665031px;}
.x5{left:436.934987px;}
.x4c{left:451.154987px;}
.x46{left:453.576172px;}
.x3e{left:473.137881px;}
.x1{left:489.164987px;}
.x28{left:502.260904px;}
.x30{left:506.985791px;}
.x47{left:525.566099px;}
.x40{left:533.667029px;}
.x41{left:594.196177px;}
.x48{left:597.556025px;}
.x37{left:654.764987px;}
.x39{left:669.569987px;}
.xd{left:670.649987px;}
.x12{left:684.689987px;}
.x21{left:721.409987px;}
.x16{left:725.549987px;}
.x22{left:726.629987px;}
.x32{left:732.209987px;}
.xa{left:737.789987px;}
.x10{left:770.730000px;}
.x4b{left:792.869987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v4{vertical-align:8.320000pt;}
.v5{vertical-align:19.573333pt;}
.v6{vertical-align:28.053333pt;}
.v9{vertical-align:31.733333pt;}
.v8{vertical-align:34.453333pt;}
.v7{vertical-align:35.840000pt;}
.v3{vertical-align:42.880000pt;}
.v2{vertical-align:48.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.081067pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.192451pt;}
.ls1d{letter-spacing:0.251299pt;}
.ls6{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.290990pt;}
.ls14{letter-spacing:0.291085pt;}
.ls8{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.344480pt;}
.ls1c{letter-spacing:0.429957pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.858191pt;}
.lsd{letter-spacing:14.378667pt;}
.lsb{letter-spacing:14.464000pt;}
.lsa{letter-spacing:17.472000pt;}
.ls9{letter-spacing:17.600000pt;}
.lsc{letter-spacing:18.560000pt;}
.ls4{letter-spacing:21.248000pt;}
.ls3{letter-spacing:25.088000pt;}
.ls5{letter-spacing:28.288000pt;}
.lsf{letter-spacing:56.912640pt;}
.ls1{letter-spacing:57.242027pt;}
.lse{letter-spacing:85.738667pt;}
.ls19{letter-spacing:159.699173pt;}
.ls16{letter-spacing:450.650667pt;}
.ls1e{letter-spacing:585.477333pt;}
.wse{word-spacing:-53.120000pt;}
.ws15{word-spacing:-20.230391pt;}
.ws19{word-spacing:-20.223781pt;}
.ws21{word-spacing:-19.153093pt;}
.ws2{word-spacing:-18.720000pt;}
.ws25{word-spacing:-17.833774pt;}
.ws3{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws6{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.952000pt;}
.ws9{word-spacing:-13.824000pt;}
.wsb{word-spacing:-3.840000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.192000pt;}
.wsd{word-spacing:2.368000pt;}
.wsc{word-spacing:3.392000pt;}
.ws23{word-spacing:23.780276pt;}
.ws1d{word-spacing:68.688471pt;}
.ws18{word-spacing:68.710921pt;}
.ws1b{word-spacing:73.315387pt;}
.ws17{word-spacing:73.339350pt;}
.ws27{word-spacing:77.873652pt;}
.ws22{word-spacing:88.967631pt;}
.ws1c{word-spacing:91.280836pt;}
.ws24{word-spacing:106.120167pt;}
.ws8{word-spacing:113.258667pt;}
.ws26{word-spacing:121.481519pt;}
.wsf{word-spacing:127.413333pt;}
.ws20{word-spacing:150.704000pt;}
.ws1f{word-spacing:150.730667pt;}
.ws2a{word-spacing:156.997333pt;}
.ws29{word-spacing:157.066667pt;}
.ws13{word-spacing:164.085333pt;}
.ws11{word-spacing:165.813333pt;}
.ws12{word-spacing:170.506667pt;}
.ws10{word-spacing:185.120000pt;}
.ws1a{word-spacing:206.521025pt;}
.ws16{word-spacing:206.709057pt;}
.ws1e{word-spacing:427.568000pt;}
.ws28{word-spacing:562.448000pt;}
._13{margin-left:-3.968000pt;}
._b{margin-left:-2.816000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.182293pt;}
._a{width:2.432000pt;}
._8{width:3.904000pt;}
._9{width:4.864000pt;}
._11{width:5.894400pt;}
._e{width:7.033600pt;}
._d{width:8.089600pt;}
._c{width:9.088000pt;}
._f{width:10.496000pt;}
._10{width:11.457707pt;}
._17{width:12.619093pt;}
._16{width:13.593600pt;}
._15{width:14.489600pt;}
._14{width:17.152000pt;}
._19{width:18.304000pt;}
._18{width:20.480000pt;}
._2d{width:21.571413pt;}
._3{width:24.684800pt;}
._2{width:26.387200pt;}
._4{width:34.653227pt;}
._12{width:36.736000pt;}
._2b{width:37.760000pt;}
._7{width:53.464747pt;}
._6{width:54.391680pt;}
._5{width:71.680427pt;}
._20{width:139.743883pt;}
._24{width:144.372312pt;}
._1f{width:145.476766pt;}
._22{width:162.343632pt;}
._28{width:163.504045pt;}
._21{width:177.339399pt;}
._23{width:186.156314pt;}
._1e{width:195.340852pt;}
._1a{width:198.560000pt;}
._2a{width:204.423337pt;}
._27{width:213.351839pt;}
._29{width:217.948632pt;}
._1b{width:267.045569pt;}
._25{width:285.032592pt;}
._1d{width:294.798962pt;}
._1c{width:317.519243pt;}
._26{width:335.489390pt;}
._2c{width:864.266667pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.150267pt;}
.fs8{font-size:68.896020pt;}
.fs7{font-size:72.747415pt;}
.fs6{font-size:72.771192pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:3.434044pt;}
.yd6{bottom:3.434045pt;}
.yd2{bottom:3.434047pt;}
.ybe{bottom:3.435171pt;}
.yc5{bottom:3.435173pt;}
.yc1{bottom:3.435176pt;}
.y12c{bottom:4.288151pt;}
.y116{bottom:4.288180pt;}
.y113{bottom:4.316767pt;}
.y121{bottom:4.323914pt;}
.yde{bottom:4.556136pt;}
.ycd{bottom:4.557660pt;}
.y137{bottom:4.995235pt;}
.y14d{bottom:5.186667pt;}
.y12a{bottom:5.349732pt;}
.y14f{bottom:5.533333pt;}
.y12f{bottom:6.030661pt;}
.y10d{bottom:6.460799pt;}
.y10a{bottom:6.460800pt;}
.y74{bottom:9.440000pt;}
.yac{bottom:15.680000pt;}
.y73{bottom:20.160000pt;}
.y145{bottom:20.800000pt;}
.y75{bottom:24.320000pt;}
.y7d{bottom:24.480000pt;}
.y136{bottom:26.069658pt;}
.ycf{bottom:26.131841pt;}
.ybd{bottom:26.140387pt;}
.yc0{bottom:26.140388pt;}
.y12e{bottom:27.104819pt;}
.ydd{bottom:27.261161pt;}
.ycc{bottom:27.270105pt;}
.y128{bottom:27.934333pt;}
.yaa{bottom:28.293333pt;}
.y10c{bottom:29.044970pt;}
.y109{bottom:29.044973pt;}
.ya2{bottom:42.333333pt;}
.y135{bottom:47.143816pt;}
.ydc{bottom:49.966487pt;}
.ycb{bottom:49.982852pt;}
.y146{bottom:50.080000pt;}
.y126{bottom:50.518505pt;}
.yf8{bottom:50.586667pt;}
.ya3{bottom:61.893333pt;}
.y151{bottom:63.773333pt;}
.yf6{bottom:70.533333pt;}
.ydb{bottom:72.709468pt;}
.yca{bottom:72.733267pt;}
.y5{bottom:72.992000pt;}
.y124{bottom:73.138412pt;}
.y147{bottom:79.333333pt;}
.y14e{bottom:85.826667pt;}
.yf0{bottom:86.146667pt;}
.ya9{bottom:89.600000pt;}
.y4{bottom:91.232000pt;}
.yda{bottom:95.414795pt;}
.yc9{bottom:95.446014pt;}
.y122{bottom:95.722585pt;}
.ya4{bottom:96.253333pt;}
.y3{bottom:108.032000pt;}
.yf7{bottom:108.133333pt;}
.y148{bottom:108.613333pt;}
.yf1{bottom:117.253333pt;}
.yd9{bottom:118.120121pt;}
.yc8{bottom:118.158762pt;}
.y11f{bottom:118.306757pt;}
.y2{bottom:130.432000pt;}
.ya5{bottom:130.626667pt;}
.y149{bottom:137.893333pt;}
.yd8{bottom:140.863102pt;}
.y11d{bottom:140.890930pt;}
.yc7{bottom:140.909176pt;}
.yf2{bottom:148.346667pt;}
.ybb{bottom:149.786667pt;}
.y143{bottom:154.746667pt;}
.y170{bottom:156.346667pt;}
.y31{bottom:160.026667pt;}
.y11b{bottom:163.477961pt;}
.y50{bottom:164.346667pt;}
.yee{bottom:164.666667pt;}
.ya6{bottom:164.986667pt;}
.y14a{bottom:167.173333pt;}
.y16f{bottom:174.746667pt;}
.yd7{bottom:174.944412pt;}
.yd4{bottom:174.944425pt;}
.yc6{bottom:175.001600pt;}
.yc3{bottom:175.001627pt;}
.yba{bottom:177.306667pt;}
.y30{bottom:178.426667pt;}
.yf3{bottom:179.453333pt;}
.y71{bottom:184.346667pt;}
.y105{bottom:184.666667pt;}
.y119{bottom:186.062133pt;}
.y4f{bottom:192.026667pt;}
.yed{bottom:192.186667pt;}
.y16e{bottom:193.146667pt;}
.y14b{bottom:196.453333pt;}
.y2f{bottom:196.826667pt;}
.ya7{bottom:199.360000pt;}
.ya0{bottom:200.186667pt;}
.yb9{bottom:204.986667pt;}
.y117{bottom:208.646305pt;}
.yf4{bottom:210.560000pt;}
.y142{bottom:210.746667pt;}
.y16d{bottom:211.546667pt;}
.y70{bottom:211.866667pt;}
.y104{bottom:212.186667pt;}
.y2e{bottom:215.226667pt;}
.y4e{bottom:219.546667pt;}
.yec{bottom:219.866667pt;}
.y62{bottom:220.986667pt;}
.y14c{bottom:225.733333pt;}
.y9f{bottom:227.866667pt;}
.y16c{bottom:229.946667pt;}
.y114{bottom:231.230478pt;}
.yb8{bottom:232.506667pt;}
.y150{bottom:232.893333pt;}
.y2d{bottom:233.626667pt;}
.ya8{bottom:233.760000pt;}
.y141{bottom:234.746667pt;}
.y6f{bottom:239.546667pt;}
.y103{bottom:239.866667pt;}
.yf5{bottom:241.666667pt;}
.y4d{bottom:247.066667pt;}
.yeb{bottom:247.386667pt;}
.y16b{bottom:248.346667pt;}
.y61{bottom:248.506667pt;}
.y2c{bottom:252.026667pt;}
.y111{bottom:253.843238pt;}
.y9e{bottom:255.386667pt;}
.yab{bottom:258.813333pt;}
.yb7{bottom:260.186667pt;}
.yf9{bottom:266.720000pt;}
.y16a{bottom:266.746667pt;}
.y8c{bottom:266.906667pt;}
.y6e{bottom:267.066667pt;}
.y102{bottom:267.386667pt;}
.y2b{bottom:270.426667pt;}
.y4c{bottom:274.746667pt;}
.yea{bottom:274.906667pt;}
.y60{bottom:276.186667pt;}
.y9d{bottom:282.906667pt;}
.y169{bottom:285.146667pt;}
.yb6{bottom:287.706667pt;}
.y2a{bottom:288.826667pt;}
.y107{bottom:290.406724pt;}
.y6d{bottom:291.066667pt;}
.y8b{bottom:294.586667pt;}
.y101{bottom:295.066667pt;}
.y4b{bottom:302.306667pt;}
.ye9{bottom:302.626667pt;}
.y168{bottom:303.586667pt;}
.y5f{bottom:303.746667pt;}
.y29{bottom:307.266667pt;}
.y9c{bottom:310.626667pt;}
.yb5{bottom:311.746667pt;}
.yd3{bottom:312.397501pt;}
.y167{bottom:321.986667pt;}
.y8a{bottom:322.146667pt;}
.y100{bottom:322.626667pt;}
.y28{bottom:325.666667pt;}
.y4a{bottom:329.986667pt;}
.ye8{bottom:330.146667pt;}
.y5e{bottom:331.426667pt;}
.y9b{bottom:338.146667pt;}
.y166{bottom:340.386667pt;}
.y27{bottom:344.066667pt;}
.y89{bottom:349.826667pt;}
.yff{bottom:350.306667pt;}
.y49{bottom:357.506667pt;}
.ye7{bottom:357.826667pt;}
.y165{bottom:358.786667pt;}
.y5d{bottom:358.946667pt;}
.y26{bottom:362.466667pt;}
.y9a{bottom:365.826667pt;}
.yfe{bottom:374.306667pt;}
.y134{bottom:374.440000pt;}
.y164{bottom:377.186667pt;}
.y88{bottom:377.346667pt;}
.y25{bottom:380.866667pt;}
.y48{bottom:385.186667pt;}
.ye6{bottom:385.346667pt;}
.y5c{bottom:386.626667pt;}
.y99{bottom:393.346667pt;}
.y163{bottom:395.586667pt;}
.y24{bottom:399.266667pt;}
.y87{bottom:401.186667pt;}
.y47{bottom:412.706667pt;}
.ye5{bottom:413.026667pt;}
.y162{bottom:413.986667pt;}
.y5b{bottom:414.146667pt;}
.y23{bottom:417.666667pt;}
.y98{bottom:421.026667pt;}
.y86{bottom:430.786667pt;}
.y161{bottom:432.386667pt;}
.y22{bottom:436.066667pt;}
.y5a{bottom:437.986667pt;}
.y133{bottom:438.615414pt;}
.y132{bottom:438.615421pt;}
.y131{bottom:438.615428pt;}
.y130{bottom:438.615435pt;}
.y12d{bottom:438.615442pt;}
.y46{bottom:440.386667pt;}
.ye4{bottom:440.546667pt;}
.y97{bottom:448.546667pt;}
.y160{bottom:450.786667pt;}
.y21{bottom:454.466667pt;}
.y85{bottom:460.866667pt;}
.y59{bottom:464.866667pt;}
.y45{bottom:467.906667pt;}
.ye3{bottom:468.226667pt;}
.y15f{bottom:469.186667pt;}
.yd5{bottom:472.536384pt;}
.yd1{bottom:472.536397pt;}
.yce{bottom:472.536405pt;}
.y20{bottom:472.866667pt;}
.y96{bottom:476.226667pt;}
.y15e{bottom:487.586667pt;}
.y84{bottom:488.546667pt;}
.y1f{bottom:491.266667pt;}
.y58{bottom:493.826667pt;}
.y44{bottom:495.586667pt;}
.ye2{bottom:495.746667pt;}
.yfd{bottom:497.346667pt;}
.y95{bottom:503.746667pt;}
.y15d{bottom:505.986667pt;}
.y1e{bottom:509.666667pt;}
.y83{bottom:516.066667pt;}
.y57{bottom:517.826667pt;}
.y43{bottom:523.106667pt;}
.ye1{bottom:523.426667pt;}
.y15c{bottom:524.386667pt;}
.yfc{bottom:525.026667pt;}
.y1d{bottom:528.066667pt;}
.y140{bottom:529.826667pt;}
.yb4{bottom:530.626667pt;}
.y94{bottom:531.426667pt;}
.y15b{bottom:542.813333pt;}
.y82{bottom:543.773333pt;}
.y1c{bottom:546.493333pt;}
.y6c{bottom:547.293333pt;}
.y42{bottom:550.813333pt;}
.ye0{bottom:550.973333pt;}
.yfb{bottom:552.573333pt;}
.y13f{bottom:557.373333pt;}
.yb3{bottom:558.173333pt;}
.y93{bottom:558.973333pt;}
.y15a{bottom:561.213333pt;}
.y1b{bottom:564.893333pt;}
.y81{bottom:571.293333pt;}
.ydf{bottom:575.133333pt;}
.yef{bottom:576.640000pt;}
.y41{bottom:578.333333pt;}
.y159{bottom:579.613333pt;}
.y6b{bottom:580.253333pt;}
.y1a{bottom:583.293333pt;}
.y13e{bottom:585.053333pt;}
.yb2{bottom:585.853333pt;}
.y92{bottom:586.653333pt;}
.y158{bottom:598.013333pt;}
.y80{bottom:598.973333pt;}
.y19{bottom:601.693333pt;}
.y40{bottom:606.013333pt;}
.y6a{bottom:607.773333pt;}
.y13d{bottom:612.573333pt;}
.yb1{bottom:613.373333pt;}
.y91{bottom:614.173333pt;}
.y157{bottom:616.413333pt;}
.y18{bottom:620.093333pt;}
.y7f{bottom:626.493333pt;}
.y3f{bottom:633.533333pt;}
.y156{bottom:634.813333pt;}
.y69{bottom:635.453333pt;}
.y17{bottom:638.493333pt;}
.y13c{bottom:640.253333pt;}
.yb0{bottom:641.053333pt;}
.y90{bottom:641.853333pt;}
.y155{bottom:653.213333pt;}
.y7e{bottom:654.173333pt;}
.y16{bottom:656.893333pt;}
.y3e{bottom:661.213333pt;}
.y68{bottom:662.973333pt;}
.y13b{bottom:667.773333pt;}
.yaf{bottom:668.573333pt;}
.y7c{bottom:669.053333pt;}
.y8f{bottom:669.373333pt;}
.y154{bottom:671.613333pt;}
.y15{bottom:675.293333pt;}
.yfa{bottom:686.973333pt;}
.y106{bottom:687.560000pt;}
.y12b{bottom:688.621555pt;}
.y3d{bottom:688.733333pt;}
.y153{bottom:690.013333pt;}
.y67{bottom:690.653333pt;}
.y14{bottom:693.693333pt;}
.y13a{bottom:695.453333pt;}
.yae{bottom:696.253333pt;}
.y8e{bottom:697.053333pt;}
.y129{bottom:711.206128pt;}
.y13{bottom:712.093333pt;}
.y3c{bottom:716.413333pt;}
.y152{bottom:716.893333pt;}
.y66{bottom:718.173333pt;}
.yad{bottom:720.253333pt;}
.yc2{bottom:720.717468pt;}
.y8d{bottom:721.053333pt;}
.ya1{bottom:722.560000pt;}
.y139{bottom:722.973333pt;}
.y7b{bottom:727.613333pt;}
.y12{bottom:730.493333pt;}
.y127{bottom:733.790300pt;}
.y3b{bottom:743.933333pt;}
.y65{bottom:745.853333pt;}
.y138{bottom:746.973333pt;}
.y144{bottom:748.480000pt;}
.y11{bottom:748.893333pt;}
.y7a{bottom:755.453333pt;}
.y125{bottom:756.374473pt;}
.y10{bottom:767.293333pt;}
.y3a{bottom:771.613333pt;}
.y64{bottom:773.373333pt;}
.y123{bottom:778.958645pt;}
.y79{bottom:783.333333pt;}
.yf{bottom:785.733333pt;}
.y39{bottom:799.173333pt;}
.y63{bottom:801.093333pt;}
.y120{bottom:801.542817pt;}
.ye{bottom:804.133333pt;}
.y78{bottom:810.853333pt;}
.yd{bottom:823.653333pt;}
.y11e{bottom:824.162724pt;}
.y38{bottom:826.853333pt;}
.y56{bottom:828.613333pt;}
.y77{bottom:836.453333pt;}
.y76{bottom:838.533333pt;}
.y11c{bottom:846.749755pt;}
.yc{bottom:848.293333pt;}
.y72{bottom:853.413333pt;}
.y37{bottom:854.373333pt;}
.y55{bottom:856.293333pt;}
.y11a{bottom:869.333928pt;}
.yb{bottom:872.773333pt;}
.yc4{bottom:880.908700pt;}
.ybf{bottom:880.908728pt;}
.ybc{bottom:880.908743pt;}
.y36{bottom:882.053333pt;}
.y54{bottom:883.813333pt;}
.y118{bottom:891.918100pt;}
.ya{bottom:897.253333pt;}
.y35{bottom:909.573333pt;}
.y53{bottom:911.493333pt;}
.y115{bottom:914.502273pt;}
.y9{bottom:921.893333pt;}
.y112{bottom:937.086445pt;}
.y34{bottom:937.253333pt;}
.y52{bottom:939.013333pt;}
.y8{bottom:946.373333pt;}
.y110{bottom:959.670618pt;}
.y10f{bottom:959.670629pt;}
.y10e{bottom:959.670641pt;}
.y10b{bottom:959.670653pt;}
.y108{bottom:959.670665pt;}
.y33{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.y32{bottom:991.653333pt;}
.y6{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h20{height:21.512211pt;}
.h17{height:44.318695pt;}
.h19{height:44.318697pt;}
.h12{height:44.333186pt;}
.h16{height:44.333188pt;}
.h14{height:44.333190pt;}
.h22{height:45.163650pt;}
.h8{height:45.280000pt;}
.hc{height:45.760000pt;}
.hf{height:47.742188pt;}
.h26{height:47.869500pt;}
.h23{height:48.237993pt;}
.h1f{height:48.420191pt;}
.h1e{height:48.420193pt;}
.h6{height:48.781250pt;}
.h21{height:50.360030pt;}
.h1d{height:51.806577pt;}
.h3{height:52.785000pt;}
.h10{height:52.834688pt;}
.h18{height:53.175235pt;}
.h13{height:53.192615pt;}
.h2{height:57.375000pt;}
.h5{height:64.879063pt;}
.hb{height:65.695000pt;}
.h7{height:66.507188pt;}
.h11{height:74.477812pt;}
.h4{height:75.602187pt;}
.he{height:83.582187pt;}
.ha{height:100.255000pt;}
.h9{height:102.577500pt;}
.h24{height:109.338804pt;}
.h1a{height:204.460939pt;}
.h15{height:204.527802pt;}
.h25{height:260.640000pt;}
.hd{height:286.560000pt;}
.h1b{height:294.560000pt;}
.h1c{height:320.527613pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.120000pt;}
.w11{width:52.688437pt;}
.w12{width:52.724182pt;}
.w10{width:61.303032pt;}
.w13{width:62.994308pt;}
.wa{width:73.905112pt;}
.w6{width:73.964677pt;}
.wd{width:83.015666pt;}
.w9{width:83.044740pt;}
.w7{width:93.297643pt;}
.wb{width:102.333062pt;}
.w14{width:319.936606pt;}
.wf{width:331.358079pt;}
.w8{width:449.463098pt;}
.w5{width:456.160000pt;}
.wc{width:458.173888pt;}
.we{width:469.920000pt;}
.w15{width:543.360000pt;}
.w3{width:571.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:3.217069pt;}
.x42{left:4.325170pt;}
.x24{left:5.675040pt;}
.x11{left:7.200000pt;}
.x3f{left:8.621744pt;}
.x44{left:10.000680pt;}
.x2e{left:11.378744pt;}
.x29{left:14.785372pt;}
.x25{left:17.062954pt;}
.x26{left:19.332967pt;}
.x49{left:22.991601pt;}
.x2d{left:23.891576pt;}
.x2b{left:25.045844pt;}
.x4a{left:27.011814pt;}
.x1c{left:29.413333pt;}
.x1b{left:37.026667pt;}
.x1a{left:43.106667pt;}
.x19{left:49.186667pt;}
.x4d{left:56.733333pt;}
.x18{left:79.866667pt;}
.x35{left:81.093333pt;}
.x2{left:113.471988pt;}
.x1f{left:119.746667pt;}
.x36{left:128.613333pt;}
.x4f{left:135.773333pt;}
.xb{left:137.466655pt;}
.x1e{left:145.093333pt;}
.x8{left:151.226655pt;}
.xe{left:153.954667pt;}
.x6{left:154.906655pt;}
.x4{left:159.866655pt;}
.x27{left:175.245204pt;}
.x34{left:180.640000pt;}
.x2f{left:184.176826pt;}
.x17{left:186.720000pt;}
.x23{left:191.561656pt;}
.x38{left:192.666655pt;}
.x1d{left:199.106667pt;}
.x15{left:201.946655pt;}
.xc{left:225.626655pt;}
.x20{left:231.866655pt;}
.x13{left:244.194667pt;}
.x3a{left:250.605690pt;}
.x4e{left:257.786667pt;}
.x2c{left:261.933278pt;}
.x7{left:265.826655pt;}
.x50{left:270.560000pt;}
.x33{left:274.146655pt;}
.x43{left:275.196727pt;}
.x14{left:296.994667pt;}
.xf{left:299.554667pt;}
.x3b{left:304.402228pt;}
.x9{left:306.306655pt;}
.x45{left:339.187773pt;}
.x2a{left:345.920106pt;}
.x31{left:354.714281pt;}
.x3c{left:366.813361pt;}
.x5{left:388.386655pt;}
.x4c{left:401.026655pt;}
.x46{left:403.178819pt;}
.x3e{left:420.567005pt;}
.x1{left:434.813322pt;}
.x28{left:446.454137pt;}
.x30{left:450.654037pt;}
.x47{left:467.169865pt;}
.x40{left:474.370692pt;}
.x41{left:528.174380pt;}
.x48{left:531.160911pt;}
.x37{left:582.013322pt;}
.x39{left:595.173322pt;}
.xd{left:596.133322pt;}
.x12{left:608.613322pt;}
.x21{left:641.253322pt;}
.x16{left:644.933322pt;}
.x22{left:645.893322pt;}
.x32{left:650.853322pt;}
.xa{left:655.813322pt;}
.x10{left:685.093333pt;}
.x4b{left:704.773322pt;}
.x3{left:718.373322pt;}
}




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