
    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_f45fa5e94500429aca20b1d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_a0fe19adbea9a23e0cd0f7cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_073560cfc8a009020ebec936.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_cd6f880f726b6e964f8552ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_a7aa126d1891f7f9f0b627e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_6d057e00b0d8cd96805b1022.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_9c17f38347c6c7c4346fea37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_5ae5e25a4fbdc94f1966afe4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4ba22c7acaf84424360c71e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:4.457031;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_7a0968466b9640cffa0150a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:4.457031;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v11{vertical-align:-131.760000px;}
.v5{vertical-align:-88.560000px;}
.vf{vertical-align:-86.580000px;}
.v8{vertical-align:-69.840000px;}
.v17{vertical-align:-39.600000px;}
.v16{vertical-align:-38.160000px;}
.v4{vertical-align:-23.760000px;}
.v19{vertical-align:-13.680000px;}
.v2{vertical-align:-12.240000px;}
.v12{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.160000px;}
.v1{vertical-align:12.240000px;}
.v14{vertical-align:14.400000px;}
.v10{vertical-align:18.000000px;}
.v1a{vertical-align:20.880000px;}
.v13{vertical-align:22.320000px;}
.v3{vertical-align:23.760000px;}
.v7{vertical-align:30.240000px;}
.v15{vertical-align:34.560000px;}
.va{vertical-align:40.320000px;}
.v9{vertical-align:46.080000px;}
.v6{vertical-align:47.520000px;}
.v18{vertical-align:56.856000px;}
.ve{vertical-align:76.320000px;}
.vc{vertical-align:86.400000px;}
.vb{vertical-align:88.560000px;}
.ls15{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.277200px;}
.ls1a{letter-spacing:-0.206400px;}
.ls32{letter-spacing:-0.112200px;}
.ls3d{letter-spacing:-0.106800px;}
.ls39{letter-spacing:-0.100200px;}
.lsa{letter-spacing:-0.053280px;}
.ls33{letter-spacing:-0.040320px;}
.ls6{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.053280px;}
.ls37{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.lse{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.301200px;}
.ls8{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.367200px;}
.ls20{letter-spacing:0.399600px;}
.ls29{letter-spacing:0.532800px;}
.ls23{letter-spacing:0.555840px;}
.ls11{letter-spacing:0.666720px;}
.ls2d{letter-spacing:0.678240px;}
.lsd{letter-spacing:0.900000px;}
.ls2a{letter-spacing:0.904320px;}
.ls26{letter-spacing:1.094400px;}
.ls2e{letter-spacing:1.532880px;}
.ls13{letter-spacing:1.620000px;}
.ls3{letter-spacing:2.340000px;}
.ls3b{letter-spacing:3.060000px;}
.ls2c{letter-spacing:4.062240px;}
.ls3c{letter-spacing:4.500000px;}
.ls36{letter-spacing:4.667760px;}
.ls34{letter-spacing:4.782240px;}
.ls35{letter-spacing:4.996080px;}
.ls25{letter-spacing:5.716080px;}
.ls1b{letter-spacing:7.380000px;}
.lsf{letter-spacing:8.100000px;}
.ls4{letter-spacing:10.260000px;}
.ls2b{letter-spacing:11.177760px;}
.ls10{letter-spacing:11.700000px;}
.ls38{letter-spacing:13.140000px;}
.ls28{letter-spacing:13.679280px;}
.ls27{letter-spacing:14.079600px;}
.ls24{letter-spacing:17.742240px;}
.ls2f{letter-spacing:19.740960px;}
.ls5{letter-spacing:22.500000px;}
.lsc{letter-spacing:38.106720px;}
.ls21{letter-spacing:44.177760px;}
.ls12{letter-spacing:46.002720px;}
.ls3a{letter-spacing:46.026720px;}
.ls17{letter-spacing:64.002720px;}
.ls22{letter-spacing:138.318240px;}
.ls1c{letter-spacing:734.736000px;}
.ls1d{letter-spacing:994.656000px;}
.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;}
}
.ws1f{word-spacing:-66.240000px;}
.ws18{word-spacing:-59.772960px;}
.ws10{word-spacing:-59.760000px;}
.ws19{word-spacing:-59.719680px;}
.ws16{word-spacing:-59.647800px;}
.ws12{word-spacing:-59.482800px;}
.ws17{word-spacing:-42.061200px;}
.ws13{word-spacing:-41.760000px;}
.ws5{word-spacing:-21.060000px;}
.ws7{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws21{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws22{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.733600px;}
.ws15{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.500000px;}
.wse{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.440000px;}
.ws20{word-spacing:-9.720000px;}
.ws3{word-spacing:-7.020000px;}
.wsb{word-spacing:0.000000px;}
.ws1d{word-spacing:11.030160px;}
.ws14{word-spacing:16.258320px;}
.ws1c{word-spacing:172.380960px;}
.ws1e{word-spacing:206.940960px;}
.ws1b{word-spacing:211.980960px;}
.ws1a{word-spacing:433.860960px;}
._16{margin-left:-33.081840px;}
._1b{margin-left:-28.450080px;}
._19{margin-left:-27.102240px;}
._17{margin-left:-25.158000px;}
._1a{margin-left:-5.764320px;}
._e{margin-left:-4.191600px;}
._2{margin-left:-2.462640px;}
._1{margin-left:-1.095840px;}
._0{width:1.138320px;}
._5{width:2.223840px;}
._6{width:3.276000px;}
._c{width:4.609440px;}
._d{width:6.029040px;}
._b{width:7.417920px;}
._3{width:8.964000px;}
._4{width:10.707600px;}
._9{width:12.001200px;}
._a{width:13.206960px;}
._15{width:14.524800px;}
._f{width:16.001520px;}
._10{width:17.068320px;}
._11{width:19.766640px;}
._14{width:21.513600px;}
._8{width:22.708800px;}
._7{width:23.849040px;}
._1c{width:24.857280px;}
._12{width:26.002800px;}
._13{width:27.108000px;}
._18{width:396.603360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y169{bottom:3.240000px;}
.y103{bottom:3.600000px;}
.y105{bottom:3.780000px;}
.y102{bottom:3.960000px;}
.y11a{bottom:4.140000px;}
.y168{bottom:20.520000px;}
.y6{bottom:32.760000px;}
.y5{bottom:50.040000px;}
.y43{bottom:56.160000px;}
.y4{bottom:67.320000px;}
.y42{bottom:73.476000px;}
.y41{bottom:90.756000px;}
.yff{bottom:115.056000px;}
.yab{bottom:118.836000px;}
.ydb{bottom:124.416000px;}
.yfe{bottom:132.336000px;}
.y75{bottom:135.576000px;}
.yaa{bottom:135.936000px;}
.y136{bottom:138.636000px;}
.y164{bottom:139.176000px;}
.yd9{bottom:143.136000px;}
.yfd{bottom:146.376000px;}
.y3c{bottom:147.060000px;}
.yda{bottom:148.356000px;}
.y11e{bottom:148.536000px;}
.yd7{bottom:152.670000px;}
.ya9{bottom:153.210000px;}
.y74{bottom:155.550000px;}
.y11d{bottom:163.290000px;}
.y3b{bottom:164.340000px;}
.yd8{bottom:170.130000px;}
.ya8{bottom:170.490000px;}
.y73{bottom:172.830000px;}
.y135{bottom:173.910000px;}
.y163{bottom:174.450000px;}
.yd6{bottom:181.470000px;}
.y3a{bottom:181.620000px;}
.y11c{bottom:182.910000px;}
.ya7{bottom:187.770000px;}
.y72{bottom:190.110000px;}
.y134{bottom:191.190000px;}
.yd5{bottom:198.750000px;}
.y39{bottom:198.930000px;}
.y11b{bottom:202.710000px;}
.ya6{bottom:205.050000px;}
.y71{bottom:207.390000px;}
.y133{bottom:208.470000px;}
.y162{bottom:209.730000px;}
.y38{bottom:216.030000px;}
.yd4{bottom:217.110000px;}
.ya5{bottom:222.330000px;}
.y70{bottom:224.670000px;}
.y161{bottom:227.010000px;}
.yd3{bottom:231.330000px;}
.y37{bottom:233.310000px;}
.ya4{bottom:239.430000px;}
.y6f{bottom:241.950000px;}
.y119{bottom:242.130000px;}
.y132{bottom:243.750000px;}
.y160{bottom:244.290000px;}
.y36{bottom:250.590000px;}
.ya3{bottom:256.710000px;}
.y6e{bottom:259.050000px;}
.y15f{bottom:261.390000px;}
.y118{bottom:265.170000px;}
.y35{bottom:267.870000px;}
.yd2{bottom:272.910000px;}
.ya2{bottom:273.990000px;}
.y6d{bottom:276.330000px;}
.y15e{bottom:278.670000px;}
.y131{bottom:279.030000px;}
.y117{bottom:282.270000px;}
.yd1{bottom:283.350000px;}
.y34{bottom:285.150000px;}
.ya1{bottom:291.270000px;}
.y6c{bottom:293.610000px;}
.y15d{bottom:295.950000px;}
.y130{bottom:296.130000px;}
.y116{bottom:299.550000px;}
.yd0{bottom:300.630000px;}
.y33{bottom:302.430000px;}
.ya0{bottom:308.550000px;}
.y6b{bottom:310.890000px;}
.y15c{bottom:313.230000px;}
.y12f{bottom:313.410000px;}
.y115{bottom:316.830000px;}
.y32{bottom:319.530000px;}
.ycf{bottom:324.930000px;}
.y6a{bottom:328.170000px;}
.y15b{bottom:330.510000px;}
.y12e{bottom:330.690000px;}
.y114{bottom:334.110000px;}
.y31{bottom:336.810000px;}
.y9f{bottom:343.695000px;}
.ycd{bottom:344.055000px;}
.y69{bottom:345.495000px;}
.y15a{bottom:347.835000px;}
.y12d{bottom:348.015000px;}
.y113{bottom:351.435000px;}
.y30{bottom:354.090000px;}
.y68{bottom:362.595000px;}
.y12c{bottom:362.775000px;}
.y159{bottom:364.935000px;}
.yce{bottom:366.555000px;}
.y112{bottom:368.715000px;}
.y2f{bottom:371.370000px;}
.y9e{bottom:378.975000px;}
.y67{bottom:379.875000px;}
.y158{bottom:382.215000px;}
.y12b{bottom:382.575000px;}
.y111{bottom:382.755000px;}
.y2e{bottom:388.650000px;}
.ycc{bottom:389.055000px;}
.y9d{bottom:396.255000px;}
.y66{bottom:397.155000px;}
.y157{bottom:399.495000px;}
.y12a{bottom:402.195000px;}
.y2d{bottom:405.930000px;}
.ycb{bottom:406.335000px;}
.y9c{bottom:413.535000px;}
.y65{bottom:414.435000px;}
.y156{bottom:416.775000px;}
.y129{bottom:421.995000px;}
.y2c{bottom:423.030000px;}
.yca{bottom:424.515000px;}
.y9b{bottom:430.815000px;}
.y64{bottom:431.715000px;}
.y155{bottom:434.055000px;}
.y2b{bottom:440.355000px;}
.y128{bottom:441.615000px;}
.yc9{bottom:441.795000px;}
.y9a{bottom:448.095000px;}
.y63{bottom:448.815000px;}
.y154{bottom:451.335000px;}
.y2a{bottom:457.635000px;}
.yc8{bottom:459.075000px;}
.y127{bottom:464.655000px;}
.y99{bottom:465.195000px;}
.y62{bottom:466.095000px;}
.yc7{bottom:473.295000px;}
.y29{bottom:476.175000px;}
.y126{bottom:481.935000px;}
.yc4{bottom:482.295000px;}
.y98{bottom:482.475000px;}
.y61{bottom:483.375000px;}
.y153{bottom:486.435000px;}
.yc3{bottom:492.375000px;}
.yfc{bottom:495.075000px;}
.y125{bottom:499.035000px;}
.y97{bottom:499.755000px;}
.y28{bottom:500.295000px;}
.yc5{bottom:503.895000px;}
.yfb{bottom:512.175000px;}
.yc6{bottom:514.875000px;}
.y124{bottom:516.315000px;}
.y96{bottom:517.035000px;}
.y60{bottom:518.655000px;}
.y152{bottom:521.715000px;}
.y27{bottom:523.155000px;}
.yc2{bottom:525.315000px;}
.yfa{bottom:529.455000px;}
.y123{bottom:533.595000px;}
.y95{bottom:534.315000px;}
.y151{bottom:538.995000px;}
.y26{bottom:540.435000px;}
.yc1{bottom:542.595000px;}
.yf9{bottom:546.735000px;}
.y122{bottom:550.875000px;}
.y94{bottom:551.595000px;}
.y5f{bottom:553.935000px;}
.y150{bottom:556.275000px;}
.y25{bottom:557.715000px;}
.yc0{bottom:559.875000px;}
.yf8{bottom:564.015000px;}
.y121{bottom:568.155000px;}
.y93{bottom:568.695000px;}
.y5e{bottom:571.215000px;}
.y14f{bottom:573.555000px;}
.y24{bottom:574.995000px;}
.ybf{bottom:576.975000px;}
.yf7{bottom:581.295000px;}
.y120{bottom:582.195000px;}
.y92{bottom:585.975000px;}
.y14e{bottom:590.655000px;}
.y23{bottom:592.095000px;}
.ybe{bottom:594.255000px;}
.yf6{bottom:598.575000px;}
.y91{bottom:603.255000px;}
.y5d{bottom:606.345000px;}
.y14d{bottom:607.965000px;}
.y22{bottom:609.375000px;}
.ybd{bottom:612.645000px;}
.yf5{bottom:615.705000px;}
.y90{bottom:620.565000px;}
.y14c{bottom:626.325000px;}
.y21{bottom:626.655000px;}
.y178{bottom:628.305000px;}
.ybc{bottom:629.925000px;}
.yf4{bottom:632.985000px;}
.y8f{bottom:637.845000px;}
.y5c{bottom:641.625000px;}
.y14b{bottom:643.605000px;}
.y20{bottom:643.935000px;}
.y177{bottom:645.585000px;}
.ybb{bottom:647.205000px;}
.yf3{bottom:650.265000px;}
.y8e{bottom:655.125000px;}
.y5b{bottom:658.905000px;}
.y14a{bottom:660.885000px;}
.y1f{bottom:661.215000px;}
.y176{bottom:662.865000px;}
.yba{bottom:665.565000px;}
.yf2{bottom:667.545000px;}
.y8d{bottom:672.225000px;}
.y5a{bottom:676.185000px;}
.y149{bottom:678.165000px;}
.y1e{bottom:678.525000px;}
.y175{bottom:680.685000px;}
.yf1{bottom:684.825000px;}
.y8c{bottom:689.505000px;}
.y59{bottom:693.465000px;}
.y148{bottom:695.265000px;}
.y1d{bottom:695.625000px;}
.y174{bottom:698.325000px;}
.yb9{bottom:700.305000px;}
.yf0{bottom:701.925000px;}
.y8b{bottom:706.785000px;}
.y58{bottom:710.745000px;}
.y147{bottom:712.545000px;}
.y1c{bottom:712.905000px;}
.y173{bottom:715.605000px;}
.yb8{bottom:717.585000px;}
.yef{bottom:719.205000px;}
.y8a{bottom:725.145000px;}
.y57{bottom:727.845000px;}
.y1b{bottom:730.185000px;}
.y146{bottom:730.905000px;}
.y172{bottom:733.065000px;}
.y110{bottom:733.605000px;}
.yb7{bottom:734.865000px;}
.yee{bottom:736.485000px;}
.y89{bottom:743.505000px;}
.y56{bottom:745.125000px;}
.y1a{bottom:747.465000px;}
.y145{bottom:748.185000px;}
.y10f{bottom:750.705000px;}
.yb6{bottom:753.225000px;}
.yed{bottom:753.765000px;}
.y171{bottom:754.665000px;}
.y88{bottom:761.685000px;}
.y55{bottom:762.405000px;}
.y19{bottom:764.745000px;}
.y144{bottom:765.465000px;}
.yb4{bottom:767.625000px;}
.y10e{bottom:767.985000px;}
.yec{bottom:771.045000px;}
.yb5{bottom:775.185000px;}
.y170{bottom:776.445000px;}
.y87{bottom:778.965000px;}
.y54{bottom:779.685000px;}
.y18{bottom:781.845000px;}
.y143{bottom:782.745000px;}
.y10d{bottom:785.265000px;}
.yeb{bottom:788.325000px;}
.y86{bottom:796.245000px;}
.y53{bottom:796.965000px;}
.yb3{bottom:797.325000px;}
.y16f{bottom:798.225000px;}
.y17{bottom:799.125000px;}
.y142{bottom:799.845000px;}
.y10c{bottom:802.545000px;}
.y85{bottom:813.525000px;}
.y52{bottom:814.065000px;}
.yb2{bottom:814.605000px;}
.y16{bottom:816.405000px;}
.y141{bottom:817.125000px;}
.y10b{bottom:819.825000px;}
.y16e{bottom:820.005000px;}
.yea{bottom:823.425000px;}
.y84{bottom:830.805000px;}
.y51{bottom:831.345000px;}
.yb1{bottom:831.885000px;}
.y15{bottom:833.685000px;}
.y140{bottom:834.405000px;}
.y83{bottom:848.085000px;}
.yb0{bottom:850.065000px;}
.y13f{bottom:851.685000px;}
.y10a{bottom:854.925000px;}
.ye9{bottom:858.705000px;}
.y16d{bottom:858.885000px;}
.y82{bottom:865.185000px;}
.y50{bottom:866.625000px;}
.yaf{bottom:867.345000px;}
.y14{bottom:867.885000px;}
.y13e{bottom:868.965000px;}
.ye8{bottom:876.030000px;}
.y16c{bottom:880.710000px;}
.y81{bottom:882.510000px;}
.yae{bottom:884.670000px;}
.y13d{bottom:886.110000px;}
.y13{bottom:890.025000px;}
.y109{bottom:890.250000px;}
.ye7{bottom:893.310000px;}
.y80{bottom:899.790000px;}
.y4f{bottom:901.950000px;}
.y12{bottom:902.445000px;}
.y16b{bottom:902.490000px;}
.y13c{bottom:903.390000px;}
.y108{bottom:905.010000px;}
.ye6{bottom:910.590000px;}
.y7f{bottom:917.070000px;}
.y11{bottom:917.970000px;}
.y4e{bottom:919.230000px;}
.y13b{bottom:920.670000px;}
.y16a{bottom:924.270000px;}
.y107{bottom:924.810000px;}
.ye5{bottom:928.950000px;}
.y7e{bottom:934.350000px;}
.y4d{bottom:936.510000px;}
.y13a{bottom:937.950000px;}
.y10{bottom:940.110000px;}
.y106{bottom:944.610000px;}
.y167{bottom:946.050000px;}
.ye4{bottom:947.130000px;}
.y7d{bottom:952.530000px;}
.yf{bottom:953.250000px;}
.y4c{bottom:953.610000px;}
.y139{bottom:955.230000px;}
.y104{bottom:964.230000px;}
.ye3{bottom:965.490000px;}
.y4b{bottom:970.890000px;}
.ye{bottom:971.790000px;}
.y138{bottom:972.510000px;}
.ye2{bottom:982.770000px;}
.y101{bottom:984.030000px;}
.y166{bottom:987.810000px;}
.y4a{bottom:988.170000px;}
.yad{bottom:988.890000px;}
.yd{bottom:989.430000px;}
.y137{bottom:989.610000px;}
.ye1{bottom:1000.050000px;}
.y49{bottom:1005.450000px;}
.y7c{bottom:1006.170000px;}
.y100{bottom:1006.890000px;}
.yc{bottom:1014.270000px;}
.y48{bottom:1022.730000px;}
.y165{bottom:1023.450000px;}
.yac{bottom:1024.170000px;}
.yb{bottom:1027.410000px;}
.ye0{bottom:1035.150000px;}
.y47{bottom:1040.010000px;}
.y7b{bottom:1041.450000px;}
.ya{bottom:1046.310000px;}
.y46{bottom:1057.110000px;}
.y11f{bottom:1057.830000px;}
.y7a{bottom:1058.730000px;}
.y9{bottom:1064.850000px;}
.ydf{bottom:1070.430000px;}
.y45{bottom:1074.390000px;}
.y79{bottom:1076.010000px;}
.y8{bottom:1083.390000px;}
.yde{bottom:1087.710000px;}
.y78{bottom:1093.110000px;}
.ydd{bottom:1104.990000px;}
.y7{bottom:1107.510000px;}
.y44{bottom:1109.670000px;}
.y77{bottom:1110.390000px;}
.ydc{bottom:1126.050000px;}
.y76{bottom:1127.670000px;}
.y40{bottom:1144.980000px;}
.y3f{bottom:1164.420000px;}
.y3{bottom:1164.780000px;}
.y3e{bottom:1181.160000px;}
.y2{bottom:1181.520000px;}
.y3d{bottom:1195.740000px;}
.y1{bottom:1196.100000px;}
.h27{height:17.100000px;}
.h25{height:17.280000px;}
.h26{height:17.316000px;}
.h1e{height:18.900000px;}
.h20{height:19.080000px;}
.h24{height:34.380000px;}
.h8{height:36.560391px;}
.h9{height:47.276367px;}
.hb{height:48.496641px;}
.ha{height:49.255313px;}
.h3{height:52.319180px;}
.h4{height:53.252930px;}
.h22{height:54.918984px;}
.h7{height:57.992344px;}
.h1f{height:59.027344px;}
.h23{height:59.439023px;}
.h6{height:60.320391px;}
.h21{height:60.972891px;}
.hd{height:63.035156px;}
.he{height:64.137305px;}
.h18{height:67.017305px;}
.h5{height:68.362734px;}
.h11{height:82.857305px;}
.h15{height:106.704141px;}
.h16{height:128.639180px;}
.h1b{height:152.697305px;}
.h14{height:154.857305px;}
.h10{height:160.955482px;}
.h1d{height:169.254844px;}
.h1c{height:169.953305px;}
.hf{height:182.937305px;}
.h12{height:198.777305px;}
.h1a{height:200.937305px;}
.h19{height:229.017305px;}
.h13{height:241.257305px;}
.h17{height:245.754844px;}
.hc{height:1262.880000px;}
.h1{height:1263.000000px;}
.h2{height:1263.239908px;}
.h0{height:1263.240000px;}
.w8{width:27.360000px;}
.w6{width:105.480000px;}
.w7{width:105.696000px;}
.w9{width:646.485000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w5{width:892.979987px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:1.080000px;}
.x2f{left:7.920000px;}
.x31{left:10.800000px;}
.x36{left:12.960000px;}
.x32{left:14.940000px;}
.x2e{left:20.520000px;}
.x2c{left:29.340000px;}
.x38{left:34.200000px;}
.x30{left:38.340000px;}
.x33{left:44.640000px;}
.x2a{left:52.740000px;}
.x12{left:106.235987px;}
.x6{left:108.035987px;}
.x13{left:133.235987px;}
.x3a{left:138.096000px;}
.x14{left:160.229987px;}
.x7{left:162.929987px;}
.xa{left:166.349987px;}
.xf{left:173.009987px;}
.x25{left:187.049987px;}
.x1{left:196.589987px;}
.x9{left:215.309987px;}
.x28{left:218.369987px;}
.x27{left:234.029987px;}
.xd{left:252.029987px;}
.x35{left:259.949987px;}
.x34{left:275.069987px;}
.x29{left:287.535000px;}
.x37{left:289.694987px;}
.x2{left:307.514987px;}
.x18{left:328.934987px;}
.x11{left:346.934987px;}
.x8{left:354.134987px;}
.xb{left:363.854987px;}
.x3{left:385.094987px;}
.x1e{left:389.414987px;}
.x2b{left:393.735000px;}
.x23{left:396.974987px;}
.x15{left:399.674987px;}
.x10{left:401.114987px;}
.xe{left:402.554987px;}
.x19{left:406.514987px;}
.x1d{left:427.034987px;}
.x1c{left:432.434987px;}
.x5{left:442.694987px;}
.x4{left:446.474987px;}
.x1b{left:448.454987px;}
.x24{left:459.434987px;}
.xc{left:462.314987px;}
.x22{left:469.724987px;}
.x21{left:475.124987px;}
.x20{left:476.384987px;}
.x1f{left:481.784987px;}
.x2d{left:500.145000px;}
.x1a{left:517.244987px;}
.x16{left:565.304987px;}
.x17{left:599.324987px;}
.x26{left:744.089987px;}
@media print{
.v11{vertical-align:-117.120000pt;}
.v5{vertical-align:-78.720000pt;}
.vf{vertical-align:-76.960000pt;}
.v8{vertical-align:-62.080000pt;}
.v17{vertical-align:-35.200000pt;}
.v16{vertical-align:-33.920000pt;}
.v4{vertical-align:-21.120000pt;}
.v19{vertical-align:-12.160000pt;}
.v2{vertical-align:-10.880000pt;}
.v12{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.920000pt;}
.v1{vertical-align:10.880000pt;}
.v14{vertical-align:12.800000pt;}
.v10{vertical-align:16.000000pt;}
.v1a{vertical-align:18.560000pt;}
.v13{vertical-align:19.840000pt;}
.v3{vertical-align:21.120000pt;}
.v7{vertical-align:26.880000pt;}
.v15{vertical-align:30.720000pt;}
.va{vertical-align:35.840000pt;}
.v9{vertical-align:40.960000pt;}
.v6{vertical-align:42.240000pt;}
.v18{vertical-align:50.538667pt;}
.ve{vertical-align:67.840000pt;}
.vc{vertical-align:76.800000pt;}
.vb{vertical-align:78.720000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.246400pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls32{letter-spacing:-0.099733pt;}
.ls3d{letter-spacing:-0.094933pt;}
.ls39{letter-spacing:-0.089067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls33{letter-spacing:-0.035840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.047360pt;}
.ls37{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.267733pt;}
.ls8{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.326400pt;}
.ls20{letter-spacing:0.355200pt;}
.ls29{letter-spacing:0.473600pt;}
.ls23{letter-spacing:0.494080pt;}
.ls11{letter-spacing:0.592640pt;}
.ls2d{letter-spacing:0.602880pt;}
.lsd{letter-spacing:0.800000pt;}
.ls2a{letter-spacing:0.803840pt;}
.ls26{letter-spacing:0.972800pt;}
.ls2e{letter-spacing:1.362560pt;}
.ls13{letter-spacing:1.440000pt;}
.ls3{letter-spacing:2.080000pt;}
.ls3b{letter-spacing:2.720000pt;}
.ls2c{letter-spacing:3.610880pt;}
.ls3c{letter-spacing:4.000000pt;}
.ls36{letter-spacing:4.149120pt;}
.ls34{letter-spacing:4.250880pt;}
.ls35{letter-spacing:4.440960pt;}
.ls25{letter-spacing:5.080960pt;}
.ls1b{letter-spacing:6.560000pt;}
.lsf{letter-spacing:7.200000pt;}
.ls4{letter-spacing:9.120000pt;}
.ls2b{letter-spacing:9.935787pt;}
.ls10{letter-spacing:10.400000pt;}
.ls38{letter-spacing:11.680000pt;}
.ls28{letter-spacing:12.159360pt;}
.ls27{letter-spacing:12.515200pt;}
.ls24{letter-spacing:15.770880pt;}
.ls2f{letter-spacing:17.547520pt;}
.ls5{letter-spacing:20.000000pt;}
.lsc{letter-spacing:33.872640pt;}
.ls21{letter-spacing:39.269120pt;}
.ls12{letter-spacing:40.891307pt;}
.ls3a{letter-spacing:40.912640pt;}
.ls17{letter-spacing:56.891307pt;}
.ls22{letter-spacing:122.949547pt;}
.ls1c{letter-spacing:653.098667pt;}
.ls1d{letter-spacing:884.138667pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws18{word-spacing:-53.131520pt;}
.ws10{word-spacing:-53.120000pt;}
.ws19{word-spacing:-53.084160pt;}
.ws16{word-spacing:-53.020267pt;}
.ws12{word-spacing:-52.873600pt;}
.ws17{word-spacing:-37.387733pt;}
.ws13{word-spacing:-37.120000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws21{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws22{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.096533pt;}
.ws15{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.280000pt;}
.ws20{word-spacing:-8.640000pt;}
.ws3{word-spacing:-6.240000pt;}
.wsb{word-spacing:0.000000pt;}
.ws1d{word-spacing:9.804587pt;}
.ws14{word-spacing:14.451840pt;}
.ws1c{word-spacing:153.227520pt;}
.ws1e{word-spacing:183.947520pt;}
.ws1b{word-spacing:188.427520pt;}
.ws1a{word-spacing:385.654187pt;}
._16{margin-left:-29.406080pt;}
._1b{margin-left:-25.288960pt;}
._19{margin-left:-24.090880pt;}
._17{margin-left:-22.362667pt;}
._1a{margin-left:-5.123840pt;}
._e{margin-left:-3.725867pt;}
._2{margin-left:-2.189013pt;}
._1{margin-left:-0.974080pt;}
._0{width:1.011840pt;}
._5{width:1.976747pt;}
._6{width:2.912000pt;}
._c{width:4.097280pt;}
._d{width:5.359147pt;}
._b{width:6.593707pt;}
._3{width:7.968000pt;}
._4{width:9.517867pt;}
._9{width:10.667733pt;}
._a{width:11.739520pt;}
._15{width:12.910933pt;}
._f{width:14.223573pt;}
._10{width:15.171840pt;}
._11{width:17.570347pt;}
._14{width:19.123200pt;}
._8{width:20.185600pt;}
._7{width:21.199147pt;}
._1c{width:22.095360pt;}
._12{width:23.113600pt;}
._13{width:24.096000pt;}
._18{width:352.536320pt;}
.fs2{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:2.880000pt;}
.y103{bottom:3.200000pt;}
.y105{bottom:3.360000pt;}
.y102{bottom:3.520000pt;}
.y11a{bottom:3.680000pt;}
.y168{bottom:18.240000pt;}
.y6{bottom:29.120000pt;}
.y5{bottom:44.480000pt;}
.y43{bottom:49.920000pt;}
.y4{bottom:59.840000pt;}
.y42{bottom:65.312000pt;}
.y41{bottom:80.672000pt;}
.yff{bottom:102.272000pt;}
.yab{bottom:105.632000pt;}
.ydb{bottom:110.592000pt;}
.yfe{bottom:117.632000pt;}
.y75{bottom:120.512000pt;}
.yaa{bottom:120.832000pt;}
.y136{bottom:123.232000pt;}
.y164{bottom:123.712000pt;}
.yd9{bottom:127.232000pt;}
.yfd{bottom:130.112000pt;}
.y3c{bottom:130.720000pt;}
.yda{bottom:131.872000pt;}
.y11e{bottom:132.032000pt;}
.yd7{bottom:135.706667pt;}
.ya9{bottom:136.186667pt;}
.y74{bottom:138.266667pt;}
.y11d{bottom:145.146667pt;}
.y3b{bottom:146.080000pt;}
.yd8{bottom:151.226667pt;}
.ya8{bottom:151.546667pt;}
.y73{bottom:153.626667pt;}
.y135{bottom:154.586667pt;}
.y163{bottom:155.066667pt;}
.yd6{bottom:161.306667pt;}
.y3a{bottom:161.440000pt;}
.y11c{bottom:162.586667pt;}
.ya7{bottom:166.906667pt;}
.y72{bottom:168.986667pt;}
.y134{bottom:169.946667pt;}
.yd5{bottom:176.666667pt;}
.y39{bottom:176.826667pt;}
.y11b{bottom:180.186667pt;}
.ya6{bottom:182.266667pt;}
.y71{bottom:184.346667pt;}
.y133{bottom:185.306667pt;}
.y162{bottom:186.426667pt;}
.y38{bottom:192.026667pt;}
.yd4{bottom:192.986667pt;}
.ya5{bottom:197.626667pt;}
.y70{bottom:199.706667pt;}
.y161{bottom:201.786667pt;}
.yd3{bottom:205.626667pt;}
.y37{bottom:207.386667pt;}
.ya4{bottom:212.826667pt;}
.y6f{bottom:215.066667pt;}
.y119{bottom:215.226667pt;}
.y132{bottom:216.666667pt;}
.y160{bottom:217.146667pt;}
.y36{bottom:222.746667pt;}
.ya3{bottom:228.186667pt;}
.y6e{bottom:230.266667pt;}
.y15f{bottom:232.346667pt;}
.y118{bottom:235.706667pt;}
.y35{bottom:238.106667pt;}
.yd2{bottom:242.586667pt;}
.ya2{bottom:243.546667pt;}
.y6d{bottom:245.626667pt;}
.y15e{bottom:247.706667pt;}
.y131{bottom:248.026667pt;}
.y117{bottom:250.906667pt;}
.yd1{bottom:251.866667pt;}
.y34{bottom:253.466667pt;}
.ya1{bottom:258.906667pt;}
.y6c{bottom:260.986667pt;}
.y15d{bottom:263.066667pt;}
.y130{bottom:263.226667pt;}
.y116{bottom:266.266667pt;}
.yd0{bottom:267.226667pt;}
.y33{bottom:268.826667pt;}
.ya0{bottom:274.266667pt;}
.y6b{bottom:276.346667pt;}
.y15c{bottom:278.426667pt;}
.y12f{bottom:278.586667pt;}
.y115{bottom:281.626667pt;}
.y32{bottom:284.026667pt;}
.ycf{bottom:288.826667pt;}
.y6a{bottom:291.706667pt;}
.y15b{bottom:293.786667pt;}
.y12e{bottom:293.946667pt;}
.y114{bottom:296.986667pt;}
.y31{bottom:299.386667pt;}
.y9f{bottom:305.506667pt;}
.ycd{bottom:305.826667pt;}
.y69{bottom:307.106667pt;}
.y15a{bottom:309.186667pt;}
.y12d{bottom:309.346667pt;}
.y113{bottom:312.386667pt;}
.y30{bottom:314.746667pt;}
.y68{bottom:322.306667pt;}
.y12c{bottom:322.466667pt;}
.y159{bottom:324.386667pt;}
.yce{bottom:325.826667pt;}
.y112{bottom:327.746667pt;}
.y2f{bottom:330.106667pt;}
.y9e{bottom:336.866667pt;}
.y67{bottom:337.666667pt;}
.y158{bottom:339.746667pt;}
.y12b{bottom:340.066667pt;}
.y111{bottom:340.226667pt;}
.y2e{bottom:345.466667pt;}
.ycc{bottom:345.826667pt;}
.y9d{bottom:352.226667pt;}
.y66{bottom:353.026667pt;}
.y157{bottom:355.106667pt;}
.y12a{bottom:357.506667pt;}
.y2d{bottom:360.826667pt;}
.ycb{bottom:361.186667pt;}
.y9c{bottom:367.586667pt;}
.y65{bottom:368.386667pt;}
.y156{bottom:370.466667pt;}
.y129{bottom:375.106667pt;}
.y2c{bottom:376.026667pt;}
.yca{bottom:377.346667pt;}
.y9b{bottom:382.946667pt;}
.y64{bottom:383.746667pt;}
.y155{bottom:385.826667pt;}
.y2b{bottom:391.426667pt;}
.y128{bottom:392.546667pt;}
.yc9{bottom:392.706667pt;}
.y9a{bottom:398.306667pt;}
.y63{bottom:398.946667pt;}
.y154{bottom:401.186667pt;}
.y2a{bottom:406.786667pt;}
.yc8{bottom:408.066667pt;}
.y127{bottom:413.026667pt;}
.y99{bottom:413.506667pt;}
.y62{bottom:414.306667pt;}
.yc7{bottom:420.706667pt;}
.y29{bottom:423.266667pt;}
.y126{bottom:428.386667pt;}
.yc4{bottom:428.706667pt;}
.y98{bottom:428.866667pt;}
.y61{bottom:429.666667pt;}
.y153{bottom:432.386667pt;}
.yc3{bottom:437.666667pt;}
.yfc{bottom:440.066667pt;}
.y125{bottom:443.586667pt;}
.y97{bottom:444.226667pt;}
.y28{bottom:444.706667pt;}
.yc5{bottom:447.906667pt;}
.yfb{bottom:455.266667pt;}
.yc6{bottom:457.666667pt;}
.y124{bottom:458.946667pt;}
.y96{bottom:459.586667pt;}
.y60{bottom:461.026667pt;}
.y152{bottom:463.746667pt;}
.y27{bottom:465.026667pt;}
.yc2{bottom:466.946667pt;}
.yfa{bottom:470.626667pt;}
.y123{bottom:474.306667pt;}
.y95{bottom:474.946667pt;}
.y151{bottom:479.106667pt;}
.y26{bottom:480.386667pt;}
.yc1{bottom:482.306667pt;}
.yf9{bottom:485.986667pt;}
.y122{bottom:489.666667pt;}
.y94{bottom:490.306667pt;}
.y5f{bottom:492.386667pt;}
.y150{bottom:494.466667pt;}
.y25{bottom:495.746667pt;}
.yc0{bottom:497.666667pt;}
.yf8{bottom:501.346667pt;}
.y121{bottom:505.026667pt;}
.y93{bottom:505.506667pt;}
.y5e{bottom:507.746667pt;}
.y14f{bottom:509.826667pt;}
.y24{bottom:511.106667pt;}
.ybf{bottom:512.866667pt;}
.yf7{bottom:516.706667pt;}
.y120{bottom:517.506667pt;}
.y92{bottom:520.866667pt;}
.y14e{bottom:525.026667pt;}
.y23{bottom:526.306667pt;}
.ybe{bottom:528.226667pt;}
.yf6{bottom:532.066667pt;}
.y91{bottom:536.226667pt;}
.y5d{bottom:538.973333pt;}
.y14d{bottom:540.413333pt;}
.y22{bottom:541.666667pt;}
.ybd{bottom:544.573333pt;}
.yf5{bottom:547.293333pt;}
.y90{bottom:551.613333pt;}
.y14c{bottom:556.733333pt;}
.y21{bottom:557.026667pt;}
.y178{bottom:558.493333pt;}
.ybc{bottom:559.933333pt;}
.yf4{bottom:562.653333pt;}
.y8f{bottom:566.973333pt;}
.y5c{bottom:570.333333pt;}
.y14b{bottom:572.093333pt;}
.y20{bottom:572.386667pt;}
.y177{bottom:573.853333pt;}
.ybb{bottom:575.293333pt;}
.yf3{bottom:578.013333pt;}
.y8e{bottom:582.333333pt;}
.y5b{bottom:585.693333pt;}
.y14a{bottom:587.453333pt;}
.y1f{bottom:587.746667pt;}
.y176{bottom:589.213333pt;}
.yba{bottom:591.613333pt;}
.yf2{bottom:593.373333pt;}
.y8d{bottom:597.533333pt;}
.y5a{bottom:601.053333pt;}
.y149{bottom:602.813333pt;}
.y1e{bottom:603.133333pt;}
.y175{bottom:605.053333pt;}
.yf1{bottom:608.733333pt;}
.y8c{bottom:612.893333pt;}
.y59{bottom:616.413333pt;}
.y148{bottom:618.013333pt;}
.y1d{bottom:618.333333pt;}
.y174{bottom:620.733333pt;}
.yb9{bottom:622.493333pt;}
.yf0{bottom:623.933333pt;}
.y8b{bottom:628.253333pt;}
.y58{bottom:631.773333pt;}
.y147{bottom:633.373333pt;}
.y1c{bottom:633.693333pt;}
.y173{bottom:636.093333pt;}
.yb8{bottom:637.853333pt;}
.yef{bottom:639.293333pt;}
.y8a{bottom:644.573333pt;}
.y57{bottom:646.973333pt;}
.y1b{bottom:649.053333pt;}
.y146{bottom:649.693333pt;}
.y172{bottom:651.613333pt;}
.y110{bottom:652.093333pt;}
.yb7{bottom:653.213333pt;}
.yee{bottom:654.653333pt;}
.y89{bottom:660.893333pt;}
.y56{bottom:662.333333pt;}
.y1a{bottom:664.413333pt;}
.y145{bottom:665.053333pt;}
.y10f{bottom:667.293333pt;}
.yb6{bottom:669.533333pt;}
.yed{bottom:670.013333pt;}
.y171{bottom:670.813333pt;}
.y88{bottom:677.053333pt;}
.y55{bottom:677.693333pt;}
.y19{bottom:679.773333pt;}
.y144{bottom:680.413333pt;}
.yb4{bottom:682.333333pt;}
.y10e{bottom:682.653333pt;}
.yec{bottom:685.373333pt;}
.yb5{bottom:689.053333pt;}
.y170{bottom:690.173333pt;}
.y87{bottom:692.413333pt;}
.y54{bottom:693.053333pt;}
.y18{bottom:694.973333pt;}
.y143{bottom:695.773333pt;}
.y10d{bottom:698.013333pt;}
.yeb{bottom:700.733333pt;}
.y86{bottom:707.773333pt;}
.y53{bottom:708.413333pt;}
.yb3{bottom:708.733333pt;}
.y16f{bottom:709.533333pt;}
.y17{bottom:710.333333pt;}
.y142{bottom:710.973333pt;}
.y10c{bottom:713.373333pt;}
.y85{bottom:723.133333pt;}
.y52{bottom:723.613333pt;}
.yb2{bottom:724.093333pt;}
.y16{bottom:725.693333pt;}
.y141{bottom:726.333333pt;}
.y10b{bottom:728.733333pt;}
.y16e{bottom:728.893333pt;}
.yea{bottom:731.933333pt;}
.y84{bottom:738.493333pt;}
.y51{bottom:738.973333pt;}
.yb1{bottom:739.453333pt;}
.y15{bottom:741.053333pt;}
.y140{bottom:741.693333pt;}
.y83{bottom:753.853333pt;}
.yb0{bottom:755.613333pt;}
.y13f{bottom:757.053333pt;}
.y10a{bottom:759.933333pt;}
.ye9{bottom:763.293333pt;}
.y16d{bottom:763.453333pt;}
.y82{bottom:769.053333pt;}
.y50{bottom:770.333333pt;}
.yaf{bottom:770.973333pt;}
.y14{bottom:771.453333pt;}
.y13e{bottom:772.413333pt;}
.ye8{bottom:778.693333pt;}
.y16c{bottom:782.853333pt;}
.y81{bottom:784.453333pt;}
.yae{bottom:786.373333pt;}
.y13d{bottom:787.653333pt;}
.y13{bottom:791.133333pt;}
.y109{bottom:791.333333pt;}
.ye7{bottom:794.053333pt;}
.y80{bottom:799.813333pt;}
.y4f{bottom:801.733333pt;}
.y12{bottom:802.173333pt;}
.y16b{bottom:802.213333pt;}
.y13c{bottom:803.013333pt;}
.y108{bottom:804.453333pt;}
.ye6{bottom:809.413333pt;}
.y7f{bottom:815.173333pt;}
.y11{bottom:815.973333pt;}
.y4e{bottom:817.093333pt;}
.y13b{bottom:818.373333pt;}
.y16a{bottom:821.573333pt;}
.y107{bottom:822.053333pt;}
.ye5{bottom:825.733333pt;}
.y7e{bottom:830.533333pt;}
.y4d{bottom:832.453333pt;}
.y13a{bottom:833.733333pt;}
.y10{bottom:835.653333pt;}
.y106{bottom:839.653333pt;}
.y167{bottom:840.933333pt;}
.ye4{bottom:841.893333pt;}
.y7d{bottom:846.693333pt;}
.yf{bottom:847.333333pt;}
.y4c{bottom:847.653333pt;}
.y139{bottom:849.093333pt;}
.y104{bottom:857.093333pt;}
.ye3{bottom:858.213333pt;}
.y4b{bottom:863.013333pt;}
.ye{bottom:863.813333pt;}
.y138{bottom:864.453333pt;}
.ye2{bottom:873.573333pt;}
.y101{bottom:874.693333pt;}
.y166{bottom:878.053333pt;}
.y4a{bottom:878.373333pt;}
.yad{bottom:879.013333pt;}
.yd{bottom:879.493333pt;}
.y137{bottom:879.653333pt;}
.ye1{bottom:888.933333pt;}
.y49{bottom:893.733333pt;}
.y7c{bottom:894.373333pt;}
.y100{bottom:895.013333pt;}
.yc{bottom:901.573333pt;}
.y48{bottom:909.093333pt;}
.y165{bottom:909.733333pt;}
.yac{bottom:910.373333pt;}
.yb{bottom:913.253333pt;}
.ye0{bottom:920.133333pt;}
.y47{bottom:924.453333pt;}
.y7b{bottom:925.733333pt;}
.ya{bottom:930.053333pt;}
.y46{bottom:939.653333pt;}
.y11f{bottom:940.293333pt;}
.y7a{bottom:941.093333pt;}
.y9{bottom:946.533333pt;}
.ydf{bottom:951.493333pt;}
.y45{bottom:955.013333pt;}
.y79{bottom:956.453333pt;}
.y8{bottom:963.013333pt;}
.yde{bottom:966.853333pt;}
.y78{bottom:971.653333pt;}
.ydd{bottom:982.213333pt;}
.y7{bottom:984.453333pt;}
.y44{bottom:986.373333pt;}
.y77{bottom:987.013333pt;}
.ydc{bottom:1000.933333pt;}
.y76{bottom:1002.373333pt;}
.y40{bottom:1017.760000pt;}
.y3f{bottom:1035.040000pt;}
.y3{bottom:1035.360000pt;}
.y3e{bottom:1049.920000pt;}
.y2{bottom:1050.240000pt;}
.y3d{bottom:1062.880000pt;}
.y1{bottom:1063.200000pt;}
.h27{height:15.200000pt;}
.h25{height:15.360000pt;}
.h26{height:15.392000pt;}
.h1e{height:16.800000pt;}
.h20{height:16.960000pt;}
.h24{height:30.560000pt;}
.h8{height:32.498125pt;}
.h9{height:42.023438pt;}
.hb{height:43.108125pt;}
.ha{height:43.782500pt;}
.h3{height:46.505938pt;}
.h4{height:47.335938pt;}
.h22{height:48.816875pt;}
.h7{height:51.548750pt;}
.h1f{height:52.468750pt;}
.h23{height:52.834688pt;}
.h6{height:53.618125pt;}
.h21{height:54.198125pt;}
.hd{height:56.031250pt;}
.he{height:57.010938pt;}
.h18{height:59.570937pt;}
.h5{height:60.766875pt;}
.h11{height:73.650937pt;}
.h15{height:94.848125pt;}
.h16{height:114.345938pt;}
.h1b{height:135.730938pt;}
.h14{height:137.650938pt;}
.h10{height:143.071540pt;}
.h1d{height:150.448750pt;}
.h1c{height:151.069604pt;}
.hf{height:162.610938pt;}
.h12{height:176.690937pt;}
.h1a{height:178.610937pt;}
.h19{height:203.570938pt;}
.h13{height:214.450937pt;}
.h17{height:218.448750pt;}
.hc{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.879919pt;}
.h0{height:1122.880000pt;}
.w8{width:24.320000pt;}
.w6{width:93.760000pt;}
.w7{width:93.952000pt;}
.w9{width:574.653333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w5{width:793.759988pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:0.960000pt;}
.x2f{left:7.040000pt;}
.x31{left:9.600000pt;}
.x36{left:11.520000pt;}
.x32{left:13.280000pt;}
.x2e{left:18.240000pt;}
.x2c{left:26.080000pt;}
.x38{left:30.400000pt;}
.x30{left:34.080000pt;}
.x33{left:39.680000pt;}
.x2a{left:46.880000pt;}
.x12{left:94.431988pt;}
.x6{left:96.031988pt;}
.x13{left:118.431988pt;}
.x3a{left:122.752000pt;}
.x14{left:142.426655pt;}
.x7{left:144.826655pt;}
.xa{left:147.866655pt;}
.xf{left:153.786655pt;}
.x25{left:166.266655pt;}
.x1{left:174.746655pt;}
.x9{left:191.386655pt;}
.x28{left:194.106655pt;}
.x27{left:208.026655pt;}
.xd{left:224.026655pt;}
.x35{left:231.066655pt;}
.x34{left:244.506655pt;}
.x29{left:255.586667pt;}
.x37{left:257.506655pt;}
.x2{left:273.346655pt;}
.x18{left:292.386655pt;}
.x11{left:308.386655pt;}
.x8{left:314.786655pt;}
.xb{left:323.426655pt;}
.x3{left:342.306655pt;}
.x1e{left:346.146655pt;}
.x2b{left:349.986667pt;}
.x23{left:352.866655pt;}
.x15{left:355.266655pt;}
.x10{left:356.546655pt;}
.xe{left:357.826655pt;}
.x19{left:361.346655pt;}
.x1d{left:379.586655pt;}
.x1c{left:384.386655pt;}
.x5{left:393.506655pt;}
.x4{left:396.866655pt;}
.x1b{left:398.626655pt;}
.x24{left:408.386655pt;}
.xc{left:410.946655pt;}
.x22{left:417.533322pt;}
.x21{left:422.333322pt;}
.x20{left:423.453322pt;}
.x1f{left:428.253322pt;}
.x2d{left:444.573333pt;}
.x1a{left:459.773322pt;}
.x16{left:502.493322pt;}
.x17{left:532.733322pt;}
.x26{left:661.413322pt;}
}




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