
    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_1cdea72e20cb16ca06bdc102.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_a79f02ef4ebb04e23921aa32.woff')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_864ce73e144d9851a65830d9.woff')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_1b6290a82f15512d89c42039.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dd561db37a661fd68a731d2e.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_0680e9fbd4008e744823923e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b6b0099b3be793dfef93240.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;}
.ls13{letter-spacing:-0.243600px;}
.lsa{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.178800px;}
.ls14{letter-spacing:-0.160800px;}
.ls17{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.124200px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.048960px;}
.ls1c{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.041760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls1a{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.098400px;}
.ls1f{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:12.720000px;}
.ls1d{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;}
.ws8{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.425600px;}
.wsa{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.324800px;}
.ws14{word-spacing:-13.300800px;}
.ws9{word-spacing:-13.275360px;}
.ws15{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.211640px;}
.wse{word-spacing:-13.177440px;}
.ws12{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.102200px;}
.ws11{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.047600px;}
.ws2{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-4.031999px;}
._6{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._1{width:1.359396px;}
._4{width:2.645400px;}
._e{width:3.694799px;}
._3{width:5.050200px;}
._2{width:6.312600px;}
._f{width:7.815600px;}
._14{width:8.842080px;}
._13{width:9.947640px;}
._b{width:11.181000px;}
._a{width:12.447360px;}
._7{width:14.248200px;}
._10{width:15.451561px;}
._8{width:16.533000px;}
._16{width:17.550600px;}
._15{width:18.577080px;}
._1a{width:19.650324px;}
._d{width:20.655003px;}
._c{width:21.670800px;}
._12{width:23.399520px;}
._11{width:24.468840px;}
._5{width:25.911600px;}
._1b{width:27.743160px;}
._4d{width:29.276004px;}
._4b{width:30.655080px;}
._32{width:31.678800px;}
._17{width:33.066000px;}
._2f{width:37.899720px;}
._2e{width:42.264360px;}
._20{width:44.669160px;}
._36{width:46.472760px;}
._3c{width:50.741280px;}
._21{width:52.506240px;}
._1d{width:56.452680px;}
._1e{width:60.420600px;}
._41{width:61.743240px;}
._29{width:62.945640px;}
._48{width:65.771280px;}
._31{width:68.596920px;}
._23{width:69.739200px;}
._2d{width:72.805320px;}
._3b{width:77.614920px;}
._43{width:80.139960px;}
._44{width:86.813280px;}
._4a{width:91.803240px;}
._49{width:93.005640px;}
._4c{width:96.161760px;}
._3f{width:102.083760px;}
._1c{width:103.226040px;}
._47{width:118.075680px;}
._19{width:123.366240px;}
._22{width:126.432360px;}
._26{width:127.875240px;}
._3d{width:137.013480px;}
._39{width:140.139720px;}
._25{width:142.364160px;}
._35{width:146.368200px;}
._30{width:150.360120px;}
._27{width:157.659840px;}
._3e{width:165.450240px;}
._34{width:166.472280px;}
._2a{width:168.816960px;}
._3a{width:171.281880px;}
._40{width:173.025360px;}
._45{width:181.201680px;}
._33{width:191.963160px;}
._37{width:193.826880px;}
._2b{width:197.734680px;}
._28{width:198.756720px;}
._1f{width:206.068320px;}
._38{width:218.957040px;}
._18{width:240.960960px;}
._24{width:249.459360px;}
._2c{width:282.263400px;}
._42{width:283.586040px;}
._46{width:294.648120px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y75{bottom:6.210000px;}
.y77{bottom:6.300000px;}
.y7a{bottom:6.390000px;}
.yee{bottom:7.830000px;}
.yf2{bottom:7.920000px;}
.y73{bottom:23.850000px;}
.y74{bottom:23.940000px;}
.yed{bottom:25.380000px;}
.yf1{bottom:25.470000px;}
.y72{bottom:41.490000px;}
.yf0{bottom:43.020000px;}
.y13f{bottom:43.110000px;}
.y13e{bottom:60.660000px;}
.y145{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y141{bottom:110.190000px;}
.y80{bottom:111.630000px;}
.y16d{bottom:114.060000px;}
.y11c{bottom:118.650000px;}
.y59{bottom:120.720000px;}
.yf7{bottom:124.680000px;}
.yd5{bottom:124.860000px;}
.y28{bottom:129.630000px;}
.y16c{bottom:131.610000px;}
.y7f{bottom:135.930000px;}
.y58{bottom:138.270000px;}
.yd4{bottom:142.500000px;}
.y27{bottom:147.270000px;}
.y16b{bottom:149.250000px;}
.y11b{bottom:154.200000px;}
.y57{bottom:155.910000px;}
.y7e{bottom:160.320000px;}
.y26{bottom:164.820000px;}
.yab{bottom:165.270000px;}
.y16a{bottom:166.800000px;}
.yd3{bottom:169.050000px;}
.yf6{bottom:169.590000px;}
.y140{bottom:172.650000px;}
.y56{bottom:173.460000px;}
.y25{bottom:182.370000px;}
.yaa{bottom:182.910000px;}
.y169{bottom:184.350000px;}
.y7d{bottom:184.620000px;}
.y11a{bottom:189.840000px;}
.y55{bottom:191.100000px;}
.ya9{bottom:200.460000px;}
.y168{bottom:201.990000px;}
.yd2{bottom:204.600000px;}
.y191{bottom:205.500000px;}
.y119{bottom:207.390000px;}
.y54{bottom:208.650000px;}
.y24{bottom:218.010000px;}
.ya8{bottom:218.100000px;}
.y167{bottom:219.540000px;}
.y190{bottom:223.050000px;}
.y118{bottom:224.940000px;}
.y53{bottom:226.200000px;}
.y7c{bottom:226.560000px;}
.yf5{bottom:232.140000px;}
.y23{bottom:235.560000px;}
.ya7{bottom:235.650000px;}
.y166{bottom:237.180000px;}
.yd1{bottom:240.510000px;}
.y117{bottom:242.580000px;}
.y18f{bottom:249.600000px;}
.y7b{bottom:250.860000px;}
.y13d{bottom:252.750000px;}
.y52{bottom:252.840000px;}
.y22{bottom:253.200000px;}
.y116{bottom:260.130000px;}
.y165{bottom:263.730000px;}
.y18e{bottom:267.240000px;}
.y21{bottom:270.750000px;}
.ya6{bottom:270.840000px;}
.y79{bottom:275.160000px;}
.yf4{bottom:277.050000px;}
.y115{bottom:277.770000px;}
.y20{bottom:288.300000px;}
.y51{bottom:288.390000px;}
.yd0{bottom:288.840000px;}
.y18d{bottom:293.790000px;}
.y114{bottom:295.320000px;}
.ya5{bottom:297.390000px;}
.y164{bottom:299.280000px;}
.y78{bottom:299.550000px;}
.y1f{bottom:305.940000px;}
.ycf{bottom:306.390000px;}
.y18c{bottom:311.430000px;}
.y113{bottom:312.870000px;}
.y163{bottom:316.920000px;}
.yf3{bottom:321.960000px;}
.y50{bottom:323.580000px;}
.y76{bottom:323.850000px;}
.yce{bottom:323.940000px;}
.y13c{bottom:332.850000px;}
.ya4{bottom:332.940000px;}
.y162{bottom:334.470000px;}
.y18b{bottom:337.980000px;}
.y112{bottom:339.510000px;}
.y4f{bottom:341.130000px;}
.y1e{bottom:341.490000px;}
.ycd{bottom:341.580000px;}
.y71{bottom:348.240000px;}
.ya3{bottom:350.580000px;}
.y161{bottom:352.110000px;}
.y18a{bottom:355.530000px;}
.y4e{bottom:358.770000px;}
.y1d{bottom:359.130000px;}
.yef{bottom:366.870000px;}
.ya2{bottom:368.130000px;}
.y160{bottom:369.660000px;}
.y111{bottom:375.420000px;}
.y4d{bottom:376.320000px;}
.y1c{bottom:376.680000px;}
.ycc{bottom:376.770000px;}
.y189{bottom:382.170000px;}
.ya1{bottom:385.770000px;}
.y15f{bottom:387.210000px;}
.y4c{bottom:393.870000px;}
.y1b{bottom:394.230000px;}
.ycb{bottom:394.320000px;}
.y13b{bottom:399.180000px;}
.y188{bottom:399.720000px;}
.ya0{bottom:403.320000px;}
.y15e{bottom:404.850000px;}
.y1a{bottom:411.870000px;}
.y4b{bottom:420.510000px;}
.y9f{bottom:420.870000px;}
.y15d{bottom:422.400000px;}
.y110{bottom:423.660000px;}
.y187{bottom:426.360000px;}
.y70{bottom:429.060000px;}
.yec{bottom:429.420000px;}
.y13a{bottom:434.730000px;}
.yca{bottom:438.510000px;}
.y19{bottom:438.780000px;}
.y15c{bottom:440.040000px;}
.y10f{bottom:441.300000px;}
.y186{bottom:443.910000px;}
.y9e{bottom:447.510000px;}
.y139{bottom:452.370000px;}
.y6f{bottom:455.700000px;}
.y4a{bottom:456.060000px;}
.y10e{bottom:458.850000px;}
.y15b{bottom:466.590000px;}
.y138{bottom:469.950000px;}
.y185{bottom:470.490000px;}
.y49{bottom:473.730000px;}
.yc9{bottom:474.090000px;}
.y10d{bottom:476.430000px;}
.y9d{bottom:483.090000px;}
.y18{bottom:487.050000px;}
.y137{bottom:487.500000px;}
.y184{bottom:488.130000px;}
.y48{bottom:491.280000px;}
.yc8{bottom:491.730000px;}
.y10c{bottom:494.070000px;}
.yeb{bottom:495.690000px;}
.y9c{bottom:500.730000px;}
.y15a{bottom:502.170000px;}
.y17{bottom:504.960000px;}
.y136{bottom:505.140000px;}
.y47{bottom:508.830000px;}
.yc7{bottom:509.280000px;}
.y10b{bottom:511.620000px;}
.y183{bottom:514.680000px;}
.y9b{bottom:518.280000px;}
.y159{bottom:519.810000px;}
.y135{bottom:522.690000px;}
.y46{bottom:526.470000px;}
.yc6{bottom:526.830000px;}
.yea{bottom:531.330000px;}
.y182{bottom:532.230000px;}
.y9a{bottom:535.830000px;}
.y158{bottom:537.360000px;}
.y134{bottom:540.330000px;}
.y16{bottom:541.950000px;}
.y45{bottom:544.020000px;}
.yc5{bottom:544.470000px;}
.y10a{bottom:544.560000px;}
.ye9{bottom:548.880000px;}
.y181{bottom:549.870000px;}
.y99{bottom:553.470000px;}
.y157{bottom:554.910000px;}
.y133{bottom:557.880000px;}
.y15{bottom:559.590000px;}
.y6e{bottom:561.660000px;}
.yc4{bottom:562.020000px;}
.ye8{bottom:566.430000px;}
.y44{bottom:570.660000px;}
.y98{bottom:571.020000px;}
.y156{bottom:572.550000px;}
.y180{bottom:576.420000px;}
.y14{bottom:577.140000px;}
.y6d{bottom:579.210000px;}
.yc3{bottom:579.660000px;}
.ye7{bottom:584.070000px;}
.y132{bottom:584.430000px;}
.y97{bottom:588.660000px;}
.y109{bottom:589.560000px;}
.y155{bottom:590.100000px;}
.y17f{bottom:594.060000px;}
.y13{bottom:594.780000px;}
.ye6{bottom:601.620000px;}
.y6c{bottom:605.760000px;}
.y43{bottom:606.210000px;}
.y154{bottom:607.740000px;}
.y17e{bottom:611.610000px;}
.y12{bottom:612.330000px;}
.y96{bottom:615.210000px;}
.y108{bottom:616.830000px;}
.ye5{bottom:619.260000px;}
.y131{bottom:620.070000px;}
.y42{bottom:623.760000px;}
.y153{bottom:625.290000px;}
.y11{bottom:629.880000px;}
.ye4{bottom:636.810000px;}
.y130{bottom:637.620000px;}
.y17d{bottom:638.520000px;}
.y41{bottom:641.400000px;}
.yc2{bottom:641.760000px;}
.y152{bottom:642.840000px;}
.y10{bottom:647.520000px;}
.y95{bottom:650.760000px;}
.y12f{bottom:655.260000px;}
.y40{bottom:658.950000px;}
.yc1{bottom:659.400000px;}
.y107{bottom:661.740000px;}
.ye3{bottom:663.360000px;}
.yf{bottom:665.070000px;}
.y94{bottom:668.400000px;}
.y151{bottom:669.480000px;}
.y12e{bottom:672.810000px;}
.y3f{bottom:676.590000px;}
.yc0{bottom:676.950000px;}
.ye{bottom:682.710000px;}
.y93{bottom:685.950000px;}
.y17c{bottom:686.760000px;}
.y12d{bottom:690.360000px;}
.y3e{bottom:694.140000px;}
.ybf{bottom:694.590000px;}
.ye2{bottom:699.000000px;}
.yd{bottom:700.260000px;}
.y92{bottom:703.590000px;}
.y17b{bottom:704.400000px;}
.y150{bottom:705.030000px;}
.y106{bottom:706.740000px;}
.y12c{bottom:708.000000px;}
.y6b{bottom:711.690000px;}
.ybe{bottom:712.140000px;}
.yc{bottom:717.810000px;}
.y3d{bottom:720.690000px;}
.y91{bottom:721.140000px;}
.y17a{bottom:721.950000px;}
.y14f{bottom:722.670000px;}
.y12b{bottom:725.550000px;}
.y6a{bottom:729.330000px;}
.ybd{bottom:729.690000px;}
.y105{bottom:734.010000px;}
.ye1{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y90{bottom:738.690000px;}
.y179{bottom:739.590000px;}
.y14e{bottom:740.220000px;}
.y12a{bottom:743.190000px;}
.ybc{bottom:747.330000px;}
.ye0{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.y69{bottom:755.880000px;}
.y8f{bottom:756.330000px;}
.y3c{bottom:756.600000px;}
.y178{bottom:757.140000px;}
.y14d{bottom:757.770000px;}
.y104{bottom:761.370000px;}
.ydf{bottom:769.740000px;}
.ybb{bottom:773.880000px;}
.y177{bottom:774.690000px;}
.y14c{bottom:775.410000px;}
.y9{bottom:779.910000px;}
.y8e{bottom:782.880000px;}
.yde{bottom:787.290000px;}
.y68{bottom:791.520000px;}
.y176{bottom:792.330000px;}
.y14b{bottom:792.960000px;}
.y3b{bottom:804.930000px;}
.y129{bottom:805.290000px;}
.y103{bottom:806.280000px;}
.y67{bottom:809.070000px;}
.yba{bottom:809.520000px;}
.y175{bottom:809.880000px;}
.y14a{bottom:810.600000px;}
.y8d{bottom:818.520000px;}
.y3a{bottom:822.480000px;}
.y128{bottom:822.930000px;}
.y66{bottom:826.620000px;}
.yb9{bottom:827.070000px;}
.y174{bottom:827.520000px;}
.y149{bottom:828.150000px;}
.y8{bottom:828.240000px;}
.y102{bottom:833.640000px;}
.y8c{bottom:836.070000px;}
.y39{bottom:840.030000px;}
.y127{bottom:840.480000px;}
.y65{bottom:844.260000px;}
.yb8{bottom:844.620000px;}
.y173{bottom:845.070000px;}
.y148{bottom:845.700000px;}
.y8b{bottom:853.620000px;}
.y38{bottom:857.670000px;}
.y126{bottom:858.030000px;}
.y64{bottom:861.810000px;}
.yb7{bottom:862.260000px;}
.y172{bottom:862.620000px;}
.y7{bottom:863.790000px;}
.ydd{bottom:866.670000px;}
.y8a{bottom:871.260000px;}
.y147{bottom:872.340000px;}
.y125{bottom:875.670000px;}
.y63{bottom:879.450000px;}
.yb6{bottom:879.810000px;}
.y171{bottom:880.260000px;}
.y89{bottom:888.810000px;}
.y37{bottom:893.220000px;}
.yb5{bottom:897.450000px;}
.y170{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.y101{bottom:899.880000px;}
.ydc{bottom:902.220000px;}
.y62{bottom:906.000000px;}
.y88{bottom:906.450000px;}
.y146{bottom:908.250000px;}
.y36{bottom:910.860000px;}
.ydb{bottom:919.860000px;}
.y87{bottom:924.000000px;}
.y16f{bottom:924.720000px;}
.y100{bottom:926.520000px;}
.y35{bottom:928.410000px;}
.y5{bottom:935.610000px;}
.yda{bottom:937.410000px;}
.y61{bottom:941.550000px;}
.y34{bottom:945.960000px;}
.y144{bottom:953.880000px;}
.yd9{bottom:954.960000px;}
.y60{bottom:959.190000px;}
.yb4{bottom:959.550000px;}
.yff{bottom:962.070000px;}
.y33{bottom:963.600000px;}
.y86{bottom:968.190000px;}
.y4{bottom:971.700000px;}
.yd8{bottom:972.600000px;}
.y16e{bottom:972.960000px;}
.y5f{bottom:976.740000px;}
.yb3{bottom:977.190000px;}
.yfe{bottom:979.710000px;}
.yd7{bottom:990.150000px;}
.y124{bottom:990.600000px;}
.y5e{bottom:994.290000px;}
.yb2{bottom:994.740000px;}
.yfd{bottom:997.260000px;}
.y32{bottom:999.150000px;}
.y85{bottom:1004.100000px;}
.yd6{bottom:1007.790000px;}
.y123{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y5d{bottom:1011.960000px;}
.yb1{bottom:1012.320000px;}
.yfc{bottom:1014.840000px;}
.y31{bottom:1016.820000px;}
.y122{bottom:1025.820000px;}
.y5c{bottom:1029.510000px;}
.yb0{bottom:1029.960000px;}
.yfb{bottom:1032.480000px;}
.y143{bottom:1034.010000px;}
.y30{bottom:1034.370000px;}
.y121{bottom:1043.370000px;}
.yaf{bottom:1047.510000px;}
.yfa{bottom:1050.030000px;}
.y2f{bottom:1051.920000px;}
.y84{bottom:1052.370000px;}
.y5b{bottom:1056.150000px;}
.y120{bottom:1060.920000px;}
.yae{bottom:1065.150000px;}
.y2e{bottom:1069.560000px;}
.y83{bottom:1069.920000px;}
.yf9{bottom:1076.670000px;}
.y11f{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y82{bottom:1087.560000px;}
.yad{bottom:1091.700000px;}
.y5a{bottom:1092.060000px;}
.y11e{bottom:1096.110000px;}
.y81{bottom:1105.110000px;}
.yf8{bottom:1109.610000px;}
.y11d{bottom:1113.750000px;}
.y142{bottom:1114.110000px;}
.y2c{bottom:1122.750000px;}
.yac{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hb{height:23.580000px;}
.hc{height:23.670000px;}
.h13{height:26.550000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h15{height:39.690000px;}
.hd{height:41.130000px;}
.hf{height:44.130000px;}
.h11{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:58.770000px;}
.he{height:59.973223px;}
.h7{height:60.960938px;}
.h10{height:61.740000px;}
.h17{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:79.380000px;}
.h16{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:101.460000px;}
.w8{width:113.850000px;}
.w11{width:118.650000px;}
.w3{width:120.900000px;}
.w7{width:121.230000px;}
.w10{width:128.700000px;}
.w4{width:139.500000px;}
.w12{width:147.690000px;}
.we{width:152.730000px;}
.w15{width:152.820000px;}
.w5{width:155.160000px;}
.w9{width:157.440000px;}
.w13{width:160.920000px;}
.w14{width:172.650000px;}
.wa{width:183.240000px;}
.wf{width:193.260000px;}
.wc{width:198.180000px;}
.wb{width:214.500000px;}
.wd{width:278.850000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:111.239987px;}
.x10{left:188.130000px;}
.x5{left:190.380000px;}
.x2{left:202.799987px;}
.xa{left:227.010000px;}
.x6{left:330.600000px;}
.x11{left:336.540000px;}
.xd{left:348.330000px;}
.xb{left:411.060000px;}
.x7{left:486.480000px;}
.x12{left:498.180000px;}
.xe{left:501.780000px;}
.x8{left:588.660000px;}
.xc{left:626.280000px;}
.x13{left:671.640000px;}
.xf{left:695.760000px;}
.x9{left:710.610000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.158933pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.110400pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.043520pt;}
.ls1c{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.037120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls1a{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.087467pt;}
.ls1f{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:11.306667pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws13{word-spacing:-11.933867pt;}
.wsa{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.844267pt;}
.ws14{word-spacing:-11.822933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws15{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.713280pt;}
.ws12{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.646400pt;}
.ws11{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.597867pt;}
.ws2{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-3.583999pt;}
._6{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.208352pt;}
._4{width:2.351467pt;}
._e{width:3.284266pt;}
._3{width:4.489067pt;}
._2{width:5.611200pt;}
._f{width:6.947200pt;}
._14{width:7.859627pt;}
._13{width:8.842347pt;}
._b{width:9.938667pt;}
._a{width:11.064320pt;}
._7{width:12.665066pt;}
._10{width:13.734721pt;}
._8{width:14.696000pt;}
._16{width:15.600533pt;}
._15{width:16.512960pt;}
._1a{width:17.466955pt;}
._d{width:18.360003pt;}
._c{width:19.262933pt;}
._12{width:20.799573pt;}
._11{width:21.750080pt;}
._5{width:23.032533pt;}
._1b{width:24.660587pt;}
._4d{width:26.023115pt;}
._4b{width:27.248960pt;}
._32{width:28.158933pt;}
._17{width:29.392000pt;}
._2f{width:33.688640pt;}
._2e{width:37.568320pt;}
._20{width:39.705920pt;}
._36{width:41.309120pt;}
._3c{width:45.103360pt;}
._21{width:46.672213pt;}
._1d{width:50.180160pt;}
._1e{width:53.707200pt;}
._41{width:54.882880pt;}
._29{width:55.951680pt;}
._48{width:58.463360pt;}
._31{width:60.975040pt;}
._23{width:61.990400pt;}
._2d{width:64.715840pt;}
._3b{width:68.991040pt;}
._43{width:71.235520pt;}
._44{width:77.167360pt;}
._4a{width:81.602880pt;}
._49{width:82.671680pt;}
._4c{width:85.477120pt;}
._3f{width:90.741120pt;}
._1c{width:91.756480pt;}
._47{width:104.956160pt;}
._19{width:109.658880pt;}
._22{width:112.384320pt;}
._26{width:113.666880pt;}
._3d{width:121.789760pt;}
._39{width:124.568640pt;}
._25{width:126.545920pt;}
._35{width:130.105067pt;}
._30{width:133.653440pt;}
._27{width:140.142080pt;}
._3e{width:147.066880pt;}
._34{width:147.975360pt;}
._2a{width:150.059520pt;}
._3a{width:152.250560pt;}
._40{width:153.800320pt;}
._45{width:161.068160pt;}
._33{width:170.633920pt;}
._37{width:172.290560pt;}
._2b{width:175.764160pt;}
._28{width:176.672640pt;}
._1f{width:183.171840pt;}
._38{width:194.628480pt;}
._18{width:214.187520pt;}
._24{width:221.741653pt;}
._2c{width:250.900800pt;}
._42{width:252.076480pt;}
._46{width:261.909440pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:5.520000pt;}
.y77{bottom:5.600000pt;}
.y7a{bottom:5.680000pt;}
.yee{bottom:6.960000pt;}
.yf2{bottom:7.040000pt;}
.y73{bottom:21.200000pt;}
.y74{bottom:21.280000pt;}
.yed{bottom:22.560000pt;}
.yf1{bottom:22.640000pt;}
.y72{bottom:36.880000pt;}
.yf0{bottom:38.240000pt;}
.y13f{bottom:38.320000pt;}
.y13e{bottom:53.920000pt;}
.y145{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y141{bottom:97.946667pt;}
.y80{bottom:99.226667pt;}
.y16d{bottom:101.386667pt;}
.y11c{bottom:105.466667pt;}
.y59{bottom:107.306667pt;}
.yf7{bottom:110.826667pt;}
.yd5{bottom:110.986667pt;}
.y28{bottom:115.226667pt;}
.y16c{bottom:116.986667pt;}
.y7f{bottom:120.826667pt;}
.y58{bottom:122.906667pt;}
.yd4{bottom:126.666667pt;}
.y27{bottom:130.906667pt;}
.y16b{bottom:132.666667pt;}
.y11b{bottom:137.066667pt;}
.y57{bottom:138.586667pt;}
.y7e{bottom:142.506667pt;}
.y26{bottom:146.506667pt;}
.yab{bottom:146.906667pt;}
.y16a{bottom:148.266667pt;}
.yd3{bottom:150.266667pt;}
.yf6{bottom:150.746667pt;}
.y140{bottom:153.466667pt;}
.y56{bottom:154.186667pt;}
.y25{bottom:162.106667pt;}
.yaa{bottom:162.586667pt;}
.y169{bottom:163.866667pt;}
.y7d{bottom:164.106667pt;}
.y11a{bottom:168.746667pt;}
.y55{bottom:169.866667pt;}
.ya9{bottom:178.186667pt;}
.y168{bottom:179.546667pt;}
.yd2{bottom:181.866667pt;}
.y191{bottom:182.666667pt;}
.y119{bottom:184.346667pt;}
.y54{bottom:185.466667pt;}
.y24{bottom:193.786667pt;}
.ya8{bottom:193.866667pt;}
.y167{bottom:195.146667pt;}
.y190{bottom:198.266667pt;}
.y118{bottom:199.946667pt;}
.y53{bottom:201.066667pt;}
.y7c{bottom:201.386667pt;}
.yf5{bottom:206.346667pt;}
.y23{bottom:209.386667pt;}
.ya7{bottom:209.466667pt;}
.y166{bottom:210.826667pt;}
.yd1{bottom:213.786667pt;}
.y117{bottom:215.626667pt;}
.y18f{bottom:221.866667pt;}
.y7b{bottom:222.986667pt;}
.y13d{bottom:224.666667pt;}
.y52{bottom:224.746667pt;}
.y22{bottom:225.066667pt;}
.y116{bottom:231.226667pt;}
.y165{bottom:234.426667pt;}
.y18e{bottom:237.546667pt;}
.y21{bottom:240.666667pt;}
.ya6{bottom:240.746667pt;}
.y79{bottom:244.586667pt;}
.yf4{bottom:246.266667pt;}
.y115{bottom:246.906667pt;}
.y20{bottom:256.266667pt;}
.y51{bottom:256.346667pt;}
.yd0{bottom:256.746667pt;}
.y18d{bottom:261.146667pt;}
.y114{bottom:262.506667pt;}
.ya5{bottom:264.346667pt;}
.y164{bottom:266.026667pt;}
.y78{bottom:266.266667pt;}
.y1f{bottom:271.946667pt;}
.ycf{bottom:272.346667pt;}
.y18c{bottom:276.826667pt;}
.y113{bottom:278.106667pt;}
.y163{bottom:281.706667pt;}
.yf3{bottom:286.186667pt;}
.y50{bottom:287.626667pt;}
.y76{bottom:287.866667pt;}
.yce{bottom:287.946667pt;}
.y13c{bottom:295.866667pt;}
.ya4{bottom:295.946667pt;}
.y162{bottom:297.306667pt;}
.y18b{bottom:300.426667pt;}
.y112{bottom:301.786667pt;}
.y4f{bottom:303.226667pt;}
.y1e{bottom:303.546667pt;}
.ycd{bottom:303.626667pt;}
.y71{bottom:309.546667pt;}
.ya3{bottom:311.626667pt;}
.y161{bottom:312.986667pt;}
.y18a{bottom:316.026667pt;}
.y4e{bottom:318.906667pt;}
.y1d{bottom:319.226667pt;}
.yef{bottom:326.106667pt;}
.ya2{bottom:327.226667pt;}
.y160{bottom:328.586667pt;}
.y111{bottom:333.706667pt;}
.y4d{bottom:334.506667pt;}
.y1c{bottom:334.826667pt;}
.ycc{bottom:334.906667pt;}
.y189{bottom:339.706667pt;}
.ya1{bottom:342.906667pt;}
.y15f{bottom:344.186667pt;}
.y4c{bottom:350.106667pt;}
.y1b{bottom:350.426667pt;}
.ycb{bottom:350.506667pt;}
.y13b{bottom:354.826667pt;}
.y188{bottom:355.306667pt;}
.ya0{bottom:358.506667pt;}
.y15e{bottom:359.866667pt;}
.y1a{bottom:366.106667pt;}
.y4b{bottom:373.786667pt;}
.y9f{bottom:374.106667pt;}
.y15d{bottom:375.466667pt;}
.y110{bottom:376.586667pt;}
.y187{bottom:378.986667pt;}
.y70{bottom:381.386667pt;}
.yec{bottom:381.706667pt;}
.y13a{bottom:386.426667pt;}
.yca{bottom:389.786667pt;}
.y19{bottom:390.026667pt;}
.y15c{bottom:391.146667pt;}
.y10f{bottom:392.266667pt;}
.y186{bottom:394.586667pt;}
.y9e{bottom:397.786667pt;}
.y139{bottom:402.106667pt;}
.y6f{bottom:405.066667pt;}
.y4a{bottom:405.386667pt;}
.y10e{bottom:407.866667pt;}
.y15b{bottom:414.746667pt;}
.y138{bottom:417.733333pt;}
.y185{bottom:418.213333pt;}
.y49{bottom:421.093333pt;}
.yc9{bottom:421.413333pt;}
.y10d{bottom:423.493333pt;}
.y9d{bottom:429.413333pt;}
.y18{bottom:432.933333pt;}
.y137{bottom:433.333333pt;}
.y184{bottom:433.893333pt;}
.y48{bottom:436.693333pt;}
.yc8{bottom:437.093333pt;}
.y10c{bottom:439.173333pt;}
.yeb{bottom:440.613333pt;}
.y9c{bottom:445.093333pt;}
.y15a{bottom:446.373333pt;}
.y17{bottom:448.853333pt;}
.y136{bottom:449.013333pt;}
.y47{bottom:452.293333pt;}
.yc7{bottom:452.693333pt;}
.y10b{bottom:454.773333pt;}
.y183{bottom:457.493333pt;}
.y9b{bottom:460.693333pt;}
.y159{bottom:462.053333pt;}
.y135{bottom:464.613333pt;}
.y46{bottom:467.973333pt;}
.yc6{bottom:468.293333pt;}
.yea{bottom:472.293333pt;}
.y182{bottom:473.093333pt;}
.y9a{bottom:476.293333pt;}
.y158{bottom:477.653333pt;}
.y134{bottom:480.293333pt;}
.y16{bottom:481.733333pt;}
.y45{bottom:483.573333pt;}
.yc5{bottom:483.973333pt;}
.y10a{bottom:484.053333pt;}
.ye9{bottom:487.893333pt;}
.y181{bottom:488.773333pt;}
.y99{bottom:491.973333pt;}
.y157{bottom:493.253333pt;}
.y133{bottom:495.893333pt;}
.y15{bottom:497.413333pt;}
.y6e{bottom:499.253333pt;}
.yc4{bottom:499.573333pt;}
.ye8{bottom:503.493333pt;}
.y44{bottom:507.253333pt;}
.y98{bottom:507.573333pt;}
.y156{bottom:508.933333pt;}
.y180{bottom:512.373333pt;}
.y14{bottom:513.013333pt;}
.y6d{bottom:514.853333pt;}
.yc3{bottom:515.253333pt;}
.ye7{bottom:519.173333pt;}
.y132{bottom:519.493333pt;}
.y97{bottom:523.253333pt;}
.y109{bottom:524.053333pt;}
.y155{bottom:524.533333pt;}
.y17f{bottom:528.053333pt;}
.y13{bottom:528.693333pt;}
.ye6{bottom:534.773333pt;}
.y6c{bottom:538.453333pt;}
.y43{bottom:538.853333pt;}
.y154{bottom:540.213333pt;}
.y17e{bottom:543.653333pt;}
.y12{bottom:544.293333pt;}
.y96{bottom:546.853333pt;}
.y108{bottom:548.293333pt;}
.ye5{bottom:550.453333pt;}
.y131{bottom:551.173333pt;}
.y42{bottom:554.453333pt;}
.y153{bottom:555.813333pt;}
.y11{bottom:559.893333pt;}
.ye4{bottom:566.053333pt;}
.y130{bottom:566.773333pt;}
.y17d{bottom:567.573333pt;}
.y41{bottom:570.133333pt;}
.yc2{bottom:570.453333pt;}
.y152{bottom:571.413333pt;}
.y10{bottom:575.573333pt;}
.y95{bottom:578.453333pt;}
.y12f{bottom:582.453333pt;}
.y40{bottom:585.733333pt;}
.yc1{bottom:586.133333pt;}
.y107{bottom:588.213333pt;}
.ye3{bottom:589.653333pt;}
.yf{bottom:591.173333pt;}
.y94{bottom:594.133333pt;}
.y151{bottom:595.093333pt;}
.y12e{bottom:598.053333pt;}
.y3f{bottom:601.413333pt;}
.yc0{bottom:601.733333pt;}
.ye{bottom:606.853333pt;}
.y93{bottom:609.733333pt;}
.y17c{bottom:610.453333pt;}
.y12d{bottom:613.653333pt;}
.y3e{bottom:617.013333pt;}
.ybf{bottom:617.413333pt;}
.ye2{bottom:621.333333pt;}
.yd{bottom:622.453333pt;}
.y92{bottom:625.413333pt;}
.y17b{bottom:626.133333pt;}
.y150{bottom:626.693333pt;}
.y106{bottom:628.213333pt;}
.y12c{bottom:629.333333pt;}
.y6b{bottom:632.613333pt;}
.ybe{bottom:633.013333pt;}
.yc{bottom:638.053333pt;}
.y3d{bottom:640.613333pt;}
.y91{bottom:641.013333pt;}
.y17a{bottom:641.733333pt;}
.y14f{bottom:642.373333pt;}
.y12b{bottom:644.933333pt;}
.y6a{bottom:648.293333pt;}
.ybd{bottom:648.613333pt;}
.y105{bottom:652.453333pt;}
.ye1{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y90{bottom:656.613333pt;}
.y179{bottom:657.413333pt;}
.y14e{bottom:657.973333pt;}
.y12a{bottom:660.613333pt;}
.ybc{bottom:664.293333pt;}
.ye0{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.y69{bottom:671.893333pt;}
.y8f{bottom:672.293333pt;}
.y3c{bottom:672.533333pt;}
.y178{bottom:673.013333pt;}
.y14d{bottom:673.573333pt;}
.y104{bottom:676.773333pt;}
.ydf{bottom:684.213333pt;}
.ybb{bottom:687.893333pt;}
.y177{bottom:688.613333pt;}
.y14c{bottom:689.253333pt;}
.y9{bottom:693.253333pt;}
.y8e{bottom:695.893333pt;}
.yde{bottom:699.813333pt;}
.y68{bottom:703.573333pt;}
.y176{bottom:704.293333pt;}
.y14b{bottom:704.853333pt;}
.y3b{bottom:715.493333pt;}
.y129{bottom:715.813333pt;}
.y103{bottom:716.693333pt;}
.y67{bottom:719.173333pt;}
.yba{bottom:719.573333pt;}
.y175{bottom:719.893333pt;}
.y14a{bottom:720.533333pt;}
.y8d{bottom:727.573333pt;}
.y3a{bottom:731.093333pt;}
.y128{bottom:731.493333pt;}
.y66{bottom:734.773333pt;}
.yb9{bottom:735.173333pt;}
.y174{bottom:735.573333pt;}
.y149{bottom:736.133333pt;}
.y8{bottom:736.213333pt;}
.y102{bottom:741.013333pt;}
.y8c{bottom:743.173333pt;}
.y39{bottom:746.693333pt;}
.y127{bottom:747.093333pt;}
.y65{bottom:750.453333pt;}
.yb8{bottom:750.773333pt;}
.y173{bottom:751.173333pt;}
.y148{bottom:751.733333pt;}
.y8b{bottom:758.773333pt;}
.y38{bottom:762.373333pt;}
.y126{bottom:762.693333pt;}
.y64{bottom:766.053333pt;}
.yb7{bottom:766.453333pt;}
.y172{bottom:766.773333pt;}
.y7{bottom:767.813333pt;}
.ydd{bottom:770.373333pt;}
.y8a{bottom:774.453333pt;}
.y147{bottom:775.413333pt;}
.y125{bottom:778.373333pt;}
.y63{bottom:781.733333pt;}
.yb6{bottom:782.053333pt;}
.y171{bottom:782.453333pt;}
.y89{bottom:790.053333pt;}
.y37{bottom:793.973333pt;}
.yb5{bottom:797.733333pt;}
.y170{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.y101{bottom:799.893333pt;}
.ydc{bottom:801.973333pt;}
.y62{bottom:805.333333pt;}
.y88{bottom:805.733333pt;}
.y146{bottom:807.333333pt;}
.y36{bottom:809.653333pt;}
.ydb{bottom:817.653333pt;}
.y87{bottom:821.333333pt;}
.y16f{bottom:821.973333pt;}
.y100{bottom:823.573333pt;}
.y35{bottom:825.253333pt;}
.y5{bottom:831.653333pt;}
.yda{bottom:833.253333pt;}
.y61{bottom:836.933333pt;}
.y34{bottom:840.853333pt;}
.y144{bottom:847.893333pt;}
.yd9{bottom:848.853333pt;}
.y60{bottom:852.613333pt;}
.yb4{bottom:852.933333pt;}
.yff{bottom:855.173333pt;}
.y33{bottom:856.533333pt;}
.y86{bottom:860.613333pt;}
.y4{bottom:863.733333pt;}
.yd8{bottom:864.533333pt;}
.y16e{bottom:864.853333pt;}
.y5f{bottom:868.213333pt;}
.yb3{bottom:868.613333pt;}
.yfe{bottom:870.853333pt;}
.yd7{bottom:880.133333pt;}
.y124{bottom:880.533333pt;}
.y5e{bottom:883.813333pt;}
.yb2{bottom:884.213333pt;}
.yfd{bottom:886.453333pt;}
.y32{bottom:888.133333pt;}
.y85{bottom:892.533333pt;}
.yd6{bottom:895.813333pt;}
.y123{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y5d{bottom:899.520000pt;}
.yb1{bottom:899.840000pt;}
.yfc{bottom:902.080000pt;}
.y31{bottom:903.840000pt;}
.y122{bottom:911.840000pt;}
.y5c{bottom:915.120000pt;}
.yb0{bottom:915.520000pt;}
.yfb{bottom:917.760000pt;}
.y143{bottom:919.120000pt;}
.y30{bottom:919.440000pt;}
.y121{bottom:927.440000pt;}
.yaf{bottom:931.120000pt;}
.yfa{bottom:933.360000pt;}
.y2f{bottom:935.040000pt;}
.y84{bottom:935.440000pt;}
.y5b{bottom:938.800000pt;}
.y120{bottom:943.040000pt;}
.yae{bottom:946.800000pt;}
.y2e{bottom:950.720000pt;}
.y83{bottom:951.040000pt;}
.yf9{bottom:957.040000pt;}
.y11f{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y82{bottom:966.720000pt;}
.yad{bottom:970.400000pt;}
.y5a{bottom:970.720000pt;}
.y11e{bottom:974.320000pt;}
.y81{bottom:982.320000pt;}
.yf8{bottom:986.320000pt;}
.y11d{bottom:990.000000pt;}
.y142{bottom:990.320000pt;}
.y2c{bottom:998.000000pt;}
.yac{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hb{height:20.960000pt;}
.hc{height:21.040000pt;}
.h13{height:23.600000pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h15{height:35.280000pt;}
.hd{height:36.560000pt;}
.hf{height:39.226667pt;}
.h11{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:52.240000pt;}
.he{height:53.309531pt;}
.h7{height:54.187500pt;}
.h10{height:54.880000pt;}
.h17{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:70.560000pt;}
.h16{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:90.186667pt;}
.w8{width:101.200000pt;}
.w11{width:105.466667pt;}
.w3{width:107.466667pt;}
.w7{width:107.760000pt;}
.w10{width:114.400000pt;}
.w4{width:124.000000pt;}
.w12{width:131.280000pt;}
.we{width:135.760000pt;}
.w15{width:135.840000pt;}
.w5{width:137.920000pt;}
.w9{width:139.946667pt;}
.w13{width:143.040000pt;}
.w14{width:153.466667pt;}
.wa{width:162.880000pt;}
.wf{width:171.786667pt;}
.wc{width:176.160000pt;}
.wb{width:190.666667pt;}
.wd{width:247.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:98.879988pt;}
.x10{left:167.226667pt;}
.x5{left:169.226667pt;}
.x2{left:180.266655pt;}
.xa{left:201.786667pt;}
.x6{left:293.866667pt;}
.x11{left:299.146667pt;}
.xd{left:309.626667pt;}
.xb{left:365.386667pt;}
.x7{left:432.426667pt;}
.x12{left:442.826667pt;}
.xe{left:446.026667pt;}
.x8{left:523.253333pt;}
.xc{left:556.693333pt;}
.x13{left:597.013333pt;}
.xf{left:618.453333pt;}
.x9{left:631.653333pt;}
.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; }
  