
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aaa7b7b90024a8a41e70b6a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_81244618bc96b40779d36967.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_88ed611287ed91efc2bbf6fa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f8edb54a75551e1d2904f8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_54e7d3d325de21967dbfe3bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.640625;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_5b9363fbc86d5bfee4125b2f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e34354c7a66042db69741875.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_24a555c1e2f357294353ff80.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_c7ffa5d7fca2027ec56fc2c1.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v15{vertical-align:-55.800000px;}
.vf{vertical-align:-28.440000px;}
.v14{vertical-align:-23.400000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.vb{vertical-align:-8.640000px;}
.v7{vertical-align:-2.520000px;}
.vd{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:8.640000px;}
.vc{vertical-align:10.080000px;}
.v5{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v13{vertical-align:22.320000px;}
.v11{vertical-align:26.640000px;}
.v9{vertical-align:28.080000px;}
.v10{vertical-align:32.400000px;}
.v8{vertical-align:40.320000px;}
.v6{vertical-align:45.360000px;}
.v12{vertical-align:48.960000px;}
.va{vertical-align:67.320000px;}
.v16{vertical-align:85.680000px;}
.ls2b{letter-spacing:-0.267600px;}
.ls3e{letter-spacing:-0.216600px;}
.ls14{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.162000px;}
.ls3c{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls2f{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls3a{letter-spacing:-0.094200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls3d{letter-spacing:-0.067200px;}
.ls15{letter-spacing:-0.063600px;}
.ls29{letter-spacing:-0.036000px;}
.ls3b{letter-spacing:-0.031680px;}
.ls2c{letter-spacing:-0.030600px;}
.ls36{letter-spacing:-0.009000px;}
.ls2a{letter-spacing:-0.007560px;}
.ls2d{letter-spacing:-0.003960px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.011520px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls28{letter-spacing:0.085200px;}
.ls2{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.092400px;}
.ls27{letter-spacing:0.093240px;}
.ls1{letter-spacing:0.093600px;}
.ls41{letter-spacing:0.098400px;}
.ls1f{letter-spacing:0.104040px;}
.ls42{letter-spacing:0.116400px;}
.lsf{letter-spacing:0.131400px;}
.ls7{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.156000px;}
.ls1c{letter-spacing:0.160200px;}
.ls35{letter-spacing:0.165600px;}
.ls13{letter-spacing:0.173400px;}
.ls40{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls33{letter-spacing:1.058760px;}
.ls31{letter-spacing:1.129680px;}
.ls32{letter-spacing:1.397880px;}
.ls23{letter-spacing:1.692000px;}
.ls34{letter-spacing:1.892520px;}
.ls24{letter-spacing:1.906200px;}
.ls1b{letter-spacing:1.908000px;}
.ls1e{letter-spacing:1.960200px;}
.ls25{letter-spacing:2.252520px;}
.ls26{letter-spacing:2.489400px;}
.ls30{letter-spacing:2.732520px;}
.ls20{letter-spacing:3.450960px;}
.ls4{letter-spacing:3.693600px;}
.ls1a{letter-spacing:3.929400px;}
.ls1d{letter-spacing:4.051080px;}
.ls5{letter-spacing:4.053600px;}
.lse{letter-spacing:5.493600px;}
.ls39{letter-spacing:9.893520px;}
.ls12{letter-spacing:13.773600px;}
.ls38{letter-spacing:16.890120px;}
.ls37{letter-spacing:18.161280px;}
.ls21{letter-spacing:20.129400px;}
.ls19{letter-spacing:20.370960px;}
.ls43{letter-spacing:47.726640px;}
.ls18{letter-spacing:63.566640px;}
.ls3f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws1a{word-spacing:-13.392000px;}
.ws17{word-spacing:-13.382400px;}
.ws25{word-spacing:-13.342800px;}
.ws24{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.222440px;}
.ws12{word-spacing:-13.218840px;}
.ws1b{word-spacing:-13.217400px;}
.wsc{word-spacing:-13.162800px;}
.ws21{word-spacing:-13.159200px;}
.ws19{word-spacing:-13.091400px;}
.ws20{word-spacing:-13.072800px;}
.ws6{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.ws22{word-spacing:-13.009800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1c{word-spacing:-9.358800px;}
.wse{word-spacing:-9.351600px;}
.ws10{word-spacing:-9.266400px;}
.ws14{word-spacing:-9.235800px;}
.ws23{word-spacing:-9.172200px;}
.ws18{word-spacing:-9.141000px;}
.ws2{word-spacing:-8.553600px;}
.ws11{word-spacing:-7.884000px;}
.ws7{word-spacing:0.000000px;}
.ws1e{word-spacing:1.694880px;}
.ws15{word-spacing:1.958400px;}
.wsd{word-spacing:3.063960px;}
.ws13{word-spacing:3.423960px;}
.ws4{word-spacing:4.304880px;}
.ws1d{word-spacing:7.428960px;}
.ws1f{word-spacing:7.659840px;}
.wsf{word-spacing:135.093600px;}
._11{margin-left:-5.238720px;}
._d{margin-left:-3.246600px;}
._6{margin-left:-2.211840px;}
._0{margin-left:-1.014000px;}
._1{width:1.090188px;}
._7{width:2.284800px;}
._b{width:3.350423px;}
._c{width:4.574472px;}
._3{width:5.593926px;}
._2{width:7.246800px;}
._5{width:8.343720px;}
._4{width:9.444960px;}
._a{width:10.935600px;}
._13{width:12.036480px;}
._10{width:13.297080px;}
._e{width:15.150480px;}
._8{width:16.352400px;}
._9{width:17.436002px;}
._12{width:18.577210px;}
._14{width:20.049581px;}
._15{width:22.033800px;}
._f{width:30.648360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y65{bottom:3.330000px;}
.y62{bottom:4.500000px;}
.y63{bottom:6.750000px;}
.y9a{bottom:7.830000px;}
.yaa{bottom:7.860000px;}
.y98{bottom:7.920000px;}
.yb7{bottom:8.190000px;}
.y6f{bottom:9.000000px;}
.yc9{bottom:11.250000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yc1{bottom:111.450000px;}
.ye8{bottom:117.750000px;}
.ya5{bottom:123.510000px;}
.y80{bottom:123.780000px;}
.y29{bottom:128.910000px;}
.y10d{bottom:130.170000px;}
.y7f{bottom:141.420000px;}
.y28{bottom:146.460000px;}
.yd0{bottom:146.730000px;}
.yc0{bottom:147.000000px;}
.y10c{bottom:147.810000px;}
.y130{bottom:151.680000px;}
.ye7{bottom:153.390000px;}
.y7e{bottom:158.970000px;}
.ya4{bottom:159.060000px;}
.y27{bottom:164.100000px;}
.y10b{bottom:165.360000px;}
.y12f{bottom:169.320000px;}
.ye6{bottom:170.940000px;}
.ybf{bottom:179.220000px;}
.y26{bottom:181.650000px;}
.ycf{bottom:182.280000px;}
.y7d{bottom:185.520000px;}
.ya3{bottom:194.610000px;}
.y12e{bottom:195.870000px;}
.y25{bottom:199.200000px;}
.y10a{bottom:200.910000px;}
.ye5{bottom:206.580000px;}
.y12d{bottom:213.420000px;}
.yce{bottom:214.500000px;}
.y24{bottom:216.840000px;}
.y7c{bottom:218.100000px;}
.y109{bottom:218.550000px;}
.ya2{bottom:229.530000px;}
.y108{bottom:236.100000px;}
.y12c{bottom:240.060000px;}
.ya1{bottom:241.680000px;}
.ye4{bottom:243.480000px;}
.y68{bottom:246.810000px;}
.y23{bottom:252.390000px;}
.y7b{bottom:253.740000px;}
.y12b{bottom:257.610000px;}
.yf7{bottom:259.140000px;}
.ya0{bottom:269.040000px;}
.y22{bottom:270.030000px;}
.y107{bottom:271.290000px;}
.ye3{bottom:280.470000px;}
.y67{bottom:282.360000px;}
.y12a{bottom:284.250000px;}
.y21{bottom:287.580000px;}
.y7a{bottom:289.290000px;}
.yf6{bottom:294.690000px;}
.y9f{bottom:296.310000px;}
.ye2{bottom:298.020000px;}
.y129{bottom:301.800000px;}
.y20{bottom:305.130000px;}
.y106{bottom:306.840000px;}
.y79{bottom:306.930000px;}
.ye1{bottom:315.660000px;}
.y66{bottom:318.000000px;}
.y54{bottom:318.810000px;}
.y1f{bottom:322.770000px;}
.y9e{bottom:323.670000px;}
.y78{bottom:324.480000px;}
.y128{bottom:328.710000px;}
.yf5{bottom:330.330000px;}
.y64{bottom:332.220000px;}
.y53{bottom:336.360000px;}
.y1e{bottom:340.320000px;}
.y105{bottom:342.030000px;}
.yf4{bottom:347.880000px;}
.y77{bottom:351.030000px;}
.ye0{bottom:351.210000px;}
.y52{bottom:354.000000px;}
.y1d{bottom:357.960000px;}
.y61{bottom:358.770000px;}
.y104{bottom:359.670000px;}
.y51{bottom:371.550000px;}
.y127{bottom:376.950000px;}
.y103{bottom:377.220000px;}
.y9d{bottom:378.390000px;}
.ydf{bottom:383.430000px;}
.y76{bottom:383.610000px;}
.y1c{bottom:384.870000px;}
.y102{bottom:394.770000px;}
.y50{bottom:398.100000px;}
.yf3{bottom:401.070000px;}
.y126{bottom:403.860000px;}
.y9c{bottom:405.660000px;}
.y75{bottom:419.160000px;}
.y101{bottom:421.680000px;}
.y4f{bottom:430.770000px;}
.y9b{bottom:433.020000px;}
.y1b{bottom:433.470000px;}
.yf2{bottom:436.620000px;}
.y74{bottom:437.610000px;}
.y125{bottom:440.940000px;}
.y73{bottom:456.060000px;}
.ycd{bottom:456.420000px;}
.y99{bottom:460.470000px;}
.y4e{bottom:466.320000px;}
.y124{bottom:467.760000px;}
.ybe{bottom:468.390000px;}
.yf1{bottom:468.840000px;}
.y100{bottom:470.040000px;}
.y1a{bottom:470.490000px;}
.ycc{bottom:479.670000px;}
.y4d{bottom:483.900000px;}
.ybd{bottom:485.970000px;}
.yff{bottom:487.590000px;}
.y97{bottom:487.770000px;}
.y19{bottom:488.040000px;}
.y72{bottom:492.540000px;}
.y4c{bottom:501.540000px;}
.y123{bottom:504.780000px;}
.y18{bottom:505.680000px;}
.ycb{bottom:506.220000px;}
.ybc{bottom:512.610000px;}
.y4b{bottom:519.090000px;}
.yfe{bottom:523.140000px;}
.y17{bottom:523.230000px;}
.y71{bottom:528.090000px;}
.y96{bottom:536.550000px;}
.y4a{bottom:536.730000px;}
.y16{bottom:540.780000px;}
.ybb{bottom:545.550000px;}
.y49{bottom:554.280000px;}
.yfd{bottom:555.360000px;}
.y15{bottom:558.420000px;}
.y122{bottom:559.230000px;}
.y70{bottom:560.310000px;}
.y48{bottom:571.830000px;}
.y95{bottom:572.100000px;}
.yba{bottom:572.910000px;}
.y14{bottom:575.970000px;}
.y121{bottom:577.680000px;}
.y6e{bottom:586.860000px;}
.y47{bottom:589.470000px;}
.y94{bottom:589.650000px;}
.y13{bottom:593.610000px;}
.y120{bottom:595.230000px;}
.yb9{bottom:600.180000px;}
.y60{bottom:605.130000px;}
.y46{bottom:607.020000px;}
.y12{bottom:611.160000px;}
.y93{bottom:616.290000px;}
.y5f{bottom:622.770000px;}
.y11f{bottom:623.040000px;}
.yb8{bottom:627.540000px;}
.y11{bottom:628.710000px;}
.y45{bottom:633.660000px;}
.y5e{bottom:640.320000px;}
.y10{bottom:646.350000px;}
.y92{bottom:651.840000px;}
.yde{bottom:652.290000px;}
.yb6{bottom:654.900000px;}
.y11e{bottom:660.030000px;}
.yf{bottom:663.900000px;}
.y5d{bottom:666.870000px;}
.y44{bottom:669.570000px;}
.ydd{bottom:678.930000px;}
.yb5{bottom:682.530000px;}
.y11d{bottom:686.940000px;}
.y91{bottom:687.480000px;}
.ye{bottom:690.810000px;}
.yca{bottom:692.970000px;}
.y5c{bottom:699.540000px;}
.ydc{bottom:714.480000px;}
.y43{bottom:717.810000px;}
.yc8{bottom:719.520000px;}
.y90{bottom:723.030000px;}
.y11c{bottom:723.930000px;}
.yb4{bottom:731.220000px;}
.ydb{bottom:732.120000px;}
.y141{bottom:733.740000px;}
.y5b{bottom:735.090000px;}
.y42{bottom:735.360000px;}
.yd{bottom:739.140000px;}
.y8f{bottom:740.580000px;}
.y11b{bottom:741.570000px;}
.y41{bottom:753.000000px;}
.yf0{bottom:753.540000px;}
.y11a{bottom:759.120000px;}
.y140{bottom:760.290000px;}
.y5a{bottom:761.640000px;}
.yb3{bottom:766.860000px;}
.y8e{bottom:767.220000px;}
.yda{bottom:767.670000px;}
.yef{bottom:771.090000px;}
.yc{bottom:774.690000px;}
.y13f{bottom:777.930000px;}
.y119{bottom:786.030000px;}
.y40{bottom:788.550000px;}
.yee{bottom:788.640000px;}
.yfc{bottom:790.530000px;}
.yb2{bottom:790.800000px;}
.y59{bottom:797.280000px;}
.y8b{bottom:802.680000px;}
.yd9{bottom:803.220000px;}
.y13e{bottom:804.480000px;}
.y8c{bottom:805.200000px;}
.y3f{bottom:806.190000px;}
.yed{bottom:806.280000px;}
.yfb{bottom:808.080000px;}
.yb{bottom:810.510000px;}
.y58{bottom:814.830000px;}
.y8d{bottom:816.630000px;}
.yb1{bottom:818.160000px;}
.y118{bottom:823.380000px;}
.y3e{bottom:823.740000px;}
.yfa{bottom:825.720000px;}
.y13d{bottom:831.030000px;}
.yd8{bottom:838.860000px;}
.y6d{bottom:840.030000px;}
.y3d{bottom:841.290000px;}
.y57{bottom:841.470000px;}
.yec{bottom:841.830000px;}
.yb0{bottom:845.430000px;}
.y8a{bottom:847.680000px;}
.ya{bottom:850.290000px;}
.y6c{bottom:857.580000px;}
.y13c{bottom:857.670000px;}
.y3c{bottom:858.930000px;}
.yeb{bottom:859.470000px;}
.yf9{bottom:861.270000px;}
.y9{bottom:864.510000px;}
.y89{bottom:865.230000px;}
.yd7{bottom:871.080000px;}
.y117{bottom:871.620000px;}
.yaf{bottom:872.790000px;}
.y13b{bottom:875.220000px;}
.y3b{bottom:876.480000px;}
.y56{bottom:877.020000px;}
.y6b{bottom:884.220000px;}
.y8{bottom:886.290000px;}
.y116{bottom:889.260000px;}
.y88{bottom:891.780000px;}
.yd6{bottom:892.500000px;}
.yf8{bottom:893.490000px;}
.y3a{bottom:894.030000px;}
.yea{bottom:895.020000px;}
.yae{bottom:900.150000px;}
.y7{bottom:900.510000px;}
.y13a{bottom:901.860000px;}
.y115{bottom:906.810000px;}
.y55{bottom:909.240000px;}
.y39{bottom:911.670000px;}
.y139{bottom:919.410000px;}
.y6a{bottom:919.770000px;}
.y6{bottom:922.290000px;}
.y114{bottom:924.450000px;}
.yd5{bottom:926.250000px;}
.ye9{bottom:927.240000px;}
.y87{bottom:927.420000px;}
.yad{bottom:927.510000px;}
.y38{bottom:929.220000px;}
.y113{bottom:942.000000px;}
.y138{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.y69{bottom:951.990000px;}
.y5{bottom:954.600000px;}
.yac{bottom:954.780000px;}
.yc7{bottom:959.190000px;}
.y112{bottom:959.550000px;}
.yd4{bottom:961.800000px;}
.y86{bottom:962.970000px;}
.y137{bottom:963.600000px;}
.y36{bottom:964.410000px;}
.y4{bottom:973.950000px;}
.yc6{bottom:976.740000px;}
.y111{bottom:977.190000px;}
.y35{bottom:981.960000px;}
.yab{bottom:982.140000px;}
.y136{bottom:990.150000px;}
.yc5{bottom:994.290000px;}
.y110{bottom:994.740000px;}
.yd3{bottom:997.440000px;}
.y85{bottom:998.610000px;}
.y34{bottom:999.600000px;}
.y135{bottom:1007.790000px;}
.ya9{bottom:1009.500000px;}
.yc4{bottom:1011.960000px;}
.y3{bottom:1012.230000px;}
.y10f{bottom:1012.320000px;}
.y33{bottom:1017.180000px;}
.y83{bottom:1030.950000px;}
.yd2{bottom:1033.020000px;}
.y134{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.ya8{bottom:1036.890000px;}
.yc3{bottom:1038.510000px;}
.y10e{bottom:1039.230000px;}
.y82{bottom:1041.030000px;}
.y84{bottom:1047.960000px;}
.y133{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.ya7{bottom:1064.250000px;}
.yd1{bottom:1068.570000px;}
.y30{bottom:1069.920000px;}
.yc2{bottom:1074.420000px;}
.y132{bottom:1078.560000px;}
.y81{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.ya6{bottom:1091.610000px;}
.y131{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h1a{height:26.580000px;}
.h19{height:26.640000px;}
.h1d{height:26.910000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h18{height:39.832031px;}
.h1c{height:41.661211px;}
.h15{height:47.323477px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:59.973223px;}
.ha{height:60.960938px;}
.h12{height:61.793886px;}
.hd{height:62.585859px;}
.hb{height:66.519492px;}
.h1b{height:68.563477px;}
.hc{height:68.582109px;}
.h17{height:68.923477px;}
.h4{height:72.985430px;}
.h16{height:105.643477px;}
.h21{height:106.839492px;}
.h13{height:114.399492px;}
.h14{height:115.363477px;}
.h20{height:152.199492px;}
.h1f{height:186.750000px;}
.h1e{height:218.250000px;}
.hf{height:225.030000px;}
.h11{height:231.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:66.540000px;}
.w8{width:90.660000px;}
.wb{width:100.830000px;}
.w9{width:128.070000px;}
.wa{width:189.180000px;}
.wc{width:228.330000px;}
.w7{width:267.570000px;}
.we{width:360.480000px;}
.wf{width:364.980000px;}
.w5{width:365.520000px;}
.w4{width:368.670000px;}
.w3{width:388.470000px;}
.w6{width:391.620000px;}
.w10{width:725.460000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x26{left:13.140000px;}
.x2d{left:17.460000px;}
.x21{left:22.860000px;}
.x1f{left:24.210000px;}
.x22{left:25.560000px;}
.x29{left:29.880000px;}
.x28{left:30.960000px;}
.x20{left:35.730000px;}
.x1d{left:40.440000px;}
.x9{left:43.560000px;}
.x27{left:45.810000px;}
.x1c{left:47.430000px;}
.x10{left:50.940000px;}
.x1e{left:54.180000px;}
.x1{left:68.040000px;}
.x30{left:83.880000px;}
.xf{left:85.680000px;}
.x11{left:95.039987px;}
.x47{left:111.239987px;}
.x46{left:122.039987px;}
.x2{left:202.799987px;}
.x5{left:227.369987px;}
.x2a{left:234.390000px;}
.x24{left:236.820000px;}
.x35{left:238.620000px;}
.x3a{left:249.509987px;}
.x3b{left:266.339987px;}
.x36{left:275.249987px;}
.x3e{left:289.289987px;}
.x23{left:294.419987px;}
.x38{left:298.739987px;}
.x40{left:302.339987px;}
.xb{left:310.889987px;}
.x3c{left:312.869987px;}
.x45{left:325.919987px;}
.x12{left:331.229987px;}
.x2f{left:342.749987px;}
.x39{left:347.339987px;}
.x31{left:352.380000px;}
.x33{left:356.880000px;}
.xc{left:368.130000px;}
.x8{left:370.380000px;}
.x6{left:390.630000px;}
.x15{left:392.519987px;}
.xe{left:395.130000px;}
.x18{left:399.539987px;}
.x13{left:426.809987px;}
.xd{left:433.560000px;}
.x32{left:444.360000px;}
.x42{left:446.609987px;}
.x7{left:456.510000px;}
.x16{left:462.179987px;}
.x2b{left:463.440000px;}
.x1a{left:471.000000px;}
.x17{left:489.809987px;}
.x25{left:528.360000px;}
.x2c{left:530.790000px;}
.x14{left:547.709987px;}
.x1b{left:562.470000px;}
.xa{left:646.889987px;}
.x4{left:649.139987px;}
.x34{left:698.010000px;}
.x3d{left:756.059987px;}
.x2e{left:757.139987px;}
.x3{left:792.059987px;}
.x41{left:797.639987px;}
.x37{left:801.059987px;}
.x3f{left:807.809987px;}
.x44{left:814.559987px;}
.x43{left:833.099987px;}
@media print{
.v15{vertical-align:-49.600000pt;}
.vf{vertical-align:-25.280000pt;}
.v14{vertical-align:-20.800000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.vb{vertical-align:-7.680000pt;}
.v7{vertical-align:-2.240000pt;}
.vd{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:7.680000pt;}
.vc{vertical-align:8.960000pt;}
.v5{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v13{vertical-align:19.840000pt;}
.v11{vertical-align:23.680000pt;}
.v9{vertical-align:24.960000pt;}
.v10{vertical-align:28.800000pt;}
.v8{vertical-align:35.840000pt;}
.v6{vertical-align:40.320000pt;}
.v12{vertical-align:43.520000pt;}
.va{vertical-align:59.840000pt;}
.v16{vertical-align:76.160000pt;}
.ls2b{letter-spacing:-0.237867pt;}
.ls3e{letter-spacing:-0.192533pt;}
.ls14{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls3c{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls2f{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls3a{letter-spacing:-0.083733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls3d{letter-spacing:-0.059733pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls29{letter-spacing:-0.032000pt;}
.ls3b{letter-spacing:-0.028160pt;}
.ls2c{letter-spacing:-0.027200pt;}
.ls36{letter-spacing:-0.008000pt;}
.ls2a{letter-spacing:-0.006720pt;}
.ls2d{letter-spacing:-0.003520pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.010240pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls28{letter-spacing:0.075733pt;}
.ls2{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.082133pt;}
.ls27{letter-spacing:0.082880pt;}
.ls1{letter-spacing:0.083200pt;}
.ls41{letter-spacing:0.087467pt;}
.ls1f{letter-spacing:0.092480pt;}
.ls42{letter-spacing:0.103467pt;}
.lsf{letter-spacing:0.116800pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.138667pt;}
.ls1c{letter-spacing:0.142400pt;}
.ls35{letter-spacing:0.147200pt;}
.ls13{letter-spacing:0.154133pt;}
.ls40{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.941120pt;}
.ls31{letter-spacing:1.004160pt;}
.ls32{letter-spacing:1.242560pt;}
.ls23{letter-spacing:1.504000pt;}
.ls34{letter-spacing:1.682240pt;}
.ls24{letter-spacing:1.694400pt;}
.ls1b{letter-spacing:1.696000pt;}
.ls1e{letter-spacing:1.742400pt;}
.ls25{letter-spacing:2.002240pt;}
.ls26{letter-spacing:2.212800pt;}
.ls30{letter-spacing:2.428907pt;}
.ls20{letter-spacing:3.067520pt;}
.ls4{letter-spacing:3.283200pt;}
.ls1a{letter-spacing:3.492800pt;}
.ls1d{letter-spacing:3.600960pt;}
.ls5{letter-spacing:3.603200pt;}
.lse{letter-spacing:4.883200pt;}
.ls39{letter-spacing:8.794240pt;}
.ls12{letter-spacing:12.243200pt;}
.ls38{letter-spacing:15.013440pt;}
.ls37{letter-spacing:16.143360pt;}
.ls21{letter-spacing:17.892800pt;}
.ls19{letter-spacing:18.107520pt;}
.ls43{letter-spacing:42.423680pt;}
.ls18{letter-spacing:56.503680pt;}
.ls3f{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws1a{word-spacing:-11.904000pt;}
.ws17{word-spacing:-11.895467pt;}
.ws25{word-spacing:-11.860267pt;}
.ws24{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.753280pt;}
.ws12{word-spacing:-11.750080pt;}
.ws1b{word-spacing:-11.748800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws21{word-spacing:-11.697067pt;}
.ws19{word-spacing:-11.636800pt;}
.ws20{word-spacing:-11.620267pt;}
.ws6{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws22{word-spacing:-11.564267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1c{word-spacing:-8.318933pt;}
.wse{word-spacing:-8.312533pt;}
.ws10{word-spacing:-8.236800pt;}
.ws14{word-spacing:-8.209600pt;}
.ws23{word-spacing:-8.153067pt;}
.ws18{word-spacing:-8.125333pt;}
.ws2{word-spacing:-7.603200pt;}
.ws11{word-spacing:-7.008000pt;}
.ws7{word-spacing:0.000000pt;}
.ws1e{word-spacing:1.506560pt;}
.ws15{word-spacing:1.740800pt;}
.wsd{word-spacing:2.723520pt;}
.ws13{word-spacing:3.043520pt;}
.ws4{word-spacing:3.826560pt;}
.ws1d{word-spacing:6.603520pt;}
.ws1f{word-spacing:6.808747pt;}
.wsf{word-spacing:120.083200pt;}
._11{margin-left:-4.656640pt;}
._d{margin-left:-2.885867pt;}
._6{margin-left:-1.966080pt;}
._0{margin-left:-0.901333pt;}
._1{width:0.969056pt;}
._7{width:2.030934pt;}
._b{width:2.978154pt;}
._c{width:4.066197pt;}
._3{width:4.972379pt;}
._2{width:6.441600pt;}
._5{width:7.416640pt;}
._4{width:8.395520pt;}
._a{width:9.720533pt;}
._13{width:10.699094pt;}
._10{width:11.819627pt;}
._e{width:13.467094pt;}
._8{width:14.535466pt;}
._9{width:15.498669pt;}
._12{width:16.513075pt;}
._14{width:17.821849pt;}
._15{width:19.585600pt;}
._f{width:27.242987pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:2.960000pt;}
.y62{bottom:4.000000pt;}
.y63{bottom:6.000000pt;}
.y9a{bottom:6.960000pt;}
.yaa{bottom:6.986667pt;}
.y98{bottom:7.040000pt;}
.yb7{bottom:7.280000pt;}
.y6f{bottom:8.000000pt;}
.yc9{bottom:10.000000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yc1{bottom:99.066667pt;}
.ye8{bottom:104.666667pt;}
.ya5{bottom:109.786667pt;}
.y80{bottom:110.026667pt;}
.y29{bottom:114.586667pt;}
.y10d{bottom:115.706667pt;}
.y7f{bottom:125.706667pt;}
.y28{bottom:130.186667pt;}
.yd0{bottom:130.426667pt;}
.yc0{bottom:130.666667pt;}
.y10c{bottom:131.386667pt;}
.y130{bottom:134.826667pt;}
.ye7{bottom:136.346667pt;}
.y7e{bottom:141.306667pt;}
.ya4{bottom:141.386667pt;}
.y27{bottom:145.866667pt;}
.y10b{bottom:146.986667pt;}
.y12f{bottom:150.506667pt;}
.ye6{bottom:151.946667pt;}
.ybf{bottom:159.306667pt;}
.y26{bottom:161.466667pt;}
.ycf{bottom:162.026667pt;}
.y7d{bottom:164.906667pt;}
.ya3{bottom:172.986667pt;}
.y12e{bottom:174.106667pt;}
.y25{bottom:177.066667pt;}
.y10a{bottom:178.586667pt;}
.ye5{bottom:183.626667pt;}
.y12d{bottom:189.706667pt;}
.yce{bottom:190.666667pt;}
.y24{bottom:192.746667pt;}
.y7c{bottom:193.866667pt;}
.y109{bottom:194.266667pt;}
.ya2{bottom:204.026667pt;}
.y108{bottom:209.866667pt;}
.y12c{bottom:213.386667pt;}
.ya1{bottom:214.826667pt;}
.ye4{bottom:216.426667pt;}
.y68{bottom:219.386667pt;}
.y23{bottom:224.346667pt;}
.y7b{bottom:225.546667pt;}
.y12b{bottom:228.986667pt;}
.yf7{bottom:230.346667pt;}
.ya0{bottom:239.146667pt;}
.y22{bottom:240.026667pt;}
.y107{bottom:241.146667pt;}
.ye3{bottom:249.306667pt;}
.y67{bottom:250.986667pt;}
.y12a{bottom:252.666667pt;}
.y21{bottom:255.626667pt;}
.y7a{bottom:257.146667pt;}
.yf6{bottom:261.946667pt;}
.y9f{bottom:263.386667pt;}
.ye2{bottom:264.906667pt;}
.y129{bottom:268.266667pt;}
.y20{bottom:271.226667pt;}
.y106{bottom:272.746667pt;}
.y79{bottom:272.826667pt;}
.ye1{bottom:280.586667pt;}
.y66{bottom:282.666667pt;}
.y54{bottom:283.386667pt;}
.y1f{bottom:286.906667pt;}
.y9e{bottom:287.706667pt;}
.y78{bottom:288.426667pt;}
.y128{bottom:292.186667pt;}
.yf5{bottom:293.626667pt;}
.y64{bottom:295.306667pt;}
.y53{bottom:298.986667pt;}
.y1e{bottom:302.506667pt;}
.y105{bottom:304.026667pt;}
.yf4{bottom:309.226667pt;}
.y77{bottom:312.026667pt;}
.ye0{bottom:312.186667pt;}
.y52{bottom:314.666667pt;}
.y1d{bottom:318.186667pt;}
.y61{bottom:318.906667pt;}
.y104{bottom:319.706667pt;}
.y51{bottom:330.266667pt;}
.y127{bottom:335.066667pt;}
.y103{bottom:335.306667pt;}
.y9d{bottom:336.346667pt;}
.ydf{bottom:340.826667pt;}
.y76{bottom:340.986667pt;}
.y1c{bottom:342.106667pt;}
.y102{bottom:350.906667pt;}
.y50{bottom:353.866667pt;}
.yf3{bottom:356.506667pt;}
.y126{bottom:358.986667pt;}
.y9c{bottom:360.586667pt;}
.y75{bottom:372.586667pt;}
.y101{bottom:374.826667pt;}
.y4f{bottom:382.906667pt;}
.y9b{bottom:384.906667pt;}
.y1b{bottom:385.306667pt;}
.yf2{bottom:388.106667pt;}
.y74{bottom:388.986667pt;}
.y125{bottom:391.946667pt;}
.y73{bottom:405.386667pt;}
.ycd{bottom:405.706667pt;}
.y99{bottom:409.306667pt;}
.y4e{bottom:414.506667pt;}
.y124{bottom:415.786667pt;}
.ybe{bottom:416.346667pt;}
.yf1{bottom:416.746667pt;}
.y100{bottom:417.813333pt;}
.y1a{bottom:418.213333pt;}
.ycc{bottom:426.373333pt;}
.y4d{bottom:430.133333pt;}
.ybd{bottom:431.973333pt;}
.yff{bottom:433.413333pt;}
.y97{bottom:433.573333pt;}
.y19{bottom:433.813333pt;}
.y72{bottom:437.813333pt;}
.y4c{bottom:445.813333pt;}
.y123{bottom:448.693333pt;}
.y18{bottom:449.493333pt;}
.ycb{bottom:449.973333pt;}
.ybc{bottom:455.653333pt;}
.y4b{bottom:461.413333pt;}
.yfe{bottom:465.013333pt;}
.y17{bottom:465.093333pt;}
.y71{bottom:469.413333pt;}
.y96{bottom:476.933333pt;}
.y4a{bottom:477.093333pt;}
.y16{bottom:480.693333pt;}
.ybb{bottom:484.933333pt;}
.y49{bottom:492.693333pt;}
.yfd{bottom:493.653333pt;}
.y15{bottom:496.373333pt;}
.y122{bottom:497.093333pt;}
.y70{bottom:498.053333pt;}
.y48{bottom:508.293333pt;}
.y95{bottom:508.533333pt;}
.yba{bottom:509.253333pt;}
.y14{bottom:511.973333pt;}
.y121{bottom:513.493333pt;}
.y6e{bottom:521.653333pt;}
.y47{bottom:523.973333pt;}
.y94{bottom:524.133333pt;}
.y13{bottom:527.653333pt;}
.y120{bottom:529.093333pt;}
.yb9{bottom:533.493333pt;}
.y60{bottom:537.893333pt;}
.y46{bottom:539.573333pt;}
.y12{bottom:543.253333pt;}
.y93{bottom:547.813333pt;}
.y5f{bottom:553.573333pt;}
.y11f{bottom:553.813333pt;}
.yb8{bottom:557.813333pt;}
.y11{bottom:558.853333pt;}
.y45{bottom:563.253333pt;}
.y5e{bottom:569.173333pt;}
.y10{bottom:574.533333pt;}
.y92{bottom:579.413333pt;}
.yde{bottom:579.813333pt;}
.yb6{bottom:582.133333pt;}
.y11e{bottom:586.693333pt;}
.yf{bottom:590.133333pt;}
.y5d{bottom:592.773333pt;}
.y44{bottom:595.173333pt;}
.ydd{bottom:603.493333pt;}
.yb5{bottom:606.693333pt;}
.y11d{bottom:610.613333pt;}
.y91{bottom:611.093333pt;}
.ye{bottom:614.053333pt;}
.yca{bottom:615.973333pt;}
.y5c{bottom:621.813333pt;}
.ydc{bottom:635.093333pt;}
.y43{bottom:638.053333pt;}
.yc8{bottom:639.573333pt;}
.y90{bottom:642.693333pt;}
.y11c{bottom:643.493333pt;}
.yb4{bottom:649.973333pt;}
.ydb{bottom:650.773333pt;}
.y141{bottom:652.213333pt;}
.y5b{bottom:653.413333pt;}
.y42{bottom:653.653333pt;}
.yd{bottom:657.013333pt;}
.y8f{bottom:658.293333pt;}
.y11b{bottom:659.173333pt;}
.y41{bottom:669.333333pt;}
.yf0{bottom:669.813333pt;}
.y11a{bottom:674.773333pt;}
.y140{bottom:675.813333pt;}
.y5a{bottom:677.013333pt;}
.yb3{bottom:681.653333pt;}
.y8e{bottom:681.973333pt;}
.yda{bottom:682.373333pt;}
.yef{bottom:685.413333pt;}
.yc{bottom:688.613333pt;}
.y13f{bottom:691.493333pt;}
.y119{bottom:698.693333pt;}
.y40{bottom:700.933333pt;}
.yee{bottom:701.013333pt;}
.yfc{bottom:702.693333pt;}
.yb2{bottom:702.933333pt;}
.y59{bottom:708.693333pt;}
.y8b{bottom:713.493333pt;}
.yd9{bottom:713.973333pt;}
.y13e{bottom:715.093333pt;}
.y8c{bottom:715.733333pt;}
.y3f{bottom:716.613333pt;}
.yed{bottom:716.693333pt;}
.yfb{bottom:718.293333pt;}
.yb{bottom:720.453333pt;}
.y58{bottom:724.293333pt;}
.y8d{bottom:725.893333pt;}
.yb1{bottom:727.253333pt;}
.y118{bottom:731.893333pt;}
.y3e{bottom:732.213333pt;}
.yfa{bottom:733.973333pt;}
.y13d{bottom:738.693333pt;}
.yd8{bottom:745.653333pt;}
.y6d{bottom:746.693333pt;}
.y3d{bottom:747.813333pt;}
.y57{bottom:747.973333pt;}
.yec{bottom:748.293333pt;}
.yb0{bottom:751.493333pt;}
.y8a{bottom:753.493333pt;}
.ya{bottom:755.813333pt;}
.y6c{bottom:762.293333pt;}
.y13c{bottom:762.373333pt;}
.y3c{bottom:763.493333pt;}
.yeb{bottom:763.973333pt;}
.yf9{bottom:765.573333pt;}
.y9{bottom:768.453333pt;}
.y89{bottom:769.093333pt;}
.yd7{bottom:774.293333pt;}
.y117{bottom:774.773333pt;}
.yaf{bottom:775.813333pt;}
.y13b{bottom:777.973333pt;}
.y3b{bottom:779.093333pt;}
.y56{bottom:779.573333pt;}
.y6b{bottom:785.973333pt;}
.y8{bottom:787.813333pt;}
.y116{bottom:790.453333pt;}
.y88{bottom:792.693333pt;}
.yd6{bottom:793.333333pt;}
.yf8{bottom:794.213333pt;}
.y3a{bottom:794.693333pt;}
.yea{bottom:795.573333pt;}
.yae{bottom:800.133333pt;}
.y7{bottom:800.453333pt;}
.y13a{bottom:801.653333pt;}
.y115{bottom:806.053333pt;}
.y55{bottom:808.213333pt;}
.y39{bottom:810.373333pt;}
.y139{bottom:817.253333pt;}
.y6a{bottom:817.573333pt;}
.y6{bottom:819.813333pt;}
.y114{bottom:821.733333pt;}
.yd5{bottom:823.333333pt;}
.ye9{bottom:824.213333pt;}
.y87{bottom:824.373333pt;}
.yad{bottom:824.453333pt;}
.y38{bottom:825.973333pt;}
.y113{bottom:837.333333pt;}
.y138{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.y69{bottom:846.213333pt;}
.y5{bottom:848.533333pt;}
.yac{bottom:848.693333pt;}
.yc7{bottom:852.613333pt;}
.y112{bottom:852.933333pt;}
.yd4{bottom:854.933333pt;}
.y86{bottom:855.973333pt;}
.y137{bottom:856.533333pt;}
.y36{bottom:857.253333pt;}
.y4{bottom:865.733333pt;}
.yc6{bottom:868.213333pt;}
.y111{bottom:868.613333pt;}
.y35{bottom:872.853333pt;}
.yab{bottom:873.013333pt;}
.y136{bottom:880.133333pt;}
.yc5{bottom:883.813333pt;}
.y110{bottom:884.213333pt;}
.yd3{bottom:886.613333pt;}
.y85{bottom:887.653333pt;}
.y34{bottom:888.533333pt;}
.y135{bottom:895.813333pt;}
.ya9{bottom:897.333333pt;}
.yc4{bottom:899.520000pt;}
.y3{bottom:899.760000pt;}
.y10f{bottom:899.840000pt;}
.y33{bottom:904.160000pt;}
.y83{bottom:916.400000pt;}
.yd2{bottom:918.240000pt;}
.y134{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.ya8{bottom:921.680000pt;}
.yc3{bottom:923.120000pt;}
.y10e{bottom:923.760000pt;}
.y82{bottom:925.360000pt;}
.y84{bottom:931.520000pt;}
.y133{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.ya7{bottom:946.000000pt;}
.yd1{bottom:949.840000pt;}
.y30{bottom:951.040000pt;}
.yc2{bottom:955.040000pt;}
.y132{bottom:958.720000pt;}
.y81{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.ya6{bottom:970.320000pt;}
.y131{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h1a{height:23.626667pt;}
.h19{height:23.680000pt;}
.h1d{height:23.920000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h18{height:35.406250pt;}
.h1c{height:37.032187pt;}
.h15{height:42.065312pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:53.309531pt;}
.ha{height:54.187500pt;}
.h12{height:54.927899pt;}
.hd{height:55.631875pt;}
.hb{height:59.128437pt;}
.h1b{height:60.945313pt;}
.hc{height:60.961875pt;}
.h17{height:61.265313pt;}
.h4{height:64.875937pt;}
.h16{height:93.905312pt;}
.h21{height:94.968437pt;}
.h13{height:101.688438pt;}
.h14{height:102.545313pt;}
.h20{height:135.288437pt;}
.h1f{height:166.000000pt;}
.h1e{height:194.000000pt;}
.hf{height:200.026667pt;}
.h11{height:206.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:59.146667pt;}
.w8{width:80.586667pt;}
.wb{width:89.626667pt;}
.w9{width:113.840000pt;}
.wa{width:168.160000pt;}
.wc{width:202.960000pt;}
.w7{width:237.840000pt;}
.we{width:320.426667pt;}
.wf{width:324.426667pt;}
.w5{width:324.906667pt;}
.w4{width:327.706667pt;}
.w3{width:345.306667pt;}
.w6{width:348.106667pt;}
.w10{width:644.853333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x26{left:11.680000pt;}
.x2d{left:15.520000pt;}
.x21{left:20.320000pt;}
.x1f{left:21.520000pt;}
.x22{left:22.720000pt;}
.x29{left:26.560000pt;}
.x28{left:27.520000pt;}
.x20{left:31.760000pt;}
.x1d{left:35.946667pt;}
.x9{left:38.720000pt;}
.x27{left:40.720000pt;}
.x1c{left:42.160000pt;}
.x10{left:45.280000pt;}
.x1e{left:48.160000pt;}
.x1{left:60.480000pt;}
.x30{left:74.560000pt;}
.xf{left:76.160000pt;}
.x11{left:84.479988pt;}
.x47{left:98.879988pt;}
.x46{left:108.479988pt;}
.x2{left:180.266655pt;}
.x5{left:202.106655pt;}
.x2a{left:208.346667pt;}
.x24{left:210.506667pt;}
.x35{left:212.106667pt;}
.x3a{left:221.786655pt;}
.x3b{left:236.746655pt;}
.x36{left:244.666655pt;}
.x3e{left:257.146655pt;}
.x23{left:261.706655pt;}
.x38{left:265.546655pt;}
.x40{left:268.746655pt;}
.xb{left:276.346655pt;}
.x3c{left:278.106655pt;}
.x45{left:289.706655pt;}
.x12{left:294.426655pt;}
.x2f{left:304.666655pt;}
.x39{left:308.746655pt;}
.x31{left:313.226667pt;}
.x33{left:317.226667pt;}
.xc{left:327.226667pt;}
.x8{left:329.226667pt;}
.x6{left:347.226667pt;}
.x15{left:348.906655pt;}
.xe{left:351.226667pt;}
.x18{left:355.146655pt;}
.x13{left:379.386655pt;}
.xd{left:385.386667pt;}
.x32{left:394.986667pt;}
.x42{left:396.986655pt;}
.x7{left:405.786667pt;}
.x16{left:410.826655pt;}
.x2b{left:411.946667pt;}
.x1a{left:418.666667pt;}
.x17{left:435.386655pt;}
.x25{left:469.653333pt;}
.x2c{left:471.813333pt;}
.x14{left:486.853322pt;}
.x1b{left:499.973333pt;}
.xa{left:575.013322pt;}
.x4{left:577.013322pt;}
.x34{left:620.453333pt;}
.x3d{left:672.053322pt;}
.x2e{left:673.013322pt;}
.x3{left:704.053322pt;}
.x41{left:709.013322pt;}
.x37{left:712.053322pt;}
.x3f{left:718.053322pt;}
.x44{left:724.053322pt;}
.x43{left:740.533322pt;}
}




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