
    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_3b7f89814795fc3a7a2c6a4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020996;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_7078c993abd568726c72e921.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.138667;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_d5c014bb23e5abff0f0cbb7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988770;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_63df482ec6bf1eaeffb17230.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_ca3cbc46432ff053152c7f56.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.883301;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_ecd73bf6eb59807053761cb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_40c532fd73f295bd4f0ecad2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989258;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_86c52d75d6082dd3de4393fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747070;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_373391c5f74aefd2a2127ae1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989258;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_549c602619871dde43aa7e02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988770;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_e3420a3753ca2de0ce2b6ce4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.055176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1571ba673ef573b55712ecbb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.902344;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_97fee2e707d5155895c5aeed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936035;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_421402a8e82e59a59cdd4ff2.woff2')format("woff");}.fff{font-family:fff;line-height:0.883301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.552000px;}
.ls10{letter-spacing:92.856000px;}
.ls12{letter-spacing:96.456000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(57,57,57),0 0.015em rgb(57,57,57),0.015em 0 rgb(57,57,57),0 -0.015em  rgb(57,57,57);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(57,57,57);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.360000px;}
.wsa{word-spacing:-72.288000px;}
.ws7{word-spacing:-72.000000px;}
.ws6{word-spacing:-71.928000px;}
.ws12{word-spacing:-71.640000px;}
.ws4{word-spacing:-21.600000px;}
.ws3{word-spacing:-21.528000px;}
.wsd{word-spacing:-20.376000px;}
.ws11{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.160000px;}
.wsc{word-spacing:-20.088000px;}
.ws2{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.944000px;}
.ws8{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.800000px;}
.wsf{word-spacing:-19.656000px;}
.ws10{word-spacing:-19.584000px;}
.wse{word-spacing:-15.408000px;}
.ws1{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-19.032000px;}
._42{margin-left:-16.488000px;}
._7{margin-left:-15.384000px;}
._3{margin-left:-12.240000px;}
._9{margin-left:-10.632000px;}
._8{margin-left:-9.216000px;}
._a{margin-left:-8.184000px;}
._4{margin-left:-6.816000px;}
._f{margin-left:-4.848000px;}
._2{margin-left:-3.072000px;}
._6{margin-left:-1.008000px;}
._0{width:1.198800px;}
._1{width:2.568000px;}
._1c{width:4.656000px;}
._3e{width:8.832000px;}
._3c{width:12.336000px;}
._32{width:13.824000px;}
._23{width:14.952000px;}
._30{width:16.416000px;}
._25{width:17.544000px;}
._13{width:24.816000px;}
._2a{width:28.728000px;}
._46{width:32.136000px;}
._22{width:34.176000px;}
._26{width:36.864000px;}
._41{width:40.176000px;}
._1f{width:42.960000px;}
._1e{width:46.848000px;}
._1d{width:52.536000px;}
._12{width:58.368000px;}
._11{width:59.880000px;}
._2b{width:61.608000px;}
._36{width:63.624000px;}
._2d{width:65.928000px;}
._44{width:68.592000px;}
._3a{width:71.688000px;}
._33{width:73.344000px;}
._47{width:76.800000px;}
._20{width:78.600000px;}
._29{width:80.400000px;}
._40{width:83.784000px;}
._15{width:88.824000px;}
._35{width:94.872000px;}
._48{width:96.240000px;}
._43{width:97.320000px;}
._19{width:98.856000px;}
._34{width:102.432000px;}
._2f{width:104.160000px;}
._1b{width:113.520000px;}
._16{width:115.392000px;}
._28{width:118.704000px;}
._3b{width:122.808000px;}
._c{width:124.896000px;}
._3d{width:136.944000px;}
._10{width:138.240000px;}
._38{width:140.520000px;}
._37{width:144.840000px;}
._24{width:149.016000px;}
._2e{width:152.256000px;}
._27{width:153.264000px;}
._17{width:154.344000px;}
._d{width:156.072000px;}
._18{width:159.528000px;}
._21{width:161.088000px;}
._45{width:164.496000px;}
._2c{width:168.408000px;}
._14{width:171.552000px;}
._31{width:172.752000px;}
._e{width:177.192000px;}
._3f{width:183.576000px;}
._b{width:191.568000px;}
._39{width:194.472000px;}
._1a{width:196.176000px;}
.fc2{color:rgb(244,117,23);}
.fc1{color:rgb(57,57,57);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:44.370000px;}
.y1{bottom:66.960000px;}
.y1de{bottom:95.130000px;}
.y16c{bottom:96.300000px;}
.y1b2{bottom:96.390000px;}
.y1cc{bottom:96.840000px;}
.y12f{bottom:97.200000px;}
.y182{bottom:97.560000px;}
.y163{bottom:97.650000px;}
.y64{bottom:98.460000px;}
.yc7{bottom:98.820000px;}
.ya7{bottom:98.910000px;}
.y179{bottom:100.890000px;}
.y10c{bottom:107.370000px;}
.y24{bottom:109.800000px;}
.y86{bottom:110.790000px;}
.y195{bottom:110.880000px;}
.y1dd{bottom:117.180000px;}
.y16b{bottom:118.440000px;}
.y12e{bottom:119.250000px;}
.y140{bottom:119.700000px;}
.y192{bottom:120.150000px;}
.y63{bottom:120.600000px;}
.y15f{bottom:120.780000px;}
.yc6{bottom:120.870000px;}
.ya6{bottom:120.960000px;}
.ybd{bottom:121.050000px;}
.y158{bottom:122.940000px;}
.y178{bottom:123.030000px;}
.y1e8{bottom:127.890000px;}
.y1e7{bottom:129.690000px;}
.y10b{bottom:130.320000px;}
.y1bb{bottom:131.580000px;}
.y23{bottom:131.850000px;}
.y85{bottom:132.840000px;}
.y180{bottom:132.930000px;}
.y1d9{bottom:139.230000px;}
.y1e2{bottom:139.590000px;}
.y16a{bottom:140.490000px;}
.y12d{bottom:141.300000px;}
.y1a0{bottom:141.750000px;}
.ydd{bottom:141.840000px;}
.y191{bottom:142.200000px;}
.y62{bottom:142.650000px;}
.y15e{bottom:142.830000px;}
.yf3{bottom:142.920000px;}
.ya5{bottom:143.010000px;}
.ybc{bottom:143.100000px;}
.y157{bottom:144.990000px;}
.y177{bottom:145.080000px;}
.y47{bottom:150.030000px;}
.y10a{bottom:152.370000px;}
.y1ba{bottom:153.720000px;}
.y22{bottom:153.900000px;}
.y84{bottom:154.980000px;}
.y1d8{bottom:161.370000px;}
.y1ce{bottom:161.640000px;}
.y169{bottom:162.540000px;}
.y1cb{bottom:162.630000px;}
.y12c{bottom:163.440000px;}
.y19f{bottom:163.800000px;}
.ydc{bottom:163.890000px;}
.y190{bottom:164.250000px;}
.y61{bottom:164.700000px;}
.yf2{bottom:164.970000px;}
.ya4{bottom:165.060000px;}
.ybb{bottom:165.150000px;}
.y156{bottom:167.040000px;}
.y176{bottom:167.130000px;}
.y46{bottom:172.080000px;}
.y1e1{bottom:173.880000px;}
.y109{bottom:174.420000px;}
.y1b9{bottom:175.770000px;}
.y21{bottom:175.950000px;}
.y83{bottom:177.030000px;}
.y1d7{bottom:183.420000px;}
.y1bd{bottom:183.780000px;}
.y168{bottom:184.590000px;}
.y1ca{bottom:184.680000px;}
.y12b{bottom:185.490000px;}
.ydb{bottom:185.940000px;}
.y18f{bottom:186.390000px;}
.y60{bottom:186.750000px;}
.y15d{bottom:187.020000px;}
.ya3{bottom:187.110000px;}
.yba{bottom:187.200000px;}
.y155{bottom:189.180000px;}
.y45{bottom:194.130000px;}
.y1e4{bottom:195.930000px;}
.y1cd{bottom:196.020000px;}
.y108{bottom:197.370000px;}
.y20{bottom:198.090000px;}
.y82{bottom:199.080000px;}
.y17f{bottom:199.170000px;}
.y1b8{bottom:204.480000px;}
.y1d6{bottom:205.470000px;}
.y1e0{bottom:205.830000px;}
.y167{bottom:206.640000px;}
.y1b1{bottom:206.730000px;}
.y12a{bottom:207.540000px;}
.yda{bottom:207.990000px;}
.y18e{bottom:208.440000px;}
.y5f{bottom:208.800000px;}
.y15c{bottom:209.070000px;}
.yc5{bottom:209.160000px;}
.ya2{bottom:209.250000px;}
.y154{bottom:211.230000px;}
.y175{bottom:211.320000px;}
.y44{bottom:216.180000px;}
.y1bc{bottom:218.070000px;}
.y107{bottom:219.420000px;}
.y1f{bottom:220.140000px;}
.y81{bottom:221.130000px;}
.y17e{bottom:221.220000px;}
.y1d5{bottom:227.520000px;}
.y1b0{bottom:228.810000px;}
.y129{bottom:229.620000px;}
.yd9{bottom:230.070000px;}
.y18d{bottom:230.520000px;}
.y5e{bottom:230.970000px;}
.y15b{bottom:231.150000px;}
.yc4{bottom:231.240000px;}
.ya1{bottom:231.330000px;}
.yb9{bottom:231.420000px;}
.y153{bottom:233.310000px;}
.y174{bottom:233.400000px;}
.y43{bottom:238.350000px;}
.y1b7{bottom:238.890000px;}
.y1df{bottom:240.150000px;}
.y106{bottom:241.590000px;}
.y1e{bottom:242.220000px;}
.y80{bottom:243.300000px;}
.y1d4{bottom:249.600000px;}
.y1af{bottom:250.860000px;}
.y1c9{bottom:250.950000px;}
.y128{bottom:251.760000px;}
.y19e{bottom:252.120000px;}
.yd8{bottom:252.210000px;}
.y18c{bottom:252.570000px;}
.y5d{bottom:253.020000px;}
.y15a{bottom:253.200000px;}
.yf1{bottom:253.290000px;}
.ya0{bottom:253.380000px;}
.yb8{bottom:253.470000px;}
.y152{bottom:255.360000px;}
.y173{bottom:255.450000px;}
.y42{bottom:260.400000px;}
.y105{bottom:263.640000px;}
.y1d{bottom:264.270000px;}
.y7f{bottom:265.350000px;}
.y1d3{bottom:271.740000px;}
.y1ae{bottom:272.910000px;}
.y1c8{bottom:273.000000px;}
.y127{bottom:273.810000px;}
.yd7{bottom:274.260000px;}
.y18b{bottom:274.620000px;}
.y166{bottom:274.710000px;}
.y5c{bottom:275.070000px;}
.yf0{bottom:275.340000px;}
.y9f{bottom:275.430000px;}
.yb7{bottom:275.520000px;}
.y151{bottom:277.410000px;}
.y172{bottom:277.500000px;}
.y41{bottom:282.450000px;}
.y104{bottom:285.690000px;}
.y1c{bottom:286.410000px;}
.y7e{bottom:287.400000px;}
.y1d2{bottom:293.790000px;}
.y1ad{bottom:295.050000px;}
.y126{bottom:295.860000px;}
.yd6{bottom:296.310000px;}
.y165{bottom:296.760000px;}
.y5b{bottom:297.120000px;}
.y159{bottom:297.390000px;}
.y9e{bottom:297.480000px;}
.yb6{bottom:297.570000px;}
.y150{bottom:299.550000px;}
.y40{bottom:304.500000px;}
.y103{bottom:307.740000px;}
.y1b{bottom:308.460000px;}
.y7d{bottom:309.450000px;}
.y17d{bottom:309.540000px;}
.y1d1{bottom:315.840000px;}
.y198{bottom:316.200000px;}
.y1ac{bottom:317.100000px;}
.y125{bottom:317.910000px;}
.yd5{bottom:318.360000px;}
.y13f{bottom:318.810000px;}
.y5a{bottom:319.170000px;}
.yc3{bottom:319.530000px;}
.y9d{bottom:319.620000px;}
.y164{bottom:319.710000px;}
.y14f{bottom:321.600000px;}
.y171{bottom:321.690000px;}
.y3f{bottom:326.550000px;}
.y102{bottom:329.790000px;}
.y1a{bottom:330.510000px;}
.y7c{bottom:331.500000px;}
.y17c{bottom:331.590000px;}
.y1d0{bottom:337.890000px;}
.y194{bottom:338.250000px;}
.y1ab{bottom:339.150000px;}
.y124{bottom:339.960000px;}
.y19d{bottom:340.410000px;}
.yd4{bottom:340.500000px;}
.y13e{bottom:340.860000px;}
.yef{bottom:341.580000px;}
.y9c{bottom:341.670000px;}
.yb5{bottom:341.760000px;}
.y14e{bottom:343.650000px;}
.y170{bottom:343.740000px;}
.y3e{bottom:348.690000px;}
.y59{bottom:349.140000px;}
.y197{bottom:350.490000px;}
.y101{bottom:351.930000px;}
.y19{bottom:352.560000px;}
.y7b{bottom:353.640000px;}
.y1cf{bottom:359.940000px;}
.y1aa{bottom:361.200000px;}
.y1c7{bottom:361.290000px;}
.y123{bottom:362.100000px;}
.y19c{bottom:362.460000px;}
.yd3{bottom:362.550000px;}
.y13d{bottom:362.910000px;}
.yee{bottom:363.630000px;}
.y9b{bottom:363.720000px;}
.yb4{bottom:363.810000px;}
.y14d{bottom:365.700000px;}
.y16f{bottom:365.790000px;}
.y3d{bottom:370.740000px;}
.y193{bottom:372.540000px;}
.y100{bottom:373.980000px;}
.y18{bottom:374.610000px;}
.y7a{bottom:375.690000px;}
.y58{bottom:379.020000px;}
.y1dc{bottom:382.080000px;}
.y17b{bottom:382.440000px;}
.y1a9{bottom:383.250000px;}
.y1c6{bottom:383.340000px;}
.y122{bottom:384.150000px;}
.yd2{bottom:384.600000px;}
.y13c{bottom:384.960000px;}
.y196{bottom:385.680000px;}
.y9a{bottom:385.770000px;}
.yb3{bottom:385.860000px;}
.y14c{bottom:387.750000px;}
.y16e{bottom:387.840000px;}
.y3c{bottom:392.790000px;}
.yff{bottom:396.030000px;}
.y17{bottom:396.750000px;}
.y79{bottom:397.740000px;}
.y1db{bottom:404.130000px;}
.y1a8{bottom:405.390000px;}
.y121{bottom:406.200000px;}
.yd1{bottom:406.650000px;}
.y13b{bottom:407.100000px;}
.yc2{bottom:407.820000px;}
.y99{bottom:407.910000px;}
.y57{bottom:408.900000px;}
.y14b{bottom:409.890000px;}
.y3b{bottom:414.840000px;}
.y17a{bottom:416.730000px;}
.yfe{bottom:418.080000px;}
.y16{bottom:418.800000px;}
.y78{bottom:419.790000px;}
.y1da{bottom:426.180000px;}
.y1c5{bottom:427.440000px;}
.y120{bottom:428.250000px;}
.yd0{bottom:428.700000px;}
.y13a{bottom:429.150000px;}
.yc1{bottom:429.870000px;}
.y98{bottom:429.960000px;}
.yb2{bottom:430.050000px;}
.y14a{bottom:432.030000px;}
.y3a{bottom:436.890000px;}
.y16d{bottom:438.690000px;}
.y56{bottom:438.780000px;}
.yfd{bottom:440.220000px;}
.y15{bottom:440.850000px;}
.y77{bottom:441.840000px;}
.y1c4{bottom:449.490000px;}
.y11f{bottom:450.300000px;}
.y19b{bottom:450.750000px;}
.ycf{bottom:450.840000px;}
.y139{bottom:451.200000px;}
.yed{bottom:451.920000px;}
.y97{bottom:452.010000px;}
.yb1{bottom:452.100000px;}
.y149{bottom:454.080000px;}
.y39{bottom:459.030000px;}
.yfc{bottom:462.270000px;}
.y14{bottom:462.900000px;}
.y76{bottom:463.980000px;}
.y55{bottom:468.750000px;}
.y1e3{bottom:471.540000px;}
.y1c3{bottom:471.630000px;}
.y11e{bottom:472.440000px;}
.y19a{bottom:472.800000px;}
.yce{bottom:472.890000px;}
.y138{bottom:473.250000px;}
.yec{bottom:473.970000px;}
.y96{bottom:474.060000px;}
.yb0{bottom:474.150000px;}
.y148{bottom:476.130000px;}
.y38{bottom:481.080000px;}
.yfb{bottom:484.320000px;}
.y13{bottom:484.950000px;}
.y75{bottom:486.030000px;}
.y1c2{bottom:493.680000px;}
.y11d{bottom:494.490000px;}
.ycd{bottom:494.940000px;}
.y137{bottom:495.390000px;}
.y95{bottom:496.110000px;}
.yaf{bottom:496.200000px;}
.y147{bottom:498.180000px;}
.y54{bottom:498.630000px;}
.y37{bottom:503.130000px;}
.yfa{bottom:506.370000px;}
.y12{bottom:507.090000px;}
.y74{bottom:508.080000px;}
.ye1{bottom:508.170000px;}
.y1c1{bottom:515.730000px;}
.y11c{bottom:516.540000px;}
.ycc{bottom:516.990000px;}
.y136{bottom:517.440000px;}
.yc0{bottom:518.160000px;}
.y94{bottom:518.250000px;}
.y146{bottom:520.320000px;}
.y36{bottom:525.180000px;}
.yf9{bottom:528.420000px;}
.y53{bottom:528.510000px;}
.y11{bottom:529.140000px;}
.y73{bottom:530.160000px;}
.ye0{bottom:530.250000px;}
.y1c0{bottom:537.810000px;}
.y11b{bottom:538.620000px;}
.ycb{bottom:539.070000px;}
.y135{bottom:539.520000px;}
.yeb{bottom:540.240000px;}
.y93{bottom:540.330000px;}
.yae{bottom:540.420000px;}
.y145{bottom:542.400000px;}
.y35{bottom:547.350000px;}
.y10{bottom:551.220000px;}
.yf8{bottom:551.400000px;}
.y72{bottom:552.300000px;}
.y52{bottom:558.420000px;}
.y1bf{bottom:559.950000px;}
.y11a{bottom:560.760000px;}
.y199{bottom:561.120000px;}
.yca{bottom:561.210000px;}
.y134{bottom:561.570000px;}
.yea{bottom:562.290000px;}
.y92{bottom:562.380000px;}
.yad{bottom:562.470000px;}
.y144{bottom:564.450000px;}
.y34{bottom:569.400000px;}
.yf{bottom:573.270000px;}
.yf7{bottom:573.540000px;}
.y71{bottom:574.350000px;}
.y51{bottom:579.300000px;}
.y1be{bottom:582.000000px;}
.y119{bottom:582.810000px;}
.yc9{bottom:583.260000px;}
.y133{bottom:583.620000px;}
.y91{bottom:584.430000px;}
.yac{bottom:584.520000px;}
.y33{bottom:591.450000px;}
.y143{bottom:593.160000px;}
.ye{bottom:595.410000px;}
.y70{bottom:596.400000px;}
.yf6{bottom:596.490000px;}
.y1e6{bottom:604.050000px;}
.y118{bottom:604.860000px;}
.yc8{bottom:605.310000px;}
.y132{bottom:605.760000px;}
.y90{bottom:606.480000px;}
.yab{bottom:606.570000px;}
.y50{bottom:609.270000px;}
.y32{bottom:613.500000px;}
.yd{bottom:617.460000px;}
.y6f{bottom:618.540000px;}
.y1e5{bottom:626.100000px;}
.y117{bottom:626.910000px;}
.y142{bottom:627.360000px;}
.y131{bottom:627.810000px;}
.ye9{bottom:628.530000px;}
.y8f{bottom:628.620000px;}
.y31{bottom:635.550000px;}
.y4f{bottom:639.150000px;}
.yc{bottom:639.510000px;}
.y6e{bottom:640.590000px;}
.y116{bottom:648.960000px;}
.y1b6{bottom:649.410000px;}
.y141{bottom:649.500000px;}
.y130{bottom:649.860000px;}
.ye8{bottom:650.580000px;}
.y8e{bottom:650.670000px;}
.yaa{bottom:650.760000px;}
.y30{bottom:657.690000px;}
.yb{bottom:661.560000px;}
.y6d{bottom:662.640000px;}
.y4e{bottom:669.030000px;}
.y115{bottom:671.100000px;}
.y1b5{bottom:671.460000px;}
.y162{bottom:671.550000px;}
.y18a{bottom:671.910000px;}
.ye7{bottom:672.630000px;}
.ybf{bottom:672.720000px;}
.y8d{bottom:672.810000px;}
.y2f{bottom:679.740000px;}
.ya{bottom:683.610000px;}
.y6c{bottom:684.690000px;}
.y114{bottom:693.150000px;}
.y161{bottom:693.600000px;}
.y189{bottom:693.960000px;}
.ybe{bottom:694.770000px;}
.y8c{bottom:694.860000px;}
.y4d{bottom:698.910000px;}
.y2e{bottom:701.790000px;}
.y9{bottom:705.750000px;}
.y6b{bottom:706.740000px;}
.ydf{bottom:713.490000px;}
.y113{bottom:715.200000px;}
.y160{bottom:715.650000px;}
.y188{bottom:716.100000px;}
.ye6{bottom:716.820000px;}
.y8b{bottom:716.910000px;}
.y2d{bottom:723.840000px;}
.y8{bottom:727.800000px;}
.y4c{bottom:728.880000px;}
.y6a{bottom:735.540000px;}
.y112{bottom:737.250000px;}
.y1a7{bottom:737.700000px;}
.y187{bottom:738.150000px;}
.ye5{bottom:738.870000px;}
.y8a{bottom:738.960000px;}
.ya9{bottom:739.050000px;}
.y2c{bottom:745.890000px;}
.yde{bottom:747.780000px;}
.y7{bottom:749.850000px;}
.y4b{bottom:758.760000px;}
.y111{bottom:759.300000px;}
.y1b4{bottom:759.750000px;}
.y1a6{bottom:759.840000px;}
.y186{bottom:760.200000px;}
.y89{bottom:761.010000px;}
.ya8{bottom:761.100000px;}
.y2b{bottom:768.030000px;}
.y69{bottom:769.830000px;}
.y6{bottom:775.230000px;}
.y110{bottom:781.440000px;}
.y1b3{bottom:781.800000px;}
.y1a5{bottom:781.890000px;}
.y185{bottom:782.250000px;}
.ye4{bottom:783.060000px;}
.y88{bottom:783.150000px;}
.y4a{bottom:788.640000px;}
.y2a{bottom:790.080000px;}
.y10f{bottom:803.490000px;}
.y1a4{bottom:803.940000px;}
.y184{bottom:804.390000px;}
.ye3{bottom:805.110000px;}
.y87{bottom:805.200000px;}
.y29{bottom:812.130000px;}
.y5{bottom:812.760000px;}
.y49{bottom:818.520000px;}
.y10e{bottom:825.540000px;}
.y1a3{bottom:825.990000px;}
.y183{bottom:826.440000px;}
.y181{bottom:827.160000px;}
.y68{bottom:827.250000px;}
.y28{bottom:834.210000px;}
.y1a2{bottom:848.070000px;}
.y48{bottom:848.520000px;}
.ye2{bottom:849.330000px;}
.y67{bottom:849.420000px;}
.y4{bottom:850.320000px;}
.y27{bottom:856.350000px;}
.y1a1{bottom:870.210000px;}
.y10d{bottom:870.570000px;}
.yf5{bottom:871.380000px;}
.y66{bottom:871.470000px;}
.y26{bottom:885.060000px;}
.y3{bottom:887.760000px;}
.yf4{bottom:893.430000px;}
.y65{bottom:893.520000px;}
.y25{bottom:918.270000px;}
.h4{height:46.801758px;}
.h1{height:48.858398px;}
.h6{height:55.230469px;}
.h3{height:55.335938px;}
.h8{height:58.500000px;}
.h7{height:60.679688px;}
.h5{height:83.529668px;}
.h2{height:100.752480px;}
.h0{height:972.000000px;}
.w0{width:648.000000px;}
.x0{left:0.000000px;}
.x7{left:54.000000px;}
.x11{left:59.850000px;}
.x2{left:81.000000px;}
.x12{left:86.040000px;}
.x20{left:92.250000px;}
.x1d{left:95.220000px;}
.x1a{left:97.740000px;}
.x14{left:102.780000px;}
.x3{left:107.130000px;}
.xf{left:110.910000px;}
.xe{left:113.250000px;}
.x4{left:125.760000px;}
.x19{left:148.350000px;}
.xb{left:167.340000px;}
.x6{left:171.300000px;}
.x13{left:217.920000px;}
.x15{left:243.840000px;}
.x1f{left:245.460000px;}
.x10{left:249.420000px;}
.x9{left:251.760000px;}
.x22{left:253.470000px;}
.x21{left:262.020000px;}
.x1e{left:263.820000px;}
.x23{left:271.920000px;}
.x1c{left:275.610000px;}
.x18{left:281.640000px;}
.xa{left:284.160000px;}
.x1b{left:285.510000px;}
.x16{left:298.920000px;}
.xc{left:302.790000px;}
.x8{left:306.660000px;}
.x17{left:325.920000px;}
.xd{left:329.820000px;}
.x1{left:333.690000px;}
.x5{left:337.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.490667pt;}
.ls10{letter-spacing:82.538667pt;}
.ls12{letter-spacing:85.738667pt;}
.ws13{word-spacing:-64.320000pt;}
.wsa{word-spacing:-64.256000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws6{word-spacing:-63.936000pt;}
.ws12{word-spacing:-63.680000pt;}
.ws4{word-spacing:-19.200000pt;}
.ws3{word-spacing:-19.136000pt;}
.wsd{word-spacing:-18.112000pt;}
.ws11{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.920000pt;}
.wsc{word-spacing:-17.856000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.728000pt;}
.ws8{word-spacing:-17.664000pt;}
.ws9{word-spacing:-17.600000pt;}
.wsf{word-spacing:-17.472000pt;}
.ws10{word-spacing:-17.408000pt;}
.wse{word-spacing:-13.696000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-16.917333pt;}
._42{margin-left:-14.656000pt;}
._7{margin-left:-13.674667pt;}
._3{margin-left:-10.880000pt;}
._9{margin-left:-9.450667pt;}
._8{margin-left:-8.192000pt;}
._a{margin-left:-7.274667pt;}
._4{margin-left:-6.058667pt;}
._f{margin-left:-4.309333pt;}
._2{margin-left:-2.730667pt;}
._6{margin-left:-0.896000pt;}
._0{width:1.065600pt;}
._1{width:2.282667pt;}
._1c{width:4.138667pt;}
._3e{width:7.850667pt;}
._3c{width:10.965333pt;}
._32{width:12.288000pt;}
._23{width:13.290667pt;}
._30{width:14.592000pt;}
._25{width:15.594667pt;}
._13{width:22.058667pt;}
._2a{width:25.536000pt;}
._46{width:28.565333pt;}
._22{width:30.378667pt;}
._26{width:32.768000pt;}
._41{width:35.712000pt;}
._1f{width:38.186667pt;}
._1e{width:41.642667pt;}
._1d{width:46.698667pt;}
._12{width:51.882667pt;}
._11{width:53.226667pt;}
._2b{width:54.762667pt;}
._36{width:56.554667pt;}
._2d{width:58.602667pt;}
._44{width:60.970667pt;}
._3a{width:63.722667pt;}
._33{width:65.194667pt;}
._47{width:68.266667pt;}
._20{width:69.866667pt;}
._29{width:71.466667pt;}
._40{width:74.474667pt;}
._15{width:78.954667pt;}
._35{width:84.330667pt;}
._48{width:85.546667pt;}
._43{width:86.506667pt;}
._19{width:87.872000pt;}
._34{width:91.050667pt;}
._2f{width:92.586667pt;}
._1b{width:100.906667pt;}
._16{width:102.570667pt;}
._28{width:105.514667pt;}
._3b{width:109.162667pt;}
._c{width:111.018667pt;}
._3d{width:121.728000pt;}
._10{width:122.880000pt;}
._38{width:124.906667pt;}
._37{width:128.746667pt;}
._24{width:132.458667pt;}
._2e{width:135.338667pt;}
._27{width:136.234667pt;}
._17{width:137.194667pt;}
._d{width:138.730667pt;}
._18{width:141.802667pt;}
._21{width:143.189333pt;}
._45{width:146.218667pt;}
._2c{width:149.696000pt;}
._14{width:152.490667pt;}
._31{width:153.557333pt;}
._e{width:157.504000pt;}
._3f{width:163.178667pt;}
._b{width:170.282667pt;}
._39{width:172.864000pt;}
._1a{width:174.378667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:39.440000pt;}
.y1{bottom:59.520000pt;}
.y1de{bottom:84.560000pt;}
.y16c{bottom:85.600000pt;}
.y1b2{bottom:85.680000pt;}
.y1cc{bottom:86.080000pt;}
.y12f{bottom:86.400000pt;}
.y182{bottom:86.720000pt;}
.y163{bottom:86.800000pt;}
.y64{bottom:87.520000pt;}
.yc7{bottom:87.840000pt;}
.ya7{bottom:87.920000pt;}
.y179{bottom:89.680000pt;}
.y10c{bottom:95.440000pt;}
.y24{bottom:97.600000pt;}
.y86{bottom:98.480000pt;}
.y195{bottom:98.560000pt;}
.y1dd{bottom:104.160000pt;}
.y16b{bottom:105.280000pt;}
.y12e{bottom:106.000000pt;}
.y140{bottom:106.400000pt;}
.y192{bottom:106.800000pt;}
.y63{bottom:107.200000pt;}
.y15f{bottom:107.360000pt;}
.yc6{bottom:107.440000pt;}
.ya6{bottom:107.520000pt;}
.ybd{bottom:107.600000pt;}
.y158{bottom:109.280000pt;}
.y178{bottom:109.360000pt;}
.y1e8{bottom:113.680000pt;}
.y1e7{bottom:115.280000pt;}
.y10b{bottom:115.840000pt;}
.y1bb{bottom:116.960000pt;}
.y23{bottom:117.200000pt;}
.y85{bottom:118.080000pt;}
.y180{bottom:118.160000pt;}
.y1d9{bottom:123.760000pt;}
.y1e2{bottom:124.080000pt;}
.y16a{bottom:124.880000pt;}
.y12d{bottom:125.600000pt;}
.y1a0{bottom:126.000000pt;}
.ydd{bottom:126.080000pt;}
.y191{bottom:126.400000pt;}
.y62{bottom:126.800000pt;}
.y15e{bottom:126.960000pt;}
.yf3{bottom:127.040000pt;}
.ya5{bottom:127.120000pt;}
.ybc{bottom:127.200000pt;}
.y157{bottom:128.880000pt;}
.y177{bottom:128.960000pt;}
.y47{bottom:133.360000pt;}
.y10a{bottom:135.440000pt;}
.y1ba{bottom:136.640000pt;}
.y22{bottom:136.800000pt;}
.y84{bottom:137.760000pt;}
.y1d8{bottom:143.440000pt;}
.y1ce{bottom:143.680000pt;}
.y169{bottom:144.480000pt;}
.y1cb{bottom:144.560000pt;}
.y12c{bottom:145.280000pt;}
.y19f{bottom:145.600000pt;}
.ydc{bottom:145.680000pt;}
.y190{bottom:146.000000pt;}
.y61{bottom:146.400000pt;}
.yf2{bottom:146.640000pt;}
.ya4{bottom:146.720000pt;}
.ybb{bottom:146.800000pt;}
.y156{bottom:148.480000pt;}
.y176{bottom:148.560000pt;}
.y46{bottom:152.960000pt;}
.y1e1{bottom:154.560000pt;}
.y109{bottom:155.040000pt;}
.y1b9{bottom:156.240000pt;}
.y21{bottom:156.400000pt;}
.y83{bottom:157.360000pt;}
.y1d7{bottom:163.040000pt;}
.y1bd{bottom:163.360000pt;}
.y168{bottom:164.080000pt;}
.y1ca{bottom:164.160000pt;}
.y12b{bottom:164.880000pt;}
.ydb{bottom:165.280000pt;}
.y18f{bottom:165.680000pt;}
.y60{bottom:166.000000pt;}
.y15d{bottom:166.240000pt;}
.ya3{bottom:166.320000pt;}
.yba{bottom:166.400000pt;}
.y155{bottom:168.160000pt;}
.y45{bottom:172.560000pt;}
.y1e4{bottom:174.160000pt;}
.y1cd{bottom:174.240000pt;}
.y108{bottom:175.440000pt;}
.y20{bottom:176.080000pt;}
.y82{bottom:176.960000pt;}
.y17f{bottom:177.040000pt;}
.y1b8{bottom:181.760000pt;}
.y1d6{bottom:182.640000pt;}
.y1e0{bottom:182.960000pt;}
.y167{bottom:183.680000pt;}
.y1b1{bottom:183.760000pt;}
.y12a{bottom:184.480000pt;}
.yda{bottom:184.880000pt;}
.y18e{bottom:185.280000pt;}
.y5f{bottom:185.600000pt;}
.y15c{bottom:185.840000pt;}
.yc5{bottom:185.920000pt;}
.ya2{bottom:186.000000pt;}
.y154{bottom:187.760000pt;}
.y175{bottom:187.840000pt;}
.y44{bottom:192.160000pt;}
.y1bc{bottom:193.840000pt;}
.y107{bottom:195.040000pt;}
.y1f{bottom:195.680000pt;}
.y81{bottom:196.560000pt;}
.y17e{bottom:196.640000pt;}
.y1d5{bottom:202.240000pt;}
.y1b0{bottom:203.386667pt;}
.y129{bottom:204.106667pt;}
.yd9{bottom:204.506667pt;}
.y18d{bottom:204.906667pt;}
.y5e{bottom:205.306667pt;}
.y15b{bottom:205.466667pt;}
.yc4{bottom:205.546667pt;}
.ya1{bottom:205.626667pt;}
.yb9{bottom:205.706667pt;}
.y153{bottom:207.386667pt;}
.y174{bottom:207.466667pt;}
.y43{bottom:211.866667pt;}
.y1b7{bottom:212.346667pt;}
.y1df{bottom:213.466667pt;}
.y106{bottom:214.746667pt;}
.y1e{bottom:215.306667pt;}
.y80{bottom:216.266667pt;}
.y1d4{bottom:221.866667pt;}
.y1af{bottom:222.986667pt;}
.y1c9{bottom:223.066667pt;}
.y128{bottom:223.786667pt;}
.y19e{bottom:224.106667pt;}
.yd8{bottom:224.186667pt;}
.y18c{bottom:224.506667pt;}
.y5d{bottom:224.906667pt;}
.y15a{bottom:225.066667pt;}
.yf1{bottom:225.146667pt;}
.ya0{bottom:225.226667pt;}
.yb8{bottom:225.306667pt;}
.y152{bottom:226.986667pt;}
.y173{bottom:227.066667pt;}
.y42{bottom:231.466667pt;}
.y105{bottom:234.346667pt;}
.y1d{bottom:234.906667pt;}
.y7f{bottom:235.866667pt;}
.y1d3{bottom:241.546667pt;}
.y1ae{bottom:242.586667pt;}
.y1c8{bottom:242.666667pt;}
.y127{bottom:243.386667pt;}
.yd7{bottom:243.786667pt;}
.y18b{bottom:244.106667pt;}
.y166{bottom:244.186667pt;}
.y5c{bottom:244.506667pt;}
.yf0{bottom:244.746667pt;}
.y9f{bottom:244.826667pt;}
.yb7{bottom:244.906667pt;}
.y151{bottom:246.586667pt;}
.y172{bottom:246.666667pt;}
.y41{bottom:251.066667pt;}
.y104{bottom:253.946667pt;}
.y1c{bottom:254.586667pt;}
.y7e{bottom:255.466667pt;}
.y1d2{bottom:261.146667pt;}
.y1ad{bottom:262.266667pt;}
.y126{bottom:262.986667pt;}
.yd6{bottom:263.386667pt;}
.y165{bottom:263.786667pt;}
.y5b{bottom:264.106667pt;}
.y159{bottom:264.346667pt;}
.y9e{bottom:264.426667pt;}
.yb6{bottom:264.506667pt;}
.y150{bottom:266.266667pt;}
.y40{bottom:270.666667pt;}
.y103{bottom:273.546667pt;}
.y1b{bottom:274.186667pt;}
.y7d{bottom:275.066667pt;}
.y17d{bottom:275.146667pt;}
.y1d1{bottom:280.746667pt;}
.y198{bottom:281.066667pt;}
.y1ac{bottom:281.866667pt;}
.y125{bottom:282.586667pt;}
.yd5{bottom:282.986667pt;}
.y13f{bottom:283.386667pt;}
.y5a{bottom:283.706667pt;}
.yc3{bottom:284.026667pt;}
.y9d{bottom:284.106667pt;}
.y164{bottom:284.186667pt;}
.y14f{bottom:285.866667pt;}
.y171{bottom:285.946667pt;}
.y3f{bottom:290.266667pt;}
.y102{bottom:293.146667pt;}
.y1a{bottom:293.786667pt;}
.y7c{bottom:294.666667pt;}
.y17c{bottom:294.746667pt;}
.y1d0{bottom:300.346667pt;}
.y194{bottom:300.666667pt;}
.y1ab{bottom:301.466667pt;}
.y124{bottom:302.186667pt;}
.y19d{bottom:302.586667pt;}
.yd4{bottom:302.666667pt;}
.y13e{bottom:302.986667pt;}
.yef{bottom:303.626667pt;}
.y9c{bottom:303.706667pt;}
.yb5{bottom:303.786667pt;}
.y14e{bottom:305.466667pt;}
.y170{bottom:305.546667pt;}
.y3e{bottom:309.946667pt;}
.y59{bottom:310.346667pt;}
.y197{bottom:311.546667pt;}
.y101{bottom:312.826667pt;}
.y19{bottom:313.386667pt;}
.y7b{bottom:314.346667pt;}
.y1cf{bottom:319.946667pt;}
.y1aa{bottom:321.066667pt;}
.y1c7{bottom:321.146667pt;}
.y123{bottom:321.866667pt;}
.y19c{bottom:322.186667pt;}
.yd3{bottom:322.266667pt;}
.y13d{bottom:322.586667pt;}
.yee{bottom:323.226667pt;}
.y9b{bottom:323.306667pt;}
.yb4{bottom:323.386667pt;}
.y14d{bottom:325.066667pt;}
.y16f{bottom:325.146667pt;}
.y3d{bottom:329.546667pt;}
.y193{bottom:331.146667pt;}
.y100{bottom:332.426667pt;}
.y18{bottom:332.986667pt;}
.y7a{bottom:333.946667pt;}
.y58{bottom:336.906667pt;}
.y1dc{bottom:339.626667pt;}
.y17b{bottom:339.946667pt;}
.y1a9{bottom:340.666667pt;}
.y1c6{bottom:340.746667pt;}
.y122{bottom:341.466667pt;}
.yd2{bottom:341.866667pt;}
.y13c{bottom:342.186667pt;}
.y196{bottom:342.826667pt;}
.y9a{bottom:342.906667pt;}
.yb3{bottom:342.986667pt;}
.y14c{bottom:344.666667pt;}
.y16e{bottom:344.746667pt;}
.y3c{bottom:349.146667pt;}
.yff{bottom:352.026667pt;}
.y17{bottom:352.666667pt;}
.y79{bottom:353.546667pt;}
.y1db{bottom:359.226667pt;}
.y1a8{bottom:360.346667pt;}
.y121{bottom:361.066667pt;}
.yd1{bottom:361.466667pt;}
.y13b{bottom:361.866667pt;}
.yc2{bottom:362.506667pt;}
.y99{bottom:362.586667pt;}
.y57{bottom:363.466667pt;}
.y14b{bottom:364.346667pt;}
.y3b{bottom:368.746667pt;}
.y17a{bottom:370.426667pt;}
.yfe{bottom:371.626667pt;}
.y16{bottom:372.266667pt;}
.y78{bottom:373.146667pt;}
.y1da{bottom:378.826667pt;}
.y1c5{bottom:379.946667pt;}
.y120{bottom:380.666667pt;}
.yd0{bottom:381.066667pt;}
.y13a{bottom:381.466667pt;}
.yc1{bottom:382.106667pt;}
.y98{bottom:382.186667pt;}
.yb2{bottom:382.266667pt;}
.y14a{bottom:384.026667pt;}
.y3a{bottom:388.346667pt;}
.y16d{bottom:389.946667pt;}
.y56{bottom:390.026667pt;}
.yfd{bottom:391.306667pt;}
.y15{bottom:391.866667pt;}
.y77{bottom:392.746667pt;}
.y1c4{bottom:399.546667pt;}
.y11f{bottom:400.266667pt;}
.y19b{bottom:400.666667pt;}
.ycf{bottom:400.746667pt;}
.y139{bottom:401.066667pt;}
.yed{bottom:401.706667pt;}
.y97{bottom:401.786667pt;}
.yb1{bottom:401.866667pt;}
.y149{bottom:403.626667pt;}
.y39{bottom:408.026667pt;}
.yfc{bottom:410.906667pt;}
.y14{bottom:411.466667pt;}
.y76{bottom:412.426667pt;}
.y55{bottom:416.666667pt;}
.y1e3{bottom:419.146667pt;}
.y1c3{bottom:419.226667pt;}
.y11e{bottom:419.946667pt;}
.y19a{bottom:420.266667pt;}
.yce{bottom:420.346667pt;}
.y138{bottom:420.666667pt;}
.yec{bottom:421.306667pt;}
.y96{bottom:421.386667pt;}
.yb0{bottom:421.466667pt;}
.y148{bottom:423.226667pt;}
.y38{bottom:427.626667pt;}
.yfb{bottom:430.506667pt;}
.y13{bottom:431.066667pt;}
.y75{bottom:432.026667pt;}
.y1c2{bottom:438.826667pt;}
.y11d{bottom:439.546667pt;}
.ycd{bottom:439.946667pt;}
.y137{bottom:440.346667pt;}
.y95{bottom:440.986667pt;}
.yaf{bottom:441.066667pt;}
.y147{bottom:442.826667pt;}
.y54{bottom:443.226667pt;}
.y37{bottom:447.226667pt;}
.yfa{bottom:450.106667pt;}
.y12{bottom:450.746667pt;}
.y74{bottom:451.626667pt;}
.ye1{bottom:451.706667pt;}
.y1c1{bottom:458.426667pt;}
.y11c{bottom:459.146667pt;}
.ycc{bottom:459.546667pt;}
.y136{bottom:459.946667pt;}
.yc0{bottom:460.586667pt;}
.y94{bottom:460.666667pt;}
.y146{bottom:462.506667pt;}
.y36{bottom:466.826667pt;}
.yf9{bottom:469.706667pt;}
.y53{bottom:469.786667pt;}
.y11{bottom:470.346667pt;}
.y73{bottom:471.253333pt;}
.ye0{bottom:471.333333pt;}
.y1c0{bottom:478.053333pt;}
.y11b{bottom:478.773333pt;}
.ycb{bottom:479.173333pt;}
.y135{bottom:479.573333pt;}
.yeb{bottom:480.213333pt;}
.y93{bottom:480.293333pt;}
.yae{bottom:480.373333pt;}
.y145{bottom:482.133333pt;}
.y35{bottom:486.533333pt;}
.y10{bottom:489.973333pt;}
.yf8{bottom:490.133333pt;}
.y72{bottom:490.933333pt;}
.y52{bottom:496.373333pt;}
.y1bf{bottom:497.733333pt;}
.y11a{bottom:498.453333pt;}
.y199{bottom:498.773333pt;}
.yca{bottom:498.853333pt;}
.y134{bottom:499.173333pt;}
.yea{bottom:499.813333pt;}
.y92{bottom:499.893333pt;}
.yad{bottom:499.973333pt;}
.y144{bottom:501.733333pt;}
.y34{bottom:506.133333pt;}
.yf{bottom:509.573333pt;}
.yf7{bottom:509.813333pt;}
.y71{bottom:510.533333pt;}
.y51{bottom:514.933333pt;}
.y1be{bottom:517.333333pt;}
.y119{bottom:518.053333pt;}
.yc9{bottom:518.453333pt;}
.y133{bottom:518.773333pt;}
.y91{bottom:519.493333pt;}
.yac{bottom:519.573333pt;}
.y33{bottom:525.733333pt;}
.y143{bottom:527.253333pt;}
.ye{bottom:529.253333pt;}
.y70{bottom:530.133333pt;}
.yf6{bottom:530.213333pt;}
.y1e6{bottom:536.933333pt;}
.y118{bottom:537.653333pt;}
.yc8{bottom:538.053333pt;}
.y132{bottom:538.453333pt;}
.y90{bottom:539.093333pt;}
.yab{bottom:539.173333pt;}
.y50{bottom:541.573333pt;}
.y32{bottom:545.333333pt;}
.yd{bottom:548.853333pt;}
.y6f{bottom:549.813333pt;}
.y1e5{bottom:556.533333pt;}
.y117{bottom:557.253333pt;}
.y142{bottom:557.653333pt;}
.y131{bottom:558.053333pt;}
.ye9{bottom:558.693333pt;}
.y8f{bottom:558.773333pt;}
.y31{bottom:564.933333pt;}
.y4f{bottom:568.133333pt;}
.yc{bottom:568.453333pt;}
.y6e{bottom:569.413333pt;}
.y116{bottom:576.853333pt;}
.y1b6{bottom:577.253333pt;}
.y141{bottom:577.333333pt;}
.y130{bottom:577.653333pt;}
.ye8{bottom:578.293333pt;}
.y8e{bottom:578.373333pt;}
.yaa{bottom:578.453333pt;}
.y30{bottom:584.613333pt;}
.yb{bottom:588.053333pt;}
.y6d{bottom:589.013333pt;}
.y4e{bottom:594.693333pt;}
.y115{bottom:596.533333pt;}
.y1b5{bottom:596.853333pt;}
.y162{bottom:596.933333pt;}
.y18a{bottom:597.253333pt;}
.ye7{bottom:597.893333pt;}
.ybf{bottom:597.973333pt;}
.y8d{bottom:598.053333pt;}
.y2f{bottom:604.213333pt;}
.ya{bottom:607.653333pt;}
.y6c{bottom:608.613333pt;}
.y114{bottom:616.133333pt;}
.y161{bottom:616.533333pt;}
.y189{bottom:616.853333pt;}
.ybe{bottom:617.573333pt;}
.y8c{bottom:617.653333pt;}
.y4d{bottom:621.253333pt;}
.y2e{bottom:623.813333pt;}
.y9{bottom:627.333333pt;}
.y6b{bottom:628.213333pt;}
.ydf{bottom:634.213333pt;}
.y113{bottom:635.733333pt;}
.y160{bottom:636.133333pt;}
.y188{bottom:636.533333pt;}
.ye6{bottom:637.173333pt;}
.y8b{bottom:637.253333pt;}
.y2d{bottom:643.413333pt;}
.y8{bottom:646.933333pt;}
.y4c{bottom:647.893333pt;}
.y6a{bottom:653.813333pt;}
.y112{bottom:655.333333pt;}
.y1a7{bottom:655.733333pt;}
.y187{bottom:656.133333pt;}
.ye5{bottom:656.773333pt;}
.y8a{bottom:656.853333pt;}
.ya9{bottom:656.933333pt;}
.y2c{bottom:663.013333pt;}
.yde{bottom:664.693333pt;}
.y7{bottom:666.533333pt;}
.y4b{bottom:674.453333pt;}
.y111{bottom:674.933333pt;}
.y1b4{bottom:675.333333pt;}
.y1a6{bottom:675.413333pt;}
.y186{bottom:675.733333pt;}
.y89{bottom:676.453333pt;}
.ya8{bottom:676.533333pt;}
.y2b{bottom:682.693333pt;}
.y69{bottom:684.293333pt;}
.y6{bottom:689.093333pt;}
.y110{bottom:694.613333pt;}
.y1b3{bottom:694.933333pt;}
.y1a5{bottom:695.013333pt;}
.y185{bottom:695.333333pt;}
.ye4{bottom:696.053333pt;}
.y88{bottom:696.133333pt;}
.y4a{bottom:701.013333pt;}
.y2a{bottom:702.293333pt;}
.y10f{bottom:714.213333pt;}
.y1a4{bottom:714.613333pt;}
.y184{bottom:715.013333pt;}
.ye3{bottom:715.653333pt;}
.y87{bottom:715.733333pt;}
.y29{bottom:721.893333pt;}
.y5{bottom:722.453333pt;}
.y49{bottom:727.573333pt;}
.y10e{bottom:733.813333pt;}
.y1a3{bottom:734.213333pt;}
.y183{bottom:734.613333pt;}
.y181{bottom:735.253333pt;}
.y68{bottom:735.333333pt;}
.y28{bottom:741.520000pt;}
.y1a2{bottom:753.840000pt;}
.y48{bottom:754.240000pt;}
.ye2{bottom:754.960000pt;}
.y67{bottom:755.040000pt;}
.y4{bottom:755.840000pt;}
.y27{bottom:761.200000pt;}
.y1a1{bottom:773.520000pt;}
.y10d{bottom:773.840000pt;}
.yf5{bottom:774.560000pt;}
.y66{bottom:774.640000pt;}
.y26{bottom:786.720000pt;}
.y3{bottom:789.120000pt;}
.yf4{bottom:794.160000pt;}
.y65{bottom:794.240000pt;}
.y25{bottom:816.240000pt;}
.h4{height:41.601562pt;}
.h1{height:43.429688pt;}
.h6{height:49.093750pt;}
.h3{height:49.187500pt;}
.h8{height:52.000000pt;}
.h7{height:53.937500pt;}
.h5{height:74.248594pt;}
.h2{height:89.557760pt;}
.h0{height:864.000000pt;}
.w0{width:576.000000pt;}
.x0{left:0.000000pt;}
.x7{left:48.000000pt;}
.x11{left:53.200000pt;}
.x2{left:72.000000pt;}
.x12{left:76.480000pt;}
.x20{left:82.000000pt;}
.x1d{left:84.640000pt;}
.x1a{left:86.880000pt;}
.x14{left:91.360000pt;}
.x3{left:95.226667pt;}
.xf{left:98.586667pt;}
.xe{left:100.666667pt;}
.x4{left:111.786667pt;}
.x19{left:131.866667pt;}
.xb{left:148.746667pt;}
.x6{left:152.266667pt;}
.x13{left:193.706667pt;}
.x15{left:216.746667pt;}
.x1f{left:218.186667pt;}
.x10{left:221.706667pt;}
.x9{left:223.786667pt;}
.x22{left:225.306667pt;}
.x21{left:232.906667pt;}
.x1e{left:234.506667pt;}
.x23{left:241.706667pt;}
.x1c{left:244.986667pt;}
.x18{left:250.346667pt;}
.xa{left:252.586667pt;}
.x1b{left:253.786667pt;}
.x16{left:265.706667pt;}
.xc{left:269.146667pt;}
.x8{left:272.586667pt;}
.x17{left:289.706667pt;}
.xd{left:293.173333pt;}
.x1{left:296.613333pt;}
.x5{left:300.053333pt;}
}




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