
    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_e69d611b0a3045ab6ae13584.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_30a81e5a1e5110b210f0d935.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_a9eab800860407b2ec86dc6f.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_355933b2d11822d312efdfd4.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_40de5b8777cb2290a63ceaa0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_3bbae54defce18badab17daf.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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.125400px;}
.lse{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.066000px;}
.ls1b{letter-spacing:-0.038880px;}
.ls18{letter-spacing:-0.014760px;}
.ls1d{letter-spacing:-0.009000px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.065520px;}
.lsa{letter-spacing:0.074160px;}
.ls11{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.ls1c{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:14.246640px;}
.ls17{letter-spacing:47.726640px;}
.ls14{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;}
}
.ws6{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.300800px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.217400px;}
.wsc{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.187520px;}
.wsa{word-spacing:-13.101000px;}
.wsd{word-spacing:-13.065600px;}
.ws5{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-3.570024px;}
._4{margin-left:-2.173776px;}
._0{margin-left:-1.110000px;}
._3{width:1.090188px;}
._10{width:2.277369px;}
._14{width:3.542748px;}
._6{width:4.749600px;}
._d{width:5.924401px;}
._c{width:7.182000px;}
._12{width:8.449200px;}
._13{width:9.586800px;}
._11{width:11.543040px;}
._e{width:14.548800px;}
._f{width:15.663495px;}
._15{width:17.615160px;}
._16{width:18.640920px;}
._18{width:19.959840px;}
._7{width:20.982000px;}
._8{width:22.253376px;}
._9{width:23.787005px;}
._19{width:24.800056px;}
._17{width:25.809219px;}
._a{width:26.873400px;}
._b{width:27.897604px;}
._1a{width:31.863600px;}
._21{width:33.098280px;}
._23{width:34.444320px;}
._33{width:35.510760px;}
._2{width:38.019252px;}
._1{width:39.161280px;}
._28{width:40.317360px;}
._36{width:41.603040px;}
._35{width:42.718416px;}
._26{width:48.456720px;}
._27{width:49.839480px;}
._34{width:51.222240px;}
._2e{width:52.665120px;}
._2f{width:53.696616px;}
._38{width:59.097960px;}
._1d{width:60.240240px;}
._1e{width:61.442640px;}
._2c{width:63.486720px;}
._2d{width:64.793760px;}
._37{width:66.840240px;}
._24{width:73.406520px;}
._29{width:77.975640px;}
._39{width:88.333416px;}
._1f{width:89.819280px;}
._20{width:91.391856px;}
._22{width:98.175960px;}
._25{width:99.678960px;}
._31{width:103.887360px;}
._32{width:105.099216px;}
._30{width:106.352280px;}
._1b{width:123.246000px;}
._1c{width:124.388280px;}
._2a{width:138.817080px;}
._2b{width:139.936536px;}
.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;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y10c{bottom:112.980000px;}
.y99{bottom:123.690000px;}
.y59{bottom:126.570000px;}
.yff{bottom:130.170000px;}
.ye9{bottom:130.530000px;}
.y18f{bottom:134.130000px;}
.yb9{bottom:135.660000px;}
.y98{bottom:141.240000px;}
.y58{bottom:144.120000px;}
.yfe{bottom:147.720000px;}
.ye8{bottom:148.170000px;}
.y170{bottom:151.680000px;}
.yb8{bottom:153.300000px;}
.y97{bottom:158.880000px;}
.y57{bottom:161.670000px;}
.y122{bottom:163.740000px;}
.yfd{bottom:165.270000px;}
.ye7{bottom:165.720000px;}
.y16f{bottom:169.320000px;}
.y14f{bottom:169.680000px;}
.yb7{bottom:170.850000px;}
.y96{bottom:176.430000px;}
.y18e{bottom:178.320000px;}
.y56{bottom:179.310000px;}
.y87{bottom:180.840000px;}
.y121{bottom:181.290000px;}
.yfc{bottom:182.910000px;}
.ye6{bottom:183.270000px;}
.y16e{bottom:186.870000px;}
.y14e{bottom:187.320000px;}
.yb6{bottom:188.400000px;}
.y95{bottom:193.980000px;}
.y28{bottom:195.870000px;}
.y86{bottom:198.480000px;}
.ye5{bottom:200.910000px;}
.y10b{bottom:201.270000px;}
.y188{bottom:204.510000px;}
.yb5{bottom:206.040000px;}
.y120{bottom:207.840000px;}
.y94{bottom:211.620000px;}
.y16d{bottom:213.510000px;}
.y27{bottom:213.780000px;}
.y14d{bottom:213.870000px;}
.y55{bottom:214.860000px;}
.y85{bottom:216.030000px;}
.yfb{bottom:218.460000px;}
.y10a{bottom:218.910000px;}
.y11f{bottom:225.480000px;}
.y93{bottom:229.170000px;}
.y6c{bottom:229.800000px;}
.y16c{bottom:231.060000px;}
.y14c{bottom:231.510000px;}
.y54{bottom:232.500000px;}
.y84{bottom:233.580000px;}
.yfa{bottom:236.100000px;}
.ye4{bottom:236.460000px;}
.y18d{bottom:240.060000px;}
.yb4{bottom:241.590000px;}
.y11e{bottom:243.030000px;}
.y92{bottom:246.810000px;}
.y6b{bottom:247.350000px;}
.y187{bottom:248.610000px;}
.y14b{bottom:249.060000px;}
.y53{bottom:250.050000px;}
.y26{bottom:250.770000px;}
.y83{bottom:251.220000px;}
.yf9{bottom:253.650000px;}
.ye3{bottom:254.100000px;}
.y16b{bottom:257.610000px;}
.y6a{bottom:264.990000px;}
.y186{bottom:266.250000px;}
.y52{bottom:267.600000px;}
.y25{bottom:268.410000px;}
.y11d{bottom:269.580000px;}
.yf8{bottom:271.200000px;}
.ye2{bottom:271.650000px;}
.yb3{bottom:273.810000px;}
.y16a{bottom:275.250000px;}
.y14a{bottom:275.610000px;}
.y91{bottom:282.360000px;}
.y69{bottom:282.540000px;}
.y18c{bottom:284.250000px;}
.y51{bottom:285.240000px;}
.y24{bottom:285.960000px;}
.y82{bottom:286.770000px;}
.y11c{bottom:287.220000px;}
.yf7{bottom:288.840000px;}
.ye1{bottom:289.200000px;}
.y185{bottom:292.800000px;}
.y149{bottom:293.250000px;}
.y90{bottom:299.910000px;}
.y68{bottom:300.090000px;}
.y169{bottom:301.800000px;}
.y50{bottom:302.790000px;}
.y23{bottom:303.600000px;}
.y81{bottom:304.410000px;}
.ye0{bottom:306.840000px;}
.y184{bottom:310.440000px;}
.y148{bottom:310.800000px;}
.y11b{bottom:313.770000px;}
.y8f{bottom:317.550000px;}
.y67{bottom:317.730000px;}
.y168{bottom:319.440000px;}
.y22{bottom:321.150000px;}
.y80{bottom:321.960000px;}
.ydf{bottom:324.390000px;}
.y11a{bottom:331.410000px;}
.y8e{bottom:335.100000px;}
.y66{bottom:335.280000px;}
.y183{bottom:336.990000px;}
.y147{bottom:337.440000px;}
.y4f{bottom:338.430000px;}
.y21{bottom:338.700000px;}
.y7f{bottom:339.510000px;}
.yde{bottom:341.940000px;}
.y109{bottom:342.390000px;}
.y167{bottom:345.990000px;}
.y119{bottom:348.960000px;}
.y8d{bottom:352.740000px;}
.y65{bottom:352.920000px;}
.y182{bottom:354.540000px;}
.y146{bottom:354.990000px;}
.y4e{bottom:355.980000px;}
.y20{bottom:356.340000px;}
.y7e{bottom:357.150000px;}
.ydd{bottom:359.580000px;}
.y108{bottom:359.940000px;}
.y166{bottom:363.540000px;}
.y118{bottom:366.510000px;}
.y8c{bottom:370.290000px;}
.y64{bottom:370.470000px;}
.y4d{bottom:373.530000px;}
.y1f{bottom:373.890000px;}
.y7d{bottom:374.700000px;}
.yf6{bottom:377.130000px;}
.y107{bottom:377.580000px;}
.y165{bottom:381.180000px;}
.y145{bottom:381.540000px;}
.y8b{bottom:387.840000px;}
.y4c{bottom:391.170000px;}
.y1e{bottom:391.530000px;}
.y117{bottom:393.420000px;}
.yf5{bottom:394.770000px;}
.ydc{bottom:395.130000px;}
.y181{bottom:398.730000px;}
.y144{bottom:399.180000px;}
.y63{bottom:406.020000px;}
.y164{bottom:407.730000px;}
.y4b{bottom:408.720000px;}
.y1d{bottom:409.080000px;}
.y7c{bottom:410.250000px;}
.ydb{bottom:412.770000px;}
.y8a{bottom:414.750000px;}
.y180{bottom:416.370000px;}
.y143{bottom:416.730000px;}
.y62{bottom:423.660000px;}
.y163{bottom:425.370000px;}
.y4a{bottom:426.360000px;}
.y1c{bottom:426.630000px;}
.y7b{bottom:427.890000px;}
.yda{bottom:430.320000px;}
.y142{bottom:434.370000px;}
.y61{bottom:441.210000px;}
.y116{bottom:441.750000px;}
.y162{bottom:442.920000px;}
.y1b{bottom:444.270000px;}
.y7a{bottom:445.440000px;}
.yd9{bottom:447.870000px;}
.y18b{bottom:451.920000px;}
.y60{bottom:458.760000px;}
.y17f{bottom:460.470000px;}
.y141{bottom:460.920000px;}
.y1a{bottom:461.820000px;}
.y49{bottom:461.910000px;}
.y79{bottom:463.080000px;}
.yd8{bottom:465.510000px;}
.y115{bottom:468.660000px;}
.y161{bottom:469.470000px;}
.y5f{bottom:476.430000px;}
.y140{bottom:478.500000px;}
.y19{bottom:479.490000px;}
.y78{bottom:480.660000px;}
.yd7{bottom:483.090000px;}
.y106{bottom:483.540000px;}
.y160{bottom:487.140000px;}
.y5e{bottom:493.980000px;}
.y13f{bottom:496.140000px;}
.y18{bottom:497.040000px;}
.y48{bottom:497.130000px;}
.y89{bottom:498.210000px;}
.yd6{bottom:500.730000px;}
.y105{bottom:501.090000px;}
.y15f{bottom:504.690000px;}
.y114{bottom:506.040000px;}
.y5d{bottom:511.620000px;}
.y17{bottom:514.590000px;}
.y47{bottom:514.680000px;}
.y88{bottom:515.850000px;}
.y77{bottom:516.210000px;}
.y104{bottom:518.730000px;}
.y13e{bottom:522.690000px;}
.y15e{bottom:531.330000px;}
.y16{bottom:532.230000px;}
.y76{bottom:533.850000px;}
.yd5{bottom:536.280000px;}
.y5c{bottom:538.530000px;}
.y13d{bottom:540.330000px;}
.y15d{bottom:548.880000px;}
.y15{bottom:549.780000px;}
.y46{bottom:549.870000px;}
.y75{bottom:551.400000px;}
.yd4{bottom:553.830000px;}
.y113{bottom:554.280000px;}
.y13c{bottom:557.880000px;}
.y17e{bottom:566.430000px;}
.y14{bottom:567.420000px;}
.y74{bottom:569.040000px;}
.yd3{bottom:571.470000px;}
.y112{bottom:571.830000px;}
.y15c{bottom:575.430000px;}
.y13b{bottom:584.430000px;}
.y13{bottom:584.970000px;}
.y73{bottom:586.590000px;}
.y5b{bottom:586.770000px;}
.yd2{bottom:589.020000px;}
.y111{bottom:589.470000px;}
.y15b{bottom:593.070000px;}
.y45{bottom:594.330000px;}
.y13a{bottom:602.070000px;}
.y12{bottom:602.520000px;}
.y72{bottom:604.140000px;}
.yd1{bottom:606.660000px;}
.y110{bottom:607.020000px;}
.y15a{bottom:610.620000px;}
.y5a{bottom:618.990000px;}
.y11{bottom:620.160000px;}
.y71{bottom:621.780000px;}
.yd0{bottom:624.210000px;}
.y10e{bottom:624.660000px;}
.y17d{bottom:628.260000px;}
.y139{bottom:628.620000px;}
.y159{bottom:637.260000px;}
.y70{bottom:639.330000px;}
.ycf{bottom:641.760000px;}
.y103{bottom:642.210000px;}
.y44{bottom:642.660000px;}
.y138{bottom:646.260000px;}
.y10{bottom:647.070000px;}
.y158{bottom:654.810000px;}
.y6f{bottom:656.970000px;}
.yce{bottom:659.400000px;}
.y102{bottom:659.760000px;}
.y43{bottom:660.210000px;}
.y137{bottom:663.810000px;}
.y17c{bottom:672.360000px;}
.yf4{bottom:677.400000px;}
.y42{bottom:677.760000px;}
.y136{bottom:681.360000px;}
.yb2{bottom:682.260000px;}
.y18a{bottom:690.000000px;}
.y6e{bottom:692.520000px;}
.yf{bottom:693.780000px;}
.ycd{bottom:694.950000px;}
.y41{bottom:695.400000px;}
.y157{bottom:699.000000px;}
.yb1{bottom:699.810000px;}
.y135{bottom:708.000000px;}
.ycc{bottom:712.590000px;}
.y40{bottom:712.950000px;}
.y156{bottom:716.550000px;}
.yb0{bottom:717.360000px;}
.y6d{bottom:724.740000px;}
.y134{bottom:725.550000px;}
.ye{bottom:729.600000px;}
.ycb{bottom:730.140000px;}
.y3f{bottom:730.590000px;}
.y17b{bottom:734.190000px;}
.yaf{bottom:735.000000px;}
.y133{bottom:743.190000px;}
.yca{bottom:747.690000px;}
.y3e{bottom:748.140000px;}
.yae{bottom:752.550000px;}
.y155{bottom:760.740000px;}
.yc9{bottom:765.330000px;}
.yd{bottom:765.600000px;}
.y3d{bottom:765.690000px;}
.y132{bottom:769.740000px;}
.yad{bottom:770.190000px;}
.y154{bottom:778.290000px;}
.yc8{bottom:782.880000px;}
.y10d{bottom:783.330000px;}
.y131{bottom:787.290000px;}
.yac{bottom:787.740000px;}
.y17a{bottom:795.930000px;}
.yc7{bottom:800.520000px;}
.y101{bottom:800.880000px;}
.y3c{bottom:801.330000px;}
.y130{bottom:804.930000px;}
.yab{bottom:805.290000px;}
.yc{bottom:805.380000px;}
.yc6{bottom:818.070000px;}
.yf3{bottom:818.520000px;}
.y3b{bottom:818.880000px;}
.y153{bottom:822.480000px;}
.yaa{bottom:822.930000px;}
.yb{bottom:823.380000px;}
.y12f{bottom:831.480000px;}
.yc5{bottom:835.620000px;}
.yf2{bottom:836.070000px;}
.y3a{bottom:836.520000px;}
.y179{bottom:840.030000px;}
.ya{bottom:841.380000px;}
.y12e{bottom:849.030000px;}
.yf1{bottom:853.620000px;}
.y39{bottom:854.070000px;}
.y9{bottom:855.600000px;}
.y189{bottom:857.670000px;}
.ya9{bottom:858.480000px;}
.y152{bottom:866.670000px;}
.yc4{bottom:871.260000px;}
.y38{bottom:871.620000px;}
.y12d{bottom:875.670000px;}
.ya8{bottom:876.030000px;}
.y8{bottom:877.380000px;}
.y178{bottom:884.220000px;}
.yc3{bottom:888.810000px;}
.y37{bottom:889.260000px;}
.y12c{bottom:893.220000px;}
.ya7{bottom:893.670000px;}
.y7{bottom:895.380000px;}
.y177{bottom:901.860000px;}
.yc2{bottom:906.450000px;}
.y36{bottom:906.810000px;}
.y12b{bottom:910.860000px;}
.ya6{bottom:911.220000px;}
.yc1{bottom:924.000000px;}
.y35{bottom:924.450000px;}
.y6{bottom:927.690000px;}
.y151{bottom:928.410000px;}
.ya5{bottom:928.860000px;}
.y12a{bottom:937.410000px;}
.yc0{bottom:941.550000px;}
.y100{bottom:942.000000px;}
.y176{bottom:945.960000px;}
.ya4{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y129{bottom:954.960000px;}
.ybf{bottom:959.190000px;}
.yf0{bottom:959.550000px;}
.y34{bottom:960.000000px;}
.y175{bottom:963.600000px;}
.y150{bottom:972.600000px;}
.ybe{bottom:976.740000px;}
.yef{bottom:977.190000px;}
.y33{bottom:977.550000px;}
.y128{bottom:981.600000px;}
.ya3{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y174{bottom:990.150000px;}
.yee{bottom:994.740000px;}
.y32{bottom:995.190000px;}
.y127{bottom:999.150000px;}
.ya2{bottom:999.600000px;}
.ybd{bottom:1003.650000px;}
.y173{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.yed{bottom:1012.320000px;}
.y31{bottom:1012.770000px;}
.y126{bottom:1016.820000px;}
.ya1{bottom:1017.180000px;}
.y172{bottom:1025.370000px;}
.yec{bottom:1029.960000px;}
.y30{bottom:1030.320000px;}
.ya0{bottom:1034.820000px;}
.y10f{bottom:1039.230000px;}
.y125{bottom:1043.370000px;}
.yeb{bottom:1047.510000px;}
.y2f{bottom:1047.960000px;}
.ybc{bottom:1051.920000px;}
.y9f{bottom:1052.370000px;}
.y124{bottom:1060.920000px;}
.y2e{bottom:1065.510000px;}
.ybb{bottom:1069.560000px;}
.y9e{bottom:1069.920000px;}
.yea{bottom:1074.420000px;}
.y123{bottom:1078.560000px;}
.y2d{bottom:1083.150000px;}
.yba{bottom:1087.110000px;}
.y9d{bottom:1087.560000px;}
.y171{bottom:1096.110000px;}
.y2c{bottom:1100.700000px;}
.y9c{bottom:1105.110000px;}
.y9b{bottom:1122.750000px;}
.y2b{bottom:1127.610000px;}
.y9a{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h3{height:44.538574px;}
.h7{height:50.902383px;}
.h9{height:55.779258px;}
.h8{height:59.503535px;}
.hb{height:61.793886px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x7{left:85.679987px;}
.x9{left:87.029987px;}
.xa{left:111.239987px;}
.x2{left:202.799987px;}
.x5{left:300.719987px;}
.x8{left:670.559987px;}
.x4{left:738.059987px;}
.x6{left:774.059987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.111467pt;}
.lse{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.058667pt;}
.ls1b{letter-spacing:-0.034560pt;}
.ls18{letter-spacing:-0.013120pt;}
.ls1d{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.058240pt;}
.lsa{letter-spacing:0.065920pt;}
.ls11{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.ls1c{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:12.663680pt;}
.ls17{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.822933pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.748800pt;}
.wsc{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.722240pt;}
.wsa{word-spacing:-11.645333pt;}
.wsd{word-spacing:-11.613867pt;}
.ws5{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-3.173354pt;}
._4{margin-left:-1.932246pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.969056pt;}
._10{width:2.024328pt;}
._14{width:3.149109pt;}
._6{width:4.221867pt;}
._d{width:5.266134pt;}
._c{width:6.384000pt;}
._12{width:7.510400pt;}
._13{width:8.521600pt;}
._11{width:10.260480pt;}
._e{width:12.932266pt;}
._f{width:13.923107pt;}
._15{width:15.657920pt;}
._16{width:16.569707pt;}
._18{width:17.742080pt;}
._7{width:18.650667pt;}
._8{width:19.780778pt;}
._9{width:21.144004pt;}
._19{width:22.044494pt;}
._17{width:22.941528pt;}
._a{width:23.887466pt;}
._b{width:24.797870pt;}
._1a{width:28.323200pt;}
._21{width:29.420693pt;}
._23{width:30.617173pt;}
._33{width:31.565120pt;}
._2{width:33.794890pt;}
._1{width:34.810027pt;}
._28{width:35.837653pt;}
._36{width:36.980480pt;}
._35{width:37.971926pt;}
._26{width:43.072640pt;}
._27{width:44.301760pt;}
._34{width:45.530880pt;}
._2e{width:46.813440pt;}
._2f{width:47.730326pt;}
._38{width:52.531520pt;}
._1d{width:53.546880pt;}
._1e{width:54.615680pt;}
._2c{width:56.432640pt;}
._2d{width:57.594453pt;}
._37{width:59.413547pt;}
._24{width:65.250240pt;}
._29{width:69.311680pt;}
._39{width:78.518592pt;}
._1f{width:79.839360pt;}
._20{width:81.237206pt;}
._22{width:87.267520pt;}
._25{width:88.603520pt;}
._31{width:92.344320pt;}
._32{width:93.421526pt;}
._30{width:94.535360pt;}
._1b{width:109.552000pt;}
._1c{width:110.567360pt;}
._2a{width:123.392960pt;}
._2b{width:124.388032pt;}
.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;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y10c{bottom:100.426667pt;}
.y99{bottom:109.946667pt;}
.y59{bottom:112.506667pt;}
.yff{bottom:115.706667pt;}
.ye9{bottom:116.026667pt;}
.y18f{bottom:119.226667pt;}
.yb9{bottom:120.586667pt;}
.y98{bottom:125.546667pt;}
.y58{bottom:128.106667pt;}
.yfe{bottom:131.306667pt;}
.ye8{bottom:131.706667pt;}
.y170{bottom:134.826667pt;}
.yb8{bottom:136.266667pt;}
.y97{bottom:141.226667pt;}
.y57{bottom:143.706667pt;}
.y122{bottom:145.546667pt;}
.yfd{bottom:146.906667pt;}
.ye7{bottom:147.306667pt;}
.y16f{bottom:150.506667pt;}
.y14f{bottom:150.826667pt;}
.yb7{bottom:151.866667pt;}
.y96{bottom:156.826667pt;}
.y18e{bottom:158.506667pt;}
.y56{bottom:159.386667pt;}
.y87{bottom:160.746667pt;}
.y121{bottom:161.146667pt;}
.yfc{bottom:162.586667pt;}
.ye6{bottom:162.906667pt;}
.y16e{bottom:166.106667pt;}
.y14e{bottom:166.506667pt;}
.yb6{bottom:167.466667pt;}
.y95{bottom:172.426667pt;}
.y28{bottom:174.106667pt;}
.y86{bottom:176.426667pt;}
.ye5{bottom:178.586667pt;}
.y10b{bottom:178.906667pt;}
.y188{bottom:181.786667pt;}
.yb5{bottom:183.146667pt;}
.y120{bottom:184.746667pt;}
.y94{bottom:188.106667pt;}
.y16d{bottom:189.786667pt;}
.y27{bottom:190.026667pt;}
.y14d{bottom:190.106667pt;}
.y55{bottom:190.986667pt;}
.y85{bottom:192.026667pt;}
.yfb{bottom:194.186667pt;}
.y10a{bottom:194.586667pt;}
.y11f{bottom:200.426667pt;}
.y93{bottom:203.706667pt;}
.y6c{bottom:204.266667pt;}
.y16c{bottom:205.386667pt;}
.y14c{bottom:205.786667pt;}
.y54{bottom:206.666667pt;}
.y84{bottom:207.626667pt;}
.yfa{bottom:209.866667pt;}
.ye4{bottom:210.186667pt;}
.y18d{bottom:213.386667pt;}
.yb4{bottom:214.746667pt;}
.y11e{bottom:216.026667pt;}
.y92{bottom:219.386667pt;}
.y6b{bottom:219.866667pt;}
.y187{bottom:220.986667pt;}
.y14b{bottom:221.386667pt;}
.y53{bottom:222.266667pt;}
.y26{bottom:222.906667pt;}
.y83{bottom:223.306667pt;}
.yf9{bottom:225.466667pt;}
.ye3{bottom:225.866667pt;}
.y16b{bottom:228.986667pt;}
.y6a{bottom:235.546667pt;}
.y186{bottom:236.666667pt;}
.y52{bottom:237.866667pt;}
.y25{bottom:238.586667pt;}
.y11d{bottom:239.626667pt;}
.yf8{bottom:241.066667pt;}
.ye2{bottom:241.466667pt;}
.yb3{bottom:243.386667pt;}
.y16a{bottom:244.666667pt;}
.y14a{bottom:244.986667pt;}
.y91{bottom:250.986667pt;}
.y69{bottom:251.146667pt;}
.y18c{bottom:252.666667pt;}
.y51{bottom:253.546667pt;}
.y24{bottom:254.186667pt;}
.y82{bottom:254.906667pt;}
.y11c{bottom:255.306667pt;}
.yf7{bottom:256.746667pt;}
.ye1{bottom:257.066667pt;}
.y185{bottom:260.266667pt;}
.y149{bottom:260.666667pt;}
.y90{bottom:266.586667pt;}
.y68{bottom:266.746667pt;}
.y169{bottom:268.266667pt;}
.y50{bottom:269.146667pt;}
.y23{bottom:269.866667pt;}
.y81{bottom:270.586667pt;}
.ye0{bottom:272.746667pt;}
.y184{bottom:275.946667pt;}
.y148{bottom:276.266667pt;}
.y11b{bottom:278.906667pt;}
.y8f{bottom:282.266667pt;}
.y67{bottom:282.426667pt;}
.y168{bottom:283.946667pt;}
.y22{bottom:285.466667pt;}
.y80{bottom:286.186667pt;}
.ydf{bottom:288.346667pt;}
.y11a{bottom:294.586667pt;}
.y8e{bottom:297.866667pt;}
.y66{bottom:298.026667pt;}
.y183{bottom:299.546667pt;}
.y147{bottom:299.946667pt;}
.y4f{bottom:300.826667pt;}
.y21{bottom:301.066667pt;}
.y7f{bottom:301.786667pt;}
.yde{bottom:303.946667pt;}
.y109{bottom:304.346667pt;}
.y167{bottom:307.546667pt;}
.y119{bottom:310.186667pt;}
.y8d{bottom:313.546667pt;}
.y65{bottom:313.706667pt;}
.y182{bottom:315.146667pt;}
.y146{bottom:315.546667pt;}
.y4e{bottom:316.426667pt;}
.y20{bottom:316.746667pt;}
.y7e{bottom:317.466667pt;}
.ydd{bottom:319.626667pt;}
.y108{bottom:319.946667pt;}
.y166{bottom:323.146667pt;}
.y118{bottom:325.786667pt;}
.y8c{bottom:329.146667pt;}
.y64{bottom:329.306667pt;}
.y4d{bottom:332.026667pt;}
.y1f{bottom:332.346667pt;}
.y7d{bottom:333.066667pt;}
.yf6{bottom:335.226667pt;}
.y107{bottom:335.626667pt;}
.y165{bottom:338.826667pt;}
.y145{bottom:339.146667pt;}
.y8b{bottom:344.746667pt;}
.y4c{bottom:347.706667pt;}
.y1e{bottom:348.026667pt;}
.y117{bottom:349.706667pt;}
.yf5{bottom:350.906667pt;}
.ydc{bottom:351.226667pt;}
.y181{bottom:354.426667pt;}
.y144{bottom:354.826667pt;}
.y63{bottom:360.906667pt;}
.y164{bottom:362.426667pt;}
.y4b{bottom:363.306667pt;}
.y1d{bottom:363.626667pt;}
.y7c{bottom:364.666667pt;}
.ydb{bottom:366.906667pt;}
.y8a{bottom:368.666667pt;}
.y180{bottom:370.106667pt;}
.y143{bottom:370.426667pt;}
.y62{bottom:376.586667pt;}
.y163{bottom:378.106667pt;}
.y4a{bottom:378.986667pt;}
.y1c{bottom:379.226667pt;}
.y7b{bottom:380.346667pt;}
.yda{bottom:382.506667pt;}
.y142{bottom:386.106667pt;}
.y61{bottom:392.186667pt;}
.y116{bottom:392.666667pt;}
.y162{bottom:393.706667pt;}
.y1b{bottom:394.906667pt;}
.y7a{bottom:395.946667pt;}
.yd9{bottom:398.106667pt;}
.y18b{bottom:401.706667pt;}
.y60{bottom:407.786667pt;}
.y17f{bottom:409.306667pt;}
.y141{bottom:409.706667pt;}
.y1a{bottom:410.506667pt;}
.y49{bottom:410.586667pt;}
.y79{bottom:411.626667pt;}
.yd8{bottom:413.786667pt;}
.y115{bottom:416.586667pt;}
.y161{bottom:417.306667pt;}
.y5f{bottom:423.493333pt;}
.y140{bottom:425.333333pt;}
.y19{bottom:426.213333pt;}
.y78{bottom:427.253333pt;}
.yd7{bottom:429.413333pt;}
.y106{bottom:429.813333pt;}
.y160{bottom:433.013333pt;}
.y5e{bottom:439.093333pt;}
.y13f{bottom:441.013333pt;}
.y18{bottom:441.813333pt;}
.y48{bottom:441.893333pt;}
.y89{bottom:442.853333pt;}
.yd6{bottom:445.093333pt;}
.y105{bottom:445.413333pt;}
.y15f{bottom:448.613333pt;}
.y114{bottom:449.813333pt;}
.y5d{bottom:454.773333pt;}
.y17{bottom:457.413333pt;}
.y47{bottom:457.493333pt;}
.y88{bottom:458.533333pt;}
.y77{bottom:458.853333pt;}
.y104{bottom:461.093333pt;}
.y13e{bottom:464.613333pt;}
.y15e{bottom:472.293333pt;}
.y16{bottom:473.093333pt;}
.y76{bottom:474.533333pt;}
.yd5{bottom:476.693333pt;}
.y5c{bottom:478.693333pt;}
.y13d{bottom:480.293333pt;}
.y15d{bottom:487.893333pt;}
.y15{bottom:488.693333pt;}
.y46{bottom:488.773333pt;}
.y75{bottom:490.133333pt;}
.yd4{bottom:492.293333pt;}
.y113{bottom:492.693333pt;}
.y13c{bottom:495.893333pt;}
.y17e{bottom:503.493333pt;}
.y14{bottom:504.373333pt;}
.y74{bottom:505.813333pt;}
.yd3{bottom:507.973333pt;}
.y112{bottom:508.293333pt;}
.y15c{bottom:511.493333pt;}
.y13b{bottom:519.493333pt;}
.y13{bottom:519.973333pt;}
.y73{bottom:521.413333pt;}
.y5b{bottom:521.573333pt;}
.yd2{bottom:523.573333pt;}
.y111{bottom:523.973333pt;}
.y15b{bottom:527.173333pt;}
.y45{bottom:528.293333pt;}
.y13a{bottom:535.173333pt;}
.y12{bottom:535.573333pt;}
.y72{bottom:537.013333pt;}
.yd1{bottom:539.253333pt;}
.y110{bottom:539.573333pt;}
.y15a{bottom:542.773333pt;}
.y5a{bottom:550.213333pt;}
.y11{bottom:551.253333pt;}
.y71{bottom:552.693333pt;}
.yd0{bottom:554.853333pt;}
.y10e{bottom:555.253333pt;}
.y17d{bottom:558.453333pt;}
.y139{bottom:558.773333pt;}
.y159{bottom:566.453333pt;}
.y70{bottom:568.293333pt;}
.ycf{bottom:570.453333pt;}
.y103{bottom:570.853333pt;}
.y44{bottom:571.253333pt;}
.y138{bottom:574.453333pt;}
.y10{bottom:575.173333pt;}
.y158{bottom:582.053333pt;}
.y6f{bottom:583.973333pt;}
.yce{bottom:586.133333pt;}
.y102{bottom:586.453333pt;}
.y43{bottom:586.853333pt;}
.y137{bottom:590.053333pt;}
.y17c{bottom:597.653333pt;}
.yf4{bottom:602.133333pt;}
.y42{bottom:602.453333pt;}
.y136{bottom:605.653333pt;}
.yb2{bottom:606.453333pt;}
.y18a{bottom:613.333333pt;}
.y6e{bottom:615.573333pt;}
.yf{bottom:616.693333pt;}
.ycd{bottom:617.733333pt;}
.y41{bottom:618.133333pt;}
.y157{bottom:621.333333pt;}
.yb1{bottom:622.053333pt;}
.y135{bottom:629.333333pt;}
.ycc{bottom:633.413333pt;}
.y40{bottom:633.733333pt;}
.y156{bottom:636.933333pt;}
.yb0{bottom:637.653333pt;}
.y6d{bottom:644.213333pt;}
.y134{bottom:644.933333pt;}
.ye{bottom:648.533333pt;}
.ycb{bottom:649.013333pt;}
.y3f{bottom:649.413333pt;}
.y17b{bottom:652.613333pt;}
.yaf{bottom:653.333333pt;}
.y133{bottom:660.613333pt;}
.yca{bottom:664.613333pt;}
.y3e{bottom:665.013333pt;}
.yae{bottom:668.933333pt;}
.y155{bottom:676.213333pt;}
.yc9{bottom:680.293333pt;}
.yd{bottom:680.533333pt;}
.y3d{bottom:680.613333pt;}
.y132{bottom:684.213333pt;}
.yad{bottom:684.613333pt;}
.y154{bottom:691.813333pt;}
.yc8{bottom:695.893333pt;}
.y10d{bottom:696.293333pt;}
.y131{bottom:699.813333pt;}
.yac{bottom:700.213333pt;}
.y17a{bottom:707.493333pt;}
.yc7{bottom:711.573333pt;}
.y101{bottom:711.893333pt;}
.y3c{bottom:712.293333pt;}
.y130{bottom:715.493333pt;}
.yab{bottom:715.813333pt;}
.yc{bottom:715.893333pt;}
.yc6{bottom:727.173333pt;}
.yf3{bottom:727.573333pt;}
.y3b{bottom:727.893333pt;}
.y153{bottom:731.093333pt;}
.yaa{bottom:731.493333pt;}
.yb{bottom:731.893333pt;}
.y12f{bottom:739.093333pt;}
.yc5{bottom:742.773333pt;}
.yf2{bottom:743.173333pt;}
.y3a{bottom:743.573333pt;}
.y179{bottom:746.693333pt;}
.ya{bottom:747.893333pt;}
.y12e{bottom:754.693333pt;}
.yf1{bottom:758.773333pt;}
.y39{bottom:759.173333pt;}
.y9{bottom:760.533333pt;}
.y189{bottom:762.373333pt;}
.ya9{bottom:763.093333pt;}
.y152{bottom:770.373333pt;}
.yc4{bottom:774.453333pt;}
.y38{bottom:774.773333pt;}
.y12d{bottom:778.373333pt;}
.ya8{bottom:778.693333pt;}
.y8{bottom:779.893333pt;}
.y178{bottom:785.973333pt;}
.yc3{bottom:790.053333pt;}
.y37{bottom:790.453333pt;}
.y12c{bottom:793.973333pt;}
.ya7{bottom:794.373333pt;}
.y7{bottom:795.893333pt;}
.y177{bottom:801.653333pt;}
.yc2{bottom:805.733333pt;}
.y36{bottom:806.053333pt;}
.y12b{bottom:809.653333pt;}
.ya6{bottom:809.973333pt;}
.yc1{bottom:821.333333pt;}
.y35{bottom:821.733333pt;}
.y6{bottom:824.613333pt;}
.y151{bottom:825.253333pt;}
.ya5{bottom:825.653333pt;}
.y12a{bottom:833.253333pt;}
.yc0{bottom:836.933333pt;}
.y100{bottom:837.333333pt;}
.y176{bottom:840.853333pt;}
.ya4{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y129{bottom:848.853333pt;}
.ybf{bottom:852.613333pt;}
.yf0{bottom:852.933333pt;}
.y34{bottom:853.333333pt;}
.y175{bottom:856.533333pt;}
.y150{bottom:864.533333pt;}
.ybe{bottom:868.213333pt;}
.yef{bottom:868.613333pt;}
.y33{bottom:868.933333pt;}
.y128{bottom:872.533333pt;}
.ya3{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y174{bottom:880.133333pt;}
.yee{bottom:884.213333pt;}
.y32{bottom:884.613333pt;}
.y127{bottom:888.133333pt;}
.ya2{bottom:888.533333pt;}
.ybd{bottom:892.133333pt;}
.y173{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.yed{bottom:899.840000pt;}
.y31{bottom:900.240000pt;}
.y126{bottom:903.840000pt;}
.ya1{bottom:904.160000pt;}
.y172{bottom:911.440000pt;}
.yec{bottom:915.520000pt;}
.y30{bottom:915.840000pt;}
.ya0{bottom:919.840000pt;}
.y10f{bottom:923.760000pt;}
.y125{bottom:927.440000pt;}
.yeb{bottom:931.120000pt;}
.y2f{bottom:931.520000pt;}
.ybc{bottom:935.040000pt;}
.y9f{bottom:935.440000pt;}
.y124{bottom:943.040000pt;}
.y2e{bottom:947.120000pt;}
.ybb{bottom:950.720000pt;}
.y9e{bottom:951.040000pt;}
.yea{bottom:955.040000pt;}
.y123{bottom:958.720000pt;}
.y2d{bottom:962.800000pt;}
.yba{bottom:966.320000pt;}
.y9d{bottom:966.720000pt;}
.y171{bottom:974.320000pt;}
.y2c{bottom:978.400000pt;}
.y9c{bottom:982.320000pt;}
.y9b{bottom:998.000000pt;}
.y2b{bottom:1002.320000pt;}
.y9a{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h3{height:39.589844pt;}
.h7{height:45.246562pt;}
.h9{height:49.581562pt;}
.h8{height:52.892031pt;}
.hb{height:54.927899pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x7{left:76.159988pt;}
.x9{left:77.359988pt;}
.xa{left:98.879988pt;}
.x2{left:180.266655pt;}
.x5{left:267.306655pt;}
.x8{left:596.053322pt;}
.x4{left:656.053322pt;}
.x6{left:688.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; }
  