
    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_f76f775e52553cde1ecfa05e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_c7fb9dffdbd0e6e5ac417ff3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_94329524611c8be945b34aa1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_9963c06602396f24993970ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_84998e93696164ab7236c020.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d76f641bedf75c591bfd6fe2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.800781;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_5db2b6dbc85d892913300f04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_7369e2b60f19fc3e55f37a8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_f29aa4bb0a577b3097ff034e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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);}
.v3{vertical-align:-15.600000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls13{letter-spacing:-1.320000px;}
.ls1c{letter-spacing:-1.224000px;}
.ls20{letter-spacing:-0.684000px;}
.ls6{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.528000px;}
.ls1f{letter-spacing:-0.474000px;}
.ls9{letter-spacing:-0.384000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.396000px;}
.ls1d{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.840000px;}
.ls8{letter-spacing:1.320000px;}
.lsc{letter-spacing:1.800000px;}
.ls11{letter-spacing:4.200000px;}
.lsd{letter-spacing:4.320000px;}
.ls15{letter-spacing:4.800000px;}
.lse{letter-spacing:5.400000px;}
.lsf{letter-spacing:6.600000px;}
.ls12{letter-spacing:6.660000px;}
.ls19{letter-spacing:10.500000px;}
.ls3{letter-spacing:10.800000px;}
.ls14{letter-spacing:12.240000px;}
.ls4{letter-spacing:45.720000px;}
.ls0{letter-spacing:55.260000px;}
.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;}
}
.wsb{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.780000px;}
.ws2{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.880000px;}
.wsd{word-spacing:-14.100000px;}
.ws10{word-spacing:-14.040000px;}
.wsf{word-spacing:-13.896000px;}
.ws11{word-spacing:-13.704000px;}
.ws13{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.026000px;}
.wse{word-spacing:-12.900000px;}
.ws14{word-spacing:-12.816000px;}
.ws0{word-spacing:-12.300000px;}
.ws3{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.616000px;}
.ws7{word-spacing:-11.472000px;}
.ws4{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.400000px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-3.858000px;}
._7{margin-left:-2.754000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._5{width:2.364000px;}
._9{width:3.510000px;}
._a{width:5.292000px;}
._b{width:6.354000px;}
._d{width:8.340000px;}
._f{width:9.492000px;}
._c{width:11.010000px;}
._13{width:12.684000px;}
._26{width:14.580000px;}
._27{width:15.714000px;}
._11{width:17.004000px;}
._1e{width:18.294000px;}
._e{width:19.392000px;}
._1f{width:20.466000px;}
._3{width:21.768000px;}
._20{width:23.220000px;}
._28{width:24.948000px;}
._6{width:26.400000px;}
._16{width:28.488000px;}
._2d{width:30.186000px;}
._2c{width:31.212000px;}
._10{width:32.256000px;}
._15{width:35.910000px;}
._4{width:37.500000px;}
._23{width:38.586000px;}
._1b{width:43.902000px;}
._1c{width:45.822000px;}
._1d{width:47.376000px;}
._18{width:48.504000px;}
._21{width:51.486000px;}
._22{width:53.232000px;}
._25{width:56.808000px;}
._24{width:57.888000px;}
._1a{width:69.768000px;}
._19{width:71.172000px;}
._29{width:72.198000px;}
._14{width:73.350000px;}
._2b{width:157.464000px;}
._2a{width:158.520000px;}
._2{width:345.024000px;}
._17{width:1837.962000px;}
._12{width:1861.962000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs9{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.000000px;}
.y3{bottom:9.585000px;}
.y4{bottom:20.385000px;}
.y4a{bottom:21.000000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.y49{bottom:39.000000px;}
.y6{bottom:42.637500px;}
.y51{bottom:46.837500px;}
.y48{bottom:56.992500px;}
.y50{bottom:64.837500px;}
.y47{bottom:75.037500px;}
.y4f{bottom:80.737500px;}
.y46{bottom:93.037500px;}
.y134{bottom:95.437500px;}
.ycf{bottom:97.837500px;}
.yf5{bottom:102.337500px;}
.y9d{bottom:103.837500px;}
.y33{bottom:105.937500px;}
.y45{bottom:108.037500px;}
.y32{bottom:114.037500px;}
.yce{bottom:117.337500px;}
.y133{bottom:119.737500px;}
.y7b{bottom:121.537500px;}
.yf4{bottom:121.837500px;}
.yf3{bottom:124.837500px;}
.y10b{bottom:130.837500px;}
.y31{bottom:133.237500px;}
.ycd{bottom:136.537500px;}
.y7a{bottom:140.737500px;}
.y9c{bottom:141.037500px;}
.yf2{bottom:144.337500px;}
.y44{bottom:151.537500px;}
.y30{bottom:152.430000px;}
.y10a{bottom:155.130000px;}
.ycc{bottom:155.745000px;}
.y79{bottom:159.930000px;}
.y9b{bottom:160.245000px;}
.yf1{bottom:163.575000px;}
.y43{bottom:167.737500px;}
.y132{bottom:168.675000px;}
.y2f{bottom:171.675000px;}
.ycb{bottom:174.975000px;}
.y78{bottom:179.175000px;}
.y9a{bottom:179.475000px;}
.y109{bottom:179.775000px;}
.yf0{bottom:182.775000px;}
.y42{bottom:184.237500px;}
.y2e{bottom:190.875000px;}
.y131{bottom:193.275000px;}
.yca{bottom:194.175000px;}
.y99{bottom:198.675000px;}
.y41{bottom:200.437500px;}
.yef{bottom:201.975000px;}
.y108{bottom:204.075000px;}
.y77{bottom:207.375000px;}
.y75{bottom:210.075000px;}
.yc9{bottom:213.375000px;}
.y2d{bottom:213.975000px;}
.y130{bottom:217.575000px;}
.y98{bottom:217.875000px;}
.yee{bottom:221.175000px;}
.y107{bottom:228.675000px;}
.y2c{bottom:229.275000px;}
.y40{bottom:232.567500px;}
.yc8{bottom:232.575000px;}
.y97{bottom:237.075000px;}
.yed{bottom:240.375000px;}
.y12f{bottom:242.175000px;}
.y76{bottom:244.875000px;}
.y2b{bottom:248.475000px;}
.y3f{bottom:250.567500px;}
.yc7{bottom:251.775000px;}
.y106{bottom:252.975000px;}
.y96{bottom:256.275000px;}
.yec{bottom:259.575000px;}
.y12e{bottom:266.475000px;}
.y2a{bottom:267.675000px;}
.y3e{bottom:268.567500px;}
.yc6{bottom:270.975000px;}
.y95{bottom:275.475000px;}
.y105{bottom:277.575000px;}
.yeb{bottom:278.775000px;}
.y3d{bottom:286.567500px;}
.y29{bottom:286.875000px;}
.yc5{bottom:290.175000px;}
.y12d{bottom:291.075000px;}
.y94{bottom:294.675000px;}
.yea{bottom:297.975000px;}
.y104{bottom:301.875000px;}
.y3c{bottom:304.567500px;}
.y74{bottom:306.075000px;}
.y28{bottom:306.375000px;}
.yc4{bottom:309.375000px;}
.y93{bottom:313.875000px;}
.y12c{bottom:315.375000px;}
.ye9{bottom:317.175000px;}
.y27{bottom:325.575000px;}
.y103{bottom:326.475000px;}
.yc3{bottom:328.575000px;}
.y3b{bottom:331.567500px;}
.y92{bottom:333.120000px;}
.ye8{bottom:336.405000px;}
.y12b{bottom:340.005000px;}
.y26{bottom:344.805000px;}
.yc2{bottom:348.120000px;}
.y102{bottom:350.805000px;}
.y91{bottom:352.620000px;}
.ye7{bottom:355.620000px;}
.y3a{bottom:358.567500px;}
.y25{bottom:364.005000px;}
.y12a{bottom:364.305000px;}
.yc1{bottom:367.320000px;}
.y90{bottom:371.805000px;}
.ye6{bottom:375.120000px;}
.y101{bottom:375.420000px;}
.y39{bottom:376.567500px;}
.yc0{bottom:386.505000px;}
.y24{bottom:387.705000px;}
.y129{bottom:388.920000px;}
.y8f{bottom:391.005000px;}
.ye5{bottom:394.320000px;}
.y38{bottom:394.567500px;}
.y100{bottom:401.505000px;}
.ybf{bottom:405.705000px;}
.y73{bottom:406.905000px;}
.y8e{bottom:410.205000px;}
.y37{bottom:412.612500px;}
.y128{bottom:413.205000px;}
.ye4{bottom:413.505000px;}
.yf6{bottom:417.420000px;}
.y8d{bottom:429.420000px;}
.y36{bottom:430.612500px;}
.ye3{bottom:432.705000px;}
.yff{bottom:437.820000px;}
.y72{bottom:444.105000px;}
.y23{bottom:445.605000px;}
.y35{bottom:448.612500px;}
.y8c{bottom:448.620000px;}
.ye2{bottom:451.905000px;}
.y127{bottom:462.120000px;}
.y71{bottom:463.320000px;}
.y22{bottom:465.705000px;}
.y34{bottom:466.612500px;}
.y8b{bottom:467.820000px;}
.ybe{bottom:470.505000px;}
.ye1{bottom:471.105000px;}
.yfe{bottom:473.205000px;}
.y70{bottom:482.505000px;}
.ybd{bottom:485.820000px;}
.y126{bottom:486.705000px;}
.y8a{bottom:487.005000px;}
.ye0{bottom:490.320000px;}
.yfd{bottom:490.905000px;}
.y6f{bottom:501.750000px;}
.y21{bottom:502.950000px;}
.ybc{bottom:505.050000px;}
.y89{bottom:506.250000px;}
.ydf{bottom:509.550000px;}
.y125{bottom:511.050000px;}
.y6e{bottom:520.950000px;}
.y20{bottom:522.450000px;}
.ybb{bottom:524.250000px;}
.y88{bottom:525.450000px;}
.yfc{bottom:526.050000px;}
.yde{bottom:528.750000px;}
.y124{bottom:535.650000px;}
.y6d{bottom:540.150000px;}
.y1f{bottom:541.950000px;}
.yba{bottom:543.450000px;}
.y87{bottom:544.650000px;}
.ydd{bottom:547.950000px;}
.y6c{bottom:559.350000px;}
.y123{bottom:559.950000px;}
.y1e{bottom:561.450000px;}
.yb9{bottom:562.650000px;}
.y86{bottom:563.850000px;}
.ydc{bottom:567.150000px;}
.y6b{bottom:578.850000px;}
.y1d{bottom:580.950000px;}
.yb8{bottom:581.850000px;}
.y85{bottom:583.350000px;}
.y122{bottom:584.550000px;}
.ydb{bottom:586.350000px;}
.yfb{bottom:596.850000px;}
.y6a{bottom:598.050000px;}
.y1c{bottom:600.450000px;}
.yb7{bottom:601.350000px;}
.y84{bottom:602.550000px;}
.yda{bottom:605.850000px;}
.y121{bottom:608.850000px;}
.y69{bottom:617.250000px;}
.y1b{bottom:619.950000px;}
.yb6{bottom:620.550000px;}
.y83{bottom:621.750000px;}
.yd9{bottom:625.050000px;}
.yfa{bottom:631.650000px;}
.y120{bottom:633.450000px;}
.y68{bottom:636.450000px;}
.y1a{bottom:639.450000px;}
.yb5{bottom:639.750000px;}
.y82{bottom:640.950000px;}
.yd8{bottom:644.250000px;}
.yf9{bottom:649.350000px;}
.y67{bottom:655.650000px;}
.y11f{bottom:657.750000px;}
.y19{bottom:658.950000px;}
.y81{bottom:660.150000px;}
.yd7{bottom:663.450000px;}
.y66{bottom:674.880000px;}
.yb4{bottom:678.195000px;}
.y18{bottom:678.480000px;}
.y80{bottom:679.380000px;}
.y11e{bottom:682.380000px;}
.yd6{bottom:682.680000px;}
.yf8{bottom:684.480000px;}
.y65{bottom:694.080000px;}
.yb3{bottom:697.380000px;}
.y17{bottom:697.980000px;}
.y7f{bottom:698.595000px;}
.yd5{bottom:701.880000px;}
.y11d{bottom:706.695000px;}
.y64{bottom:713.280000px;}
.yb2{bottom:716.580000px;}
.y16{bottom:717.480000px;}
.y7e{bottom:717.780000px;}
.yf7{bottom:719.280000px;}
.yd4{bottom:721.080000px;}
.y11c{bottom:731.280000px;}
.yb1{bottom:735.780000px;}
.y15{bottom:736.995000px;}
.yd3{bottom:740.280000px;}
.yb0{bottom:754.980000px;}
.y11b{bottom:755.580000px;}
.y7d{bottom:756.195000px;}
.y14{bottom:756.480000px;}
.yd2{bottom:759.480000px;}
.y63{bottom:760.695000px;}
.yaf{bottom:774.195000px;}
.y13{bottom:775.995000px;}
.yd1{bottom:778.695000px;}
.y62{bottom:779.880000px;}
.y11a{bottom:780.195000px;}
.yae{bottom:793.380000px;}
.y12{bottom:795.480000px;}
.yd0{bottom:797.880000px;}
.y119{bottom:804.495000px;}
.yad{bottom:812.580000px;}
.y11{bottom:814.995000px;}
.y61{bottom:817.080000px;}
.y7c{bottom:820.980000px;}
.y118{bottom:829.080000px;}
.yac{bottom:832.080000px;}
.y10{bottom:834.480000px;}
.y60{bottom:836.580000px;}
.yab{bottom:851.325000px;}
.y117{bottom:853.425000px;}
.yf{bottom:854.025000px;}
.y5f{bottom:855.825000px;}
.yaa{bottom:870.525000px;}
.ye{bottom:873.825000px;}
.y5e{bottom:875.025000px;}
.y116{bottom:878.025000px;}
.ya9{bottom:889.725000px;}
.y5d{bottom:894.225000px;}
.y115{bottom:902.325000px;}
.ya8{bottom:908.925000px;}
.yd{bottom:911.025000px;}
.y5c{bottom:913.425000px;}
.y114{bottom:926.925000px;}
.ya7{bottom:928.125000px;}
.yc{bottom:929.925000px;}
.y5b{bottom:932.625000px;}
.ya6{bottom:947.325000px;}
.y113{bottom:951.225000px;}
.y5a{bottom:951.825000px;}
.ya5{bottom:966.525000px;}
.yb{bottom:971.025000px;}
.y112{bottom:975.825000px;}
.ya4{bottom:985.725000px;}
.y59{bottom:990.225000px;}
.y111{bottom:1000.125000px;}
.ya3{bottom:1004.925000px;}
.y58{bottom:1009.455000px;}
.ya{bottom:1022.070000px;}
.ya2{bottom:1024.155000px;}
.y110{bottom:1024.755000px;}
.y57{bottom:1028.670000px;}
.ya1{bottom:1043.355000px;}
.y56{bottom:1047.855000px;}
.y10f{bottom:1049.070000px;}
.y9{bottom:1058.355000px;}
.ya0{bottom:1062.855000px;}
.y55{bottom:1067.355000px;}
.y10e{bottom:1073.655000px;}
.y9f{bottom:1082.070000px;}
.y54{bottom:1086.570000px;}
.y8{bottom:1091.370000px;}
.y10d{bottom:1097.955000px;}
.y9e{bottom:1101.255000px;}
.y53{bottom:1105.755000px;}
.y10c{bottom:1122.570000px;}
.y52{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y4e{bottom:1144.455000px;}
.y4d{bottom:1163.655000px;}
.y4c{bottom:1173.570000px;}
.h9{height:23.085938px;}
.h17{height:28.197422px;}
.he{height:28.257422px;}
.h16{height:28.317422px;}
.h11{height:30.700195px;}
.h10{height:30.802734px;}
.h12{height:33.632812px;}
.h13{height:35.085938px;}
.h6{height:35.179688px;}
.ha{height:35.203125px;}
.hc{height:39.471680px;}
.hb{height:39.603516px;}
.h15{height:40.160156px;}
.h5{height:43.857422px;}
.h7{height:43.974609px;}
.h4{height:44.003906px;}
.h3{height:48.404297px;}
.h2{height:51.637500px;}
.h14{height:59.853516px;}
.hd{height:62.460938px;}
.h8{height:79.207031px;}
.hf{height:481.605000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:126.675000px;}
.w6{width:180.975000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x9{left:81.637500px;}
.x10{left:86.137487px;}
.x3{left:170.130000px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.xf{left:252.374987px;}
.xd{left:281.474987px;}
.x8{left:282.674987px;}
.x7{left:303.719987px;}
.xe{left:330.719987px;}
.xb{left:386.219987px;}
.x2{left:426.450000px;}
.xa{left:622.979987px;}
.xc{left:694.724987px;}
.x4{left:766.425000px;}
@media print{
.v3{vertical-align:-13.866667pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls13{letter-spacing:-1.173333pt;}
.ls1c{letter-spacing:-1.088000pt;}
.ls20{letter-spacing:-0.608000pt;}
.ls6{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.469333pt;}
.ls1f{letter-spacing:-0.421333pt;}
.ls9{letter-spacing:-0.341333pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.352000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls8{letter-spacing:1.173333pt;}
.lsc{letter-spacing:1.600000pt;}
.ls11{letter-spacing:3.733333pt;}
.lsd{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.266667pt;}
.lse{letter-spacing:4.800000pt;}
.lsf{letter-spacing:5.866667pt;}
.ls12{letter-spacing:5.920000pt;}
.ls19{letter-spacing:9.333333pt;}
.ls3{letter-spacing:9.600000pt;}
.ls14{letter-spacing:10.880000pt;}
.ls4{letter-spacing:40.640000pt;}
.ls0{letter-spacing:49.120000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.026667pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.226667pt;}
.wsd{word-spacing:-12.533333pt;}
.ws10{word-spacing:-12.480000pt;}
.wsf{word-spacing:-12.352000pt;}
.ws11{word-spacing:-12.181333pt;}
.ws13{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.578667pt;}
.wse{word-spacing:-11.466667pt;}
.ws14{word-spacing:-11.392000pt;}
.ws0{word-spacing:-10.933333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.325333pt;}
.ws7{word-spacing:-10.197333pt;}
.ws4{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-3.429333pt;}
._7{margin-left:-2.448000pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._5{width:2.101333pt;}
._9{width:3.120000pt;}
._a{width:4.704000pt;}
._b{width:5.648000pt;}
._d{width:7.413333pt;}
._f{width:8.437333pt;}
._c{width:9.786667pt;}
._13{width:11.274667pt;}
._26{width:12.960000pt;}
._27{width:13.968000pt;}
._11{width:15.114667pt;}
._1e{width:16.261333pt;}
._e{width:17.237333pt;}
._1f{width:18.192000pt;}
._3{width:19.349333pt;}
._20{width:20.640000pt;}
._28{width:22.176000pt;}
._6{width:23.466667pt;}
._16{width:25.322667pt;}
._2d{width:26.832000pt;}
._2c{width:27.744000pt;}
._10{width:28.672000pt;}
._15{width:31.920000pt;}
._4{width:33.333333pt;}
._23{width:34.298667pt;}
._1b{width:39.024000pt;}
._1c{width:40.730667pt;}
._1d{width:42.112000pt;}
._18{width:43.114667pt;}
._21{width:45.765333pt;}
._22{width:47.317333pt;}
._25{width:50.496000pt;}
._24{width:51.456000pt;}
._1a{width:62.016000pt;}
._19{width:63.264000pt;}
._29{width:64.176000pt;}
._14{width:65.200000pt;}
._2b{width:139.968000pt;}
._2a{width:140.906667pt;}
._2{width:306.688000pt;}
._17{width:1633.744000pt;}
._12{width:1655.077333pt;}
.fs6{font-size:26.666667pt;}
.fs9{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.666667pt;}
.y3{bottom:8.520000pt;}
.y4{bottom:18.120000pt;}
.y4a{bottom:18.666667pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.y49{bottom:34.666667pt;}
.y6{bottom:37.900000pt;}
.y51{bottom:41.633333pt;}
.y48{bottom:50.660000pt;}
.y50{bottom:57.633333pt;}
.y47{bottom:66.700000pt;}
.y4f{bottom:71.766667pt;}
.y46{bottom:82.700000pt;}
.y134{bottom:84.833333pt;}
.ycf{bottom:86.966667pt;}
.yf5{bottom:90.966667pt;}
.y9d{bottom:92.300000pt;}
.y33{bottom:94.166667pt;}
.y45{bottom:96.033333pt;}
.y32{bottom:101.366667pt;}
.yce{bottom:104.300000pt;}
.y133{bottom:106.433333pt;}
.y7b{bottom:108.033333pt;}
.yf4{bottom:108.300000pt;}
.yf3{bottom:110.966667pt;}
.y10b{bottom:116.300000pt;}
.y31{bottom:118.433333pt;}
.ycd{bottom:121.366667pt;}
.y7a{bottom:125.100000pt;}
.y9c{bottom:125.366667pt;}
.yf2{bottom:128.300000pt;}
.y44{bottom:134.700000pt;}
.y30{bottom:135.493333pt;}
.y10a{bottom:137.893333pt;}
.ycc{bottom:138.440000pt;}
.y79{bottom:142.160000pt;}
.y9b{bottom:142.440000pt;}
.yf1{bottom:145.400000pt;}
.y43{bottom:149.100000pt;}
.y132{bottom:149.933333pt;}
.y2f{bottom:152.600000pt;}
.ycb{bottom:155.533333pt;}
.y78{bottom:159.266667pt;}
.y9a{bottom:159.533333pt;}
.y109{bottom:159.800000pt;}
.yf0{bottom:162.466667pt;}
.y42{bottom:163.766667pt;}
.y2e{bottom:169.666667pt;}
.y131{bottom:171.800000pt;}
.yca{bottom:172.600000pt;}
.y99{bottom:176.600000pt;}
.y41{bottom:178.166667pt;}
.yef{bottom:179.533333pt;}
.y108{bottom:181.400000pt;}
.y77{bottom:184.333333pt;}
.y75{bottom:186.733333pt;}
.yc9{bottom:189.666667pt;}
.y2d{bottom:190.200000pt;}
.y130{bottom:193.400000pt;}
.y98{bottom:193.666667pt;}
.yee{bottom:196.600000pt;}
.y107{bottom:203.266667pt;}
.y2c{bottom:203.800000pt;}
.y40{bottom:206.726667pt;}
.yc8{bottom:206.733333pt;}
.y97{bottom:210.733333pt;}
.yed{bottom:213.666667pt;}
.y12f{bottom:215.266667pt;}
.y76{bottom:217.666667pt;}
.y2b{bottom:220.866667pt;}
.y3f{bottom:222.726667pt;}
.yc7{bottom:223.800000pt;}
.y106{bottom:224.866667pt;}
.y96{bottom:227.800000pt;}
.yec{bottom:230.733333pt;}
.y12e{bottom:236.866667pt;}
.y2a{bottom:237.933333pt;}
.y3e{bottom:238.726667pt;}
.yc6{bottom:240.866667pt;}
.y95{bottom:244.866667pt;}
.y105{bottom:246.733333pt;}
.yeb{bottom:247.800000pt;}
.y3d{bottom:254.726667pt;}
.y29{bottom:255.000000pt;}
.yc5{bottom:257.933333pt;}
.y12d{bottom:258.733333pt;}
.y94{bottom:261.933333pt;}
.yea{bottom:264.866667pt;}
.y104{bottom:268.333333pt;}
.y3c{bottom:270.726667pt;}
.y74{bottom:272.066667pt;}
.y28{bottom:272.333333pt;}
.yc4{bottom:275.000000pt;}
.y93{bottom:279.000000pt;}
.y12c{bottom:280.333333pt;}
.ye9{bottom:281.933333pt;}
.y27{bottom:289.400000pt;}
.y103{bottom:290.200000pt;}
.yc3{bottom:292.066667pt;}
.y3b{bottom:294.726667pt;}
.y92{bottom:296.106667pt;}
.ye8{bottom:299.026667pt;}
.y12b{bottom:302.226667pt;}
.y26{bottom:306.493333pt;}
.yc2{bottom:309.440000pt;}
.y102{bottom:311.826667pt;}
.y91{bottom:313.440000pt;}
.ye7{bottom:316.106667pt;}
.y3a{bottom:318.726667pt;}
.y25{bottom:323.560000pt;}
.y12a{bottom:323.826667pt;}
.yc1{bottom:326.506667pt;}
.y90{bottom:330.493333pt;}
.ye6{bottom:333.440000pt;}
.y101{bottom:333.706667pt;}
.y39{bottom:334.726667pt;}
.yc0{bottom:343.560000pt;}
.y24{bottom:344.626667pt;}
.y129{bottom:345.706667pt;}
.y8f{bottom:347.560000pt;}
.ye5{bottom:350.506667pt;}
.y38{bottom:350.726667pt;}
.y100{bottom:356.893333pt;}
.ybf{bottom:360.626667pt;}
.y73{bottom:361.693333pt;}
.y8e{bottom:364.626667pt;}
.y37{bottom:366.766667pt;}
.y128{bottom:367.293333pt;}
.ye4{bottom:367.560000pt;}
.yf6{bottom:371.040000pt;}
.y8d{bottom:381.706667pt;}
.y36{bottom:382.766667pt;}
.ye3{bottom:384.626667pt;}
.yff{bottom:389.173333pt;}
.y72{bottom:394.760000pt;}
.y23{bottom:396.093333pt;}
.y35{bottom:398.766667pt;}
.y8c{bottom:398.773333pt;}
.ye2{bottom:401.693333pt;}
.y127{bottom:410.773333pt;}
.y71{bottom:411.840000pt;}
.y22{bottom:413.960000pt;}
.y34{bottom:414.766667pt;}
.y8b{bottom:415.840000pt;}
.ybe{bottom:418.226667pt;}
.ye1{bottom:418.760000pt;}
.yfe{bottom:420.626667pt;}
.y70{bottom:428.893333pt;}
.ybd{bottom:431.840000pt;}
.y126{bottom:432.626667pt;}
.y8a{bottom:432.893333pt;}
.ye0{bottom:435.840000pt;}
.yfd{bottom:436.360000pt;}
.y6f{bottom:446.000000pt;}
.y21{bottom:447.066667pt;}
.ybc{bottom:448.933333pt;}
.y89{bottom:450.000000pt;}
.ydf{bottom:452.933333pt;}
.y125{bottom:454.266667pt;}
.y6e{bottom:463.066667pt;}
.y20{bottom:464.400000pt;}
.ybb{bottom:466.000000pt;}
.y88{bottom:467.066667pt;}
.yfc{bottom:467.600000pt;}
.yde{bottom:470.000000pt;}
.y124{bottom:476.133333pt;}
.y6d{bottom:480.133333pt;}
.y1f{bottom:481.733333pt;}
.yba{bottom:483.066667pt;}
.y87{bottom:484.133333pt;}
.ydd{bottom:487.066667pt;}
.y6c{bottom:497.200000pt;}
.y123{bottom:497.733333pt;}
.y1e{bottom:499.066667pt;}
.yb9{bottom:500.133333pt;}
.y86{bottom:501.200000pt;}
.ydc{bottom:504.133333pt;}
.y6b{bottom:514.533333pt;}
.y1d{bottom:516.400000pt;}
.yb8{bottom:517.200000pt;}
.y85{bottom:518.533333pt;}
.y122{bottom:519.600000pt;}
.ydb{bottom:521.200000pt;}
.yfb{bottom:530.533333pt;}
.y6a{bottom:531.600000pt;}
.y1c{bottom:533.733333pt;}
.yb7{bottom:534.533333pt;}
.y84{bottom:535.600000pt;}
.yda{bottom:538.533333pt;}
.y121{bottom:541.200000pt;}
.y69{bottom:548.666667pt;}
.y1b{bottom:551.066667pt;}
.yb6{bottom:551.600000pt;}
.y83{bottom:552.666667pt;}
.yd9{bottom:555.600000pt;}
.yfa{bottom:561.466667pt;}
.y120{bottom:563.066667pt;}
.y68{bottom:565.733333pt;}
.y1a{bottom:568.400000pt;}
.yb5{bottom:568.666667pt;}
.y82{bottom:569.733333pt;}
.yd8{bottom:572.666667pt;}
.yf9{bottom:577.200000pt;}
.y67{bottom:582.800000pt;}
.y11f{bottom:584.666667pt;}
.y19{bottom:585.733333pt;}
.y81{bottom:586.800000pt;}
.yd7{bottom:589.733333pt;}
.y66{bottom:599.893333pt;}
.yb4{bottom:602.840000pt;}
.y18{bottom:603.093333pt;}
.y80{bottom:603.893333pt;}
.y11e{bottom:606.560000pt;}
.yd6{bottom:606.826667pt;}
.yf8{bottom:608.426667pt;}
.y65{bottom:616.960000pt;}
.yb3{bottom:619.893333pt;}
.y17{bottom:620.426667pt;}
.y7f{bottom:620.973333pt;}
.yd5{bottom:623.893333pt;}
.y11d{bottom:628.173333pt;}
.y64{bottom:634.026667pt;}
.yb2{bottom:636.960000pt;}
.y16{bottom:637.760000pt;}
.y7e{bottom:638.026667pt;}
.yf7{bottom:639.360000pt;}
.yd4{bottom:640.960000pt;}
.y11c{bottom:650.026667pt;}
.yb1{bottom:654.026667pt;}
.y15{bottom:655.106667pt;}
.yd3{bottom:658.026667pt;}
.yb0{bottom:671.093333pt;}
.y11b{bottom:671.626667pt;}
.y7d{bottom:672.173333pt;}
.y14{bottom:672.426667pt;}
.yd2{bottom:675.093333pt;}
.y63{bottom:676.173333pt;}
.yaf{bottom:688.173333pt;}
.y13{bottom:689.773333pt;}
.yd1{bottom:692.173333pt;}
.y62{bottom:693.226667pt;}
.y11a{bottom:693.506667pt;}
.yae{bottom:705.226667pt;}
.y12{bottom:707.093333pt;}
.yd0{bottom:709.226667pt;}
.y119{bottom:715.106667pt;}
.yad{bottom:722.293333pt;}
.y11{bottom:724.440000pt;}
.y61{bottom:726.293333pt;}
.y7c{bottom:729.760000pt;}
.y118{bottom:736.960000pt;}
.yac{bottom:739.626667pt;}
.y10{bottom:741.760000pt;}
.y60{bottom:743.626667pt;}
.yab{bottom:756.733333pt;}
.y117{bottom:758.600000pt;}
.yf{bottom:759.133333pt;}
.y5f{bottom:760.733333pt;}
.yaa{bottom:773.800000pt;}
.ye{bottom:776.733333pt;}
.y5e{bottom:777.800000pt;}
.y116{bottom:780.466667pt;}
.ya9{bottom:790.866667pt;}
.y5d{bottom:794.866667pt;}
.y115{bottom:802.066667pt;}
.ya8{bottom:807.933333pt;}
.yd{bottom:809.800000pt;}
.y5c{bottom:811.933333pt;}
.y114{bottom:823.933333pt;}
.ya7{bottom:825.000000pt;}
.yc{bottom:826.600000pt;}
.y5b{bottom:829.000000pt;}
.ya6{bottom:842.066667pt;}
.y113{bottom:845.533333pt;}
.y5a{bottom:846.066667pt;}
.ya5{bottom:859.133333pt;}
.yb{bottom:863.133333pt;}
.y112{bottom:867.400000pt;}
.ya4{bottom:876.200000pt;}
.y59{bottom:880.200000pt;}
.y111{bottom:889.000000pt;}
.ya3{bottom:893.266667pt;}
.y58{bottom:897.293333pt;}
.ya{bottom:908.506667pt;}
.ya2{bottom:910.360000pt;}
.y110{bottom:910.893333pt;}
.y57{bottom:914.373333pt;}
.ya1{bottom:927.426667pt;}
.y56{bottom:931.426667pt;}
.y10f{bottom:932.506667pt;}
.y9{bottom:940.760000pt;}
.ya0{bottom:944.760000pt;}
.y55{bottom:948.760000pt;}
.y10e{bottom:954.360000pt;}
.y9f{bottom:961.840000pt;}
.y54{bottom:965.840000pt;}
.y8{bottom:970.106667pt;}
.y10d{bottom:975.960000pt;}
.y9e{bottom:978.893333pt;}
.y53{bottom:982.893333pt;}
.y10c{bottom:997.840000pt;}
.y52{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y4e{bottom:1017.293333pt;}
.y4d{bottom:1034.360000pt;}
.y4c{bottom:1043.173333pt;}
.h9{height:20.520833pt;}
.h17{height:25.064375pt;}
.he{height:25.117708pt;}
.h16{height:25.171042pt;}
.h11{height:27.289062pt;}
.h10{height:27.380208pt;}
.h12{height:29.895833pt;}
.h13{height:31.187500pt;}
.h6{height:31.270833pt;}
.ha{height:31.291667pt;}
.hc{height:35.085938pt;}
.hb{height:35.203125pt;}
.h15{height:35.697917pt;}
.h5{height:38.984375pt;}
.h7{height:39.088542pt;}
.h4{height:39.114583pt;}
.h3{height:43.026042pt;}
.h2{height:45.900000pt;}
.h14{height:53.203125pt;}
.hd{height:55.520833pt;}
.h8{height:70.406250pt;}
.hf{height:428.093333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.600000pt;}
.w6{width:160.866667pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x9{left:72.566667pt;}
.x10{left:76.566655pt;}
.x3{left:151.226667pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.xf{left:224.333322pt;}
.xd{left:250.199988pt;}
.x8{left:251.266655pt;}
.x7{left:269.973322pt;}
.xe{left:293.973322pt;}
.xb{left:343.306655pt;}
.x2{left:379.066667pt;}
.xa{left:553.759988pt;}
.xc{left:617.533322pt;}
.x4{left:681.266667pt;}
}




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