
    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_b8c327195112a0643c21cae7.woff')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_50e48bd820cb4103dc8f3cd3.woff')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_b10eab3577ead01b257b7481.woff')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_01e221bf5cb6679c570e1c66.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_b7feed1f9369871f5019f5dc.woff')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_4491131982d967846b22ae16.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c033ff926932b57a3e588ab.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0b246c924e8b23a88e1a0fce.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.513600px;}
.ls19{letter-spacing:-0.427200px;}
.lsa{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.057000px;}
.lsb{letter-spacing:-0.015000px;}
.ls13{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.020400px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.053280px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls17{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;}
}
.ws2{word-spacing:-18.396600px;}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.407600px;}
.wsa{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.279680px;}
.wsc{word-spacing:-13.275360px;}
.ws8{word-spacing:-13.246800px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws5{word-spacing:-13.211400px;}
.ws10{word-spacing:-13.101000px;}
.wsd{word-spacing:-13.065600px;}
.ws3{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._14{margin-left:-4.286520px;}
._7{margin-left:-3.108240px;}
._b{margin-left:-2.074200px;}
._0{margin-left:-1.050000px;}
._2{width:1.396920px;}
._8{width:2.498759px;}
._3{width:3.604320px;}
._4{width:4.760517px;}
._5{width:6.312600px;}
._f{width:7.395000px;}
._e{width:9.018000px;}
._10{width:10.080600px;}
._11{width:11.565840px;}
._a{width:14.609400px;}
._13{width:16.111679px;}
._9{width:18.096000px;}
._6{width:19.479000px;}
._16{width:20.694960px;}
._47{width:22.124160px;}
._d{width:23.759040px;}
._c{width:25.407360px;}
._12{width:27.414720px;}
._15{width:28.500240px;}
._55{width:30.120120px;}
._1d{width:31.142160px;}
._4b{width:32.795520px;}
._17{width:34.027920px;}
._18{width:35.350560px;}
._3d{width:37.154160px;}
._49{width:38.296440px;}
._30{width:39.558960px;}
._1c{width:42.865560px;}
._4a{width:47.254320px;}
._4d{width:49.358520px;}
._31{width:50.604840px;}
._26{width:51.763320px;}
._1{width:52.787868px;}
._20{width:53.985252px;}
._36{width:55.851480px;}
._37{width:57.144120px;}
._32{width:60.540840px;}
._19{width:65.530800px;}
._41{width:67.514760px;}
._3c{width:73.707120px;}
._2e{width:74.729160px;}
._1b{width:76.051800px;}
._23{width:77.434560px;}
._35{width:78.636960px;}
._51{width:81.432241px;}
._40{width:82.484640px;}
._38{width:85.731120px;}
._46{width:86.873400px;}
._2d{width:93.366360px;}
._3f{width:94.538760px;}
._25{width:99.678960px;}
._4f{width:102.684960px;}
._4c{width:105.751080px;}
._24{width:109.839240px;}
._34{width:113.205960px;}
._42{width:114.438480px;}
._1e{width:115.791120px;}
._3b{width:118.797120px;}
._3e{width:122.584680px;}
._39{width:125.470440px;}
._27{width:127.875240px;}
._28{width:129.047640px;}
._1f{width:133.346160px;}
._2a{width:135.029520px;}
._29{width:138.095640px;}
._45{width:142.484400px;}
._21{width:160.520400px;}
._43{width:171.943200px;}
._50{width:173.110800px;}
._44{width:190.219680px;}
._1a{width:199.838880px;}
._3a{width:209.097360px;}
._2c{width:210.480120px;}
._48{width:217.694520px;}
._2f{width:242.672280px;}
._33{width:274.026960px;}
._2b{width:299.878560px;}
._22{width:320.680080px;}
._53{width:476.931960px;}
._52{width:1771.343520px;}
._54{width:1884.190920px;}
._4e{width:2070.382560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:7.830000px;}
.yd7{bottom:7.920000px;}
.ye3{bottom:25.380000px;}
.yd6{bottom:25.470000px;}
.ydc{bottom:43.020000px;}
.y104{bottom:43.110000px;}
.ye2{bottom:60.570000px;}
.ydb{bottom:60.600000px;}
.ye5{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.ye1{bottom:78.210000px;}
.yda{bottom:78.240000px;}
.ye0{bottom:95.760000px;}
.yd9{bottom:95.790000px;}
.ye7{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.yfd{bottom:112.440000px;}
.ydf{bottom:113.310000px;}
.y5a{bottom:116.310000px;}
.yb7{bottom:117.300000px;}
.y87{bottom:121.170000px;}
.y114{bottom:129.630000px;}
.y138{bottom:129.720000px;}
.yfc{bottom:130.080000px;}
.y59{bottom:133.860000px;}
.yb6{bottom:134.850000px;}
.y86{bottom:138.720000px;}
.y29{bottom:141.060000px;}
.y168{bottom:144.570000px;}
.y113{bottom:147.180000px;}
.y137{bottom:147.270000px;}
.yfb{bottom:147.630000px;}
.yb5{bottom:152.400000px;}
.y85{bottom:156.270000px;}
.y28{bottom:158.610000px;}
.y58{bottom:160.500000px;}
.y167{bottom:162.120000px;}
.y112{bottom:164.820000px;}
.y136{bottom:164.910000px;}
.yfa{bottom:165.180000px;}
.yb4{bottom:170.040000px;}
.y84{bottom:173.910000px;}
.y27{bottom:176.250000px;}
.y166{bottom:179.670000px;}
.y111{bottom:182.370000px;}
.y26{bottom:193.800000px;}
.y57{bottom:196.050000px;}
.yb3{bottom:196.590000px;}
.y135{bottom:200.460000px;}
.yf9{bottom:200.820000px;}
.yd4{bottom:201.000000px;}
.y165{bottom:206.310000px;}
.y83{bottom:209.460000px;}
.y25{bottom:211.350000px;}
.y56{bottom:213.600000px;}
.y110{bottom:218.010000px;}
.y134{bottom:218.100000px;}
.yf8{bottom:218.370000px;}
.y164{bottom:223.860000px;}
.y82{bottom:227.100000px;}
.y98{bottom:228.270000px;}
.y24{bottom:228.990000px;}
.y55{bottom:231.240000px;}
.yb2{bottom:232.230000px;}
.y10f{bottom:235.560000px;}
.y133{bottom:235.650000px;}
.yf7{bottom:236.010000px;}
.yd3{bottom:236.280000px;}
.y163{bottom:241.500000px;}
.y81{bottom:244.650000px;}
.y23{bottom:246.540000px;}
.y54{bottom:248.790000px;}
.yb1{bottom:249.780000px;}
.y10e{bottom:253.110000px;}
.y132{bottom:253.200000px;}
.yf6{bottom:253.560000px;}
.y162{bottom:259.050000px;}
.y80{bottom:262.200000px;}
.y97{bottom:263.730000px;}
.y22{bottom:264.090000px;}
.y53{bottom:266.430000px;}
.yb0{bottom:267.330000px;}
.y10d{bottom:270.750000px;}
.y131{bottom:270.840000px;}
.yf5{bottom:271.110000px;}
.yd2{bottom:271.650000px;}
.y161{bottom:276.600000px;}
.y7f{bottom:279.840000px;}
.y96{bottom:281.280000px;}
.y21{bottom:281.730000px;}
.y52{bottom:283.980000px;}
.yaf{bottom:284.970000px;}
.y10c{bottom:288.300000px;}
.yf4{bottom:288.750000px;}
.yd1{bottom:289.200000px;}
.y7e{bottom:297.390000px;}
.y95{bottom:298.830000px;}
.y20{bottom:299.280000px;}
.yae{bottom:302.520000px;}
.y160{bottom:303.240000px;}
.y10b{bottom:305.940000px;}
.yf3{bottom:306.300000px;}
.y130{bottom:306.390000px;}
.yd0{bottom:306.840000px;}
.y7d{bottom:314.940000px;}
.y94{bottom:316.470000px;}
.y1f{bottom:316.920000px;}
.y51{bottom:319.530000px;}
.yad{bottom:320.160000px;}
.y15f{bottom:320.790000px;}
.y10a{bottom:323.490000px;}
.y12f{bottom:323.940000px;}
.ycf{bottom:324.390000px;}
.y7c{bottom:332.580000px;}
.yf2{bottom:332.940000px;}
.y93{bottom:334.020000px;}
.y1e{bottom:334.470000px;}
.y50{bottom:337.170000px;}
.yac{bottom:337.710000px;}
.y15e{bottom:338.430000px;}
.y109{bottom:341.040000px;}
.y12e{bottom:341.580000px;}
.yce{bottom:341.940000px;}
.y7b{bottom:350.130000px;}
.y92{bottom:351.660000px;}
.y1d{bottom:352.020000px;}
.y4f{bottom:354.720000px;}
.yab{bottom:355.260000px;}
.y12d{bottom:359.130000px;}
.ycd{bottom:359.580000px;}
.y15d{bottom:364.980000px;}
.y108{bottom:367.680000px;}
.yf1{bottom:368.490000px;}
.y91{bottom:369.210000px;}
.y1c{bottom:369.660000px;}
.y4e{bottom:372.360000px;}
.y7a{bottom:376.770000px;}
.ycc{bottom:377.130000px;}
.y15c{bottom:382.530000px;}
.yf0{bottom:386.040000px;}
.y90{bottom:386.760000px;}
.y4d{bottom:389.910000px;}
.yaa{bottom:390.900000px;}
.y12c{bottom:394.320000px;}
.y1b{bottom:396.570000px;}
.y15b{bottom:400.170000px;}
.y107{bottom:403.230000px;}
.yef{bottom:403.680000px;}
.y4c{bottom:407.460000px;}
.ya9{bottom:408.450000px;}
.y79{bottom:412.680000px;}
.ycb{bottom:412.770000px;}
.y8f{bottom:413.400000px;}
.y106{bottom:420.870000px;}
.yee{bottom:421.230000px;}
.ya8{bottom:426.000000px;}
.y15a{bottom:426.720000px;}
.y12b{bottom:429.870000px;}
.yca{bottom:430.320000px;}
.y105{bottom:438.420000px;}
.yed{bottom:438.870000px;}
.y4b{bottom:443.100000px;}
.ya7{bottom:443.640000px;}
.y159{bottom:444.360000px;}
.y1a{bottom:444.810000px;}
.y12a{bottom:447.510000px;}
.yc9{bottom:447.870000px;}
.y8e{bottom:448.950000px;}
.yec{bottom:456.420000px;}
.y4a{bottom:460.650000px;}
.y78{bottom:460.920000px;}
.ya6{bottom:461.190000px;}
.y158{bottom:461.910000px;}
.y19{bottom:462.720000px;}
.y129{bottom:465.060000px;}
.yc8{bottom:465.510000px;}
.y8d{bottom:466.500000px;}
.y103{bottom:471.390000px;}
.yeb{bottom:474.000000px;}
.y49{bottom:478.230000px;}
.y77{bottom:478.500000px;}
.ya5{bottom:478.860000px;}
.y157{bottom:479.490000px;}
.y128{bottom:482.730000px;}
.yc7{bottom:483.090000px;}
.y8c{bottom:484.170000px;}
.y48{bottom:495.870000px;}
.y76{bottom:496.140000px;}
.ya4{bottom:496.410000px;}
.y18{bottom:499.830000px;}
.y127{bottom:500.280000px;}
.yc6{bottom:500.730000px;}
.y8b{bottom:501.720000px;}
.y17a{bottom:505.500000px;}
.y156{bottom:506.130000px;}
.yea{bottom:509.640000px;}
.y47{bottom:513.420000px;}
.y75{bottom:513.690000px;}
.ya3{bottom:513.960000px;}
.y17{bottom:517.380000px;}
.y126{bottom:517.830000px;}
.yc5{bottom:518.280000px;}
.y8a{bottom:519.360000px;}
.y179{bottom:523.140000px;}
.y155{bottom:523.680000px;}
.ye9{bottom:527.190000px;}
.y46{bottom:531.060000px;}
.y74{bottom:531.330000px;}
.y16{bottom:534.930000px;}
.y125{bottom:535.470000px;}
.y154{bottom:541.230000px;}
.yc4{bottom:544.830000px;}
.ya2{bottom:549.600000px;}
.y178{bottom:549.690000px;}
.y15{bottom:552.570000px;}
.y89{bottom:554.910000px;}
.y45{bottom:557.610000px;}
.y124{bottom:562.020000px;}
.ye8{bottom:562.380000px;}
.y73{bottom:566.880000px;}
.ya1{bottom:567.150000px;}
.y177{bottom:567.330000px;}
.y153{bottom:567.870000px;}
.y102{bottom:569.130000px;}
.y14{bottom:570.120000px;}
.yc3{bottom:580.740000px;}
.y72{bottom:584.430000px;}
.ya0{bottom:584.790000px;}
.y176{bottom:584.880000px;}
.y152{bottom:585.420000px;}
.y88{bottom:587.130000px;}
.y13{bottom:587.670000px;}
.y44{bottom:593.520000px;}
.ye6{bottom:595.320000px;}
.y123{bottom:597.660000px;}
.y71{bottom:602.070000px;}
.y9f{bottom:602.340000px;}
.y175{bottom:602.430000px;}
.y151{bottom:603.060000px;}
.y12{bottom:605.310000px;}
.y122{bottom:615.210000px;}
.y70{bottom:619.620000px;}
.y9e{bottom:619.890000px;}
.y11{bottom:622.860000px;}
.yc2{bottom:629.070000px;}
.y150{bottom:629.970000px;}
.y121{bottom:632.760000px;}
.y6f{bottom:637.260000px;}
.y9d{bottom:637.530000px;}
.y10{bottom:640.500000px;}
.y43{bottom:641.760000px;}
.yc1{bottom:646.620000px;}
.y101{bottom:649.230000px;}
.y120{bottom:650.400000px;}
.y9c{bottom:655.080000px;}
.yf{bottom:658.050000px;}
.y42{bottom:659.400000px;}
.yc0{bottom:664.260000px;}
.y11f{bottom:667.950000px;}
.y9b{bottom:672.720000px;}
.y6e{bottom:672.810000px;}
.ye{bottom:675.600000px;}
.y41{bottom:676.950000px;}
.y14f{bottom:678.210000px;}
.ybf{bottom:681.810000px;}
.y6d{bottom:690.360000px;}
.yd{bottom:693.240000px;}
.y40{bottom:694.590000px;}
.y14e{bottom:695.760000px;}
.ybe{bottom:699.360000px;}
.y11e{bottom:703.590000px;}
.y6c{bottom:708.000000px;}
.y9a{bottom:708.270000px;}
.y174{bottom:708.360000px;}
.ye4{bottom:710.610000px;}
.yc{bottom:710.790000px;}
.y3f{bottom:712.140000px;}
.y14d{bottom:713.400000px;}
.ybd{bottom:717.000000px;}
.y11d{bottom:721.140000px;}
.y6b{bottom:725.550000px;}
.y173{bottom:726.000000px;}
.yb{bottom:728.430000px;}
.y3e{bottom:729.690000px;}
.y14c{bottom:730.950000px;}
.ybc{bottom:734.550000px;}
.y11c{bottom:738.690000px;}
.y99{bottom:740.490000px;}
.y6a{bottom:743.190000px;}
.y172{bottom:743.550000px;}
.y3d{bottom:747.330000px;}
.y14b{bottom:748.590000px;}
.ya{bottom:755.340000px;}
.y11b{bottom:756.330000px;}
.y69{bottom:760.740000px;}
.y171{bottom:761.190000px;}
.y100{bottom:764.430000px;}
.y3c{bottom:764.880000px;}
.y14a{bottom:766.140000px;}
.ybb{bottom:770.190000px;}
.y11a{bottom:773.880000px;}
.y149{bottom:783.690000px;}
.y68{bottom:787.290000px;}
.yba{bottom:787.740000px;}
.y119{bottom:791.520000px;}
.y3b{bottom:800.520000px;}
.y148{bottom:801.330000px;}
.y9{bottom:803.580000px;}
.yb9{bottom:805.290000px;}
.y3a{bottom:818.070000px;}
.y147{bottom:818.880000px;}
.y67{bottom:822.930000px;}
.yde{bottom:825.900000px;}
.y39{bottom:835.620000px;}
.y146{bottom:836.520000px;}
.y8{bottom:839.130000px;}
.y66{bottom:840.480000px;}
.y38{bottom:853.260000px;}
.y118{bottom:853.620000px;}
.y145{bottom:854.070000px;}
.y65{bottom:858.030000px;}
.y170{bottom:867.030000px;}
.y37{bottom:870.810000px;}
.y117{bottom:871.260000px;}
.y144{bottom:871.620000px;}
.y7{bottom:874.950000px;}
.y64{bottom:875.670000px;}
.yff{bottom:879.720000px;}
.y16f{bottom:884.670000px;}
.y116{bottom:888.810000px;}
.y143{bottom:889.260000px;}
.y63{bottom:893.220000px;}
.y16e{bottom:902.220000px;}
.y36{bottom:906.450000px;}
.y142{bottom:906.810000px;}
.y62{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y35{bottom:924.000000px;}
.y141{bottom:924.450000px;}
.yb8{bottom:928.860000px;}
.y115{bottom:933.270000px;}
.y34{bottom:941.550000px;}
.y140{bottom:942.000000px;}
.yfe{bottom:945.960000px;}
.y61{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yd8{bottom:958.740000px;}
.y13f{bottom:959.550000px;}
.y60{bottom:963.960000px;}
.y33{bottom:968.460000px;}
.y13e{bottom:977.190000px;}
.y5f{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y16d{bottom:990.600000px;}
.y13d{bottom:994.740000px;}
.y5e{bottom:999.150000px;}
.y16c{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y13c{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y16b{bottom:1025.820000px;}
.y13b{bottom:1029.960000px;}
.y31{bottom:1034.370000px;}
.y16a{bottom:1043.370000px;}
.y13a{bottom:1047.510000px;}
.y30{bottom:1051.920000px;}
.y169{bottom:1060.920000px;}
.y2f{bottom:1069.560000px;}
.y5d{bottom:1069.920000px;}
.yd5{bottom:1073.970000px;}
.y139{bottom:1074.420000px;}
.y2e{bottom:1087.110000px;}
.y5c{bottom:1087.560000px;}
.y5b{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hc{height:44.190000px;}
.h6{height:50.667539px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h12{height:79.290000px;}
.h13{height:96.930000px;}
.h10{height:114.480000px;}
.he{height:114.510000px;}
.h11{height:114.570000px;}
.hf{height:132.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:92.790000px;}
.w7{width:111.810000px;}
.w8{width:175.410000px;}
.w4{width:176.940000px;}
.w9{width:226.020000px;}
.w5{width:232.950000px;}
.wa{width:240.210000px;}
.w6{width:250.740000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.960000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x9{left:162.300000px;}
.xc{left:181.290000px;}
.x2{left:202.799987px;}
.x7{left:229.079987px;}
.x5{left:257.249987px;}
.xa{left:340.050000px;}
.xd{left:357.420000px;}
.xb{left:573.720000px;}
.xe{left:584.250000px;}
.x6{left:727.889987px;}
.x4{left:740.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.456533pt;}
.ls19{letter-spacing:-0.379733pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.050667pt;}
.lsb{letter-spacing:-0.013333pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.018133pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws13{word-spacing:-11.917867pt;}
.wsa{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.804160pt;}
.wsc{word-spacing:-11.800320pt;}
.ws8{word-spacing:-11.774933pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws5{word-spacing:-11.743467pt;}
.ws10{word-spacing:-11.645333pt;}
.wsd{word-spacing:-11.613867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._14{margin-left:-3.810240pt;}
._7{margin-left:-2.762880pt;}
._b{margin-left:-1.843734pt;}
._0{margin-left:-0.933333pt;}
._2{width:1.241707pt;}
._8{width:2.221119pt;}
._3{width:3.203840pt;}
._4{width:4.231571pt;}
._5{width:5.611200pt;}
._f{width:6.573334pt;}
._e{width:8.016000pt;}
._10{width:8.960533pt;}
._11{width:10.280747pt;}
._a{width:12.986134pt;}
._13{width:14.321492pt;}
._9{width:16.085333pt;}
._6{width:17.314667pt;}
._16{width:18.395520pt;}
._47{width:19.665920pt;}
._d{width:21.119147pt;}
._c{width:22.584320pt;}
._12{width:24.368640pt;}
._15{width:25.333547pt;}
._55{width:26.773440pt;}
._1d{width:27.681920pt;}
._4b{width:29.151574pt;}
._17{width:30.247040pt;}
._18{width:31.422720pt;}
._3d{width:33.025920pt;}
._49{width:34.041280pt;}
._30{width:35.163520pt;}
._1c{width:38.102720pt;}
._4a{width:42.003840pt;}
._4d{width:43.874240pt;}
._31{width:44.982080pt;}
._26{width:46.011840pt;}
._1{width:46.922550pt;}
._20{width:47.986890pt;}
._36{width:49.645760pt;}
._37{width:50.794774pt;}
._32{width:53.814080pt;}
._19{width:58.249600pt;}
._41{width:60.013120pt;}
._3c{width:65.517440pt;}
._2e{width:66.425920pt;}
._1b{width:67.601600pt;}
._23{width:68.830720pt;}
._35{width:69.899520pt;}
._51{width:72.384214pt;}
._40{width:73.319680pt;}
._38{width:76.205440pt;}
._46{width:77.220800pt;}
._2d{width:82.992320pt;}
._3f{width:84.034454pt;}
._25{width:88.603520pt;}
._4f{width:91.275520pt;}
._4c{width:94.000960pt;}
._24{width:97.634880pt;}
._34{width:100.627520pt;}
._42{width:101.723094pt;}
._1e{width:102.925440pt;}
._3b{width:105.597440pt;}
._3e{width:108.964160pt;}
._39{width:111.529280pt;}
._27{width:113.666880pt;}
._28{width:114.709014pt;}
._1f{width:118.529920pt;}
._2a{width:120.026240pt;}
._29{width:122.751680pt;}
._45{width:126.652800pt;}
._21{width:142.684800pt;}
._43{width:152.838400pt;}
._50{width:153.876267pt;}
._44{width:169.084160pt;}
._1a{width:177.634560pt;}
._3a{width:185.864320pt;}
._2c{width:187.093440pt;}
._48{width:193.506240pt;}
._2f{width:215.708693pt;}
._33{width:243.579520pt;}
._2b{width:266.558720pt;}
._22{width:285.048960pt;}
._53{width:423.939520pt;}
._52{width:1574.527573pt;}
._54{width:1674.836374pt;}
._4e{width:1840.340054pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:6.960000pt;}
.yd7{bottom:7.040000pt;}
.ye3{bottom:22.560000pt;}
.yd6{bottom:22.640000pt;}
.ydc{bottom:38.240000pt;}
.y104{bottom:38.320000pt;}
.ye2{bottom:53.840000pt;}
.ydb{bottom:53.866667pt;}
.ye5{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.ye1{bottom:69.520000pt;}
.yda{bottom:69.546667pt;}
.ye0{bottom:85.120000pt;}
.yd9{bottom:85.146667pt;}
.ye7{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.yfd{bottom:99.946667pt;}
.ydf{bottom:100.720000pt;}
.y5a{bottom:103.386667pt;}
.yb7{bottom:104.266667pt;}
.y87{bottom:107.706667pt;}
.y114{bottom:115.226667pt;}
.y138{bottom:115.306667pt;}
.yfc{bottom:115.626667pt;}
.y59{bottom:118.986667pt;}
.yb6{bottom:119.866667pt;}
.y86{bottom:123.306667pt;}
.y29{bottom:125.386667pt;}
.y168{bottom:128.506667pt;}
.y113{bottom:130.826667pt;}
.y137{bottom:130.906667pt;}
.yfb{bottom:131.226667pt;}
.yb5{bottom:135.466667pt;}
.y85{bottom:138.906667pt;}
.y28{bottom:140.986667pt;}
.y58{bottom:142.666667pt;}
.y167{bottom:144.106667pt;}
.y112{bottom:146.506667pt;}
.y136{bottom:146.586667pt;}
.yfa{bottom:146.826667pt;}
.yb4{bottom:151.146667pt;}
.y84{bottom:154.586667pt;}
.y27{bottom:156.666667pt;}
.y166{bottom:159.706667pt;}
.y111{bottom:162.106667pt;}
.y26{bottom:172.266667pt;}
.y57{bottom:174.266667pt;}
.yb3{bottom:174.746667pt;}
.y135{bottom:178.186667pt;}
.yf9{bottom:178.506667pt;}
.yd4{bottom:178.666667pt;}
.y165{bottom:183.386667pt;}
.y83{bottom:186.186667pt;}
.y25{bottom:187.866667pt;}
.y56{bottom:189.866667pt;}
.y110{bottom:193.786667pt;}
.y134{bottom:193.866667pt;}
.yf8{bottom:194.106667pt;}
.y164{bottom:198.986667pt;}
.y82{bottom:201.866667pt;}
.y98{bottom:202.906667pt;}
.y24{bottom:203.546667pt;}
.y55{bottom:205.546667pt;}
.yb2{bottom:206.426667pt;}
.y10f{bottom:209.386667pt;}
.y133{bottom:209.466667pt;}
.yf7{bottom:209.786667pt;}
.yd3{bottom:210.026667pt;}
.y163{bottom:214.666667pt;}
.y81{bottom:217.466667pt;}
.y23{bottom:219.146667pt;}
.y54{bottom:221.146667pt;}
.yb1{bottom:222.026667pt;}
.y10e{bottom:224.986667pt;}
.y132{bottom:225.066667pt;}
.yf6{bottom:225.386667pt;}
.y162{bottom:230.266667pt;}
.y80{bottom:233.066667pt;}
.y97{bottom:234.426667pt;}
.y22{bottom:234.746667pt;}
.y53{bottom:236.826667pt;}
.yb0{bottom:237.626667pt;}
.y10d{bottom:240.666667pt;}
.y131{bottom:240.746667pt;}
.yf5{bottom:240.986667pt;}
.yd2{bottom:241.466667pt;}
.y161{bottom:245.866667pt;}
.y7f{bottom:248.746667pt;}
.y96{bottom:250.026667pt;}
.y21{bottom:250.426667pt;}
.y52{bottom:252.426667pt;}
.yaf{bottom:253.306667pt;}
.y10c{bottom:256.266667pt;}
.yf4{bottom:256.666667pt;}
.yd1{bottom:257.066667pt;}
.y7e{bottom:264.346667pt;}
.y95{bottom:265.626667pt;}
.y20{bottom:266.026667pt;}
.yae{bottom:268.906667pt;}
.y160{bottom:269.546667pt;}
.y10b{bottom:271.946667pt;}
.yf3{bottom:272.266667pt;}
.y130{bottom:272.346667pt;}
.yd0{bottom:272.746667pt;}
.y7d{bottom:279.946667pt;}
.y94{bottom:281.306667pt;}
.y1f{bottom:281.706667pt;}
.y51{bottom:284.026667pt;}
.yad{bottom:284.586667pt;}
.y15f{bottom:285.146667pt;}
.y10a{bottom:287.546667pt;}
.y12f{bottom:287.946667pt;}
.ycf{bottom:288.346667pt;}
.y7c{bottom:295.626667pt;}
.yf2{bottom:295.946667pt;}
.y93{bottom:296.906667pt;}
.y1e{bottom:297.306667pt;}
.y50{bottom:299.706667pt;}
.yac{bottom:300.186667pt;}
.y15e{bottom:300.826667pt;}
.y109{bottom:303.146667pt;}
.y12e{bottom:303.626667pt;}
.yce{bottom:303.946667pt;}
.y7b{bottom:311.226667pt;}
.y92{bottom:312.586667pt;}
.y1d{bottom:312.906667pt;}
.y4f{bottom:315.306667pt;}
.yab{bottom:315.786667pt;}
.y12d{bottom:319.226667pt;}
.ycd{bottom:319.626667pt;}
.y15d{bottom:324.426667pt;}
.y108{bottom:326.826667pt;}
.yf1{bottom:327.546667pt;}
.y91{bottom:328.186667pt;}
.y1c{bottom:328.586667pt;}
.y4e{bottom:330.986667pt;}
.y7a{bottom:334.906667pt;}
.ycc{bottom:335.226667pt;}
.y15c{bottom:340.026667pt;}
.yf0{bottom:343.146667pt;}
.y90{bottom:343.786667pt;}
.y4d{bottom:346.586667pt;}
.yaa{bottom:347.466667pt;}
.y12c{bottom:350.506667pt;}
.y1b{bottom:352.506667pt;}
.y15b{bottom:355.706667pt;}
.y107{bottom:358.426667pt;}
.yef{bottom:358.826667pt;}
.y4c{bottom:362.186667pt;}
.ya9{bottom:363.066667pt;}
.y79{bottom:366.826667pt;}
.ycb{bottom:366.906667pt;}
.y8f{bottom:367.466667pt;}
.y106{bottom:374.106667pt;}
.yee{bottom:374.426667pt;}
.ya8{bottom:378.666667pt;}
.y15a{bottom:379.306667pt;}
.y12b{bottom:382.106667pt;}
.yca{bottom:382.506667pt;}
.y105{bottom:389.706667pt;}
.yed{bottom:390.106667pt;}
.y4b{bottom:393.866667pt;}
.ya7{bottom:394.346667pt;}
.y159{bottom:394.986667pt;}
.y1a{bottom:395.386667pt;}
.y12a{bottom:397.786667pt;}
.yc9{bottom:398.106667pt;}
.y8e{bottom:399.066667pt;}
.yec{bottom:405.706667pt;}
.y4a{bottom:409.466667pt;}
.y78{bottom:409.706667pt;}
.ya6{bottom:409.946667pt;}
.y158{bottom:410.586667pt;}
.y19{bottom:411.306667pt;}
.y129{bottom:413.386667pt;}
.yc8{bottom:413.786667pt;}
.y8d{bottom:414.666667pt;}
.y103{bottom:419.013333pt;}
.yeb{bottom:421.333333pt;}
.y49{bottom:425.093333pt;}
.y77{bottom:425.333333pt;}
.ya5{bottom:425.653333pt;}
.y157{bottom:426.213333pt;}
.y128{bottom:429.093333pt;}
.yc7{bottom:429.413333pt;}
.y8c{bottom:430.373333pt;}
.y48{bottom:440.773333pt;}
.y76{bottom:441.013333pt;}
.ya4{bottom:441.253333pt;}
.y18{bottom:444.293333pt;}
.y127{bottom:444.693333pt;}
.yc6{bottom:445.093333pt;}
.y8b{bottom:445.973333pt;}
.y17a{bottom:449.333333pt;}
.y156{bottom:449.893333pt;}
.yea{bottom:453.013333pt;}
.y47{bottom:456.373333pt;}
.y75{bottom:456.613333pt;}
.ya3{bottom:456.853333pt;}
.y17{bottom:459.893333pt;}
.y126{bottom:460.293333pt;}
.yc5{bottom:460.693333pt;}
.y8a{bottom:461.653333pt;}
.y179{bottom:465.013333pt;}
.y155{bottom:465.493333pt;}
.ye9{bottom:468.613333pt;}
.y46{bottom:472.053333pt;}
.y74{bottom:472.293333pt;}
.y16{bottom:475.493333pt;}
.y125{bottom:475.973333pt;}
.y154{bottom:481.093333pt;}
.yc4{bottom:484.293333pt;}
.ya2{bottom:488.533333pt;}
.y178{bottom:488.613333pt;}
.y15{bottom:491.173333pt;}
.y89{bottom:493.253333pt;}
.y45{bottom:495.653333pt;}
.y124{bottom:499.573333pt;}
.ye8{bottom:499.893333pt;}
.y73{bottom:503.893333pt;}
.ya1{bottom:504.133333pt;}
.y177{bottom:504.293333pt;}
.y153{bottom:504.773333pt;}
.y102{bottom:505.893333pt;}
.y14{bottom:506.773333pt;}
.yc3{bottom:516.213333pt;}
.y72{bottom:519.493333pt;}
.ya0{bottom:519.813333pt;}
.y176{bottom:519.893333pt;}
.y152{bottom:520.373333pt;}
.y88{bottom:521.893333pt;}
.y13{bottom:522.373333pt;}
.y44{bottom:527.573333pt;}
.ye6{bottom:529.173333pt;}
.y123{bottom:531.253333pt;}
.y71{bottom:535.173333pt;}
.y9f{bottom:535.413333pt;}
.y175{bottom:535.493333pt;}
.y151{bottom:536.053333pt;}
.y12{bottom:538.053333pt;}
.y122{bottom:546.853333pt;}
.y70{bottom:550.773333pt;}
.y9e{bottom:551.013333pt;}
.y11{bottom:553.653333pt;}
.yc2{bottom:559.173333pt;}
.y150{bottom:559.973333pt;}
.y121{bottom:562.453333pt;}
.y6f{bottom:566.453333pt;}
.y9d{bottom:566.693333pt;}
.y10{bottom:569.333333pt;}
.y43{bottom:570.453333pt;}
.yc1{bottom:574.773333pt;}
.y101{bottom:577.093333pt;}
.y120{bottom:578.133333pt;}
.y9c{bottom:582.293333pt;}
.yf{bottom:584.933333pt;}
.y42{bottom:586.133333pt;}
.yc0{bottom:590.453333pt;}
.y11f{bottom:593.733333pt;}
.y9b{bottom:597.973333pt;}
.y6e{bottom:598.053333pt;}
.ye{bottom:600.533333pt;}
.y41{bottom:601.733333pt;}
.y14f{bottom:602.853333pt;}
.ybf{bottom:606.053333pt;}
.y6d{bottom:613.653333pt;}
.yd{bottom:616.213333pt;}
.y40{bottom:617.413333pt;}
.y14e{bottom:618.453333pt;}
.ybe{bottom:621.653333pt;}
.y11e{bottom:625.413333pt;}
.y6c{bottom:629.333333pt;}
.y9a{bottom:629.573333pt;}
.y174{bottom:629.653333pt;}
.ye4{bottom:631.653333pt;}
.yc{bottom:631.813333pt;}
.y3f{bottom:633.013333pt;}
.y14d{bottom:634.133333pt;}
.ybd{bottom:637.333333pt;}
.y11d{bottom:641.013333pt;}
.y6b{bottom:644.933333pt;}
.y173{bottom:645.333333pt;}
.yb{bottom:647.493333pt;}
.y3e{bottom:648.613333pt;}
.y14c{bottom:649.733333pt;}
.ybc{bottom:652.933333pt;}
.y11c{bottom:656.613333pt;}
.y99{bottom:658.213333pt;}
.y6a{bottom:660.613333pt;}
.y172{bottom:660.933333pt;}
.y3d{bottom:664.293333pt;}
.y14b{bottom:665.413333pt;}
.ya{bottom:671.413333pt;}
.y11b{bottom:672.293333pt;}
.y69{bottom:676.213333pt;}
.y171{bottom:676.613333pt;}
.y100{bottom:679.493333pt;}
.y3c{bottom:679.893333pt;}
.y14a{bottom:681.013333pt;}
.ybb{bottom:684.613333pt;}
.y11a{bottom:687.893333pt;}
.y149{bottom:696.613333pt;}
.y68{bottom:699.813333pt;}
.yba{bottom:700.213333pt;}
.y119{bottom:703.573333pt;}
.y3b{bottom:711.573333pt;}
.y148{bottom:712.293333pt;}
.y9{bottom:714.293333pt;}
.yb9{bottom:715.813333pt;}
.y3a{bottom:727.173333pt;}
.y147{bottom:727.893333pt;}
.y67{bottom:731.493333pt;}
.yde{bottom:734.133333pt;}
.y39{bottom:742.773333pt;}
.y146{bottom:743.573333pt;}
.y8{bottom:745.893333pt;}
.y66{bottom:747.093333pt;}
.y38{bottom:758.453333pt;}
.y118{bottom:758.773333pt;}
.y145{bottom:759.173333pt;}
.y65{bottom:762.693333pt;}
.y170{bottom:770.693333pt;}
.y37{bottom:774.053333pt;}
.y117{bottom:774.453333pt;}
.y144{bottom:774.773333pt;}
.y7{bottom:777.733333pt;}
.y64{bottom:778.373333pt;}
.yff{bottom:781.973333pt;}
.y16f{bottom:786.373333pt;}
.y116{bottom:790.053333pt;}
.y143{bottom:790.453333pt;}
.y63{bottom:793.973333pt;}
.y16e{bottom:801.973333pt;}
.y36{bottom:805.733333pt;}
.y142{bottom:806.053333pt;}
.y62{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y35{bottom:821.333333pt;}
.y141{bottom:821.733333pt;}
.yb8{bottom:825.653333pt;}
.y115{bottom:829.573333pt;}
.y34{bottom:836.933333pt;}
.y140{bottom:837.333333pt;}
.yfe{bottom:840.853333pt;}
.y61{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yd8{bottom:852.213333pt;}
.y13f{bottom:852.933333pt;}
.y60{bottom:856.853333pt;}
.y33{bottom:860.853333pt;}
.y13e{bottom:868.613333pt;}
.y5f{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y16d{bottom:880.533333pt;}
.y13d{bottom:884.213333pt;}
.y5e{bottom:888.133333pt;}
.y16c{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y13c{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y16b{bottom:911.840000pt;}
.y13b{bottom:915.520000pt;}
.y31{bottom:919.440000pt;}
.y16a{bottom:927.440000pt;}
.y13a{bottom:931.120000pt;}
.y30{bottom:935.040000pt;}
.y169{bottom:943.040000pt;}
.y2f{bottom:950.720000pt;}
.y5d{bottom:951.040000pt;}
.yd5{bottom:954.640000pt;}
.y139{bottom:955.040000pt;}
.y2e{bottom:966.320000pt;}
.y5c{bottom:966.720000pt;}
.y5b{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hc{height:39.280000pt;}
.h6{height:45.037812pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h12{height:70.480000pt;}
.h13{height:86.160000pt;}
.h10{height:101.760000pt;}
.he{height:101.786667pt;}
.h11{height:101.840000pt;}
.hf{height:117.360000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:82.480000pt;}
.w7{width:99.386667pt;}
.w8{width:155.920000pt;}
.w4{width:157.280000pt;}
.w9{width:200.906667pt;}
.w5{width:207.066667pt;}
.wa{width:213.520000pt;}
.w6{width:222.880000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.520000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x9{left:144.266667pt;}
.xc{left:161.146667pt;}
.x2{left:180.266655pt;}
.x7{left:203.626655pt;}
.x5{left:228.666655pt;}
.xa{left:302.266667pt;}
.xd{left:317.706667pt;}
.xb{left:509.973333pt;}
.xe{left:519.333333pt;}
.x6{left:647.013322pt;}
.x4{left:658.053322pt;}
.x3{left:704.053322pt;}
}




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