
    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_6db4447d0ad0b3025cd171a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907715;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_c0e1a5757906bb41c07472db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_0dac7af54ec78e9ed7d7e061.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b95208d8606f4ecdfa60040d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.764160;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_48bb9c3f2ba5710b00013e20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_2c88d547c0b3e657908d1144.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.078125;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_bdb9987bdd843c73482fb05c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_a08718ccfa4d5f87a9c55ba0.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da55103babee71e0386621ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_1a20a0c96884d6357fc5ffaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_4e5e774de79eec68a85f5117.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940918;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_8abd13df0b72fd87edaaded8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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:ffd;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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:fff;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.fff{font-family:fff;line-height:0.758789;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:ff10;src:url('chunks/assets/font_21c831832edc993e49fb50ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.983398;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:ff11;src:url('chunks/assets/font_b110f66035c3d8e60a55edc4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.266400px;}
.ls20{letter-spacing:-0.138000px;}
.ls1c{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.115800px;}
.ls26{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.078000px;}
.lsd{letter-spacing:-0.058320px;}
.ls1f{letter-spacing:-0.048960px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.054720px;}
.lsb{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.089400px;}
.ls15{letter-spacing:0.108480px;}
.ls14{letter-spacing:0.132480px;}
.ls24{letter-spacing:0.147000px;}
.lsc{letter-spacing:0.174240px;}
.ls23{letter-spacing:0.185760px;}
.ls4{letter-spacing:0.189600px;}
.ls5{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.306000px;}
.lse{letter-spacing:0.309000px;}
.ls6{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.894240px;}
.ls18{letter-spacing:28.385280px;}
.ls16{letter-spacing:38.465280px;}
.ls19{letter-spacing:48.360000px;}
.ls1b{letter-spacing:49.985280px;}
.ls1a{letter-spacing:59.321280px;}
.ls1d{letter-spacing:59.345280px;}
.ls0{letter-spacing:60.489360px;}
.lsa{letter-spacing:61.349760px;}
.ls1e{letter-spacing:68.484000px;}
.ls17{letter-spacing:78.065280px;}
.ls7{letter-spacing:80.789760px;}
.ls8{letter-spacing:105.965760px;}
.ls1{letter-spacing:846.006240px;}
.ls12{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-66.240000px;}
.ws13{word-spacing:-54.000000px;}
.ws4{word-spacing:-16.632000px;}
.ws1{word-spacing:-16.563840px;}
.ws5{word-spacing:-16.272000px;}
.wsd{word-spacing:-15.768000px;}
.ws2{word-spacing:-15.226440px;}
.ws16{word-spacing:-15.117240px;}
.ws17{word-spacing:-15.059640px;}
.ws15{word-spacing:-15.024960px;}
.wse{word-spacing:-14.970240px;}
.ws18{word-spacing:-14.861040px;}
.ws14{word-spacing:-14.832240px;}
.ws7{word-spacing:-13.814760px;}
.wsc{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.566360px;}
.ws9{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.427760px;}
.ws8{word-spacing:-13.389960px;}
.ws12{word-spacing:-12.204000px;}
.wsf{word-spacing:-10.902240px;}
.ws11{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:43.326000px;}
._7{margin-left:-11.701920px;}
._9{margin-left:-10.392000px;}
._4{margin-left:-8.388000px;}
._8{margin-left:-5.872560px;}
._6{margin-left:-4.151280px;}
._5{margin-left:-2.851920px;}
._3{margin-left:-1.059840px;}
._0{width:1.195200px;}
._1{width:2.635920px;}
._1c{width:3.645360px;}
._1d{width:4.918320px;}
._17{width:6.491520px;}
._18{width:7.551360px;}
._1e{width:9.328320px;}
._1b{width:10.699200px;}
._1f{width:12.175200px;}
._19{width:13.793760px;}
._16{width:16.845120px;}
._15{width:17.919360px;}
._22{width:19.408320px;}
._11{width:20.782080px;}
._21{width:21.848160px;}
._20{width:23.015520px;}
._1a{width:24.497280px;}
._25{width:25.977600px;}
._23{width:28.776000px;}
._d{width:29.856960px;}
._13{width:38.132640px;}
._a{width:44.893440px;}
._10{width:47.581920px;}
._2{width:60.716160px;}
._c{width:83.134560px;}
._24{width:100.221120px;}
._e{width:194.721120px;}
._b{width:201.209760px;}
._12{width:203.172240px;}
._f{width:205.097760px;}
._14{width:849.185760px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc2{color:transparent;}
.fc7{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(255,0,0);}
.fc0{color:rgb(146,208,80);}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.960000px;}
.y6{bottom:4.500000px;}
.y10{bottom:10.440000px;}
.y3{bottom:12.780000px;}
.y2{bottom:32.760000px;}
.y8{bottom:57.060000px;}
.yf{bottom:66.420000px;}
.y5{bottom:74.880000px;}
.yf6{bottom:117.900000px;}
.y93{bottom:120.780000px;}
.ye{bottom:122.220000px;}
.yb4{bottom:133.740000px;}
.yf5{bottom:140.580000px;}
.y92{bottom:153.390000px;}
.y3a{bottom:153.750000px;}
.yb3{bottom:155.550000px;}
.y118{bottom:170.670000px;}
.y39{bottom:173.550000px;}
.y16b{bottom:174.270000px;}
.y137{bottom:175.170000px;}
.yb2{bottom:177.330000px;}
.yf4{bottom:177.510000px;}
.y91{bottom:183.270000px;}
.y38{bottom:193.350000px;}
.y16a{bottom:196.050000px;}
.y136{bottom:196.770000px;}
.yb1{bottom:199.830000px;}
.y90{bottom:200.910000px;}
.y117{bottom:204.330000px;}
.y135{bottom:218.550000px;}
.y37{bottom:219.090000px;}
.yb0{bottom:221.610000px;}
.y18c{bottom:222.330000px;}
.y116{bottom:226.110000px;}
.yf3{bottom:226.290000px;}
.y169{bottom:229.710000px;}
.y8f{bottom:230.790000px;}
.y36{bottom:238.890000px;}
.y134{bottom:241.230000px;}
.yaf{bottom:244.290000px;}
.yf2{bottom:247.890000px;}
.y8e{bottom:248.430000px;}
.y18b{bottom:258.330000px;}
.y35{bottom:258.690000px;}
.y168{bottom:263.550000px;}
.y133{bottom:263.730000px;}
.yae{bottom:265.890000px;}
.y115{bottom:269.490000px;}
.yf1{bottom:269.670000px;}
.y34{bottom:278.490000px;}
.y8d{bottom:279.390000px;}
.y18{bottom:281.010000px;}
.y167{bottom:285.330000px;}
.yf0{bottom:291.450000px;}
.y18a{bottom:291.990000px;}
.y132{bottom:292.890000px;}
.y8c{bottom:301.170000px;}
.yad{bottom:302.970000px;}
.y33{bottom:304.050000px;}
.y114{bottom:304.770000px;}
.y166{bottom:306.930000px;}
.y189{bottom:313.770000px;}
.yef{bottom:313.950000px;}
.y32{bottom:323.850000px;}
.y17{bottom:324.930000px;}
.y131{bottom:328.170000px;}
.y188{bottom:335.550000px;}
.yee{bottom:335.730000px;}
.y113{bottom:340.770000px;}
.y31{bottom:343.650000px;}
.y8b{bottom:345.450000px;}
.y130{bottom:350.670000px;}
.yac{bottom:351.570000px;}
.y187{bottom:357.330000px;}
.y16{bottom:358.770000px;}
.y165{bottom:362.370000px;}
.y112{bottom:362.550000px;}
.y30{bottom:363.450000px;}
.yed{bottom:364.890000px;}
.yab{bottom:373.350000px;}
.y8a{bottom:374.790000px;}
.y15{bottom:375.150000px;}
.y186{bottom:378.930000px;}
.y14c{bottom:382.710000px;}
.y2f{bottom:383.250000px;}
.y164{bottom:384.150000px;}
.y111{bottom:384.330000px;}
.yaa{bottom:395.175000px;}
.y14{bottom:396.075000px;}
.yec{bottom:400.215000px;}
.y185{bottom:400.755000px;}
.y2e{bottom:409.035000px;}
.y89{bottom:409.935000px;}
.y110{bottom:413.535000px;}
.y14b{bottom:416.415000px;}
.y13{bottom:416.955000px;}
.y163{bottom:418.035000px;}
.y12f{bottom:418.575000px;}
.yeb{bottom:421.815000px;}
.y184{bottom:422.535000px;}
.ya9{bottom:423.255000px;}
.y2d{bottom:428.835000px;}
.y88{bottom:431.715000px;}
.y14a{bottom:438.195000px;}
.ycf{bottom:439.095000px;}
.yea{bottom:443.595000px;}
.y183{bottom:444.315000px;}
.y12e{bottom:447.735000px;}
.y10f{bottom:448.635000px;}
.y162{bottom:451.695000px;}
.ya8{bottom:452.415000px;}
.y87{bottom:453.315000px;}
.y2c{bottom:454.575000px;}
.y12{bottom:456.015000px;}
.ye9{bottom:465.375000px;}
.y182{bottom:465.915000px;}
.yce{bottom:472.935000px;}
.y161{bottom:473.475000px;}
.y149{bottom:475.095000px;}
.y86{bottom:475.995000px;}
.y2b{bottom:481.575000px;}
.y12d{bottom:483.015000px;}
.y10e{bottom:483.375000px;}
.y181{bottom:487.695000px;}
.y11{bottom:489.675000px;}
.ycd{bottom:494.535000px;}
.y85{bottom:497.775000px;}
.ye8{bottom:501.375000px;}
.yd{bottom:505.335000px;}
.y12c{bottom:505.515000px;}
.y160{bottom:507.135000px;}
.y10d{bottom:517.035000px;}
.ycc{bottom:517.215000px;}
.y84{bottom:519.555000px;}
.y180{bottom:521.535000px;}
.y148{bottom:522.255000px;}
.y12b{bottom:528.195000px;}
.y15f{bottom:528.915000px;}
.y2a{bottom:531.075000px;}
.y10c{bottom:538.815000px;}
.ycb{bottom:538.995000px;}
.y83{bottom:541.155000px;}
.y147{bottom:542.415000px;}
.y17f{bottom:543.135000px;}
.ye7{bottom:550.155000px;}
.y12a{bottom:550.695000px;}
.y29{bottom:556.815000px;}
.y10b{bottom:560.595000px;}
.yca{bottom:561.495000px;}
.y146{bottom:562.575000px;}
.y82{bottom:562.935000px;}
.ye6{bottom:571.755000px;}
.y17e{bottom:576.975000px;}
.y10a{bottom:582.195000px;}
.y28{bottom:582.555000px;}
.y145{bottom:584.175000px;}
.y15e{bottom:584.355000px;}
.y6b{bottom:584.535000px;}
.y81{bottom:584.715000px;}
.y129{bottom:585.435000px;}
.ye5{bottom:593.535000px;}
.yc9{bottom:598.575000px;}
.y109{bottom:603.975000px;}
.y144{bottom:605.955000px;}
.y15d{bottom:606.135000px;}
.y80{bottom:606.495000px;}
.y27{bottom:608.295000px;}
.ye4{bottom:615.315000px;}
.y6a{bottom:618.195000px;}
.y17d{bottom:620.355000px;}
.y128{bottom:621.435000px;}
.y108{bottom:625.755000px;}
.ya7{bottom:626.295000px;}
.y26{bottom:628.095000px;}
.ye3{bottom:637.095000px;}
.y15c{bottom:639.795000px;}
.y69{bottom:639.975000px;}
.y143{bottom:642.885000px;}
.y57{bottom:644.325000px;}
.y107{bottom:647.385000px;}
.y25{bottom:647.745000px;}
.ya6{bottom:647.925000px;}
.y7f{bottom:650.805000px;}
.y17c{bottom:654.225000px;}
.ye2{bottom:658.725000px;}
.y15b{bottom:661.605000px;}
.y56{bottom:664.305000px;}
.y24{bottom:667.545000px;}
.yc8{bottom:668.085000px;}
.ya5{bottom:669.705000px;}
.y106{bottom:670.065000px;}
.y127{bottom:670.245000px;}
.y7e{bottom:672.585000px;}
.yc{bottom:672.945000px;}
.y68{bottom:673.665000px;}
.y17b{bottom:675.825000px;}
.ye1{bottom:680.505000px;}
.y15a{bottom:683.385000px;}
.y55{bottom:684.465000px;}
.y23{bottom:687.345000px;}
.ya4{bottom:691.485000px;}
.y142{bottom:691.665000px;}
.y105{bottom:691.845000px;}
.y7d{bottom:695.085000px;}
.y67{bottom:695.445000px;}
.ye0{bottom:702.285000px;}
.yc7{bottom:704.085000px;}
.y54{bottom:704.625000px;}
.y22{bottom:707.145000px;}
.y17a{bottom:709.665000px;}
.yb{bottom:710.205000px;}
.y141{bottom:713.265000px;}
.y104{bottom:714.525000px;}
.y7c{bottom:716.865000px;}
.y159{bottom:717.045000px;}
.ya3{bottom:720.645000px;}
.y126{bottom:721.005000px;}
.ydf{bottom:724.065000px;}
.y53{bottom:724.785000px;}
.yc6{bottom:725.685000px;}
.y21{bottom:726.945000px;}
.y66{bottom:727.485000px;}
.y179{bottom:731.445000px;}
.y140{bottom:735.945000px;}
.y7b{bottom:738.645000px;}
.y158{bottom:738.825000px;}
.y103{bottom:742.785000px;}
.y65{bottom:743.145000px;}
.y52{bottom:744.945000px;}
.yde{bottom:745.665000px;}
.yc5{bottom:747.465000px;}
.y178{bottom:753.045000px;}
.y20{bottom:753.945000px;}
.ya2{bottom:754.665000px;}
.y125{bottom:756.285000px;}
.y13f{bottom:757.725000px;}
.y7a{bottom:760.425000px;}
.y157{bottom:760.605000px;}
.y64{bottom:760.785000px;}
.ydd{bottom:767.445000px;}
.yc4{bottom:769.245000px;}
.ya1{bottom:772.305000px;}
.y177{bottom:774.825000px;}
.y102{bottom:777.885000px;}
.y79{bottom:782.025000px;}
.y156{bottom:782.385000px;}
.y51{bottom:784.725000px;}
.ydc{bottom:789.225000px;}
.yc3{bottom:791.025000px;}
.y13e{bottom:792.285000px;}
.y63{bottom:793.005000px;}
.y101{bottom:799.665000px;}
.ya0{bottom:803.445000px;}
.y78{bottom:803.805000px;}
.y1f{bottom:804.525000px;}
.y62{bottom:808.485000px;}
.y176{bottom:808.665000px;}
.ydb{bottom:811.005000px;}
.yc2{bottom:812.625000px;}
.y124{bottom:813.165000px;}
.y155{bottom:816.045000px;}
.y50{bottom:824.325000px;}
.y9f{bottom:825.045000px;}
.y61{bottom:826.125000px;}
.y44{bottom:826.305000px;}
.y77{bottom:826.485000px;}
.y13d{bottom:828.285000px;}
.y100{bottom:828.825000px;}
.y175{bottom:830.265000px;}
.yda{bottom:832.605000px;}
.yc1{bottom:835.305000px;}
.y4f{bottom:846.105000px;}
.y9e{bottom:847.725000px;}
.y76{bottom:848.985000px;}
.y123{bottom:849.705000px;}
.y174{bottom:852.045000px;}
.yd9{bottom:854.385000px;}
.y1e{bottom:855.285000px;}
.y60{bottom:858.345000px;}
.y43{bottom:862.125000px;}
.yff{bottom:864.645000px;}
.y4e{bottom:867.705000px;}
.y9d{bottom:869.505000px;}
.y75{bottom:870.765000px;}
.yc0{bottom:872.205000px;}
.y5f{bottom:873.825000px;}
.yd8{bottom:876.165000px;}
.y13c{bottom:877.065000px;}
.y154{bottom:883.545000px;}
.yfe{bottom:884.805000px;}
.y122{bottom:884.985000px;}
.y42{bottom:885.885000px;}
.y4d{bottom:889.485000px;}
.y9c{bottom:891.330000px;}
.y5e{bottom:891.510000px;}
.y74{bottom:893.490000px;}
.yd7{bottom:897.990000px;}
.y13b{bottom:899.610000px;}
.y153{bottom:905.370000px;}
.y1d{bottom:906.090000px;}
.y121{bottom:906.630000px;}
.y173{bottom:907.530000px;}
.y4c{bottom:911.310000px;}
.y9b{bottom:912.930000px;}
.y73{bottom:915.270000px;}
.yd6{bottom:920.490000px;}
.yfd{bottom:920.850000px;}
.ybf{bottom:921.030000px;}
.y13a{bottom:921.390000px;}
.y5d{bottom:923.730000px;}
.y152{bottom:926.970000px;}
.y120{bottom:929.310000px;}
.y4b{bottom:933.090000px;}
.y41{bottom:934.710000px;}
.y72{bottom:936.870000px;}
.y5c{bottom:939.210000px;}
.yfc{bottom:942.450000px;}
.ybe{bottom:942.630000px;}
.yd5{bottom:943.170000px;}
.y139{bottom:944.070000px;}
.y11f{bottom:951.090000px;}
.y4a{bottom:954.690000px;}
.y9a{bottom:956.490000px;}
.y1c{bottom:956.850000px;}
.y71{bottom:958.650000px;}
.y151{bottom:960.810000px;}
.y172{bottom:962.970000px;}
.ybd{bottom:964.410000px;}
.yd4{bottom:964.950000px;}
.yfb{bottom:965.130000px;}
.y138{bottom:965.850000px;}
.y11e{bottom:972.870000px;}
.y49{bottom:976.470000px;}
.y99{bottom:978.090000px;}
.y70{bottom:980.430000px;}
.y150{bottom:982.590000px;}
.y40{bottom:984.030000px;}
.y171{bottom:984.750000px;}
.ybc{bottom:986.190000px;}
.yd3{bottom:987.450000px;}
.yfa{bottom:987.810000px;}
.y5b{bottom:989.070000px;}
.y11d{bottom:994.470000px;}
.y48{bottom:998.250000px;}
.y6f{bottom:1002.210000px;}
.y5a{bottom:1004.730000px;}
.y170{bottom:1006.530000px;}
.y1b{bottom:1006.710000px;}
.y98{bottom:1007.250000px;}
.ybb{bottom:1007.970000px;}
.yd2{bottom:1009.230000px;}
.yf9{bottom:1009.410000px;}
.y14f{bottom:1016.250000px;}
.y11c{bottom:1017.150000px;}
.y59{bottom:1022.190000px;}
.y6e{bottom:1023.810000px;}
.yba{bottom:1029.570000px;}
.yd1{bottom:1031.910000px;}
.yf8{bottom:1032.090000px;}
.y3f{bottom:1033.530000px;}
.y47{bottom:1038.030000px;}
.y11b{bottom:1038.930000px;}
.y16f{bottom:1040.190000px;}
.y97{bottom:1042.530000px;}
.y1a{bottom:1046.130000px;}
.yb9{bottom:1051.350000px;}
.y6d{bottom:1052.970000px;}
.yd0{bottom:1053.510000px;}
.y58{bottom:1056.030000px;}
.y3e{bottom:1059.270000px;}
.y14e{bottom:1059.630000px;}
.yf7{bottom:1061.250000px;}
.y16e{bottom:1061.970000px;}
.y96{bottom:1064.310000px;}
.yb8{bottom:1073.130000px;}
.y11a{bottom:1073.490000px;}
.y46{bottom:1077.630000px;}
.y3d{bottom:1085.010000px;}
.y95{bottom:1086.810000px;}
.y6c{bottom:1090.410000px;}
.yb7{bottom:1094.910000px;}
.y16d{bottom:1095.630000px;}
.y45{bottom:1099.410000px;}
.y14d{bottom:1099.590000px;}
.y119{bottom:1101.750000px;}
.ya{bottom:1105.530000px;}
.y94{bottom:1108.590000px;}
.y3c{bottom:1110.750000px;}
.yb6{bottom:1116.510000px;}
.y16c{bottom:1117.410000px;}
.y19{bottom:1128.930000px;}
.y3b{bottom:1137.750000px;}
.yb5{bottom:1138.290000px;}
.y9{bottom:1139.220000px;}
.y4{bottom:1188.360000px;}
.y1{bottom:1204.740000px;}
.h6{height:20.160000px;}
.hd{height:20.196000px;}
.ha{height:37.260000px;}
.h3{height:43.681992px;}
.h14{height:47.980898px;}
.h13{height:49.394180px;}
.h4{height:51.677227px;}
.h17{height:53.302500px;}
.h16{height:53.709961px;}
.h7{height:57.280781px;}
.h2{height:58.140000px;}
.he{height:63.344531px;}
.h5{height:65.884219px;}
.h10{height:67.824844px;}
.h11{height:68.084282px;}
.hf{height:68.554688px;}
.h12{height:68.956875px;}
.h9{height:72.007031px;}
.h15{height:72.562500px;}
.hc{height:145.069805px;}
.hb{height:167.610000px;}
.h8{height:377.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.096000px;}
.w9{width:265.530000px;}
.w2{width:290.370000px;}
.w6{width:323.850000px;}
.w5{width:352.875000px;}
.w3{width:397.695000px;}
.w7{width:656.205000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x1{left:97.416000px;}
.x4{left:105.330000px;}
.x6{left:108.035987px;}
.x14{left:116.135987px;}
.x10{left:124.595987px;}
.xa{left:128.916000px;}
.x11{left:135.035987px;}
.x1a{left:138.635987px;}
.x1c{left:148.895987px;}
.x12{left:162.029987px;}
.x1b{left:165.629987px;}
.x1d{left:175.889987px;}
.x15{left:189.029987px;}
.x13{left:216.029987px;}
.x5{left:219.630000px;}
.x16{left:243.029987px;}
.x18{left:270.029987px;}
.x9{left:277.425000px;}
.x2{left:281.199000px;}
.x19{left:378.074987px;}
.x3{left:387.795000px;}
.xd{left:434.055000px;}
.x8{left:460.545000px;}
.x17{left:501.764987px;}
.xb{left:513.114000px;}
.xe{left:518.865000px;}
.xc{left:713.664000px;}
.xf{left:777.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.236800pt;}
.ls20{letter-spacing:-0.122667pt;}
.ls1c{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls26{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.069333pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls1f{letter-spacing:-0.043520pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.048640pt;}
.lsb{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.079467pt;}
.ls15{letter-spacing:0.096427pt;}
.ls14{letter-spacing:0.117760pt;}
.ls24{letter-spacing:0.130667pt;}
.lsc{letter-spacing:0.154880pt;}
.ls23{letter-spacing:0.165120pt;}
.ls4{letter-spacing:0.168533pt;}
.ls5{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.274667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.794880pt;}
.ls18{letter-spacing:25.231360pt;}
.ls16{letter-spacing:34.191360pt;}
.ls19{letter-spacing:42.986667pt;}
.ls1b{letter-spacing:44.431360pt;}
.ls1a{letter-spacing:52.730027pt;}
.ls1d{letter-spacing:52.751360pt;}
.ls0{letter-spacing:53.768320pt;}
.lsa{letter-spacing:54.533120pt;}
.ls1e{letter-spacing:60.874667pt;}
.ls17{letter-spacing:69.391360pt;}
.ls7{letter-spacing:71.813120pt;}
.ls8{letter-spacing:94.191787pt;}
.ls1{letter-spacing:752.005547pt;}
.ls12{letter-spacing:754.831787pt;}
.ws10{word-spacing:-58.880000pt;}
.ws13{word-spacing:-48.000000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws1{word-spacing:-14.723413pt;}
.ws5{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.016000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws16{word-spacing:-13.437547pt;}
.ws17{word-spacing:-13.386347pt;}
.ws15{word-spacing:-13.355520pt;}
.wse{word-spacing:-13.306880pt;}
.ws18{word-spacing:-13.209813pt;}
.ws14{word-spacing:-13.184213pt;}
.ws7{word-spacing:-12.279787pt;}
.wsc{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.058987pt;}
.ws9{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.935787pt;}
.ws8{word-spacing:-11.902187pt;}
.ws12{word-spacing:-10.848000pt;}
.wsf{word-spacing:-9.690880pt;}
.ws11{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:38.512000pt;}
._7{margin-left:-10.401707pt;}
._9{margin-left:-9.237333pt;}
._4{margin-left:-7.456000pt;}
._8{margin-left:-5.220053pt;}
._6{margin-left:-3.690027pt;}
._5{margin-left:-2.535040pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.062400pt;}
._1{width:2.343040pt;}
._1c{width:3.240320pt;}
._1d{width:4.371840pt;}
._17{width:5.770240pt;}
._18{width:6.712320pt;}
._1e{width:8.291840pt;}
._1b{width:9.510400pt;}
._1f{width:10.822400pt;}
._19{width:12.261120pt;}
._16{width:14.973440pt;}
._15{width:15.928320pt;}
._22{width:17.251840pt;}
._11{width:18.472960pt;}
._21{width:19.420587pt;}
._20{width:20.458240pt;}
._1a{width:21.775360pt;}
._25{width:23.091200pt;}
._23{width:25.578667pt;}
._d{width:26.539520pt;}
._13{width:33.895680pt;}
._a{width:39.905280pt;}
._10{width:42.295040pt;}
._2{width:53.969920pt;}
._c{width:73.897387pt;}
._24{width:89.085440pt;}
._e{width:173.085440pt;}
._b{width:178.853120pt;}
._12{width:180.597547pt;}
._f{width:182.309120pt;}
._14{width:754.831787pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.520000pt;}
.y6{bottom:4.000000pt;}
.y10{bottom:9.280000pt;}
.y3{bottom:11.360000pt;}
.y2{bottom:29.120000pt;}
.y8{bottom:50.720000pt;}
.yf{bottom:59.040000pt;}
.y5{bottom:66.560000pt;}
.yf6{bottom:104.800000pt;}
.y93{bottom:107.360000pt;}
.ye{bottom:108.640000pt;}
.yb4{bottom:118.880000pt;}
.yf5{bottom:124.960000pt;}
.y92{bottom:136.346667pt;}
.y3a{bottom:136.666667pt;}
.yb3{bottom:138.266667pt;}
.y118{bottom:151.706667pt;}
.y39{bottom:154.266667pt;}
.y16b{bottom:154.906667pt;}
.y137{bottom:155.706667pt;}
.yb2{bottom:157.626667pt;}
.yf4{bottom:157.786667pt;}
.y91{bottom:162.906667pt;}
.y38{bottom:171.866667pt;}
.y16a{bottom:174.266667pt;}
.y136{bottom:174.906667pt;}
.yb1{bottom:177.626667pt;}
.y90{bottom:178.586667pt;}
.y117{bottom:181.626667pt;}
.y135{bottom:194.266667pt;}
.y37{bottom:194.746667pt;}
.yb0{bottom:196.986667pt;}
.y18c{bottom:197.626667pt;}
.y116{bottom:200.986667pt;}
.yf3{bottom:201.146667pt;}
.y169{bottom:204.186667pt;}
.y8f{bottom:205.146667pt;}
.y36{bottom:212.346667pt;}
.y134{bottom:214.426667pt;}
.yaf{bottom:217.146667pt;}
.yf2{bottom:220.346667pt;}
.y8e{bottom:220.826667pt;}
.y18b{bottom:229.626667pt;}
.y35{bottom:229.946667pt;}
.y168{bottom:234.266667pt;}
.y133{bottom:234.426667pt;}
.yae{bottom:236.346667pt;}
.y115{bottom:239.546667pt;}
.yf1{bottom:239.706667pt;}
.y34{bottom:247.546667pt;}
.y8d{bottom:248.346667pt;}
.y18{bottom:249.786667pt;}
.y167{bottom:253.626667pt;}
.yf0{bottom:259.066667pt;}
.y18a{bottom:259.546667pt;}
.y132{bottom:260.346667pt;}
.y8c{bottom:267.706667pt;}
.yad{bottom:269.306667pt;}
.y33{bottom:270.266667pt;}
.y114{bottom:270.906667pt;}
.y166{bottom:272.826667pt;}
.y189{bottom:278.906667pt;}
.yef{bottom:279.066667pt;}
.y32{bottom:287.866667pt;}
.y17{bottom:288.826667pt;}
.y131{bottom:291.706667pt;}
.y188{bottom:298.266667pt;}
.yee{bottom:298.426667pt;}
.y113{bottom:302.906667pt;}
.y31{bottom:305.466667pt;}
.y8b{bottom:307.066667pt;}
.y130{bottom:311.706667pt;}
.yac{bottom:312.506667pt;}
.y187{bottom:317.626667pt;}
.y16{bottom:318.906667pt;}
.y165{bottom:322.106667pt;}
.y112{bottom:322.266667pt;}
.y30{bottom:323.066667pt;}
.yed{bottom:324.346667pt;}
.yab{bottom:331.866667pt;}
.y8a{bottom:333.146667pt;}
.y15{bottom:333.466667pt;}
.y186{bottom:336.826667pt;}
.y14c{bottom:340.186667pt;}
.y2f{bottom:340.666667pt;}
.y164{bottom:341.466667pt;}
.y111{bottom:341.626667pt;}
.yaa{bottom:351.266667pt;}
.y14{bottom:352.066667pt;}
.yec{bottom:355.746667pt;}
.y185{bottom:356.226667pt;}
.y2e{bottom:363.586667pt;}
.y89{bottom:364.386667pt;}
.y110{bottom:367.586667pt;}
.y14b{bottom:370.146667pt;}
.y13{bottom:370.626667pt;}
.y163{bottom:371.586667pt;}
.y12f{bottom:372.066667pt;}
.yeb{bottom:374.946667pt;}
.y184{bottom:375.586667pt;}
.ya9{bottom:376.226667pt;}
.y2d{bottom:381.186667pt;}
.y88{bottom:383.746667pt;}
.y14a{bottom:389.506667pt;}
.ycf{bottom:390.306667pt;}
.yea{bottom:394.306667pt;}
.y183{bottom:394.946667pt;}
.y12e{bottom:397.986667pt;}
.y10f{bottom:398.786667pt;}
.y162{bottom:401.506667pt;}
.ya8{bottom:402.146667pt;}
.y87{bottom:402.946667pt;}
.y2c{bottom:404.066667pt;}
.y12{bottom:405.346667pt;}
.ye9{bottom:413.666667pt;}
.y182{bottom:414.146667pt;}
.yce{bottom:420.386667pt;}
.y161{bottom:420.866667pt;}
.y149{bottom:422.306667pt;}
.y86{bottom:423.106667pt;}
.y2b{bottom:428.066667pt;}
.y12d{bottom:429.346667pt;}
.y10e{bottom:429.666667pt;}
.y181{bottom:433.506667pt;}
.y11{bottom:435.266667pt;}
.ycd{bottom:439.586667pt;}
.y85{bottom:442.466667pt;}
.ye8{bottom:445.666667pt;}
.yd{bottom:449.186667pt;}
.y12c{bottom:449.346667pt;}
.y160{bottom:450.786667pt;}
.y10d{bottom:459.586667pt;}
.ycc{bottom:459.746667pt;}
.y84{bottom:461.826667pt;}
.y180{bottom:463.586667pt;}
.y148{bottom:464.226667pt;}
.y12b{bottom:469.506667pt;}
.y15f{bottom:470.146667pt;}
.y2a{bottom:472.066667pt;}
.y10c{bottom:478.946667pt;}
.ycb{bottom:479.106667pt;}
.y83{bottom:481.026667pt;}
.y147{bottom:482.146667pt;}
.y17f{bottom:482.786667pt;}
.ye7{bottom:489.026667pt;}
.y12a{bottom:489.506667pt;}
.y29{bottom:494.946667pt;}
.y10b{bottom:498.306667pt;}
.yca{bottom:499.106667pt;}
.y146{bottom:500.066667pt;}
.y82{bottom:500.386667pt;}
.ye6{bottom:508.226667pt;}
.y17e{bottom:512.866667pt;}
.y10a{bottom:517.506667pt;}
.y28{bottom:517.826667pt;}
.y145{bottom:519.266667pt;}
.y15e{bottom:519.426667pt;}
.y6b{bottom:519.586667pt;}
.y81{bottom:519.746667pt;}
.y129{bottom:520.386667pt;}
.ye5{bottom:527.586667pt;}
.yc9{bottom:532.066667pt;}
.y109{bottom:536.866667pt;}
.y144{bottom:538.626667pt;}
.y15d{bottom:538.786667pt;}
.y80{bottom:539.106667pt;}
.y27{bottom:540.706667pt;}
.ye4{bottom:546.946667pt;}
.y6a{bottom:549.506667pt;}
.y17d{bottom:551.426667pt;}
.y128{bottom:552.386667pt;}
.y108{bottom:556.226667pt;}
.ya7{bottom:556.706667pt;}
.y26{bottom:558.306667pt;}
.ye3{bottom:566.306667pt;}
.y15c{bottom:568.706667pt;}
.y69{bottom:568.866667pt;}
.y143{bottom:571.453333pt;}
.y57{bottom:572.733333pt;}
.y107{bottom:575.453333pt;}
.y25{bottom:575.773333pt;}
.ya6{bottom:575.933333pt;}
.y7f{bottom:578.493333pt;}
.y17c{bottom:581.533333pt;}
.ye2{bottom:585.533333pt;}
.y15b{bottom:588.093333pt;}
.y56{bottom:590.493333pt;}
.y24{bottom:593.373333pt;}
.yc8{bottom:593.853333pt;}
.ya5{bottom:595.293333pt;}
.y106{bottom:595.613333pt;}
.y127{bottom:595.773333pt;}
.y7e{bottom:597.853333pt;}
.yc{bottom:598.173333pt;}
.y68{bottom:598.813333pt;}
.y17b{bottom:600.733333pt;}
.ye1{bottom:604.893333pt;}
.y15a{bottom:607.453333pt;}
.y55{bottom:608.413333pt;}
.y23{bottom:610.973333pt;}
.ya4{bottom:614.653333pt;}
.y142{bottom:614.813333pt;}
.y105{bottom:614.973333pt;}
.y7d{bottom:617.853333pt;}
.y67{bottom:618.173333pt;}
.ye0{bottom:624.253333pt;}
.yc7{bottom:625.853333pt;}
.y54{bottom:626.333333pt;}
.y22{bottom:628.573333pt;}
.y17a{bottom:630.813333pt;}
.yb{bottom:631.293333pt;}
.y141{bottom:634.013333pt;}
.y104{bottom:635.133333pt;}
.y7c{bottom:637.213333pt;}
.y159{bottom:637.373333pt;}
.ya3{bottom:640.573333pt;}
.y126{bottom:640.893333pt;}
.ydf{bottom:643.613333pt;}
.y53{bottom:644.253333pt;}
.yc6{bottom:645.053333pt;}
.y21{bottom:646.173333pt;}
.y66{bottom:646.653333pt;}
.y179{bottom:650.173333pt;}
.y140{bottom:654.173333pt;}
.y7b{bottom:656.573333pt;}
.y158{bottom:656.733333pt;}
.y103{bottom:660.253333pt;}
.y65{bottom:660.573333pt;}
.y52{bottom:662.173333pt;}
.yde{bottom:662.813333pt;}
.yc5{bottom:664.413333pt;}
.y178{bottom:669.373333pt;}
.y20{bottom:670.173333pt;}
.ya2{bottom:670.813333pt;}
.y125{bottom:672.253333pt;}
.y13f{bottom:673.533333pt;}
.y7a{bottom:675.933333pt;}
.y157{bottom:676.093333pt;}
.y64{bottom:676.253333pt;}
.ydd{bottom:682.173333pt;}
.yc4{bottom:683.773333pt;}
.ya1{bottom:686.493333pt;}
.y177{bottom:688.733333pt;}
.y102{bottom:691.453333pt;}
.y79{bottom:695.133333pt;}
.y156{bottom:695.453333pt;}
.y51{bottom:697.533333pt;}
.ydc{bottom:701.533333pt;}
.yc3{bottom:703.133333pt;}
.y13e{bottom:704.253333pt;}
.y63{bottom:704.893333pt;}
.y101{bottom:710.813333pt;}
.ya0{bottom:714.173333pt;}
.y78{bottom:714.493333pt;}
.y1f{bottom:715.133333pt;}
.y62{bottom:718.653333pt;}
.y176{bottom:718.813333pt;}
.ydb{bottom:720.893333pt;}
.yc2{bottom:722.333333pt;}
.y124{bottom:722.813333pt;}
.y155{bottom:725.373333pt;}
.y50{bottom:732.733333pt;}
.y9f{bottom:733.373333pt;}
.y61{bottom:734.333333pt;}
.y44{bottom:734.493333pt;}
.y77{bottom:734.653333pt;}
.y13d{bottom:736.253333pt;}
.y100{bottom:736.733333pt;}
.y175{bottom:738.013333pt;}
.yda{bottom:740.093333pt;}
.yc1{bottom:742.493333pt;}
.y4f{bottom:752.093333pt;}
.y9e{bottom:753.533333pt;}
.y76{bottom:754.653333pt;}
.y123{bottom:755.293333pt;}
.y174{bottom:757.373333pt;}
.yd9{bottom:759.453333pt;}
.y1e{bottom:760.253333pt;}
.y60{bottom:762.973333pt;}
.y43{bottom:766.333333pt;}
.yff{bottom:768.573333pt;}
.y4e{bottom:771.293333pt;}
.y9d{bottom:772.893333pt;}
.y75{bottom:774.013333pt;}
.yc0{bottom:775.293333pt;}
.y5f{bottom:776.733333pt;}
.yd8{bottom:778.813333pt;}
.y13c{bottom:779.613333pt;}
.y154{bottom:785.373333pt;}
.yfe{bottom:786.493333pt;}
.y122{bottom:786.653333pt;}
.y42{bottom:787.453333pt;}
.y4d{bottom:790.653333pt;}
.y9c{bottom:792.293333pt;}
.y5e{bottom:792.453333pt;}
.y74{bottom:794.213333pt;}
.yd7{bottom:798.213333pt;}
.y13b{bottom:799.653333pt;}
.y153{bottom:804.773333pt;}
.y1d{bottom:805.413333pt;}
.y121{bottom:805.893333pt;}
.y173{bottom:806.693333pt;}
.y4c{bottom:810.053333pt;}
.y9b{bottom:811.493333pt;}
.y73{bottom:813.573333pt;}
.yd6{bottom:818.213333pt;}
.yfd{bottom:818.533333pt;}
.ybf{bottom:818.693333pt;}
.y13a{bottom:819.013333pt;}
.y5d{bottom:821.093333pt;}
.y152{bottom:823.973333pt;}
.y120{bottom:826.053333pt;}
.y4b{bottom:829.413333pt;}
.y41{bottom:830.853333pt;}
.y72{bottom:832.773333pt;}
.y5c{bottom:834.853333pt;}
.yfc{bottom:837.733333pt;}
.ybe{bottom:837.893333pt;}
.yd5{bottom:838.373333pt;}
.y139{bottom:839.173333pt;}
.y11f{bottom:845.413333pt;}
.y4a{bottom:848.613333pt;}
.y9a{bottom:850.213333pt;}
.y1c{bottom:850.533333pt;}
.y71{bottom:852.133333pt;}
.y151{bottom:854.053333pt;}
.y172{bottom:855.973333pt;}
.ybd{bottom:857.253333pt;}
.yd4{bottom:857.733333pt;}
.yfb{bottom:857.893333pt;}
.y138{bottom:858.533333pt;}
.y11e{bottom:864.773333pt;}
.y49{bottom:867.973333pt;}
.y99{bottom:869.413333pt;}
.y70{bottom:871.493333pt;}
.y150{bottom:873.413333pt;}
.y40{bottom:874.693333pt;}
.y171{bottom:875.333333pt;}
.ybc{bottom:876.613333pt;}
.yd3{bottom:877.733333pt;}
.yfa{bottom:878.053333pt;}
.y5b{bottom:879.173333pt;}
.y11d{bottom:883.973333pt;}
.y48{bottom:887.333333pt;}
.y6f{bottom:890.853333pt;}
.y5a{bottom:893.093333pt;}
.y170{bottom:894.693333pt;}
.y1b{bottom:894.853333pt;}
.y98{bottom:895.333333pt;}
.ybb{bottom:895.973333pt;}
.yd2{bottom:897.093333pt;}
.yf9{bottom:897.253333pt;}
.y14f{bottom:903.333333pt;}
.y11c{bottom:904.133333pt;}
.y59{bottom:908.613333pt;}
.y6e{bottom:910.053333pt;}
.yba{bottom:915.173333pt;}
.yd1{bottom:917.253333pt;}
.yf8{bottom:917.413333pt;}
.y3f{bottom:918.693333pt;}
.y47{bottom:922.693333pt;}
.y11b{bottom:923.493333pt;}
.y16f{bottom:924.613333pt;}
.y97{bottom:926.693333pt;}
.y1a{bottom:929.893333pt;}
.yb9{bottom:934.533333pt;}
.y6d{bottom:935.973333pt;}
.yd0{bottom:936.453333pt;}
.y58{bottom:938.693333pt;}
.y3e{bottom:941.573333pt;}
.y14e{bottom:941.893333pt;}
.yf7{bottom:943.333333pt;}
.y16e{bottom:943.973333pt;}
.y96{bottom:946.053333pt;}
.yb8{bottom:953.893333pt;}
.y11a{bottom:954.213333pt;}
.y46{bottom:957.893333pt;}
.y3d{bottom:964.453333pt;}
.y95{bottom:966.053333pt;}
.y6c{bottom:969.253333pt;}
.yb7{bottom:973.253333pt;}
.y16d{bottom:973.893333pt;}
.y45{bottom:977.253333pt;}
.y14d{bottom:977.413333pt;}
.y119{bottom:979.333333pt;}
.ya{bottom:982.693333pt;}
.y94{bottom:985.413333pt;}
.y3c{bottom:987.333333pt;}
.yb6{bottom:992.453333pt;}
.y16c{bottom:993.253333pt;}
.y19{bottom:1003.493333pt;}
.y3b{bottom:1011.333333pt;}
.yb5{bottom:1011.813333pt;}
.y9{bottom:1012.640000pt;}
.y4{bottom:1056.320000pt;}
.y1{bottom:1070.880000pt;}
.h6{height:17.920000pt;}
.hd{height:17.952000pt;}
.ha{height:33.120000pt;}
.h3{height:38.828437pt;}
.h14{height:42.649687pt;}
.h13{height:43.905937pt;}
.h4{height:45.935313pt;}
.h17{height:47.380000pt;}
.h16{height:47.742188pt;}
.h7{height:50.916250pt;}
.h2{height:51.680000pt;}
.he{height:56.306250pt;}
.h5{height:58.563750pt;}
.h10{height:60.288750pt;}
.h11{height:60.519362pt;}
.hf{height:60.937500pt;}
.h12{height:61.295000pt;}
.h9{height:64.006250pt;}
.h15{height:64.500000pt;}
.hc{height:128.950937pt;}
.hb{height:148.986667pt;}
.h8{height:335.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:74.752000pt;}
.w9{width:236.026667pt;}
.w2{width:258.106667pt;}
.w6{width:287.866667pt;}
.w5{width:313.666667pt;}
.w3{width:353.506667pt;}
.w7{width:583.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x1{left:86.592000pt;}
.x4{left:93.626667pt;}
.x6{left:96.031988pt;}
.x14{left:103.231988pt;}
.x10{left:110.751988pt;}
.xa{left:114.592000pt;}
.x11{left:120.031988pt;}
.x1a{left:123.231988pt;}
.x1c{left:132.351988pt;}
.x12{left:144.026655pt;}
.x1b{left:147.226655pt;}
.x1d{left:156.346655pt;}
.x15{left:168.026655pt;}
.x13{left:192.026655pt;}
.x5{left:195.226667pt;}
.x16{left:216.026655pt;}
.x18{left:240.026655pt;}
.x9{left:246.600000pt;}
.x2{left:249.954667pt;}
.x19{left:336.066655pt;}
.x3{left:344.706667pt;}
.xd{left:385.826667pt;}
.x8{left:409.373333pt;}
.x17{left:446.013322pt;}
.xb{left:456.101333pt;}
.xe{left:461.213333pt;}
.xc{left:634.368000pt;}
.xf{left:691.493322pt;}
}




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