
    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_9a33400918c1f831028a1871.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_87e2456fdaf1f6ddc8fd97e3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_41809320f78eeff3229aa594.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5acd91df90cc94c53c03b0bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_813f968d4b4c45ec853ebfb7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_810dcd8543e92b148bcd993a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_787937facc037595487a7c8c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_61e1dbcadf31b2a716262678.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_14178e61fa693121c13eb8fc.woff2')format("woff");}.ff9{font-family:ff9;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:-87.840000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.702000px;}
.ls11{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.018000px;}
.ls18{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.234000px;}
.ls1d{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:3.780000px;}
.ls16{letter-spacing:5.022720px;}
.lsc{letter-spacing:11.628000px;}
.ls1f{letter-spacing:17.460000px;}
.ls1c{letter-spacing:21.708000px;}
.lsb{letter-spacing:28.062720px;}
.ls17{letter-spacing:31.068000px;}
.ls15{letter-spacing:48.222720px;}
.ls1b{letter-spacing:49.068000px;}
.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;}
}
.ws4{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.440000px;}
.wsf{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.wsa{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.824000px;}
.ws13{word-spacing:-13.734000px;}
.ws10{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.140000px;}
.wse{word-spacing:-12.924000px;}
.wsd{word-spacing:-12.798000px;}
.ws7{word-spacing:0.000000px;}
._27{margin-left:-17.873280px;}
._25{margin-left:-10.908000px;}
._0{margin-left:-1.026000px;}
._1{width:1.080000px;}
._5{width:2.780160px;}
._7{width:4.776480px;}
._3{width:5.796720px;}
._4{width:7.450320px;}
._6{width:8.466720px;}
._8{width:9.617040px;}
._f{width:11.556000px;}
._9{width:14.580000px;}
._c{width:15.606000px;}
._a{width:17.010000px;}
._b{width:18.144000px;}
._1e{width:19.548000px;}
._1f{width:20.574000px;}
._d{width:22.032000px;}
._e{width:23.070000px;}
._12{width:24.720000px;}
._17{width:25.770000px;}
._2a{width:26.772000px;}
._10{width:27.810000px;}
._11{width:29.268000px;}
._18{width:30.402000px;}
._16{width:32.292000px;}
._15{width:33.588000px;}
._21{width:34.722000px;}
._23{width:35.856000px;}
._22{width:36.936000px;}
._1a{width:38.286000px;}
._1b{width:39.816000px;}
._29{width:40.824000px;}
._1d{width:41.850000px;}
._1c{width:43.362000px;}
._26{width:45.198000px;}
._13{width:46.386000px;}
._14{width:47.574000px;}
._19{width:48.600000px;}
._24{width:49.728000px;}
._20{width:50.922000px;}
._2f{width:52.122000px;}
._41{width:54.000000px;}
._42{width:55.674000px;}
._2b{width:57.186000px;}
._3a{width:65.772000px;}
._2d{width:67.014000px;}
._2e{width:68.472000px;}
._30{width:71.982000px;}
._31{width:73.278000px;}
._28{width:92.640000px;}
._45{width:105.318000px;}
._46{width:106.380000px;}
._33{width:115.020000px;}
._3f{width:116.226000px;}
._3e{width:117.234000px;}
._3c{width:122.982000px;}
._3b{width:124.212000px;}
._3d{width:165.672000px;}
._2c{width:169.272000px;}
._36{width:176.256000px;}
._40{width:178.416000px;}
._34{width:294.156000px;}
._35{width:312.066000px;}
._44{width:335.772000px;}
._43{width:337.068000px;}
._32{width:343.578000px;}
._38{width:371.820000px;}
._39{width:907.902000px;}
._37{width:913.422000px;}
._2{width:1169.580000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.060000px;}
.y5{bottom:15.660000px;}
.y3{bottom:18.900000px;}
.y6{bottom:39.780000px;}
.y2{bottom:60.660000px;}
.y3e{bottom:69.510000px;}
.y3d{bottom:89.310000px;}
.y1b4{bottom:106.560000px;}
.yb3{bottom:107.100000px;}
.yff{bottom:107.640000px;}
.y114{bottom:108.000000px;}
.y155{bottom:109.080000px;}
.y3c{bottom:109.110000px;}
.y1ab{bottom:115.380000px;}
.yf1{bottom:116.100000px;}
.y138{bottom:117.000000px;}
.y7a{bottom:118.080000px;}
.y186{bottom:124.380000px;}
.y31{bottom:124.560000px;}
.ycd{bottom:124.920000px;}
.yb2{bottom:125.100000px;}
.y113{bottom:126.000000px;}
.y154{bottom:127.080000px;}
.y3b{bottom:129.090000px;}
.y1aa{bottom:133.200000px;}
.yf0{bottom:133.920000px;}
.yfe{bottom:135.000000px;}
.y79{bottom:135.900000px;}
.y185{bottom:142.200000px;}
.ycc{bottom:142.740000px;}
.yb1{bottom:142.920000px;}
.y112{bottom:143.820000px;}
.y153{bottom:144.900000px;}
.y3a{bottom:148.890000px;}
.y30{bottom:151.380000px;}
.yef{bottom:151.740000px;}
.yfd{bottom:152.820000px;}
.y78{bottom:153.720000px;}
.y184{bottom:160.200000px;}
.ycb{bottom:160.560000px;}
.yb0{bottom:160.740000px;}
.y111{bottom:161.640000px;}
.y152{bottom:162.720000px;}
.y39{bottom:168.690000px;}
.y1b3{bottom:169.200000px;}
.yee{bottom:169.560000px;}
.yfc{bottom:170.640000px;}
.y77{bottom:171.540000px;}
.y183{bottom:178.020000px;}
.y2f{bottom:178.200000px;}
.yca{bottom:178.380000px;}
.yaf{bottom:178.560000px;}
.y110{bottom:179.460000px;}
.y137{bottom:179.640000px;}
.y151{bottom:180.540000px;}
.y1b2{bottom:187.020000px;}
.yed{bottom:187.380000px;}
.yfb{bottom:188.460000px;}
.y38{bottom:188.490000px;}
.y76{bottom:189.360000px;}
.y1a9{bottom:195.840000px;}
.yae{bottom:196.380000px;}
.y10f{bottom:197.280000px;}
.y136{bottom:197.460000px;}
.y150{bottom:198.360000px;}
.y156{bottom:199.260000px;}
.y182{bottom:204.840000px;}
.y2e{bottom:205.020000px;}
.yc9{bottom:205.200000px;}
.yfa{bottom:206.310000px;}
.y75{bottom:207.210000px;}
.y37{bottom:208.290000px;}
.y1a8{bottom:213.690000px;}
.yad{bottom:214.230000px;}
.y32{bottom:215.280000px;}
.y10e{bottom:215.310000px;}
.y14f{bottom:216.210000px;}
.y181{bottom:222.690000px;}
.yc8{bottom:223.230000px;}
.yf9{bottom:224.310000px;}
.y74{bottom:225.210000px;}
.y36{bottom:228.270000px;}
.y2d{bottom:231.870000px;}
.yac{bottom:232.230000px;}
.y10d{bottom:233.130000px;}
.y135{bottom:233.310000px;}
.y15e{bottom:234.210000px;}
.y40{bottom:235.650000px;}
.y180{bottom:240.510000px;}
.yc7{bottom:241.050000px;}
.yf8{bottom:242.130000px;}
.y73{bottom:243.030000px;}
.y14e{bottom:243.210000px;}
.y35{bottom:248.115000px;}
.yab{bottom:250.050000px;}
.y10c{bottom:250.950000px;}
.y134{bottom:251.130000px;}
.y15d{bottom:252.030000px;}
.y17f{bottom:258.510000px;}
.y2c{bottom:258.690000px;}
.yc6{bottom:258.870000px;}
.yf7{bottom:259.950000px;}
.y72{bottom:260.850000px;}
.y14d{bottom:261.030000px;}
.y3f{bottom:264.990000px;}
.yaa{bottom:267.510000px;}
.y119{bottom:267.870000px;}
.y34{bottom:267.915000px;}
.y133{bottom:268.950000px;}
.y15c{bottom:271.830000px;}
.y1a7{bottom:276.330000px;}
.yc5{bottom:276.690000px;}
.yf6{bottom:277.770000px;}
.y71{bottom:278.310000px;}
.y14c{bottom:278.850000px;}
.y17e{bottom:285.330000px;}
.y2b{bottom:285.690000px;}
.y132{bottom:286.770000px;}
.y1a6{bottom:294.150000px;}
.yc4{bottom:294.510000px;}
.ya9{bottom:294.690000px;}
.yf5{bottom:295.590000px;}
.y14b{bottom:296.670000px;}
.y33{bottom:298.155000px;}
.y70{bottom:298.470000px;}
.y17d{bottom:303.150000px;}
.y102{bottom:303.510000px;}
.y131{bottom:304.590000px;}
.y2a{bottom:312.510000px;}
.yf4{bottom:313.410000px;}
.y14a{bottom:314.490000px;}
.y17c{bottom:320.970000px;}
.yec{bottom:321.510000px;}
.y130{bottom:322.410000px;}
.ya8{bottom:330.510000px;}
.yf3{bottom:331.050000px;}
.y6f{bottom:331.410000px;}
.y149{bottom:332.490000px;}
.y17b{bottom:338.790000px;}
.y25{bottom:339.330000px;}
.y12f{bottom:340.410000px;}
.y29{bottom:348.150000px;}
.ya7{bottom:348.330000px;}
.y6e{bottom:349.230000px;}
.y148{bottom:350.310000px;}
.yf2{bottom:351.210000px;}
.y17a{bottom:356.610000px;}
.yc3{bottom:357.150000px;}
.y12e{bottom:358.230000px;}
.y1b1{bottom:365.610000px;}
.y24{bottom:366.150000px;}
.y6d{bottom:367.050000px;}
.y147{bottom:368.130000px;}
.y1a5{bottom:374.610000px;}
.y28{bottom:374.970000px;}
.y12d{bottom:376.050000px;}
.y179{bottom:383.610000px;}
.ya6{bottom:383.970000px;}
.y6c{bottom:384.870000px;}
.y146{bottom:385.950000px;}
.y1a4{bottom:392.430000px;}
.yc2{bottom:392.790000px;}
.y23{bottom:392.970000px;}
.y12c{bottom:393.870000px;}
.y178{bottom:401.430000px;}
.y27{bottom:401.790000px;}
.y10b{bottom:402.690000px;}
.y145{bottom:403.770000px;}
.y1a3{bottom:410.250000px;}
.yc1{bottom:410.610000px;}
.y6b{bottom:411.690000px;}
.y177{bottom:419.250000px;}
.ya5{bottom:419.610000px;}
.y22{bottom:420.150000px;}
.y10a{bottom:420.690000px;}
.y144{bottom:421.590000px;}
.yc0{bottom:428.610000px;}
.y26{bottom:428.790000px;}
.y6a{bottom:429.690000px;}
.y176{bottom:437.070000px;}
.ya4{bottom:437.610000px;}
.y21{bottom:438.150000px;}
.y109{bottom:438.510000px;}
.y143{bottom:439.590000px;}
.ybf{bottom:446.475000px;}
.y69{bottom:447.555000px;}
.y1a2{bottom:454.935000px;}
.ya3{bottom:455.475000px;}
.y20{bottom:455.655000px;}
.y108{bottom:456.375000px;}
.y142{bottom:457.095000px;}
.y175{bottom:463.935000px;}
.ybe{bottom:464.295000px;}
.y68{bottom:465.375000px;}
.y1a1{bottom:472.935000px;}
.ya2{bottom:473.295000px;}
.y107{bottom:473.835000px;}
.y141{bottom:477.255000px;}
.y101{bottom:481.755000px;}
.y174{bottom:481.935000px;}
.yeb{bottom:482.115000px;}
.y12b{bottom:483.195000px;}
.y1a0{bottom:490.755000px;}
.ya1{bottom:491.115000px;}
.y1f{bottom:491.295000px;}
.y106{bottom:491.655000px;}
.y67{bottom:492.195000px;}
.y173{bottom:499.755000px;}
.yea{bottom:499.935000px;}
.y15b{bottom:501.015000px;}
.y140{bottom:502.995000px;}
.y19f{bottom:508.575000px;}
.ya0{bottom:508.935000px;}
.y1e{bottom:509.115000px;}
.y66{bottom:510.015000px;}
.y105{bottom:511.995000px;}
.y1b0{bottom:517.575000px;}
.ye9{bottom:517.935000px;}
.y15a{bottom:518.835000px;}
.y172{bottom:526.575000px;}
.y9f{bottom:526.935000px;}
.y65{bottom:527.835000px;}
.y1d{bottom:528.915000px;}
.y19e{bottom:535.395000px;}
.ye8{bottom:535.755000px;}
.y13f{bottom:535.935000px;}
.y159{bottom:536.835000px;}
.y171{bottom:544.395000px;}
.y9e{bottom:544.755000px;}
.y64{bottom:545.835000px;}
.y1c{bottom:552.675000px;}
.y19d{bottom:553.215000px;}
.ye7{bottom:553.575000px;}
.y13e{bottom:553.755000px;}
.y158{bottom:554.655000px;}
.y170{bottom:562.215000px;}
.ybd{bottom:562.575000px;}
.y63{bottom:563.655000px;}
.y19c{bottom:571.035000px;}
.ye6{bottom:571.395000px;}
.y9d{bottom:571.575000px;}
.y1b{bottom:576.255000px;}
.y16f{bottom:580.035000px;}
.ybc{bottom:580.395000px;}
.y62{bottom:581.475000px;}
.y19b{bottom:589.035000px;}
.y9c{bottom:589.395000px;}
.y1af{bottom:598.035000px;}
.ybb{bottom:598.215000px;}
.y61{bottom:599.295000px;}
.y1a{bottom:602.535000px;}
.y19a{bottom:606.855000px;}
.y16e{bottom:607.035000px;}
.y9b{bottom:607.215000px;}
.y1ae{bottom:615.855000px;}
.yba{bottom:616.035000px;}
.y60{bottom:617.115000px;}
.y16d{bottom:624.855000px;}
.y9a{bottom:625.035000px;}
.y19{bottom:633.495000px;}
.y199{bottom:633.675000px;}
.yb9{bottom:634.035000px;}
.y5f{bottom:635.115000px;}
.y16c{bottom:642.675000px;}
.y99{bottom:643.035000px;}
.y198{bottom:651.495000px;}
.ye5{bottom:651.855000px;}
.y12a{bottom:652.935000px;}
.y16b{bottom:660.495000px;}
.y98{bottom:660.855000px;}
.y5e{bottom:661.935000px;}
.y197{bottom:669.315000px;}
.ye4{bottom:669.675000px;}
.y129{bottom:670.755000px;}
.y1ad{bottom:678.345000px;}
.y97{bottom:678.705000px;}
.y5d{bottom:679.785000px;}
.y18{bottom:682.305000px;}
.y196{bottom:687.165000px;}
.y16a{bottom:687.345000px;}
.ye3{bottom:687.525000px;}
.y128{bottom:688.605000px;}
.y1ac{bottom:696.165000px;}
.y96{bottom:696.525000px;}
.y5c{bottom:697.605000px;}
.y169{bottom:705.165000px;}
.ye2{bottom:705.345000px;}
.y127{bottom:706.425000px;}
.y195{bottom:714.165000px;}
.y95{bottom:714.345000px;}
.y5b{bottom:715.425000px;}
.y116{bottom:722.805000px;}
.ye1{bottom:723.165000px;}
.y126{bottom:724.245000px;}
.y17{bottom:730.725000px;}
.y194{bottom:731.985000px;}
.y94{bottom:732.165000px;}
.y5a{bottom:733.245000px;}
.y115{bottom:740.805000px;}
.y168{bottom:740.985000px;}
.ye0{bottom:741.165000px;}
.y125{bottom:742.245000px;}
.y193{bottom:749.805000px;}
.y93{bottom:750.165000px;}
.y59{bottom:751.245000px;}
.y167{bottom:758.805000px;}
.ydf{bottom:758.985000px;}
.y13d{bottom:759.165000px;}
.y124{bottom:760.065000px;}
.y192{bottom:767.625000px;}
.y92{bottom:767.985000px;}
.y58{bottom:769.065000px;}
.y166{bottom:776.625000px;}
.yde{bottom:776.805000px;}
.y13c{bottom:776.985000px;}
.y123{bottom:777.885000px;}
.y16{bottom:781.305000px;}
.y91{bottom:785.805000px;}
.y57{bottom:786.885000px;}
.y191{bottom:794.445000px;}
.ydd{bottom:794.625000px;}
.y13b{bottom:794.805000px;}
.y122{bottom:795.705000px;}
.y157{bottom:797.685000px;}
.y165{bottom:803.445000px;}
.y90{bottom:803.625000px;}
.y56{bottom:804.705000px;}
.y15{bottom:809.205000px;}
.ydc{bottom:812.445000px;}
.y13a{bottom:812.625000px;}
.y8f{bottom:821.445000px;}
.y55{bottom:822.525000px;}
.y190{bottom:830.265000px;}
.ydb{bottom:830.445000px;}
.y100{bottom:839.085000px;}
.y164{bottom:839.265000px;}
.y8e{bottom:839.445000px;}
.y54{bottom:840.345000px;}
.yda{bottom:847.905000px;}
.y18f{bottom:848.085000px;}
.y139{bottom:848.445000px;}
.y14{bottom:855.285000px;}
.y118{bottom:856.905000px;}
.y163{bottom:857.085000px;}
.y104{bottom:857.265000px;}
.y53{bottom:858.345000px;}
.y8d{bottom:866.265000px;}
.y117{bottom:874.725000px;}
.y18e{bottom:874.905000px;}
.yd9{bottom:875.085000px;}
.y52{bottom:876.165000px;}
.y13{bottom:878.145000px;}
.y162{bottom:883.905000px;}
.y8c{bottom:884.085000px;}
.y18d{bottom:892.725000px;}
.yd8{bottom:892.905000px;}
.y51{bottom:893.985000px;}
.y12{bottom:899.745000px;}
.y161{bottom:901.725000px;}
.y8b{bottom:901.905000px;}
.y18c{bottom:910.590000px;}
.yd7{bottom:910.770000px;}
.y50{bottom:911.850000px;}
.y160{bottom:919.590000px;}
.y8a{bottom:919.770000px;}
.y11{bottom:921.930000px;}
.yd6{bottom:928.590000px;}
.y121{bottom:929.670000px;}
.y89{bottom:937.590000px;}
.y4f{bottom:938.670000px;}
.y10{bottom:944.790000px;}
.y103{bottom:946.230000px;}
.yd5{bottom:946.590000px;}
.y120{bottom:947.670000px;}
.y18b{bottom:955.410000px;}
.y88{bottom:955.590000px;}
.y4e{bottom:956.670000px;}
.yd4{bottom:964.410000px;}
.y11f{bottom:965.490000px;}
.yf{bottom:966.930000px;}
.y18a{bottom:973.230000px;}
.y87{bottom:973.410000px;}
.y4d{bottom:974.490000px;}
.yd3{bottom:982.230000px;}
.y11e{bottom:983.310000px;}
.y189{bottom:991.050000px;}
.y86{bottom:991.230000px;}
.y4c{bottom:992.310000px;}
.yd2{bottom:1000.050000px;}
.y11d{bottom:1001.130000px;}
.y1b5{bottom:1008.510000px;}
.y85{bottom:1009.050000px;}
.y4b{bottom:1010.130000px;}
.ye{bottom:1011.570000px;}
.y15f{bottom:1017.870000px;}
.yb8{bottom:1018.050000px;}
.y11c{bottom:1018.950000px;}
.yd{bottom:1023.630000px;}
.y84{bottom:1026.870000px;}
.y4a{bottom:1027.950000px;}
.yc{bottom:1035.690000px;}
.yb7{bottom:1035.870000px;}
.y11b{bottom:1036.770000px;}
.y83{bottom:1044.870000px;}
.y49{bottom:1045.770000px;}
.yb{bottom:1047.750000px;}
.y188{bottom:1053.690000px;}
.yb6{bottom:1053.870000px;}
.y11a{bottom:1056.750000px;}
.ya{bottom:1061.970000px;}
.y82{bottom:1062.690000px;}
.y48{bottom:1063.770000px;}
.y187{bottom:1071.510000px;}
.yb5{bottom:1071.690000px;}
.y81{bottom:1080.510000px;}
.y47{bottom:1081.590000px;}
.y9{bottom:1087.170000px;}
.yb4{bottom:1089.510000px;}
.yd1{bottom:1098.330000px;}
.y46{bottom:1099.410000px;}
.y80{bottom:1107.330000px;}
.yd0{bottom:1116.150000px;}
.y8{bottom:1116.870000px;}
.y45{bottom:1117.230000px;}
.y7f{bottom:1125.150000px;}
.ycf{bottom:1133.970000px;}
.y44{bottom:1135.050000px;}
.y7e{bottom:1142.970000px;}
.yce{bottom:1152.000000px;}
.y43{bottom:1153.080000px;}
.y7d{bottom:1161.000000px;}
.y7{bottom:1165.860000px;}
.y42{bottom:1170.900000px;}
.y7c{bottom:1178.820000px;}
.y41{bottom:1190.700000px;}
.y7b{bottom:1196.640000px;}
.y1{bottom:1215.000000px;}
.h3{height:31.135500px;}
.h9{height:40.985156px;}
.h15{height:48.410156px;}
.h17{height:52.971680px;}
.h4{height:52.998047px;}
.h5{height:54.421875px;}
.h16{height:55.503491px;}
.h14{height:56.214844px;}
.h12{height:58.621992px;}
.ha{height:58.651172px;}
.hb{height:60.226875px;}
.hc{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:66.757500px;}
.hf{height:72.562500px;}
.h11{height:78.367500px;}
.h13{height:80.949375px;}
.hd{height:82.676953px;}
.h8{height:84.898125px;}
.h7{height:103.038750px;}
.h6{height:108.843750px;}
.h10{height:325.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x14{left:10.800000px;}
.x13{left:39.240000px;}
.x2{left:45.364500px;}
.x15{left:50.040000px;}
.x1{left:54.000000px;}
.x16{left:81.000000px;}
.x19{left:102.276000px;}
.xd{left:107.496000px;}
.x10{left:183.090000px;}
.xe{left:213.150000px;}
.x3{left:222.370500px;}
.xa{left:268.815000px;}
.x4{left:271.510500px;}
.xb{left:287.175000px;}
.x8{left:305.175000px;}
.x11{left:314.355000px;}
.x9{left:364.395000px;}
.xc{left:378.795000px;}
.xf{left:396.795000px;}
.x7{left:446.505000px;}
.x12{left:473.505000px;}
.x17{left:500.505000px;}
.x18{left:527.505000px;}
.x5{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.624000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls18{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.208000pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls16{letter-spacing:4.464640pt;}
.lsc{letter-spacing:10.336000pt;}
.ls1f{letter-spacing:15.520000pt;}
.ls1c{letter-spacing:19.296000pt;}
.lsb{letter-spacing:24.944640pt;}
.ls17{letter-spacing:27.616000pt;}
.ls15{letter-spacing:42.864640pt;}
.ls1b{letter-spacing:43.616000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.280000pt;}
.wsf{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.288000pt;}
.ws13{word-spacing:-12.208000pt;}
.ws10{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.488000pt;}
.wsd{word-spacing:-11.376000pt;}
.ws7{word-spacing:0.000000pt;}
._27{margin-left:-15.887360pt;}
._25{margin-left:-9.696000pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.960000pt;}
._5{width:2.471253pt;}
._7{width:4.245760pt;}
._3{width:5.152640pt;}
._4{width:6.622507pt;}
._6{width:7.525973pt;}
._8{width:8.548480pt;}
._f{width:10.272000pt;}
._9{width:12.960000pt;}
._c{width:13.872000pt;}
._a{width:15.120000pt;}
._b{width:16.128000pt;}
._1e{width:17.376000pt;}
._1f{width:18.288000pt;}
._d{width:19.584000pt;}
._e{width:20.506667pt;}
._12{width:21.973333pt;}
._17{width:22.906667pt;}
._2a{width:23.797333pt;}
._10{width:24.720000pt;}
._11{width:26.016000pt;}
._18{width:27.024000pt;}
._16{width:28.704000pt;}
._15{width:29.856000pt;}
._21{width:30.864000pt;}
._23{width:31.872000pt;}
._22{width:32.832000pt;}
._1a{width:34.032000pt;}
._1b{width:35.392000pt;}
._29{width:36.288000pt;}
._1d{width:37.200000pt;}
._1c{width:38.544000pt;}
._26{width:40.176000pt;}
._13{width:41.232000pt;}
._14{width:42.288000pt;}
._19{width:43.200000pt;}
._24{width:44.202667pt;}
._20{width:45.264000pt;}
._2f{width:46.330667pt;}
._41{width:48.000000pt;}
._42{width:49.488000pt;}
._2b{width:50.832000pt;}
._3a{width:58.464000pt;}
._2d{width:59.568000pt;}
._2e{width:60.864000pt;}
._30{width:63.984000pt;}
._31{width:65.136000pt;}
._28{width:82.346667pt;}
._45{width:93.616000pt;}
._46{width:94.560000pt;}
._33{width:102.240000pt;}
._3f{width:103.312000pt;}
._3e{width:104.208000pt;}
._3c{width:109.317333pt;}
._3b{width:110.410667pt;}
._3d{width:147.264000pt;}
._2c{width:150.464000pt;}
._36{width:156.672000pt;}
._40{width:158.592000pt;}
._34{width:261.472000pt;}
._35{width:277.392000pt;}
._44{width:298.464000pt;}
._43{width:299.616000pt;}
._32{width:305.402667pt;}
._38{width:330.506667pt;}
._39{width:807.024000pt;}
._37{width:811.930667pt;}
._2{width:1039.626667pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.720000pt;}
.y5{bottom:13.920000pt;}
.y3{bottom:16.800000pt;}
.y6{bottom:35.360000pt;}
.y2{bottom:53.920000pt;}
.y3e{bottom:61.786667pt;}
.y3d{bottom:79.386667pt;}
.y1b4{bottom:94.720000pt;}
.yb3{bottom:95.200000pt;}
.yff{bottom:95.680000pt;}
.y114{bottom:96.000000pt;}
.y155{bottom:96.960000pt;}
.y3c{bottom:96.986667pt;}
.y1ab{bottom:102.560000pt;}
.yf1{bottom:103.200000pt;}
.y138{bottom:104.000000pt;}
.y7a{bottom:104.960000pt;}
.y186{bottom:110.560000pt;}
.y31{bottom:110.720000pt;}
.ycd{bottom:111.040000pt;}
.yb2{bottom:111.200000pt;}
.y113{bottom:112.000000pt;}
.y154{bottom:112.960000pt;}
.y3b{bottom:114.746667pt;}
.y1aa{bottom:118.400000pt;}
.yf0{bottom:119.040000pt;}
.yfe{bottom:120.000000pt;}
.y79{bottom:120.800000pt;}
.y185{bottom:126.400000pt;}
.ycc{bottom:126.880000pt;}
.yb1{bottom:127.040000pt;}
.y112{bottom:127.840000pt;}
.y153{bottom:128.800000pt;}
.y3a{bottom:132.346667pt;}
.y30{bottom:134.560000pt;}
.yef{bottom:134.880000pt;}
.yfd{bottom:135.840000pt;}
.y78{bottom:136.640000pt;}
.y184{bottom:142.400000pt;}
.ycb{bottom:142.720000pt;}
.yb0{bottom:142.880000pt;}
.y111{bottom:143.680000pt;}
.y152{bottom:144.640000pt;}
.y39{bottom:149.946667pt;}
.y1b3{bottom:150.400000pt;}
.yee{bottom:150.720000pt;}
.yfc{bottom:151.680000pt;}
.y77{bottom:152.480000pt;}
.y183{bottom:158.240000pt;}
.y2f{bottom:158.400000pt;}
.yca{bottom:158.560000pt;}
.yaf{bottom:158.720000pt;}
.y110{bottom:159.520000pt;}
.y137{bottom:159.680000pt;}
.y151{bottom:160.480000pt;}
.y1b2{bottom:166.240000pt;}
.yed{bottom:166.560000pt;}
.yfb{bottom:167.520000pt;}
.y38{bottom:167.546667pt;}
.y76{bottom:168.320000pt;}
.y1a9{bottom:174.080000pt;}
.yae{bottom:174.560000pt;}
.y10f{bottom:175.360000pt;}
.y136{bottom:175.520000pt;}
.y150{bottom:176.320000pt;}
.y156{bottom:177.120000pt;}
.y182{bottom:182.080000pt;}
.y2e{bottom:182.240000pt;}
.yc9{bottom:182.400000pt;}
.yfa{bottom:183.386667pt;}
.y75{bottom:184.186667pt;}
.y37{bottom:185.146667pt;}
.y1a8{bottom:189.946667pt;}
.yad{bottom:190.426667pt;}
.y32{bottom:191.360000pt;}
.y10e{bottom:191.386667pt;}
.y14f{bottom:192.186667pt;}
.y181{bottom:197.946667pt;}
.yc8{bottom:198.426667pt;}
.yf9{bottom:199.386667pt;}
.y74{bottom:200.186667pt;}
.y36{bottom:202.906667pt;}
.y2d{bottom:206.106667pt;}
.yac{bottom:206.426667pt;}
.y10d{bottom:207.226667pt;}
.y135{bottom:207.386667pt;}
.y15e{bottom:208.186667pt;}
.y40{bottom:209.466667pt;}
.y180{bottom:213.786667pt;}
.yc7{bottom:214.266667pt;}
.yf8{bottom:215.226667pt;}
.y73{bottom:216.026667pt;}
.y14e{bottom:216.186667pt;}
.y35{bottom:220.546667pt;}
.yab{bottom:222.266667pt;}
.y10c{bottom:223.066667pt;}
.y134{bottom:223.226667pt;}
.y15d{bottom:224.026667pt;}
.y17f{bottom:229.786667pt;}
.y2c{bottom:229.946667pt;}
.yc6{bottom:230.106667pt;}
.yf7{bottom:231.066667pt;}
.y72{bottom:231.866667pt;}
.y14d{bottom:232.026667pt;}
.y3f{bottom:235.546667pt;}
.yaa{bottom:237.786667pt;}
.y119{bottom:238.106667pt;}
.y34{bottom:238.146667pt;}
.y133{bottom:239.066667pt;}
.y15c{bottom:241.626667pt;}
.y1a7{bottom:245.626667pt;}
.yc5{bottom:245.946667pt;}
.yf6{bottom:246.906667pt;}
.y71{bottom:247.386667pt;}
.y14c{bottom:247.866667pt;}
.y17e{bottom:253.626667pt;}
.y2b{bottom:253.946667pt;}
.y132{bottom:254.906667pt;}
.y1a6{bottom:261.466667pt;}
.yc4{bottom:261.786667pt;}
.ya9{bottom:261.946667pt;}
.yf5{bottom:262.746667pt;}
.y14b{bottom:263.706667pt;}
.y33{bottom:265.026667pt;}
.y70{bottom:265.306667pt;}
.y17d{bottom:269.466667pt;}
.y102{bottom:269.786667pt;}
.y131{bottom:270.746667pt;}
.y2a{bottom:277.786667pt;}
.yf4{bottom:278.586667pt;}
.y14a{bottom:279.546667pt;}
.y17c{bottom:285.306667pt;}
.yec{bottom:285.786667pt;}
.y130{bottom:286.586667pt;}
.ya8{bottom:293.786667pt;}
.yf3{bottom:294.266667pt;}
.y6f{bottom:294.586667pt;}
.y149{bottom:295.546667pt;}
.y17b{bottom:301.146667pt;}
.y25{bottom:301.626667pt;}
.y12f{bottom:302.586667pt;}
.y29{bottom:309.466667pt;}
.ya7{bottom:309.626667pt;}
.y6e{bottom:310.426667pt;}
.y148{bottom:311.386667pt;}
.yf2{bottom:312.186667pt;}
.y17a{bottom:316.986667pt;}
.yc3{bottom:317.466667pt;}
.y12e{bottom:318.426667pt;}
.y1b1{bottom:324.986667pt;}
.y24{bottom:325.466667pt;}
.y6d{bottom:326.266667pt;}
.y147{bottom:327.226667pt;}
.y1a5{bottom:332.986667pt;}
.y28{bottom:333.306667pt;}
.y12d{bottom:334.266667pt;}
.y179{bottom:340.986667pt;}
.ya6{bottom:341.306667pt;}
.y6c{bottom:342.106667pt;}
.y146{bottom:343.066667pt;}
.y1a4{bottom:348.826667pt;}
.yc2{bottom:349.146667pt;}
.y23{bottom:349.306667pt;}
.y12c{bottom:350.106667pt;}
.y178{bottom:356.826667pt;}
.y27{bottom:357.146667pt;}
.y10b{bottom:357.946667pt;}
.y145{bottom:358.906667pt;}
.y1a3{bottom:364.666667pt;}
.yc1{bottom:364.986667pt;}
.y6b{bottom:365.946667pt;}
.y177{bottom:372.666667pt;}
.ya5{bottom:372.986667pt;}
.y22{bottom:373.466667pt;}
.y10a{bottom:373.946667pt;}
.y144{bottom:374.746667pt;}
.yc0{bottom:380.986667pt;}
.y26{bottom:381.146667pt;}
.y6a{bottom:381.946667pt;}
.y176{bottom:388.506667pt;}
.ya4{bottom:388.986667pt;}
.y21{bottom:389.466667pt;}
.y109{bottom:389.786667pt;}
.y143{bottom:390.746667pt;}
.ybf{bottom:396.866667pt;}
.y69{bottom:397.826667pt;}
.y1a2{bottom:404.386667pt;}
.ya3{bottom:404.866667pt;}
.y20{bottom:405.026667pt;}
.y108{bottom:405.666667pt;}
.y142{bottom:406.306667pt;}
.y175{bottom:412.386667pt;}
.ybe{bottom:412.706667pt;}
.y68{bottom:413.666667pt;}
.y1a1{bottom:420.386667pt;}
.ya2{bottom:420.706667pt;}
.y107{bottom:421.186667pt;}
.y141{bottom:424.226667pt;}
.y101{bottom:428.226667pt;}
.y174{bottom:428.386667pt;}
.yeb{bottom:428.546667pt;}
.y12b{bottom:429.506667pt;}
.y1a0{bottom:436.226667pt;}
.ya1{bottom:436.546667pt;}
.y1f{bottom:436.706667pt;}
.y106{bottom:437.026667pt;}
.y67{bottom:437.506667pt;}
.y173{bottom:444.226667pt;}
.yea{bottom:444.386667pt;}
.y15b{bottom:445.346667pt;}
.y140{bottom:447.106667pt;}
.y19f{bottom:452.066667pt;}
.ya0{bottom:452.386667pt;}
.y1e{bottom:452.546667pt;}
.y66{bottom:453.346667pt;}
.y105{bottom:455.106667pt;}
.y1b0{bottom:460.066667pt;}
.ye9{bottom:460.386667pt;}
.y15a{bottom:461.186667pt;}
.y172{bottom:468.066667pt;}
.y9f{bottom:468.386667pt;}
.y65{bottom:469.186667pt;}
.y1d{bottom:470.146667pt;}
.y19e{bottom:475.906667pt;}
.ye8{bottom:476.226667pt;}
.y13f{bottom:476.386667pt;}
.y159{bottom:477.186667pt;}
.y171{bottom:483.906667pt;}
.y9e{bottom:484.226667pt;}
.y64{bottom:485.186667pt;}
.y1c{bottom:491.266667pt;}
.y19d{bottom:491.746667pt;}
.ye7{bottom:492.066667pt;}
.y13e{bottom:492.226667pt;}
.y158{bottom:493.026667pt;}
.y170{bottom:499.746667pt;}
.ybd{bottom:500.066667pt;}
.y63{bottom:501.026667pt;}
.y19c{bottom:507.586667pt;}
.ye6{bottom:507.906667pt;}
.y9d{bottom:508.066667pt;}
.y1b{bottom:512.226667pt;}
.y16f{bottom:515.586667pt;}
.ybc{bottom:515.906667pt;}
.y62{bottom:516.866667pt;}
.y19b{bottom:523.586667pt;}
.y9c{bottom:523.906667pt;}
.y1af{bottom:531.586667pt;}
.ybb{bottom:531.746667pt;}
.y61{bottom:532.706667pt;}
.y1a{bottom:535.586667pt;}
.y19a{bottom:539.426667pt;}
.y16e{bottom:539.586667pt;}
.y9b{bottom:539.746667pt;}
.y1ae{bottom:547.426667pt;}
.yba{bottom:547.586667pt;}
.y60{bottom:548.546667pt;}
.y16d{bottom:555.426667pt;}
.y9a{bottom:555.586667pt;}
.y19{bottom:563.106667pt;}
.y199{bottom:563.266667pt;}
.yb9{bottom:563.586667pt;}
.y5f{bottom:564.546667pt;}
.y16c{bottom:571.266667pt;}
.y99{bottom:571.586667pt;}
.y198{bottom:579.106667pt;}
.ye5{bottom:579.426667pt;}
.y12a{bottom:580.386667pt;}
.y16b{bottom:587.106667pt;}
.y98{bottom:587.426667pt;}
.y5e{bottom:588.386667pt;}
.y197{bottom:594.946667pt;}
.ye4{bottom:595.266667pt;}
.y129{bottom:596.226667pt;}
.y1ad{bottom:602.973333pt;}
.y97{bottom:603.293333pt;}
.y5d{bottom:604.253333pt;}
.y18{bottom:606.493333pt;}
.y196{bottom:610.813333pt;}
.y16a{bottom:610.973333pt;}
.ye3{bottom:611.133333pt;}
.y128{bottom:612.093333pt;}
.y1ac{bottom:618.813333pt;}
.y96{bottom:619.133333pt;}
.y5c{bottom:620.093333pt;}
.y169{bottom:626.813333pt;}
.ye2{bottom:626.973333pt;}
.y127{bottom:627.933333pt;}
.y195{bottom:634.813333pt;}
.y95{bottom:634.973333pt;}
.y5b{bottom:635.933333pt;}
.y116{bottom:642.493333pt;}
.ye1{bottom:642.813333pt;}
.y126{bottom:643.773333pt;}
.y17{bottom:649.533333pt;}
.y194{bottom:650.653333pt;}
.y94{bottom:650.813333pt;}
.y5a{bottom:651.773333pt;}
.y115{bottom:658.493333pt;}
.y168{bottom:658.653333pt;}
.ye0{bottom:658.813333pt;}
.y125{bottom:659.773333pt;}
.y193{bottom:666.493333pt;}
.y93{bottom:666.813333pt;}
.y59{bottom:667.773333pt;}
.y167{bottom:674.493333pt;}
.ydf{bottom:674.653333pt;}
.y13d{bottom:674.813333pt;}
.y124{bottom:675.613333pt;}
.y192{bottom:682.333333pt;}
.y92{bottom:682.653333pt;}
.y58{bottom:683.613333pt;}
.y166{bottom:690.333333pt;}
.yde{bottom:690.493333pt;}
.y13c{bottom:690.653333pt;}
.y123{bottom:691.453333pt;}
.y16{bottom:694.493333pt;}
.y91{bottom:698.493333pt;}
.y57{bottom:699.453333pt;}
.y191{bottom:706.173333pt;}
.ydd{bottom:706.333333pt;}
.y13b{bottom:706.493333pt;}
.y122{bottom:707.293333pt;}
.y157{bottom:709.053333pt;}
.y165{bottom:714.173333pt;}
.y90{bottom:714.333333pt;}
.y56{bottom:715.293333pt;}
.y15{bottom:719.293333pt;}
.ydc{bottom:722.173333pt;}
.y13a{bottom:722.333333pt;}
.y8f{bottom:730.173333pt;}
.y55{bottom:731.133333pt;}
.y190{bottom:738.013333pt;}
.ydb{bottom:738.173333pt;}
.y100{bottom:745.853333pt;}
.y164{bottom:746.013333pt;}
.y8e{bottom:746.173333pt;}
.y54{bottom:746.973333pt;}
.yda{bottom:753.693333pt;}
.y18f{bottom:753.853333pt;}
.y139{bottom:754.173333pt;}
.y14{bottom:760.253333pt;}
.y118{bottom:761.693333pt;}
.y163{bottom:761.853333pt;}
.y104{bottom:762.013333pt;}
.y53{bottom:762.973333pt;}
.y8d{bottom:770.013333pt;}
.y117{bottom:777.533333pt;}
.y18e{bottom:777.693333pt;}
.yd9{bottom:777.853333pt;}
.y52{bottom:778.813333pt;}
.y13{bottom:780.573333pt;}
.y162{bottom:785.693333pt;}
.y8c{bottom:785.853333pt;}
.y18d{bottom:793.533333pt;}
.yd8{bottom:793.693333pt;}
.y51{bottom:794.653333pt;}
.y12{bottom:799.773333pt;}
.y161{bottom:801.533333pt;}
.y8b{bottom:801.693333pt;}
.y18c{bottom:809.413333pt;}
.yd7{bottom:809.573333pt;}
.y50{bottom:810.533333pt;}
.y160{bottom:817.413333pt;}
.y8a{bottom:817.573333pt;}
.y11{bottom:819.493333pt;}
.yd6{bottom:825.413333pt;}
.y121{bottom:826.373333pt;}
.y89{bottom:833.413333pt;}
.y4f{bottom:834.373333pt;}
.y10{bottom:839.813333pt;}
.y103{bottom:841.093333pt;}
.yd5{bottom:841.413333pt;}
.y120{bottom:842.373333pt;}
.y18b{bottom:849.253333pt;}
.y88{bottom:849.413333pt;}
.y4e{bottom:850.373333pt;}
.yd4{bottom:857.253333pt;}
.y11f{bottom:858.213333pt;}
.yf{bottom:859.493333pt;}
.y18a{bottom:865.093333pt;}
.y87{bottom:865.253333pt;}
.y4d{bottom:866.213333pt;}
.yd3{bottom:873.093333pt;}
.y11e{bottom:874.053333pt;}
.y189{bottom:880.933333pt;}
.y86{bottom:881.093333pt;}
.y4c{bottom:882.053333pt;}
.yd2{bottom:888.933333pt;}
.y11d{bottom:889.893333pt;}
.y1b5{bottom:896.453333pt;}
.y85{bottom:896.933333pt;}
.y4b{bottom:897.893333pt;}
.ye{bottom:899.173333pt;}
.y15f{bottom:904.773333pt;}
.yb8{bottom:904.933333pt;}
.y11c{bottom:905.733333pt;}
.yd{bottom:909.893333pt;}
.y84{bottom:912.773333pt;}
.y4a{bottom:913.733333pt;}
.yc{bottom:920.613333pt;}
.yb7{bottom:920.773333pt;}
.y11b{bottom:921.573333pt;}
.y83{bottom:928.773333pt;}
.y49{bottom:929.573333pt;}
.yb{bottom:931.333333pt;}
.y188{bottom:936.613333pt;}
.yb6{bottom:936.773333pt;}
.y11a{bottom:939.333333pt;}
.ya{bottom:943.973333pt;}
.y82{bottom:944.613333pt;}
.y48{bottom:945.573333pt;}
.y187{bottom:952.453333pt;}
.yb5{bottom:952.613333pt;}
.y81{bottom:960.453333pt;}
.y47{bottom:961.413333pt;}
.y9{bottom:966.373333pt;}
.yb4{bottom:968.453333pt;}
.yd1{bottom:976.293333pt;}
.y46{bottom:977.253333pt;}
.y80{bottom:984.293333pt;}
.yd0{bottom:992.133333pt;}
.y8{bottom:992.773333pt;}
.y45{bottom:993.093333pt;}
.y7f{bottom:1000.133333pt;}
.ycf{bottom:1007.973333pt;}
.y44{bottom:1008.933333pt;}
.y7e{bottom:1015.973333pt;}
.yce{bottom:1024.000000pt;}
.y43{bottom:1024.960000pt;}
.y7d{bottom:1032.000000pt;}
.y7{bottom:1036.320000pt;}
.y42{bottom:1040.800000pt;}
.y7c{bottom:1047.840000pt;}
.y41{bottom:1058.400000pt;}
.y7b{bottom:1063.680000pt;}
.y1{bottom:1080.000000pt;}
.h3{height:27.676000pt;}
.h9{height:36.431250pt;}
.h15{height:43.031250pt;}
.h17{height:47.085938pt;}
.h4{height:47.109375pt;}
.h5{height:48.375000pt;}
.h16{height:49.336436pt;}
.h14{height:49.968750pt;}
.h12{height:52.108438pt;}
.ha{height:52.134375pt;}
.hb{height:53.535000pt;}
.hc{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:59.340000pt;}
.hf{height:64.500000pt;}
.h11{height:69.660000pt;}
.h13{height:71.955000pt;}
.hd{height:73.490625pt;}
.h8{height:75.465000pt;}
.h7{height:91.590000pt;}
.h6{height:96.750000pt;}
.h10{height:289.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x14{left:9.600000pt;}
.x13{left:34.880000pt;}
.x2{left:40.324000pt;}
.x15{left:44.480000pt;}
.x1{left:48.000000pt;}
.x16{left:72.000000pt;}
.x19{left:90.912000pt;}
.xd{left:95.552000pt;}
.x10{left:162.746667pt;}
.xe{left:189.466667pt;}
.x3{left:197.662667pt;}
.xa{left:238.946667pt;}
.x4{left:241.342667pt;}
.xb{left:255.266667pt;}
.x8{left:271.266667pt;}
.x11{left:279.426667pt;}
.x9{left:323.906667pt;}
.xc{left:336.706667pt;}
.xf{left:352.706667pt;}
.x7{left:396.893333pt;}
.x12{left:420.893333pt;}
.x17{left:444.893333pt;}
.x18{left:468.893333pt;}
.x5{left:682.213333pt;}
}




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