
    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_ce6660317bc2acaadd8a3dbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_e13dfdb93e605c0f4e790afb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_1ea56884b6d1c7b04f8aab37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b684b3b8ec35cb0c9d170a55.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_0fae4c4fa74fbb0069d2d09d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_ee2b2f5f9d03de5fd9f06fbd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_527e50dc92dd62acccf799ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.779785;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_7206b6e23e3a1642c7018e8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_e251eb81ebc65a822a1f3be1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1001620287217d53b394b9e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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_6c8caba919b9682c05301415.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948242;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_bcabd31a53eddc836367447f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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_def0feaf93658b1b1a9144f7.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls22{letter-spacing:-0.136200px;}
.ls23{letter-spacing:-0.132600px;}
.ls3{letter-spacing:-0.129000px;}
.ls14{letter-spacing:-0.109800px;}
.ls24{letter-spacing:-0.103800px;}
.ls21{letter-spacing:-0.078000px;}
.lsc{letter-spacing:-0.070200px;}
.ls7{letter-spacing:-0.041760px;}
.lsd{letter-spacing:-0.032400px;}
.ls17{letter-spacing:-0.027000px;}
.ls18{letter-spacing:-0.001440px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000720px;}
.ls1f{letter-spacing:0.021960px;}
.ls1d{letter-spacing:0.045360px;}
.ls0{letter-spacing:0.078600px;}
.ls5{letter-spacing:0.078840px;}
.ls13{letter-spacing:0.090000px;}
.ls1e{letter-spacing:0.090600px;}
.ls6{letter-spacing:0.091200px;}
.ls4{letter-spacing:0.192600px;}
.lsf{letter-spacing:0.198600px;}
.ls9{letter-spacing:0.198840px;}
.ls1c{letter-spacing:0.231120px;}
.ls16{letter-spacing:0.311760px;}
.lse{letter-spacing:0.327600px;}
.ls11{letter-spacing:0.671760px;}
.lsa{letter-spacing:4.911120px;}
.ls1a{letter-spacing:5.085360px;}
.ls10{letter-spacing:6.165360px;}
.ls1b{letter-spacing:34.605360px;}
.lsb{letter-spacing:39.645360px;}
.ls8{letter-spacing:54.278640px;}
.ls20{letter-spacing:89.805360px;}
.ls12{letter-spacing:93.111120px;}
.ls15{letter-spacing:197.631120px;}
.ls19{letter-spacing:1312.671120px;}
.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;}
}
.ws7{word-spacing:-21.723120px;}
.ws11{word-spacing:-21.619320px;}
.ws10{word-spacing:-21.590520px;}
.wsf{word-spacing:-21.586920px;}
.ws12{word-spacing:-18.405240px;}
.ws14{word-spacing:-18.360000px;}
.ws13{word-spacing:-18.314640px;}
.ws15{word-spacing:-16.470000px;}
.ws9{word-spacing:-15.216480px;}
.ws0{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.967720px;}
.ws1{word-spacing:-14.967480px;}
.ws4{word-spacing:-14.888880px;}
.wsd{word-spacing:-14.887440px;}
.wsc{word-spacing:-14.861880px;}
.wsa{word-spacing:-14.856480px;}
.ws6{word-spacing:-14.847120px;}
.wse{word-spacing:-14.810880px;}
.wsb{word-spacing:-14.779080px;}
.ws3{word-spacing:-9.610320px;}
.ws8{word-spacing:-9.448920px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-10.747800px;}
._9{margin-left:-8.168880px;}
._8{margin-left:-5.503320px;}
._1a{margin-left:-3.359880px;}
._b{margin-left:-2.276400px;}
._1{margin-left:-1.077720px;}
._4{width:1.408080px;}
._c{width:2.964600px;}
._d{width:4.239840px;}
._e{width:5.579640px;}
._14{width:6.665760px;}
._11{width:7.707960px;}
._12{width:9.725640px;}
._13{width:10.948800px;}
._15{width:12.190920px;}
._17{width:15.954840px;}
._16{width:19.632240px;}
._1b{width:20.883960px;}
._1c{width:22.069800px;}
._f{width:26.166240px;}
._10{width:27.828960px;}
._20{width:29.368560px;}
._1e{width:53.160960px;}
._2{width:65.083440px;}
._18{width:66.215400px;}
._7{width:83.949960px;}
._19{width:91.704960px;}
._1d{width:93.111120px;}
._6{width:143.944680px;}
._5{width:164.565120px;}
._3{width:197.511120px;}
._1f{width:849.231120px;}
._0{width:1329.591120px;}
.fc7{color:rgb(0,0,255);}
.fc3{color:rgb(192,79,76);}
.fc8{color:rgb(102,102,102);}
.fc5{color:rgb(0,30,94);}
.fc4{color:rgb(68,84,106);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(68,114,196);}
.fc9{color:rgb(5,99,193);}
.fc6{color:rgb(47,84,150);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:42.120000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y39{bottom:7.380000px;}
.y3b{bottom:7.470000px;}
.y2e{bottom:8.280000px;}
.y30{bottom:8.640000px;}
.y2a{bottom:11.700000px;}
.y2c{bottom:19.170000px;}
.y2d{bottom:30.240000px;}
.y49{bottom:30.600000px;}
.y48{bottom:53.730000px;}
.y51{bottom:57.420000px;}
.y5{bottom:57.510000px;}
.y50{bottom:95.580000px;}
.y4{bottom:95.670000px;}
.y4f{bottom:132.390000px;}
.y3{bottom:132.480000px;}
.y4e{bottom:151.290000px;}
.y2{bottom:151.380000px;}
.y4d{bottom:185.310000px;}
.y1{bottom:185.400000px;}
.y35{bottom:211.050000px;}
.yce{bottom:212.040000px;}
.y166{bottom:216.540000px;}
.yeb{bottom:219.060000px;}
.y34{bottom:228.810000px;}
.ycd{bottom:235.290000px;}
.ya6{bottom:235.740000px;}
.y17b{bottom:239.250000px;}
.y165{bottom:239.700000px;}
.yea{bottom:242.310000px;}
.y10d{bottom:244.380000px;}
.y33{bottom:245.370000px;}
.y149{bottom:254.730000px;}
.ycc{bottom:258.420000px;}
.ya5{bottom:258.870000px;}
.y132{bottom:261.750000px;}
.y32{bottom:261.840000px;}
.y164{bottom:262.830000px;}
.y7e{bottom:264.180000px;}
.y10c{bottom:264.540000px;}
.y17a{bottom:277.410000px;}
.y148{bottom:277.860000px;}
.y31{bottom:278.310000px;}
.ye9{bottom:280.470000px;}
.ycb{bottom:281.550000px;}
.ya4{bottom:282.000000px;}
.y10b{bottom:284.700000px;}
.y131{bottom:284.970000px;}
.y7d{bottom:287.310000px;}
.y2f{bottom:291.900000px;}
.y179{bottom:297.570000px;}
.y147{bottom:300.990000px;}
.ye8{bottom:303.600000px;}
.yca{bottom:304.770000px;}
.y10a{bottom:304.860000px;}
.ya3{bottom:305.220000px;}
.y130{bottom:308.100000px;}
.y7c{bottom:310.440000px;}
.y178{bottom:317.640000px;}
.y2b{bottom:321.420000px;}
.y146{bottom:324.210000px;}
.y109{bottom:325.020000px;}
.yc9{bottom:327.900000px;}
.ya2{bottom:328.350000px;}
.y12f{bottom:331.230000px;}
.y7b{bottom:333.660000px;}
.y177{bottom:337.800000px;}
.ye7{bottom:341.760000px;}
.y108{bottom:345.180000px;}
.y163{bottom:347.340000px;}
.yc8{bottom:348.060000px;}
.ya1{bottom:351.570000px;}
.y12e{bottom:354.450000px;}
.y7a{bottom:356.790000px;}
.y176{bottom:357.960000px;}
.y145{bottom:362.370000px;}
.ye6{bottom:364.980000px;}
.y107{bottom:365.250000px;}
.y162{bottom:370.470000px;}
.yc7{bottom:371.190000px;}
.y29{bottom:372.810000px;}
.ya0{bottom:374.700000px;}
.y175{bottom:378.120000px;}
.y79{bottom:379.920000px;}
.y106{bottom:385.410000px;}
.y144{bottom:385.500000px;}
.ye5{bottom:388.110000px;}
.y12d{bottom:392.610000px;}
.yc6{bottom:394.410000px;}
.y9f{bottom:397.830000px;}
.y174{bottom:398.280000px;}
.y78{bottom:403.140000px;}
.y105{bottom:408.540000px;}
.y143{bottom:408.630000px;}
.y28{bottom:412.680000px;}
.y12c{bottom:415.740000px;}
.yc5{bottom:417.540000px;}
.y173{bottom:418.350000px;}
.y9e{bottom:421.050000px;}
.y77{bottom:426.270000px;}
.y104{bottom:428.700000px;}
.y27{bottom:429.150000px;}
.y161{bottom:431.850000px;}
.y172{bottom:438.510000px;}
.y12b{bottom:438.960000px;}
.yc4{bottom:440.670000px;}
.y9d{bottom:444.180000px;}
.y26{bottom:445.620000px;}
.y142{bottom:446.880000px;}
.y103{bottom:448.860000px;}
.y76{bottom:449.400000px;}
.y160{bottom:454.980000px;}
.y171{bottom:458.670000px;}
.y25{bottom:462.090000px;}
.yc3{bottom:463.890000px;}
.y9c{bottom:467.310000px;}
.y141{bottom:470.010000px;}
.y75{bottom:472.620000px;}
.y15f{bottom:478.200000px;}
.y24{bottom:478.560000px;}
.y170{bottom:478.830000px;}
.yc2{bottom:487.020000px;}
.y9b{bottom:490.530000px;}
.y140{bottom:493.140000px;}
.y23{bottom:495.120000px;}
.y74{bottom:495.750000px;}
.y16f{bottom:498.990000px;}
.y12a{bottom:500.250000px;}
.yc1{bottom:510.150000px;}
.ye4{bottom:510.780000px;}
.y22{bottom:511.590000px;}
.y9a{bottom:513.660000px;}
.y15e{bottom:516.360000px;}
.y73{bottom:518.970000px;}
.y16e{bottom:519.060000px;}
.y129{bottom:523.380000px;}
.y21{bottom:528.060000px;}
.y13f{bottom:531.300000px;}
.yc0{bottom:533.370000px;}
.ye3{bottom:533.910000px;}
.y99{bottom:536.880000px;}
.y15d{bottom:539.490000px;}
.y72{bottom:542.100000px;}
.y20{bottom:544.530000px;}
.y128{bottom:550.020000px;}
.y13e{bottom:554.520000px;}
.ybf{bottom:556.500000px;}
.ye2{bottom:557.040000px;}
.y16d{bottom:558.480000px;}
.y98{bottom:560.010000px;}
.y1f{bottom:561.000000px;}
.y15c{bottom:562.620000px;}
.y71{bottom:565.230000px;}
.y102{bottom:571.530000px;}
.y1e{bottom:577.470000px;}
.y13d{bottom:577.650000px;}
.y16c{bottom:578.370000px;}
.ybe{bottom:579.720000px;}
.ye1{bottom:580.260000px;}
.y97{bottom:583.140000px;}
.y70{bottom:588.450000px;}
.y1d{bottom:593.940000px;}
.y101{bottom:594.660000px;}
.y127{bottom:595.290000px;}
.y16b{bottom:598.530000px;}
.ybd{bottom:599.880000px;}
.y15b{bottom:600.780000px;}
.ye0{bottom:603.390000px;}
.y96{bottom:606.360000px;}
.y1c{bottom:610.410000px;}
.y6f{bottom:611.580000px;}
.y126{bottom:615.450000px;}
.y13c{bottom:615.810000px;}
.y100{bottom:617.790000px;}
.y16a{bottom:618.600000px;}
.ybc{bottom:619.950000px;}
.ydf{bottom:623.550000px;}
.y15a{bottom:624.000000px;}
.y1b{bottom:626.880000px;}
.y95{bottom:629.490000px;}
.y6e{bottom:634.710000px;}
.y125{bottom:635.520000px;}
.y13b{bottom:638.940000px;}
.yff{bottom:641.010000px;}
.ybb{bottom:643.170000px;}
.y1a{bottom:643.440000px;}
.yde{bottom:643.710000px;}
.y159{bottom:647.160000px;}
.y94{bottom:652.650000px;}
.y124{bottom:655.710000px;}
.y169{bottom:656.790000px;}
.y6d{bottom:657.960000px;}
.y19{bottom:659.940000px;}
.y13a{bottom:662.190000px;}
.ydd{bottom:663.900000px;}
.yba{bottom:666.330000px;}
.y158{bottom:670.290000px;}
.y93{bottom:675.870000px;}
.y18{bottom:676.410000px;}
.yfe{bottom:679.200000px;}
.y6c{bottom:681.090000px;}
.y168{bottom:683.430000px;}
.ydc{bottom:684.060000px;}
.y4c{bottom:684.240000px;}
.yb9{bottom:689.460000px;}
.y157{bottom:693.510000px;}
.y17{bottom:693.690000px;}
.y123{bottom:696.030000px;}
.y92{bottom:699.000000px;}
.y139{bottom:700.350000px;}
.y4b{bottom:703.140000px;}
.y6b{bottom:704.220000px;}
.ydb{bottom:707.190000px;}
.yb8{bottom:712.680000px;}
.y16{bottom:713.850000px;}
.y122{bottom:716.100000px;}
.y4a{bottom:716.910000px;}
.yfd{bottom:717.360000px;}
.y91{bottom:722.130000px;}
.y138{bottom:723.480000px;}
.y6a{bottom:727.440000px;}
.yda{bottom:730.320000px;}
.y156{bottom:731.670000px;}
.yb7{bottom:732.840000px;}
.y15{bottom:733.920000px;}
.y121{bottom:736.260000px;}
.yfc{bottom:737.520000px;}
.y47{bottom:740.760000px;}
.y90{bottom:745.350000px;}
.y137{bottom:746.700000px;}
.y69{bottom:750.570000px;}
.yb6{bottom:752.910000px;}
.yd9{bottom:753.450000px;}
.y14{bottom:754.080000px;}
.y155{bottom:754.800000px;}
.y120{bottom:756.420000px;}
.yfb{bottom:757.680000px;}
.y8f{bottom:768.480000px;}
.yb5{bottom:773.070000px;}
.y68{bottom:773.790000px;}
.y13{bottom:774.240000px;}
.y11f{bottom:776.580000px;}
.yd8{bottom:776.670000px;}
.yfa{bottom:777.750000px;}
.y154{bottom:778.020000px;}
.y136{bottom:784.860000px;}
.y8e{bottom:791.700000px;}
.yb4{bottom:793.230000px;}
.y12{bottom:794.400000px;}
.y11e{bottom:796.740000px;}
.y67{bottom:796.920000px;}
.yf9{bottom:797.910000px;}
.yd7{bottom:799.800000px;}
.y153{bottom:801.150000px;}
.y135{bottom:807.990000px;}
.y46{bottom:811.050000px;}
.yb3{bottom:813.390000px;}
.y11{bottom:814.560000px;}
.y8d{bottom:814.830000px;}
.y167{bottom:816.180000px;}
.y11d{bottom:816.810000px;}
.yf8{bottom:818.070000px;}
.y66{bottom:820.050000px;}
.yd6{bottom:823.020000px;}
.y134{bottom:831.120000px;}
.yb2{bottom:833.550000px;}
.y10{bottom:834.630000px;}
.y45{bottom:834.900000px;}
.y11c{bottom:836.970000px;}
.y8c{bottom:837.960000px;}
.yf7{bottom:838.230000px;}
.y152{bottom:839.310000px;}
.y65{bottom:843.270000px;}
.yd5{bottom:846.150000px;}
.yb1{bottom:853.620000px;}
.y133{bottom:854.340000px;}
.yf{bottom:854.790000px;}
.y11b{bottom:857.130000px;}
.yf6{bottom:858.390000px;}
.y8b{bottom:861.180000px;}
.y151{bottom:862.440000px;}
.y44{bottom:866.220000px;}
.y64{bottom:866.400000px;}
.yd4{bottom:869.280000px;}
.yb0{bottom:873.780000px;}
.ye{bottom:874.950000px;}
.y11a{bottom:877.290000px;}
.yf5{bottom:878.460000px;}
.y43{bottom:882.780000px;}
.y8a{bottom:884.310000px;}
.y150{bottom:885.660000px;}
.y63{bottom:889.530000px;}
.yd3{bottom:892.500000px;}
.yd{bottom:895.110000px;}
.yaf{bottom:896.910000px;}
.y119{bottom:897.450000px;}
.yf4{bottom:898.620000px;}
.y42{bottom:906.720000px;}
.y89{bottom:907.440000px;}
.y62{bottom:912.750000px;}
.yc{bottom:915.180000px;}
.yd2{bottom:915.630000px;}
.y118{bottom:917.520000px;}
.yf3{bottom:918.780000px;}
.yae{bottom:920.130000px;}
.y14f{bottom:923.820000px;}
.y41{bottom:930.570000px;}
.y88{bottom:930.660000px;}
.yb{bottom:935.340000px;}
.y117{bottom:937.680000px;}
.yd1{bottom:938.760000px;}
.yf2{bottom:938.940000px;}
.y61{bottom:939.300000px;}
.yad{bottom:943.260000px;}
.y14e{bottom:946.950000px;}
.y87{bottom:953.790000px;}
.y40{bottom:954.510000px;}
.ya{bottom:955.500000px;}
.y116{bottom:957.840000px;}
.yf1{bottom:959.100000px;}
.yd0{bottom:961.980000px;}
.yac{bottom:966.390000px;}
.y14d{bottom:970.080000px;}
.y58{bottom:970.170000px;}
.y9{bottom:974.040000px;}
.y86{bottom:976.920000px;}
.y115{bottom:978.000000px;}
.y3f{bottom:978.450000px;}
.yf0{bottom:979.170000px;}
.y60{bottom:984.570000px;}
.ycf{bottom:985.110000px;}
.yab{bottom:989.610000px;}
.y8{bottom:994.110000px;}
.y114{bottom:998.160000px;}
.y57{bottom:998.700000px;}
.yef{bottom:999.330000px;}
.y85{bottom:1000.140000px;}
.y3e{bottom:1002.300000px;}
.y5f{bottom:1004.730000px;}
.y14c{bottom:1008.330000px;}
.yaa{bottom:1012.740000px;}
.y113{bottom:1018.230000px;}
.yee{bottom:1019.490000px;}
.y7{bottom:1019.760000px;}
.y84{bottom:1023.270000px;}
.y5e{bottom:1024.890000px;}
.y56{bottom:1029.390000px;}
.y14b{bottom:1031.460000px;}
.y6{bottom:1033.350000px;}
.y3d{bottom:1033.620000px;}
.ya9{bottom:1035.960000px;}
.y112{bottom:1038.390000px;}
.yed{bottom:1039.650000px;}
.y180{bottom:1042.800000px;}
.y5d{bottom:1044.960000px;}
.y83{bottom:1046.490000px;}
.y3c{bottom:1050.180000px;}
.y14a{bottom:1054.590000px;}
.y111{bottom:1058.550000px;}
.ya8{bottom:1059.090000px;}
.y55{bottom:1060.080000px;}
.y17f{bottom:1062.150000px;}
.y5c{bottom:1065.120000px;}
.y82{bottom:1069.650000px;}
.y3a{bottom:1074.060000px;}
.yec{bottom:1077.840000px;}
.y110{bottom:1078.740000px;}
.y17e{bottom:1081.080000px;}
.ya7{bottom:1082.250000px;}
.y5b{bottom:1085.310000px;}
.y54{bottom:1090.800000px;}
.y81{bottom:1092.780000px;}
.y38{bottom:1098.000000px;}
.y10f{bottom:1098.900000px;}
.y17d{bottom:1100.070000px;}
.y5a{bottom:1105.470000px;}
.y80{bottom:1116.000000px;}
.y10e{bottom:1118.970000px;}
.y17c{bottom:1119.060000px;}
.y53{bottom:1121.400000px;}
.y37{bottom:1125.540000px;}
.y59{bottom:1132.020000px;}
.y7f{bottom:1139.130000px;}
.y52{bottom:1141.200000px;}
.y36{bottom:1142.010000px;}
.hc{height:23.130000px;}
.hf{height:23.160000px;}
.hd{height:23.220000px;}
.hb{height:28.800000px;}
.h8{height:35.550000px;}
.h4{height:41.027344px;}
.h2{height:41.185547px;}
.h12{height:41.291016px;}
.ha{height:50.670000px;}
.h7{height:53.709961px;}
.h11{height:55.291992px;}
.h15{height:57.612832px;}
.h17{height:64.657617px;}
.h3{height:65.526152px;}
.he{height:66.013770px;}
.h6{height:67.456230px;}
.h14{height:67.714259px;}
.h16{height:68.710781px;}
.h10{height:69.480000px;}
.h9{height:71.613281px;}
.h5{height:98.419746px;}
.h13{height:100.250156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:61.680000px;}
.wb{width:88.920000px;}
.w5{width:102.780000px;}
.wc{width:256.440000px;}
.w7{width:328.560000px;}
.w9{width:328.650000px;}
.wa{width:346.080000px;}
.w8{width:346.170000px;}
.w6{width:509.550000px;}
.w3{width:675.540000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.060000px;}
.xc{left:7.770000px;}
.x7{left:10.440000px;}
.xa{left:19.470000px;}
.x8{left:34.830000px;}
.xb{left:51.390000px;}
.x1{left:107.999987px;}
.xf{left:135.029987px;}
.x12{left:137.459987px;}
.x11{left:160.949987px;}
.x10{left:162.029987px;}
.x13{left:164.459987px;}
.x6{left:171.210000px;}
.x2{left:184.439987px;}
.x9{left:274.710000px;}
.x4{left:405.059987px;}
.xd{left:438.090000px;}
.x3{left:446.549987px;}
.xe{left:527.820000px;}
@media print{
.v2{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls22{letter-spacing:-0.121067pt;}
.ls23{letter-spacing:-0.117867pt;}
.ls3{letter-spacing:-0.114667pt;}
.ls14{letter-spacing:-0.097600pt;}
.ls24{letter-spacing:-0.092267pt;}
.ls21{letter-spacing:-0.069333pt;}
.lsc{letter-spacing:-0.062400pt;}
.ls7{letter-spacing:-0.037120pt;}
.lsd{letter-spacing:-0.028800pt;}
.ls17{letter-spacing:-0.024000pt;}
.ls18{letter-spacing:-0.001280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000640pt;}
.ls1f{letter-spacing:0.019520pt;}
.ls1d{letter-spacing:0.040320pt;}
.ls0{letter-spacing:0.069867pt;}
.ls5{letter-spacing:0.070080pt;}
.ls13{letter-spacing:0.080000pt;}
.ls1e{letter-spacing:0.080533pt;}
.ls6{letter-spacing:0.081067pt;}
.ls4{letter-spacing:0.171200pt;}
.lsf{letter-spacing:0.176533pt;}
.ls9{letter-spacing:0.176747pt;}
.ls1c{letter-spacing:0.205440pt;}
.ls16{letter-spacing:0.277120pt;}
.lse{letter-spacing:0.291200pt;}
.ls11{letter-spacing:0.597120pt;}
.lsa{letter-spacing:4.365440pt;}
.ls1a{letter-spacing:4.520320pt;}
.ls10{letter-spacing:5.480320pt;}
.ls1b{letter-spacing:30.760320pt;}
.lsb{letter-spacing:35.240320pt;}
.ls8{letter-spacing:48.247680pt;}
.ls20{letter-spacing:79.826987pt;}
.ls12{letter-spacing:82.765440pt;}
.ls15{letter-spacing:175.672107pt;}
.ls19{letter-spacing:1166.818773pt;}
.ws7{word-spacing:-19.309440pt;}
.ws11{word-spacing:-19.217173pt;}
.ws10{word-spacing:-19.191573pt;}
.wsf{word-spacing:-19.188373pt;}
.ws12{word-spacing:-16.360213pt;}
.ws14{word-spacing:-16.320000pt;}
.ws13{word-spacing:-16.279680pt;}
.ws15{word-spacing:-14.640000pt;}
.ws9{word-spacing:-13.525760pt;}
.ws0{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.304640pt;}
.ws1{word-spacing:-13.304427pt;}
.ws4{word-spacing:-13.234560pt;}
.wsd{word-spacing:-13.233280pt;}
.wsc{word-spacing:-13.210560pt;}
.wsa{word-spacing:-13.205760pt;}
.ws6{word-spacing:-13.197440pt;}
.wse{word-spacing:-13.165227pt;}
.wsb{word-spacing:-13.136960pt;}
.ws3{word-spacing:-8.542507pt;}
.ws8{word-spacing:-8.399040pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-9.553600pt;}
._9{margin-left:-7.261227pt;}
._8{margin-left:-4.891840pt;}
._1a{margin-left:-2.986560pt;}
._b{margin-left:-2.023467pt;}
._1{margin-left:-0.957973pt;}
._4{width:1.251627pt;}
._c{width:2.635200pt;}
._d{width:3.768747pt;}
._e{width:4.959680pt;}
._14{width:5.925120pt;}
._11{width:6.851520pt;}
._12{width:8.645013pt;}
._13{width:9.732267pt;}
._15{width:10.836373pt;}
._17{width:14.182080pt;}
._16{width:17.450880pt;}
._1b{width:18.563520pt;}
._1c{width:19.617600pt;}
._f{width:23.258880pt;}
._10{width:24.736853pt;}
._20{width:26.105387pt;}
._1e{width:47.254187pt;}
._2{width:57.851947pt;}
._18{width:58.858133pt;}
._7{width:74.622187pt;}
._19{width:81.515520pt;}
._1d{width:82.765440pt;}
._6{width:127.950827pt;}
._5{width:146.280107pt;}
._3{width:175.565440pt;}
._1f{width:754.872107pt;}
._0{width:1181.858773pt;}
.fs4{font-size:37.440000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:6.560000pt;}
.y3b{bottom:6.640000pt;}
.y2e{bottom:7.360000pt;}
.y30{bottom:7.680000pt;}
.y2a{bottom:10.400000pt;}
.y2c{bottom:17.040000pt;}
.y2d{bottom:26.880000pt;}
.y49{bottom:27.200000pt;}
.y48{bottom:47.760000pt;}
.y51{bottom:51.040000pt;}
.y5{bottom:51.120000pt;}
.y50{bottom:84.960000pt;}
.y4{bottom:85.040000pt;}
.y4f{bottom:117.680000pt;}
.y3{bottom:117.760000pt;}
.y4e{bottom:134.480000pt;}
.y2{bottom:134.560000pt;}
.y4d{bottom:164.720000pt;}
.y1{bottom:164.800000pt;}
.y35{bottom:187.600000pt;}
.yce{bottom:188.480000pt;}
.y166{bottom:192.480000pt;}
.yeb{bottom:194.720000pt;}
.y34{bottom:203.386667pt;}
.ycd{bottom:209.146667pt;}
.ya6{bottom:209.546667pt;}
.y17b{bottom:212.666667pt;}
.y165{bottom:213.066667pt;}
.yea{bottom:215.386667pt;}
.y10d{bottom:217.226667pt;}
.y33{bottom:218.106667pt;}
.y149{bottom:226.426667pt;}
.ycc{bottom:229.706667pt;}
.ya5{bottom:230.106667pt;}
.y132{bottom:232.666667pt;}
.y32{bottom:232.746667pt;}
.y164{bottom:233.626667pt;}
.y7e{bottom:234.826667pt;}
.y10c{bottom:235.146667pt;}
.y17a{bottom:246.586667pt;}
.y148{bottom:246.986667pt;}
.y31{bottom:247.386667pt;}
.ye9{bottom:249.306667pt;}
.ycb{bottom:250.266667pt;}
.ya4{bottom:250.666667pt;}
.y10b{bottom:253.066667pt;}
.y131{bottom:253.306667pt;}
.y7d{bottom:255.386667pt;}
.y2f{bottom:259.466667pt;}
.y179{bottom:264.506667pt;}
.y147{bottom:267.546667pt;}
.ye8{bottom:269.866667pt;}
.yca{bottom:270.906667pt;}
.y10a{bottom:270.986667pt;}
.ya3{bottom:271.306667pt;}
.y130{bottom:273.866667pt;}
.y7c{bottom:275.946667pt;}
.y178{bottom:282.346667pt;}
.y2b{bottom:285.706667pt;}
.y146{bottom:288.186667pt;}
.y109{bottom:288.906667pt;}
.yc9{bottom:291.466667pt;}
.ya2{bottom:291.866667pt;}
.y12f{bottom:294.426667pt;}
.y7b{bottom:296.586667pt;}
.y177{bottom:300.266667pt;}
.ye7{bottom:303.786667pt;}
.y108{bottom:306.826667pt;}
.y163{bottom:308.746667pt;}
.yc8{bottom:309.386667pt;}
.ya1{bottom:312.506667pt;}
.y12e{bottom:315.066667pt;}
.y7a{bottom:317.146667pt;}
.y176{bottom:318.186667pt;}
.y145{bottom:322.106667pt;}
.ye6{bottom:324.426667pt;}
.y107{bottom:324.666667pt;}
.y162{bottom:329.306667pt;}
.yc7{bottom:329.946667pt;}
.y29{bottom:331.386667pt;}
.ya0{bottom:333.066667pt;}
.y175{bottom:336.106667pt;}
.y79{bottom:337.706667pt;}
.y106{bottom:342.586667pt;}
.y144{bottom:342.666667pt;}
.ye5{bottom:344.986667pt;}
.y12d{bottom:348.986667pt;}
.yc6{bottom:350.586667pt;}
.y9f{bottom:353.626667pt;}
.y174{bottom:354.026667pt;}
.y78{bottom:358.346667pt;}
.y105{bottom:363.146667pt;}
.y143{bottom:363.226667pt;}
.y28{bottom:366.826667pt;}
.y12c{bottom:369.546667pt;}
.yc5{bottom:371.146667pt;}
.y173{bottom:371.866667pt;}
.y9e{bottom:374.266667pt;}
.y77{bottom:378.906667pt;}
.y104{bottom:381.066667pt;}
.y27{bottom:381.466667pt;}
.y161{bottom:383.866667pt;}
.y172{bottom:389.786667pt;}
.y12b{bottom:390.186667pt;}
.yc4{bottom:391.706667pt;}
.y9d{bottom:394.826667pt;}
.y26{bottom:396.106667pt;}
.y142{bottom:397.226667pt;}
.y103{bottom:398.986667pt;}
.y76{bottom:399.466667pt;}
.y160{bottom:404.426667pt;}
.y171{bottom:407.706667pt;}
.y25{bottom:410.746667pt;}
.yc3{bottom:412.346667pt;}
.y9c{bottom:415.386667pt;}
.y141{bottom:417.786667pt;}
.y75{bottom:420.106667pt;}
.y15f{bottom:425.066667pt;}
.y24{bottom:425.386667pt;}
.y170{bottom:425.626667pt;}
.yc2{bottom:432.906667pt;}
.y9b{bottom:436.026667pt;}
.y140{bottom:438.346667pt;}
.y23{bottom:440.106667pt;}
.y74{bottom:440.666667pt;}
.y16f{bottom:443.546667pt;}
.y12a{bottom:444.666667pt;}
.yc1{bottom:453.466667pt;}
.ye4{bottom:454.026667pt;}
.y22{bottom:454.746667pt;}
.y9a{bottom:456.586667pt;}
.y15e{bottom:458.986667pt;}
.y73{bottom:461.306667pt;}
.y16e{bottom:461.386667pt;}
.y129{bottom:465.226667pt;}
.y21{bottom:469.386667pt;}
.y13f{bottom:472.266667pt;}
.yc0{bottom:474.106667pt;}
.ye3{bottom:474.586667pt;}
.y99{bottom:477.226667pt;}
.y15d{bottom:479.546667pt;}
.y72{bottom:481.866667pt;}
.y20{bottom:484.026667pt;}
.y128{bottom:488.906667pt;}
.y13e{bottom:492.906667pt;}
.ybf{bottom:494.666667pt;}
.ye2{bottom:495.146667pt;}
.y16d{bottom:496.426667pt;}
.y98{bottom:497.786667pt;}
.y1f{bottom:498.666667pt;}
.y15c{bottom:500.106667pt;}
.y71{bottom:502.426667pt;}
.y102{bottom:508.026667pt;}
.y1e{bottom:513.306667pt;}
.y13d{bottom:513.466667pt;}
.y16c{bottom:514.106667pt;}
.ybe{bottom:515.306667pt;}
.ye1{bottom:515.786667pt;}
.y97{bottom:518.346667pt;}
.y70{bottom:523.066667pt;}
.y1d{bottom:527.946667pt;}
.y101{bottom:528.586667pt;}
.y127{bottom:529.146667pt;}
.y16b{bottom:532.026667pt;}
.ybd{bottom:533.226667pt;}
.y15b{bottom:534.026667pt;}
.ye0{bottom:536.346667pt;}
.y96{bottom:538.986667pt;}
.y1c{bottom:542.586667pt;}
.y6f{bottom:543.626667pt;}
.y126{bottom:547.066667pt;}
.y13c{bottom:547.386667pt;}
.y100{bottom:549.146667pt;}
.y16a{bottom:549.866667pt;}
.ybc{bottom:551.066667pt;}
.ydf{bottom:554.266667pt;}
.y15a{bottom:554.666667pt;}
.y1b{bottom:557.226667pt;}
.y95{bottom:559.546667pt;}
.y6e{bottom:564.186667pt;}
.y125{bottom:564.906667pt;}
.y13b{bottom:567.946667pt;}
.yff{bottom:569.786667pt;}
.ybb{bottom:571.706667pt;}
.y1a{bottom:571.946667pt;}
.yde{bottom:572.186667pt;}
.y159{bottom:575.253333pt;}
.y94{bottom:580.133333pt;}
.y124{bottom:582.853333pt;}
.y169{bottom:583.813333pt;}
.y6d{bottom:584.853333pt;}
.y19{bottom:586.613333pt;}
.y13a{bottom:588.613333pt;}
.ydd{bottom:590.133333pt;}
.yba{bottom:592.293333pt;}
.y158{bottom:595.813333pt;}
.y93{bottom:600.773333pt;}
.y18{bottom:601.253333pt;}
.yfe{bottom:603.733333pt;}
.y6c{bottom:605.413333pt;}
.y168{bottom:607.493333pt;}
.ydc{bottom:608.053333pt;}
.y4c{bottom:608.213333pt;}
.yb9{bottom:612.853333pt;}
.y157{bottom:616.453333pt;}
.y17{bottom:616.613333pt;}
.y123{bottom:618.693333pt;}
.y92{bottom:621.333333pt;}
.y139{bottom:622.533333pt;}
.y4b{bottom:625.013333pt;}
.y6b{bottom:625.973333pt;}
.ydb{bottom:628.613333pt;}
.yb8{bottom:633.493333pt;}
.y16{bottom:634.533333pt;}
.y122{bottom:636.533333pt;}
.y4a{bottom:637.253333pt;}
.yfd{bottom:637.653333pt;}
.y91{bottom:641.893333pt;}
.y138{bottom:643.093333pt;}
.y6a{bottom:646.613333pt;}
.yda{bottom:649.173333pt;}
.y156{bottom:650.373333pt;}
.yb7{bottom:651.413333pt;}
.y15{bottom:652.373333pt;}
.y121{bottom:654.453333pt;}
.yfc{bottom:655.573333pt;}
.y47{bottom:658.453333pt;}
.y90{bottom:662.533333pt;}
.y137{bottom:663.733333pt;}
.y69{bottom:667.173333pt;}
.yb6{bottom:669.253333pt;}
.yd9{bottom:669.733333pt;}
.y14{bottom:670.293333pt;}
.y155{bottom:670.933333pt;}
.y120{bottom:672.373333pt;}
.yfb{bottom:673.493333pt;}
.y8f{bottom:683.093333pt;}
.yb5{bottom:687.173333pt;}
.y68{bottom:687.813333pt;}
.y13{bottom:688.213333pt;}
.y11f{bottom:690.293333pt;}
.yd8{bottom:690.373333pt;}
.yfa{bottom:691.333333pt;}
.y154{bottom:691.573333pt;}
.y136{bottom:697.653333pt;}
.y8e{bottom:703.733333pt;}
.yb4{bottom:705.093333pt;}
.y12{bottom:706.133333pt;}
.y11e{bottom:708.213333pt;}
.y67{bottom:708.373333pt;}
.yf9{bottom:709.253333pt;}
.yd7{bottom:710.933333pt;}
.y153{bottom:712.133333pt;}
.y135{bottom:718.213333pt;}
.y46{bottom:720.933333pt;}
.yb3{bottom:723.013333pt;}
.y11{bottom:724.053333pt;}
.y8d{bottom:724.293333pt;}
.y167{bottom:725.493333pt;}
.y11d{bottom:726.053333pt;}
.yf8{bottom:727.173333pt;}
.y66{bottom:728.933333pt;}
.yd6{bottom:731.573333pt;}
.y134{bottom:738.773333pt;}
.yb2{bottom:740.933333pt;}
.y10{bottom:741.893333pt;}
.y45{bottom:742.133333pt;}
.y11c{bottom:743.973333pt;}
.y8c{bottom:744.853333pt;}
.yf7{bottom:745.093333pt;}
.y152{bottom:746.053333pt;}
.y65{bottom:749.573333pt;}
.yd5{bottom:752.133333pt;}
.yb1{bottom:758.773333pt;}
.y133{bottom:759.413333pt;}
.yf{bottom:759.813333pt;}
.y11b{bottom:761.893333pt;}
.yf6{bottom:763.013333pt;}
.y8b{bottom:765.493333pt;}
.y151{bottom:766.613333pt;}
.y44{bottom:769.973333pt;}
.y64{bottom:770.133333pt;}
.yd4{bottom:772.693333pt;}
.yb0{bottom:776.693333pt;}
.ye{bottom:777.733333pt;}
.y11a{bottom:779.813333pt;}
.yf5{bottom:780.853333pt;}
.y43{bottom:784.693333pt;}
.y8a{bottom:786.053333pt;}
.y150{bottom:787.253333pt;}
.y63{bottom:790.693333pt;}
.yd3{bottom:793.333333pt;}
.yd{bottom:795.653333pt;}
.yaf{bottom:797.253333pt;}
.y119{bottom:797.733333pt;}
.yf4{bottom:798.773333pt;}
.y42{bottom:805.973333pt;}
.y89{bottom:806.613333pt;}
.y62{bottom:811.333333pt;}
.yc{bottom:813.493333pt;}
.yd2{bottom:813.893333pt;}
.y118{bottom:815.573333pt;}
.yf3{bottom:816.693333pt;}
.yae{bottom:817.893333pt;}
.y14f{bottom:821.173333pt;}
.y41{bottom:827.173333pt;}
.y88{bottom:827.253333pt;}
.yb{bottom:831.413333pt;}
.y117{bottom:833.493333pt;}
.yd1{bottom:834.453333pt;}
.yf2{bottom:834.613333pt;}
.y61{bottom:834.933333pt;}
.yad{bottom:838.453333pt;}
.y14e{bottom:841.733333pt;}
.y87{bottom:847.813333pt;}
.y40{bottom:848.453333pt;}
.ya{bottom:849.333333pt;}
.y116{bottom:851.413333pt;}
.yf1{bottom:852.533333pt;}
.yd0{bottom:855.093333pt;}
.yac{bottom:859.013333pt;}
.y14d{bottom:862.293333pt;}
.y58{bottom:862.373333pt;}
.y9{bottom:865.813333pt;}
.y86{bottom:868.373333pt;}
.y115{bottom:869.333333pt;}
.y3f{bottom:869.733333pt;}
.yf0{bottom:870.373333pt;}
.y60{bottom:875.173333pt;}
.ycf{bottom:875.653333pt;}
.yab{bottom:879.653333pt;}
.y8{bottom:883.653333pt;}
.y114{bottom:887.253333pt;}
.y57{bottom:887.733333pt;}
.yef{bottom:888.293333pt;}
.y85{bottom:889.013333pt;}
.y3e{bottom:890.933333pt;}
.y5f{bottom:893.093333pt;}
.y14c{bottom:896.293333pt;}
.yaa{bottom:900.213333pt;}
.y113{bottom:905.093333pt;}
.yee{bottom:906.213333pt;}
.y7{bottom:906.453333pt;}
.y84{bottom:909.573333pt;}
.y5e{bottom:911.013333pt;}
.y56{bottom:915.013333pt;}
.y14b{bottom:916.853333pt;}
.y6{bottom:918.533333pt;}
.y3d{bottom:918.773333pt;}
.ya9{bottom:920.853333pt;}
.y112{bottom:923.013333pt;}
.yed{bottom:924.133333pt;}
.y180{bottom:926.933333pt;}
.y5d{bottom:928.853333pt;}
.y83{bottom:930.213333pt;}
.y3c{bottom:933.493333pt;}
.y14a{bottom:937.413333pt;}
.y111{bottom:940.933333pt;}
.ya8{bottom:941.413333pt;}
.y55{bottom:942.293333pt;}
.y17f{bottom:944.133333pt;}
.y5c{bottom:946.773333pt;}
.y82{bottom:950.800000pt;}
.y3a{bottom:954.720000pt;}
.yec{bottom:958.080000pt;}
.y110{bottom:958.880000pt;}
.y17e{bottom:960.960000pt;}
.ya7{bottom:962.000000pt;}
.y5b{bottom:964.720000pt;}
.y54{bottom:969.600000pt;}
.y81{bottom:971.360000pt;}
.y38{bottom:976.000000pt;}
.y10f{bottom:976.800000pt;}
.y17d{bottom:977.840000pt;}
.y5a{bottom:982.640000pt;}
.y80{bottom:992.000000pt;}
.y10e{bottom:994.640000pt;}
.y17c{bottom:994.720000pt;}
.y53{bottom:996.800000pt;}
.y37{bottom:1000.480000pt;}
.y59{bottom:1006.240000pt;}
.y7f{bottom:1012.560000pt;}
.y52{bottom:1014.400000pt;}
.y36{bottom:1015.120000pt;}
.hc{height:20.560000pt;}
.hf{height:20.586667pt;}
.hd{height:20.640000pt;}
.hb{height:25.600000pt;}
.h8{height:31.600000pt;}
.h4{height:36.468750pt;}
.h2{height:36.609375pt;}
.h12{height:36.703125pt;}
.ha{height:45.040000pt;}
.h7{height:47.742188pt;}
.h11{height:49.148438pt;}
.h15{height:51.211406pt;}
.h17{height:57.473437pt;}
.h3{height:58.245469pt;}
.he{height:58.678906pt;}
.h6{height:59.961094pt;}
.h14{height:60.190452pt;}
.h16{height:61.076250pt;}
.h10{height:61.760000pt;}
.h9{height:63.656250pt;}
.h5{height:87.484219pt;}
.h13{height:89.111250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:54.826667pt;}
.wb{width:79.040000pt;}
.w5{width:91.360000pt;}
.wc{width:227.946667pt;}
.w7{width:292.053333pt;}
.w9{width:292.133333pt;}
.wa{width:307.626667pt;}
.w8{width:307.706667pt;}
.w6{width:452.933333pt;}
.w3{width:600.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:2.720000pt;}
.xc{left:6.906667pt;}
.x7{left:9.280000pt;}
.xa{left:17.306667pt;}
.x8{left:30.960000pt;}
.xb{left:45.680000pt;}
.x1{left:95.999988pt;}
.xf{left:120.026655pt;}
.x12{left:122.186655pt;}
.x11{left:143.066655pt;}
.x10{left:144.026655pt;}
.x13{left:146.186655pt;}
.x6{left:152.186667pt;}
.x2{left:163.946655pt;}
.x9{left:244.186667pt;}
.x4{left:360.053322pt;}
.xd{left:389.413333pt;}
.x3{left:396.933322pt;}
.xe{left:469.173333pt;}
}




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