
    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_6703d0b007aab8e07bc377be.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_694b0e1e16ebf76d4c4d1564.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_8568b284938d390daef7ee98.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.055176;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_c7efd9925a54a7228a258bec.woff2')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_432ffc5909cb640e4df67242.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_5c437ac6ebdf8f8295240c40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_83531061976aab97a661c673.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_38c05daf03967ddde899ea62.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fce298cdb8ed435ddae24017.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e432f9ce32e9fcb71b5055e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_50a048ae878062f2ab8fe0b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8106beab3fd8a44021a4a253.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.977539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_62a389071e77e59a59438f99.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.977539;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:fff;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.fff{font-family:fff;line-height:0.688477;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:ff10;src:url('chunks/assets/font_0d916df801234cad9ba42be9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.046387;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:ff11;src:url('chunks/assets/font_71676db26369480e4c493317.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.432600px;}
.lsb{letter-spacing:-0.294000px;}
.lsa{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.281400px;}
.lse{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.140400px;}
.ls8{letter-spacing:-0.085200px;}
.ls3{letter-spacing:-0.058320px;}
.ls2{letter-spacing:-0.034560px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.081600px;}
.lsd{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.287400px;}
.lsc{letter-spacing:0.381600px;}
.ls6{letter-spacing:0.426000px;}
.ls13{letter-spacing:0.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-18.144000px;}
.wse{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.935680px;}
.ws1{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.447440px;}
.wsa{word-spacing:-10.527600px;}
.ws7{word-spacing:-10.472400px;}
.ws9{word-spacing:-10.331400px;}
.ws5{word-spacing:-10.019040px;}
.ws4{word-spacing:-9.937440px;}
.ws8{word-spacing:-9.881040px;}
.wsd{word-spacing:-9.836640px;}
.ws11{word-spacing:-9.742440px;}
.wsc{word-spacing:-9.161040px;}
.ws12{word-spacing:-9.022440px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-2.319840px;}
._0{margin-left:-1.134000px;}
._4{width:1.627920px;}
._5{width:2.725200px;}
._c{width:4.456080px;}
._7{width:6.012000px;}
._6{width:7.095600px;}
._14{width:8.168400px;}
._8{width:9.273600px;}
._17{width:10.280880px;}
._1b{width:12.240000px;}
._1c{width:13.464000px;}
._f{width:14.904000px;}
._19{width:15.920160px;}
._18{width:16.992000px;}
._12{width:19.224000px;}
._13{width:20.242080px;}
._15{width:21.320880px;}
._a{width:22.389120px;}
._9{width:23.846400px;}
._b{width:24.914160px;}
._d{width:26.006400px;}
._16{width:27.357840px;}
._1a{width:28.398240px;}
._21{width:29.561760px;}
._2{width:30.870000px;}
._24{width:32.022000px;}
._10{width:33.480000px;}
._11{width:34.536000px;}
._1e{width:36.456000px;}
._20{width:38.448000px;}
._1f{width:39.697920px;}
._22{width:41.616000px;}
._23{width:42.840000px;}
._2c{width:44.424000px;}
._27{width:45.864000px;}
._2f{width:46.864080px;}
._28{width:47.880000px;}
._29{width:49.447920px;}
._2b{width:50.660160px;}
._2a{width:51.722160px;}
._25{width:53.928000px;}
._26{width:55.152000px;}
._2d{width:56.520000px;}
._2e{width:58.060080px;}
._e{width:795.930240px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:0.360000px;}
.y76{bottom:0.540000px;}
.y38{bottom:1.080000px;}
.y34{bottom:1.410000px;}
.y33{bottom:2.670000px;}
.y3f{bottom:3.240000px;}
.y3{bottom:4.500000px;}
.y3d{bottom:4.680000px;}
.y36{bottom:9.330000px;}
.ycf{bottom:18.720000px;}
.y9a{bottom:19.260000px;}
.yd8{bottom:19.620000px;}
.ycc{bottom:19.800000px;}
.ybc{bottom:19.980000px;}
.ya6{bottom:20.160000px;}
.y6d{bottom:20.340000px;}
.y161{bottom:20.520000px;}
.ycd{bottom:20.700000px;}
.yae{bottom:20.880000px;}
.y75{bottom:21.240000px;}
.y16b{bottom:21.420000px;}
.yd6{bottom:21.600000px;}
.yca{bottom:21.780000px;}
.ya9{bottom:21.960000px;}
.y184{bottom:22.320000px;}
.y43{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y3b{bottom:28.440000px;}
.y3e{bottom:37.620000px;}
.y3a{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y37{bottom:68.760000px;}
.y31{bottom:111.960000px;}
.y160{bottom:115.380000px;}
.y74{bottom:117.360000px;}
.y30{bottom:119.520000px;}
.y117{bottom:121.680000px;}
.ya5{bottom:123.660000px;}
.yc3{bottom:126.180000px;}
.y14c{bottom:127.800000px;}
.y2f{bottom:132.300000px;}
.y6c{bottom:132.480000px;}
.y108{bottom:136.620000px;}
.y15f{bottom:139.320000px;}
.y183{bottom:140.580000px;}
.y73{bottom:141.120000px;}
.y14e{bottom:145.440000px;}
.ya4{bottom:147.420000px;}
.yc2{bottom:149.940000px;}
.y2e{bottom:151.200000px;}
.y14b{bottom:151.560000px;}
.y12a{bottom:154.260000px;}
.y6b{bottom:156.240000px;}
.y107{bottom:160.380000px;}
.y182{bottom:162.540000px;}
.y13d{bottom:163.080000px;}
.y9d{bottom:165.060000px;}
.y2d{bottom:169.020000px;}
.y162{bottom:169.200000px;}
.ya3{bottom:171.180000px;}
.yea{bottom:172.800000px;}
.yc1{bottom:173.880000px;}
.y129{bottom:178.020000px;}
.y6a{bottom:180.000000px;}
.y116{bottom:184.320000px;}
.y2c{bottom:186.840000px;}
.y9c{bottom:188.820000px;}
.y14a{bottom:190.440000px;}
.y158{bottom:192.960000px;}
.ya2{bottom:194.940000px;}
.ye9{bottom:196.560000px;}
.yc8{bottom:197.640000px;}
.y106{bottom:199.260000px;}
.y13c{bottom:201.780000px;}
.y69{bottom:203.760000px;}
.y2b{bottom:206.490000px;}
.y115{bottom:208.110000px;}
.yb8{bottom:212.610000px;}
.y149{bottom:214.230000px;}
.y128{bottom:216.930000px;}
.y99{bottom:218.910000px;}
.y181{bottom:221.070000px;}
.yc7{bottom:221.430000px;}
.y105{bottom:223.050000px;}
.y9b{bottom:227.190000px;}
.y68{bottom:227.550000px;}
.y2a{bottom:229.890000px;}
.y157{bottom:231.870000px;}
.ye8{bottom:235.470000px;}
.yb7{bottom:236.370000px;}
.y13b{bottom:240.690000px;}
.y98{bottom:242.670000px;}
.yc6{bottom:245.190000px;}
.y114{bottom:246.810000px;}
.y67{bottom:251.490000px;}
.y148{bottom:253.110000px;}
.y127{bottom:255.630000px;}
.y180{bottom:257.970000px;}
.ye7{bottom:259.230000px;}
.y29{bottom:259.590000px;}
.yb6{bottom:260.310000px;}
.y104{bottom:261.930000px;}
.y13a{bottom:264.450000px;}
.y97{bottom:266.430000px;}
.y14d{bottom:270.750000px;}
.y66{bottom:275.250000px;}
.y15e{bottom:279.390000px;}
.y28{bottom:283.350000px;}
.yb5{bottom:284.070000px;}
.y103{bottom:285.690000px;}
.y96{bottom:290.190000px;}
.y147{bottom:291.810000px;}
.y126{bottom:294.510000px;}
.y17f{bottom:294.870000px;}
.ye6{bottom:298.110000px;}
.y65{bottom:299.010000px;}
.y139{bottom:303.330000px;}
.y27{bottom:305.130000px;}
.yb4{bottom:307.830000px;}
.y113{bottom:309.450000px;}
.y95{bottom:314.130000px;}
.y146{bottom:315.750000px;}
.y17e{bottom:316.650000px;}
.y64{bottom:322.770000px;}
.y102{bottom:324.390000px;}
.y26{bottom:326.910000px;}
.y138{bottom:327.090000px;}
.ybb{bottom:331.590000px;}
.y125{bottom:333.210000px;}
.ye5{bottom:336.810000px;}
.y94{bottom:337.890000px;}
.y15d{bottom:342.030000px;}
.yd7{bottom:346.350000px;}
.y63{bottom:346.710000px;}
.y101{bottom:348.330000px;}
.y25{bottom:348.690000px;}
.y17d{bottom:353.370000px;}
.y145{bottom:354.450000px;}
.yba{bottom:355.530000px;}
.ye4{bottom:360.750000px;}
.y93{bottom:361.650000px;}
.y137{bottom:365.970000px;}
.y62{bottom:370.470000px;}
.y24{bottom:370.650000px;}
.y124{bottom:372.090000px;}
.y17c{bottom:375.330000px;}
.y144{bottom:378.210000px;}
.yb9{bottom:379.290000px;}
.y92{bottom:385.410000px;}
.y100{bottom:387.030000px;}
.y136{bottom:389.730000px;}
.y23{bottom:392.430000px;}
.y61{bottom:394.230000px;}
.y123{bottom:395.850000px;}
.ye3{bottom:399.450000px;}
.yc0{bottom:403.050000px;}
.y15c{bottom:404.670000px;}
.y91{bottom:409.350000px;}
.y112{bottom:410.970000px;}
.y17b{bottom:412.050000px;}
.y22{bottom:414.210000px;}
.y143{bottom:417.090000px;}
.ycb{bottom:417.630000px;}
.y60{bottom:417.990000px;}
.ye2{bottom:423.210000px;}
.yff{bottom:425.910000px;}
.ybf{bottom:426.810000px;}
.y135{bottom:428.430000px;}
.y90{bottom:433.110000px;}
.y17a{bottom:433.830000px;}
.y122{bottom:434.730000px;}
.y21{bottom:435.990000px;}
.y142{bottom:440.895000px;}
.y5f{bottom:441.975000px;}
.y15b{bottom:443.595000px;}
.yfe{bottom:449.715000px;}
.ybe{bottom:450.795000px;}
.y134{bottom:452.415000px;}
.y8f{bottom:456.915000px;}
.y20{bottom:457.995000px;}
.y121{bottom:458.535000px;}
.ye1{bottom:462.135000px;}
.y5e{bottom:465.735000px;}
.y179{bottom:470.775000px;}
.yad{bottom:471.855000px;}
.ybd{bottom:474.555000px;}
.y1f{bottom:479.775000px;}
.y8e{bottom:480.675000px;}
.y15a{bottom:482.295000px;}
.yfd{bottom:488.595000px;}
.y5d{bottom:489.495000px;}
.y133{bottom:491.115000px;}
.y178{bottom:492.555000px;}
.yac{bottom:495.795000px;}
.y120{bottom:497.415000px;}
.yc5{bottom:498.315000px;}
.ye0{bottom:501.015000px;}
.y1e{bottom:501.555000px;}
.y141{bottom:503.535000px;}
.y8d{bottom:504.435000px;}
.yfc{bottom:512.355000px;}
.y5c{bottom:513.255000px;}
.y177{bottom:514.335000px;}
.y132{bottom:514.875000px;}
.yab{bottom:519.555000px;}
.y156{bottom:521.175000px;}
.yc4{bottom:522.075000px;}
.y1d{bottom:523.335000px;}
.ydf{bottom:524.775000px;}
.y140{bottom:527.295000px;}
.y8c{bottom:528.375000px;}
.y11f{bottom:536.115000px;}
.y5b{bottom:537.195000px;}
.yaa{bottom:543.315000px;}
.y16a{bottom:544.935000px;}
.y1c{bottom:545.115000px;}
.yfb{bottom:551.055000px;}
.y176{bottom:551.235000px;}
.ya8{bottom:551.775000px;}
.y8b{bottom:552.135000px;}
.y131{bottom:553.755000px;}
.y155{bottom:559.875000px;}
.y5a{bottom:560.955000px;}
.yde{bottom:563.475000px;}
.y13f{bottom:566.175000px;}
.y1b{bottom:567.075000px;}
.y175{bottom:573.015000px;}
.y111{bottom:574.995000px;}
.y8a{bottom:575.895000px;}
.y154{bottom:583.815000px;}
.y59{bottom:584.715000px;}
.ydd{bottom:587.415000px;}
.y1a{bottom:588.855000px;}
.yfa{bottom:589.935000px;}
.ya7{bottom:591.015000px;}
.y130{bottom:592.635000px;}
.y159{bottom:598.755000px;}
.y89{bottom:599.655000px;}
.y169{bottom:607.575000px;}
.y58{bottom:608.475000px;}
.y174{bottom:609.915000px;}
.y19{bottom:610.635000px;}
.y110{bottom:613.695000px;}
.ya1{bottom:614.775000px;}
.y153{bottom:622.515000px;}
.y88{bottom:623.595000px;}
.ydc{bottom:626.115000px;}
.yf9{bottom:628.815000px;}
.y12f{bottom:631.335000px;}
.y18{bottom:632.415000px;}
.y11e{bottom:637.635000px;}
.ya0{bottom:638.535000px;}
.y152{bottom:646.275000px;}
.y173{bottom:646.635000px;}
.y72{bottom:647.355000px;}
.ydb{bottom:649.875000px;}
.yf8{bottom:652.575000px;}
.y17{bottom:654.195000px;}
.y57{bottom:656.175000px;}
.y11d{bottom:661.395000px;}
.y9f{bottom:662.295000px;}
.y12e{bottom:670.215000px;}
.y71{bottom:671.115000px;}
.y16{bottom:676.185000px;}
.yf7{bottom:676.365000px;}
.yb3{bottom:679.965000px;}
.y172{bottom:683.565000px;}
.y11c{bottom:685.185000px;}
.y9e{bottom:686.085000px;}
.yda{bottom:688.785000px;}
.y56{bottom:694.905000px;}
.y13e{bottom:700.125000px;}
.yb2{bottom:703.725000px;}
.y15{bottom:705.885000px;}
.y12d{bottom:708.945000px;}
.y87{bottom:710.025000px;}
.yf6{bottom:715.245000px;}
.y55{bottom:718.845000px;}
.y171{bottom:720.285000px;}
.y11b{bottom:724.065000px;}
.y14{bottom:725.865000px;}
.yb1{bottom:727.665000px;}
.y86{bottom:733.785000px;}
.yf5{bottom:739.005000px;}
.yce{bottom:742.245000px;}
.y54{bottom:742.605000px;}
.y11a{bottom:747.825000px;}
.yb0{bottom:751.425000px;}
.y13{bottom:752.685000px;}
.y170{bottom:757.185000px;}
.y85{bottom:757.545000px;}
.yf4{bottom:762.765000px;}
.yd9{bottom:766.005000px;}
.y53{bottom:766.365000px;}
.y168{bottom:771.585000px;}
.y12{bottom:773.745000px;}
.yaf{bottom:775.185000px;}
.y10f{bottom:777.705000px;}
.y16f{bottom:778.965000px;}
.y84{bottom:781.305000px;}
.y119{bottom:786.525000px;}
.y52{bottom:790.125000px;}
.y10{bottom:794.805000px;}
.yd5{bottom:798.945000px;}
.yf3{bottom:801.645000px;}
.y11{bottom:802.365000px;}
.y83{bottom:805.245000px;}
.y118{bottom:810.465000px;}
.yf{bottom:812.265000px;}
.yc9{bottom:813.705000px;}
.y51{bottom:814.065000px;}
.y16e{bottom:815.865000px;}
.yd4{bottom:822.705000px;}
.yf2{bottom:825.405000px;}
.y82{bottom:829.005000px;}
.y167{bottom:834.225000px;}
.y16d{bottom:837.645000px;}
.y50{bottom:837.825000px;}
.ye{bottom:839.985000px;}
.y10e{bottom:840.345000px;}
.yd3{bottom:846.645000px;}
.yf1{bottom:849.165000px;}
.y81{bottom:852.765000px;}
.y166{bottom:857.985000px;}
.yd{bottom:860.685000px;}
.y4f{bottom:861.585000px;}
.y10d{bottom:864.285000px;}
.yd2{bottom:870.405000px;}
.y12c{bottom:872.925000px;}
.y16c{bottom:874.365000px;}
.y80{bottom:876.525000px;}
.yc{bottom:883.005000px;}
.y4e{bottom:885.345000px;}
.yf0{bottom:888.045000px;}
.yd1{bottom:894.165000px;}
.y151{bottom:896.865000px;}
.y7f{bottom:900.465000px;}
.y10c{bottom:902.985000px;}
.y4d{bottom:909.285000px;}
.yef{bottom:911.850000px;}
.yb{bottom:915.270000px;}
.y165{bottom:920.670000px;}
.y7e{bottom:924.270000px;}
.y10b{bottom:926.790000px;}
.yd0{bottom:932.730000px;}
.y4c{bottom:933.090000px;}
.y12b{bottom:935.610000px;}
.ya{bottom:947.670000px;}
.y7d{bottom:948.030000px;}
.yee{bottom:950.730000px;}
.y4b{bottom:956.850000px;}
.y150{bottom:959.370000px;}
.y10a{bottom:965.670000px;}
.y7c{bottom:971.790000px;}
.y9{bottom:973.590000px;}
.yed{bottom:974.490000px;}
.y4a{bottom:980.610000px;}
.y35{bottom:983.880000px;}
.y109{bottom:989.430000px;}
.y32{bottom:991.260000px;}
.y8{bottom:993.390000px;}
.y7b{bottom:995.730000px;}
.y14f{bottom:998.250000px;}
.y49{bottom:1004.370000px;}
.yec{bottom:1013.190000px;}
.y7a{bottom:1019.490000px;}
.y164{bottom:1022.010000px;}
.y7{bottom:1027.590000px;}
.y48{bottom:1028.310000px;}
.yeb{bottom:1037.130000px;}
.y79{bottom:1043.250000px;}
.y47{bottom:1052.070000px;}
.y163{bottom:1060.890000px;}
.y6{bottom:1062.870000px;}
.y78{bottom:1067.010000px;}
.y46{bottom:1075.830000px;}
.y77{bottom:1090.950000px;}
.y45{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.y70{bottom:1114.710000px;}
.y44{bottom:1138.110000px;}
.y6f{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y42{bottom:1169.460000px;}
.y41{bottom:1183.500000px;}
.y40{bottom:1197.540000px;}
.y39{bottom:1207.800000px;}
.y3c{bottom:1220.400000px;}
.h21{height:12.420000px;}
.h23{height:12.600000px;}
.h17{height:13.320000px;}
.h15{height:14.580000px;}
.h19{height:21.240000px;}
.h1c{height:24.380859px;}
.h1a{height:24.660000px;}
.h1d{height:36.168398px;}
.h2{height:38.405391px;}
.h16{height:38.464805px;}
.h5{height:38.469727px;}
.h14{height:38.671172px;}
.he{height:39.810234px;}
.h22{height:40.655391px;}
.h1f{height:40.843828px;}
.h6{height:42.573164px;}
.h1e{height:47.650430px;}
.h1b{height:49.680000px;}
.h18{height:52.817344px;}
.h13{height:52.998047px;}
.h4{height:53.709961px;}
.h9{height:54.421875px;}
.hf{height:59.439023px;}
.h24{height:59.800781px;}
.h10{height:60.679688px;}
.hc{height:61.189805px;}
.h12{height:64.978594px;}
.h11{height:65.010937px;}
.h3{height:65.884219px;}
.hb{height:67.824844px;}
.h25{height:70.628906px;}
.ha{height:70.664062px;}
.h20{height:72.562500px;}
.h7{height:80.703984px;}
.h8{height:81.078047px;}
.hd{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.wa{width:77.580000px;}
.w8{width:82.080000px;}
.w7{width:96.300000px;}
.w3{width:104.940000px;}
.w4{width:132.480000px;}
.w5{width:189.540000px;}
.w6{width:626.400000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:10.836000px;}
.x13{left:17.895000px;}
.x10{left:20.850000px;}
.x17{left:41.220000px;}
.x14{left:93.420000px;}
.x1{left:108.036000px;}
.xe{left:112.896000px;}
.x2{left:118.476000px;}
.x3{left:131.076000px;}
.x18{left:154.290000px;}
.x29{left:162.030000px;}
.x26{left:166.890000px;}
.x1a{left:183.630000px;}
.xb{left:220.890000px;}
.x1c{left:252.030000px;}
.x4{left:253.110000px;}
.xc{left:295.995000px;}
.xd{left:324.075000px;}
.x12{left:366.300000px;}
.x8{left:387.435000px;}
.x6{left:402.555000px;}
.x15{left:454.965000px;}
.x5{left:473.505000px;}
.x9{left:500.683125px;}
.xa{left:505.545000px;}
.x19{left:535.425000px;}
.xf{left:694.260000px;}
.x25{left:721.800000px;}
.x24{left:724.500000px;}
.x23{left:726.300000px;}
.x1f{left:728.460000px;}
.x20{left:730.440000px;}
.x1d{left:731.700000px;}
.x22{left:733.140000px;}
.x1e{left:735.300000px;}
.x21{left:737.100000px;}
.x1b{left:738.180000px;}
.x27{left:739.800000px;}
.x28{left:747.360000px;}
.x7{left:785.130000px;}
.x16{left:810.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.384533pt;}
.lsb{letter-spacing:-0.261333pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.250133pt;}
.lse{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.124800pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:-0.030720pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.072533pt;}
.lsd{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.255467pt;}
.lsc{letter-spacing:0.339200pt;}
.ls6{letter-spacing:0.378667pt;}
.ls13{letter-spacing:0.640000pt;}
.wsf{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.276160pt;}
.ws1{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.953280pt;}
.wsa{word-spacing:-9.357867pt;}
.ws7{word-spacing:-9.308800pt;}
.ws9{word-spacing:-9.183467pt;}
.ws5{word-spacing:-8.905813pt;}
.ws4{word-spacing:-8.833280pt;}
.ws8{word-spacing:-8.783147pt;}
.wsd{word-spacing:-8.743680pt;}
.ws11{word-spacing:-8.659947pt;}
.wsc{word-spacing:-8.143147pt;}
.ws12{word-spacing:-8.019947pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-2.062080pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.447040pt;}
._5{width:2.422400pt;}
._c{width:3.960960pt;}
._7{width:5.344000pt;}
._6{width:6.307200pt;}
._14{width:7.260800pt;}
._8{width:8.243200pt;}
._17{width:9.138560pt;}
._1b{width:10.880000pt;}
._1c{width:11.968000pt;}
._f{width:13.248000pt;}
._19{width:14.151253pt;}
._18{width:15.104000pt;}
._12{width:17.088000pt;}
._13{width:17.992960pt;}
._15{width:18.951893pt;}
._a{width:19.901440pt;}
._9{width:21.196800pt;}
._b{width:22.145920pt;}
._d{width:23.116800pt;}
._16{width:24.318080pt;}
._1a{width:25.242880pt;}
._21{width:26.277120pt;}
._2{width:27.440000pt;}
._24{width:28.464000pt;}
._10{width:29.760000pt;}
._11{width:30.698667pt;}
._1e{width:32.405333pt;}
._20{width:34.176000pt;}
._1f{width:35.287040pt;}
._22{width:36.992000pt;}
._23{width:38.080000pt;}
._2c{width:39.488000pt;}
._27{width:40.768000pt;}
._2f{width:41.656960pt;}
._28{width:42.560000pt;}
._29{width:43.953707pt;}
._2b{width:45.031253pt;}
._2a{width:45.975253pt;}
._25{width:47.936000pt;}
._26{width:49.024000pt;}
._2d{width:50.240000pt;}
._2e{width:51.608960pt;}
._e{width:707.493547pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:0.320000pt;}
.y76{bottom:0.480000pt;}
.y38{bottom:0.960000pt;}
.y34{bottom:1.253333pt;}
.y33{bottom:2.373333pt;}
.y3f{bottom:2.880000pt;}
.y3{bottom:4.000000pt;}
.y3d{bottom:4.160000pt;}
.y36{bottom:8.293333pt;}
.ycf{bottom:16.640000pt;}
.y9a{bottom:17.120000pt;}
.yd8{bottom:17.440000pt;}
.ycc{bottom:17.600000pt;}
.ybc{bottom:17.760000pt;}
.ya6{bottom:17.920000pt;}
.y6d{bottom:18.080000pt;}
.y161{bottom:18.240000pt;}
.ycd{bottom:18.400000pt;}
.yae{bottom:18.560000pt;}
.y75{bottom:18.880000pt;}
.y16b{bottom:19.040000pt;}
.yd6{bottom:19.200000pt;}
.yca{bottom:19.360000pt;}
.ya9{bottom:19.520000pt;}
.y184{bottom:19.840000pt;}
.y43{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y3b{bottom:25.280000pt;}
.y3e{bottom:33.440000pt;}
.y3a{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y37{bottom:61.120000pt;}
.y31{bottom:99.520000pt;}
.y160{bottom:102.560000pt;}
.y74{bottom:104.320000pt;}
.y30{bottom:106.240000pt;}
.y117{bottom:108.160000pt;}
.ya5{bottom:109.920000pt;}
.yc3{bottom:112.160000pt;}
.y14c{bottom:113.600000pt;}
.y2f{bottom:117.600000pt;}
.y6c{bottom:117.760000pt;}
.y108{bottom:121.440000pt;}
.y15f{bottom:123.840000pt;}
.y183{bottom:124.960000pt;}
.y73{bottom:125.440000pt;}
.y14e{bottom:129.280000pt;}
.ya4{bottom:131.040000pt;}
.yc2{bottom:133.280000pt;}
.y2e{bottom:134.400000pt;}
.y14b{bottom:134.720000pt;}
.y12a{bottom:137.120000pt;}
.y6b{bottom:138.880000pt;}
.y107{bottom:142.560000pt;}
.y182{bottom:144.480000pt;}
.y13d{bottom:144.960000pt;}
.y9d{bottom:146.720000pt;}
.y2d{bottom:150.240000pt;}
.y162{bottom:150.400000pt;}
.ya3{bottom:152.160000pt;}
.yea{bottom:153.600000pt;}
.yc1{bottom:154.560000pt;}
.y129{bottom:158.240000pt;}
.y6a{bottom:160.000000pt;}
.y116{bottom:163.840000pt;}
.y2c{bottom:166.080000pt;}
.y9c{bottom:167.840000pt;}
.y14a{bottom:169.280000pt;}
.y158{bottom:171.520000pt;}
.ya2{bottom:173.280000pt;}
.ye9{bottom:174.720000pt;}
.yc8{bottom:175.680000pt;}
.y106{bottom:177.120000pt;}
.y13c{bottom:179.360000pt;}
.y69{bottom:181.120000pt;}
.y2b{bottom:183.546667pt;}
.y115{bottom:184.986667pt;}
.yb8{bottom:188.986667pt;}
.y149{bottom:190.426667pt;}
.y128{bottom:192.826667pt;}
.y99{bottom:194.586667pt;}
.y181{bottom:196.506667pt;}
.yc7{bottom:196.826667pt;}
.y105{bottom:198.266667pt;}
.y9b{bottom:201.946667pt;}
.y68{bottom:202.266667pt;}
.y2a{bottom:204.346667pt;}
.y157{bottom:206.106667pt;}
.ye8{bottom:209.306667pt;}
.yb7{bottom:210.106667pt;}
.y13b{bottom:213.946667pt;}
.y98{bottom:215.706667pt;}
.yc6{bottom:217.946667pt;}
.y114{bottom:219.386667pt;}
.y67{bottom:223.546667pt;}
.y148{bottom:224.986667pt;}
.y127{bottom:227.226667pt;}
.y180{bottom:229.306667pt;}
.ye7{bottom:230.426667pt;}
.y29{bottom:230.746667pt;}
.yb6{bottom:231.386667pt;}
.y104{bottom:232.826667pt;}
.y13a{bottom:235.066667pt;}
.y97{bottom:236.826667pt;}
.y14d{bottom:240.666667pt;}
.y66{bottom:244.666667pt;}
.y15e{bottom:248.346667pt;}
.y28{bottom:251.866667pt;}
.yb5{bottom:252.506667pt;}
.y103{bottom:253.946667pt;}
.y96{bottom:257.946667pt;}
.y147{bottom:259.386667pt;}
.y126{bottom:261.786667pt;}
.y17f{bottom:262.106667pt;}
.ye6{bottom:264.986667pt;}
.y65{bottom:265.786667pt;}
.y139{bottom:269.626667pt;}
.y27{bottom:271.226667pt;}
.yb4{bottom:273.626667pt;}
.y113{bottom:275.066667pt;}
.y95{bottom:279.226667pt;}
.y146{bottom:280.666667pt;}
.y17e{bottom:281.466667pt;}
.y64{bottom:286.906667pt;}
.y102{bottom:288.346667pt;}
.y26{bottom:290.586667pt;}
.y138{bottom:290.746667pt;}
.ybb{bottom:294.746667pt;}
.y125{bottom:296.186667pt;}
.ye5{bottom:299.386667pt;}
.y94{bottom:300.346667pt;}
.y15d{bottom:304.026667pt;}
.yd7{bottom:307.866667pt;}
.y63{bottom:308.186667pt;}
.y101{bottom:309.626667pt;}
.y25{bottom:309.946667pt;}
.y17d{bottom:314.106667pt;}
.y145{bottom:315.066667pt;}
.yba{bottom:316.026667pt;}
.ye4{bottom:320.666667pt;}
.y93{bottom:321.466667pt;}
.y137{bottom:325.306667pt;}
.y62{bottom:329.306667pt;}
.y24{bottom:329.466667pt;}
.y124{bottom:330.746667pt;}
.y17c{bottom:333.626667pt;}
.y144{bottom:336.186667pt;}
.yb9{bottom:337.146667pt;}
.y92{bottom:342.586667pt;}
.y100{bottom:344.026667pt;}
.y136{bottom:346.426667pt;}
.y23{bottom:348.826667pt;}
.y61{bottom:350.426667pt;}
.y123{bottom:351.866667pt;}
.ye3{bottom:355.066667pt;}
.yc0{bottom:358.266667pt;}
.y15c{bottom:359.706667pt;}
.y91{bottom:363.866667pt;}
.y112{bottom:365.306667pt;}
.y17b{bottom:366.266667pt;}
.y22{bottom:368.186667pt;}
.y143{bottom:370.746667pt;}
.ycb{bottom:371.226667pt;}
.y60{bottom:371.546667pt;}
.ye2{bottom:376.186667pt;}
.yff{bottom:378.586667pt;}
.ybf{bottom:379.386667pt;}
.y135{bottom:380.826667pt;}
.y90{bottom:384.986667pt;}
.y17a{bottom:385.626667pt;}
.y122{bottom:386.426667pt;}
.y21{bottom:387.546667pt;}
.y142{bottom:391.906667pt;}
.y5f{bottom:392.866667pt;}
.y15b{bottom:394.306667pt;}
.yfe{bottom:399.746667pt;}
.ybe{bottom:400.706667pt;}
.y134{bottom:402.146667pt;}
.y8f{bottom:406.146667pt;}
.y20{bottom:407.106667pt;}
.y121{bottom:407.586667pt;}
.ye1{bottom:410.786667pt;}
.y5e{bottom:413.986667pt;}
.y179{bottom:418.466667pt;}
.yad{bottom:419.426667pt;}
.ybd{bottom:421.826667pt;}
.y1f{bottom:426.466667pt;}
.y8e{bottom:427.266667pt;}
.y15a{bottom:428.706667pt;}
.yfd{bottom:434.306667pt;}
.y5d{bottom:435.106667pt;}
.y133{bottom:436.546667pt;}
.y178{bottom:437.826667pt;}
.yac{bottom:440.706667pt;}
.y120{bottom:442.146667pt;}
.yc5{bottom:442.946667pt;}
.ye0{bottom:445.346667pt;}
.y1e{bottom:445.826667pt;}
.y141{bottom:447.586667pt;}
.y8d{bottom:448.386667pt;}
.yfc{bottom:455.426667pt;}
.y5c{bottom:456.226667pt;}
.y177{bottom:457.186667pt;}
.y132{bottom:457.666667pt;}
.yab{bottom:461.826667pt;}
.y156{bottom:463.266667pt;}
.yc4{bottom:464.066667pt;}
.y1d{bottom:465.186667pt;}
.ydf{bottom:466.466667pt;}
.y140{bottom:468.706667pt;}
.y8c{bottom:469.666667pt;}
.y11f{bottom:476.546667pt;}
.y5b{bottom:477.506667pt;}
.yaa{bottom:482.946667pt;}
.y16a{bottom:484.386667pt;}
.y1c{bottom:484.546667pt;}
.yfb{bottom:489.826667pt;}
.y176{bottom:489.986667pt;}
.ya8{bottom:490.466667pt;}
.y8b{bottom:490.786667pt;}
.y131{bottom:492.226667pt;}
.y155{bottom:497.666667pt;}
.y5a{bottom:498.626667pt;}
.yde{bottom:500.866667pt;}
.y13f{bottom:503.266667pt;}
.y1b{bottom:504.066667pt;}
.y175{bottom:509.346667pt;}
.y111{bottom:511.106667pt;}
.y8a{bottom:511.906667pt;}
.y154{bottom:518.946667pt;}
.y59{bottom:519.746667pt;}
.ydd{bottom:522.146667pt;}
.y1a{bottom:523.426667pt;}
.yfa{bottom:524.386667pt;}
.ya7{bottom:525.346667pt;}
.y130{bottom:526.786667pt;}
.y159{bottom:532.226667pt;}
.y89{bottom:533.026667pt;}
.y169{bottom:540.066667pt;}
.y58{bottom:540.866667pt;}
.y174{bottom:542.146667pt;}
.y19{bottom:542.786667pt;}
.y110{bottom:545.506667pt;}
.ya1{bottom:546.466667pt;}
.y153{bottom:553.346667pt;}
.y88{bottom:554.306667pt;}
.ydc{bottom:556.546667pt;}
.yf9{bottom:558.946667pt;}
.y12f{bottom:561.186667pt;}
.y18{bottom:562.146667pt;}
.y11e{bottom:566.786667pt;}
.ya0{bottom:567.586667pt;}
.y152{bottom:574.466667pt;}
.y173{bottom:574.786667pt;}
.y72{bottom:575.426667pt;}
.ydb{bottom:577.666667pt;}
.yf8{bottom:580.066667pt;}
.y17{bottom:581.506667pt;}
.y57{bottom:583.266667pt;}
.y11d{bottom:587.906667pt;}
.y9f{bottom:588.706667pt;}
.y12e{bottom:595.746667pt;}
.y71{bottom:596.546667pt;}
.y16{bottom:601.053333pt;}
.yf7{bottom:601.213333pt;}
.yb3{bottom:604.413333pt;}
.y172{bottom:607.613333pt;}
.y11c{bottom:609.053333pt;}
.y9e{bottom:609.853333pt;}
.yda{bottom:612.253333pt;}
.y56{bottom:617.693333pt;}
.y13e{bottom:622.333333pt;}
.yb2{bottom:625.533333pt;}
.y15{bottom:627.453333pt;}
.y12d{bottom:630.173333pt;}
.y87{bottom:631.133333pt;}
.yf6{bottom:635.773333pt;}
.y55{bottom:638.973333pt;}
.y171{bottom:640.253333pt;}
.y11b{bottom:643.613333pt;}
.y14{bottom:645.213333pt;}
.yb1{bottom:646.813333pt;}
.y86{bottom:652.253333pt;}
.yf5{bottom:656.893333pt;}
.yce{bottom:659.773333pt;}
.y54{bottom:660.093333pt;}
.y11a{bottom:664.733333pt;}
.yb0{bottom:667.933333pt;}
.y13{bottom:669.053333pt;}
.y170{bottom:673.053333pt;}
.y85{bottom:673.373333pt;}
.yf4{bottom:678.013333pt;}
.yd9{bottom:680.893333pt;}
.y53{bottom:681.213333pt;}
.y168{bottom:685.853333pt;}
.y12{bottom:687.773333pt;}
.yaf{bottom:689.053333pt;}
.y10f{bottom:691.293333pt;}
.y16f{bottom:692.413333pt;}
.y84{bottom:694.493333pt;}
.y119{bottom:699.133333pt;}
.y52{bottom:702.333333pt;}
.y10{bottom:706.493333pt;}
.yd5{bottom:710.173333pt;}
.yf3{bottom:712.573333pt;}
.y11{bottom:713.213333pt;}
.y83{bottom:715.773333pt;}
.y118{bottom:720.413333pt;}
.yf{bottom:722.013333pt;}
.yc9{bottom:723.293333pt;}
.y51{bottom:723.613333pt;}
.y16e{bottom:725.213333pt;}
.yd4{bottom:731.293333pt;}
.yf2{bottom:733.693333pt;}
.y82{bottom:736.893333pt;}
.y167{bottom:741.533333pt;}
.y16d{bottom:744.573333pt;}
.y50{bottom:744.733333pt;}
.ye{bottom:746.653333pt;}
.y10e{bottom:746.973333pt;}
.yd3{bottom:752.573333pt;}
.yf1{bottom:754.813333pt;}
.y81{bottom:758.013333pt;}
.y166{bottom:762.653333pt;}
.yd{bottom:765.053333pt;}
.y4f{bottom:765.853333pt;}
.y10d{bottom:768.253333pt;}
.yd2{bottom:773.693333pt;}
.y12c{bottom:775.933333pt;}
.y16c{bottom:777.213333pt;}
.y80{bottom:779.133333pt;}
.yc{bottom:784.893333pt;}
.y4e{bottom:786.973333pt;}
.yf0{bottom:789.373333pt;}
.yd1{bottom:794.813333pt;}
.y151{bottom:797.213333pt;}
.y7f{bottom:800.413333pt;}
.y10c{bottom:802.653333pt;}
.y4d{bottom:808.253333pt;}
.yef{bottom:810.533333pt;}
.yb{bottom:813.573333pt;}
.y165{bottom:818.373333pt;}
.y7e{bottom:821.573333pt;}
.y10b{bottom:823.813333pt;}
.yd0{bottom:829.093333pt;}
.y4c{bottom:829.413333pt;}
.y12b{bottom:831.653333pt;}
.ya{bottom:842.373333pt;}
.y7d{bottom:842.693333pt;}
.yee{bottom:845.093333pt;}
.y4b{bottom:850.533333pt;}
.y150{bottom:852.773333pt;}
.y10a{bottom:858.373333pt;}
.y7c{bottom:863.813333pt;}
.y9{bottom:865.413333pt;}
.yed{bottom:866.213333pt;}
.y4a{bottom:871.653333pt;}
.y35{bottom:874.560000pt;}
.y109{bottom:879.493333pt;}
.y32{bottom:881.120000pt;}
.y8{bottom:883.013333pt;}
.y7b{bottom:885.093333pt;}
.y14f{bottom:887.333333pt;}
.y49{bottom:892.773333pt;}
.yec{bottom:900.613333pt;}
.y7a{bottom:906.213333pt;}
.y164{bottom:908.453333pt;}
.y7{bottom:913.413333pt;}
.y48{bottom:914.053333pt;}
.yeb{bottom:921.893333pt;}
.y79{bottom:927.333333pt;}
.y47{bottom:935.173333pt;}
.y163{bottom:943.013333pt;}
.y6{bottom:944.773333pt;}
.y78{bottom:948.453333pt;}
.y46{bottom:956.293333pt;}
.y77{bottom:969.733333pt;}
.y45{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.y70{bottom:990.853333pt;}
.y44{bottom:1011.653333pt;}
.y6f{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y42{bottom:1039.520000pt;}
.y41{bottom:1052.000000pt;}
.y40{bottom:1064.480000pt;}
.y39{bottom:1073.600000pt;}
.y3c{bottom:1084.800000pt;}
.h21{height:11.040000pt;}
.h23{height:11.200000pt;}
.h17{height:11.840000pt;}
.h15{height:12.960000pt;}
.h19{height:18.880000pt;}
.h1c{height:21.671875pt;}
.h1a{height:21.920000pt;}
.h1d{height:32.149687pt;}
.h2{height:34.138125pt;}
.h16{height:34.190937pt;}
.h5{height:34.195312pt;}
.h14{height:34.374375pt;}
.he{height:35.386875pt;}
.h22{height:36.138125pt;}
.h1f{height:36.305625pt;}
.h6{height:37.842813pt;}
.h1e{height:42.355937pt;}
.h1b{height:44.160000pt;}
.h18{height:46.948750pt;}
.h13{height:47.109375pt;}
.h4{height:47.742188pt;}
.h9{height:48.375000pt;}
.hf{height:52.834688pt;}
.h24{height:53.156250pt;}
.h10{height:53.937500pt;}
.hc{height:54.390938pt;}
.h12{height:57.758750pt;}
.h11{height:57.787500pt;}
.h3{height:58.563750pt;}
.hb{height:60.288750pt;}
.h25{height:62.781250pt;}
.ha{height:62.812500pt;}
.h20{height:64.500000pt;}
.h7{height:71.736875pt;}
.h8{height:72.069375pt;}
.hd{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.wa{width:68.960000pt;}
.w8{width:72.960000pt;}
.w7{width:85.600000pt;}
.w3{width:93.280000pt;}
.w4{width:117.760000pt;}
.w5{width:168.480000pt;}
.w6{width:556.800000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:9.632000pt;}
.x13{left:15.906667pt;}
.x10{left:18.533333pt;}
.x17{left:36.640000pt;}
.x14{left:83.040000pt;}
.x1{left:96.032000pt;}
.xe{left:100.352000pt;}
.x2{left:105.312000pt;}
.x3{left:116.512000pt;}
.x18{left:137.146667pt;}
.x29{left:144.026667pt;}
.x26{left:148.346667pt;}
.x1a{left:163.226667pt;}
.xb{left:196.346667pt;}
.x1c{left:224.026667pt;}
.x4{left:224.986667pt;}
.xc{left:263.106667pt;}
.xd{left:288.066667pt;}
.x12{left:325.600000pt;}
.x8{left:344.386667pt;}
.x6{left:357.826667pt;}
.x15{left:404.413333pt;}
.x5{left:420.893333pt;}
.x9{left:445.051667pt;}
.xa{left:449.373333pt;}
.x19{left:475.933333pt;}
.xf{left:617.120000pt;}
.x25{left:641.600000pt;}
.x24{left:644.000000pt;}
.x23{left:645.600000pt;}
.x1f{left:647.520000pt;}
.x20{left:649.280000pt;}
.x1d{left:650.400000pt;}
.x22{left:651.680000pt;}
.x1e{left:653.600000pt;}
.x21{left:655.200000pt;}
.x1b{left:656.160000pt;}
.x27{left:657.600000pt;}
.x28{left:664.320000pt;}
.x7{left:697.893333pt;}
.x16{left:720.640000pt;}
}




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