
    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_d17a04ba408c4f9c05d0df6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_d44027bf09479b5152573c5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708010;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_40148bfaccd96c68fcdba8bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936041;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_c237bc16112a665d8b34b687.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057617;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_ba01c4562d321c105bb1bff9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945803;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_35323997c00446630941500b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_46510ec595f6b103a1f6c14e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.713379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.400000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.312000px;}
.ls8{letter-spacing:2.352000px;}
.ls5{letter-spacing:6.000000px;}
.ls4{letter-spacing:36.523200px;}
.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;}
}
.ws6{word-spacing:-24.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws2{word-spacing:-19.500000px;}
.wsb{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-14.850000px;}
.wsa{word-spacing:-13.608000px;}
.ws4{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.900000px;}
.wsc{word-spacing:-12.000000px;}
.ws8{word-spacing:-10.500000px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:14.308800px;}
._1b{margin-left:-740.424000px;}
._19{margin-left:-502.440000px;}
._2e{margin-left:-360.636000px;}
._31{margin-left:-53.640000px;}
._30{margin-left:-12.444000px;}
._32{margin-left:-2.436000px;}
._2{margin-left:-1.348800px;}
._1{width:1.092000px;}
._4{width:2.430000px;}
._5{width:3.504000px;}
._6{width:4.614000px;}
._7{width:6.120000px;}
._8{width:7.128000px;}
._9{width:8.268000px;}
._b{width:9.492000px;}
._a{width:11.334000px;}
._e{width:12.354000px;}
._12{width:13.536000px;}
._c{width:14.760000px;}
._d{width:15.768000px;}
._13{width:16.908000px;}
._23{width:19.896000px;}
._1d{width:21.384000px;}
._1e{width:22.392000px;}
._28{width:24.804000px;}
._21{width:26.244000px;}
._11{width:27.288000px;}
._27{width:28.944000px;}
._14{width:31.884000px;}
._26{width:34.392000px;}
._20{width:41.976000px;}
._1f{width:42.984000px;}
._2b{width:61.416000px;}
._22{width:83.232000px;}
._16{width:92.952000px;}
._15{width:94.032000px;}
._24{width:119.160000px;}
._2c{width:122.340000px;}
._2a{width:134.712000px;}
._18{width:156.528000px;}
._17{width:188.232000px;}
._10{width:195.624000px;}
._f{width:196.632000px;}
._3{width:203.952000px;}
._2d{width:212.832000px;}
._25{width:237.948000px;}
._29{width:269.016000px;}
._2f{width:335.952000px;}
._1a{width:466.704000px;}
._0{width:677.580000px;}
._1c{width:705.528000px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(33,29,30);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.200000px;}
.fsa{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.400000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y39{bottom:91.500000px;}
.y81{bottom:152.100000px;}
.y114{bottom:153.600000px;}
.y67{bottom:154.800000px;}
.y136{bottom:155.250000px;}
.yf2{bottom:157.200000px;}
.y16c{bottom:162.900000px;}
.y9c{bottom:163.650000px;}
.yd2{bottom:165.000000px;}
.y190{bottom:166.350000px;}
.yc1{bottom:167.400000px;}
.y144{bottom:170.250000px;}
.y80{bottom:172.500000px;}
.ye4{bottom:177.150000px;}
.y113{bottom:178.500000px;}
.y66{bottom:179.700000px;}
.y135{bottom:180.000000px;}
.y16b{bottom:183.450000px;}
.y18f{bottom:186.900000px;}
.yc0{bottom:187.950000px;}
.y9b{bottom:188.550000px;}
.yd1{bottom:189.750000px;}
.y143{bottom:190.800000px;}
.yf1{bottom:190.950000px;}
.y1ac{bottom:191.250000px;}
.y38{bottom:192.000000px;}
.y5d{bottom:202.050000px;}
.ydf{bottom:203.250000px;}
.y16a{bottom:204.000000px;}
.y65{bottom:204.450000px;}
.y134{bottom:204.900000px;}
.y10f{bottom:206.700000px;}
.y142{bottom:211.350000px;}
.y115{bottom:211.800000px;}
.y7f{bottom:213.300000px;}
.yd0{bottom:214.650000px;}
.yf0{bottom:215.850000px;}
.y37{bottom:216.900000px;}
.y112{bottom:217.500000px;}
.y10e{bottom:222.000000px;}
.y93{bottom:224.550000px;}
.y5c{bottom:226.800000px;}
.yde{bottom:228.150000px;}
.y64{bottom:229.350000px;}
.y133{bottom:229.650000px;}
.ybf{bottom:231.450000px;}
.y18e{bottom:232.350000px;}
.y141{bottom:236.250000px;}
.y1ab{bottom:236.550000px;}
.y7e{bottom:238.200000px;}
.ycf{bottom:239.400000px;}
.yef{bottom:240.600000px;}
.y36{bottom:241.650000px;}
.y10d{bottom:242.550000px;}
.y92{bottom:249.450000px;}
.y5b{bottom:251.700000px;}
.ydd{bottom:252.900000px;}
.y132{bottom:254.550000px;}
.ybe{bottom:256.350000px;}
.y140{bottom:256.800000px;}
.y1aa{bottom:257.100000px;}
.y9a{bottom:262.950000px;}
.yce{bottom:264.300000px;}
.yee{bottom:265.500000px;}
.y63{bottom:266.400000px;}
.y35{bottom:266.550000px;}
.y169{bottom:270.000000px;}
.y91{bottom:274.200000px;}
.y5a{bottom:276.450000px;}
.y13f{bottom:277.350000px;}
.y18d{bottom:277.650000px;}
.ydc{bottom:277.800000px;}
.ybd{bottom:281.100000px;}
.y99{bottom:287.850000px;}
.ycd{bottom:289.050000px;}
.ye3{bottom:289.950000px;}
.yed{bottom:290.250000px;}
.y34{bottom:291.300000px;}
.y131{bottom:292.800000px;}
.y62{bottom:293.850000px;}
.y168{bottom:294.750000px;}
.y18c{bottom:298.200000px;}
.y90{bottom:299.100000px;}
.y59{bottom:301.350000px;}
.ydb{bottom:302.550000px;}
.ybc{bottom:306.000000px;}
.y13e{bottom:310.200000px;}
.y98{bottom:312.600000px;}
.ycc{bottom:313.950000px;}
.ye2{bottom:314.850000px;}
.y167{bottom:315.300000px;}
.y10c{bottom:316.050000px;}
.y33{bottom:316.200000px;}
.y130{bottom:317.700000px;}
.y18b{bottom:318.750000px;}
.y1a9{bottom:323.100000px;}
.y58{bottom:326.100000px;}
.yda{bottom:327.450000px;}
.yec{bottom:328.650000px;}
.ybb{bottom:330.750000px;}
.y166{bottom:335.850000px;}
.y8f{bottom:337.350000px;}
.y97{bottom:337.500000px;}
.ye1{bottom:339.600000px;}
.y10b{bottom:340.950000px;}
.y12f{bottom:342.450000px;}
.y18a{bottom:343.650000px;}
.y1a8{bottom:347.850000px;}
.y57{bottom:351.000000px;}
.ycb{bottom:352.200000px;}
.y32{bottom:353.250000px;}
.yeb{bottom:353.400000px;}
.yba{bottom:355.650000px;}
.y165{bottom:360.750000px;}
.y8e{bottom:362.250000px;}
.y189{bottom:364.200000px;}
.y61{bottom:364.500000px;}
.y10a{bottom:365.700000px;}
.y12e{bottom:367.350000px;}
.y1a7{bottom:368.400000px;}
.y7d{bottom:375.750000px;}
.yca{bottom:377.100000px;}
.yea{bottom:378.300000px;}
.yb9{bottom:380.400000px;}
.y13d{bottom:380.850000px;}
.y164{bottom:381.300000px;}
.y8d{bottom:387.000000px;}
.y96{bottom:387.150000px;}
.y188{bottom:388.950000px;}
.y56{bottom:389.250000px;}
.y109{bottom:390.600000px;}
.y12d{bottom:392.100000px;}
.y1a6{bottom:393.300000px;}
.y7c{bottom:400.650000px;}
.yc9{bottom:401.850000px;}
.ye9{bottom:403.050000px;}
.yb8{bottom:405.300000px;}
.y13c{bottom:405.600000px;}
.y187{bottom:409.500000px;}
.y8c{bottom:411.900000px;}
.y31{bottom:412.500000px;}
.y55{bottom:414.150000px;}
.y12c{bottom:417.000000px;}
.y1a5{bottom:418.050000px;}
.y7b{bottom:425.400000px;}
.y163{bottom:426.600000px;}
.yc8{bottom:426.750000px;}
.y30{bottom:427.800000px;}
.ye8{bottom:427.950000px;}
.y108{bottom:428.850000px;}
.yb7{bottom:430.050000px;}
.y13b{bottom:430.500000px;}
.y1c5{bottom:432.600000px;}
.y186{bottom:434.400000px;}
.y8b{bottom:436.650000px;}
.y1a4{bottom:438.600000px;}
.y54{bottom:438.900000px;}
.yd9{bottom:440.250000px;}
.y12b{bottom:441.750000px;}
.y2f{bottom:443.250000px;}
.y162{bottom:447.150000px;}
.y7a{bottom:450.300000px;}
.y1b9{bottom:450.600000px;}
.yc7{bottom:451.500000px;}
.ye7{bottom:452.700000px;}
.y107{bottom:453.750000px;}
.yb6{bottom:454.950000px;}
.y13a{bottom:455.250000px;}
.y185{bottom:459.150000px;}
.y1c4{bottom:459.750000px;}
.y8a{bottom:461.550000px;}
.y53{bottom:463.800000px;}
.yd8{bottom:465.000000px;}
.y12a{bottom:466.650000px;}
.y2e{bottom:469.050000px;}
.y161{bottom:472.050000px;}
.y1c3{bottom:473.400000px;}
.y79{bottom:475.050000px;}
.y1b8{bottom:475.500000px;}
.yc6{bottom:476.400000px;}
.ye6{bottom:477.600000px;}
.y106{bottom:478.500000px;}
.yb5{bottom:479.700000px;}
.y139{bottom:480.150000px;}
.y1a3{bottom:484.050000px;}
.y2d{bottom:484.500000px;}
.y89{bottom:486.300000px;}
.y1c2{bottom:487.050000px;}
.y52{bottom:488.550000px;}
.yd7{bottom:489.900000px;}
.y129{bottom:491.400000px;}
.y160{bottom:492.600000px;}
.y1b7{bottom:496.050000px;}
.y2c{bottom:499.800000px;}
.y78{bottom:499.950000px;}
.y184{bottom:500.250000px;}
.yc5{bottom:501.150000px;}
.y105{bottom:503.400000px;}
.y1a2{bottom:504.600000px;}
.y138{bottom:504.900000px;}
.y1c1{bottom:509.700000px;}
.y88{bottom:511.200000px;}
.y15f{bottom:513.150000px;}
.y51{bottom:513.450000px;}
.yd6{bottom:514.650000px;}
.y2b{bottom:515.250000px;}
.yb4{bottom:518.100000px;}
.y183{bottom:520.800000px;}
.y1c0{bottom:523.350000px;}
.y77{bottom:524.700000px;}
.yc4{bottom:526.050000px;}
.y104{bottom:528.150000px;}
.y1a1{bottom:529.350000px;}
.y128{bottom:529.800000px;}
.y2a{bottom:530.550000px;}
.y87{bottom:535.950000px;}
.y1bf{bottom:537.600000px;}
.y15e{bottom:537.900000px;}
.y50{bottom:538.200000px;}
.yd5{bottom:539.550000px;}
.y182{bottom:541.350000px;}
.ye5{bottom:542.100000px;}
.yb3{bottom:542.850000px;}
.y29{bottom:546.000000px;}
.y76{bottom:549.600000px;}
.y1a0{bottom:549.900000px;}
.y103{bottom:553.050000px;}
.y127{bottom:554.550000px;}
.y15d{bottom:558.450000px;}
.y86{bottom:560.850000px;}
.y28{bottom:561.300000px;}
.y4f{bottom:563.100000px;}
.yd4{bottom:564.300000px;}
.yc3{bottom:565.050000px;}
.y1be{bottom:565.200000px;}
.y181{bottom:566.250000px;}
.y137{bottom:566.850000px;}
.yb2{bottom:567.750000px;}
.y19f{bottom:570.450000px;}
.y75{bottom:574.350000px;}
.y27{bottom:576.750000px;}
.y102{bottom:577.800000px;}
.y15c{bottom:579.000000px;}
.y126{bottom:579.450000px;}
.y180{bottom:586.800000px;}
.y22{bottom:586.950000px;}
.y4e{bottom:587.850000px;}
.y19e{bottom:591.000000px;}
.y26{bottom:592.050000px;}
.yb1{bottom:592.500000px;}
.y74{bottom:599.250000px;}
.y21{bottom:602.250000px;}
.y101{bottom:602.700000px;}
.yd3{bottom:603.450000px;}
.y15b{bottom:603.900000px;}
.y125{bottom:604.200000px;}
.y17f{bottom:607.350000px;}
.y25{bottom:607.500000px;}
.y1b6{bottom:611.550000px;}
.y4d{bottom:612.750000px;}
.y19d{bottom:615.900000px;}
.yb0{bottom:617.400000px;}
.y20{bottom:617.700000px;}
.y24{bottom:622.800000px;}
.y73{bottom:624.000000px;}
.y15a{bottom:624.450000px;}
.ye0{bottom:626.250000px;}
.y100{bottom:627.450000px;}
.y17e{bottom:627.900000px;}
.y124{bottom:629.100000px;}
.y1b5{bottom:632.100000px;}
.y1f{bottom:634.200000px;}
.y19c{bottom:636.450000px;}
.y4c{bottom:637.500000px;}
.y23{bottom:638.250000px;}
.yaf{bottom:642.150000px;}
.y159{bottom:645.000000px;}
.y72{bottom:648.900000px;}
.y60{bottom:651.000000px;}
.yff{bottom:652.350000px;}
.y17d{bottom:652.650000px;}
.y123{bottom:653.850000px;}
.y19b{bottom:661.200000px;}
.y4b{bottom:662.400000px;}
.y1e{bottom:665.250000px;}
.yae{bottom:667.050000px;}
.y158{bottom:669.750000px;}
.y17c{bottom:673.200000px;}
.y71{bottom:673.650000px;}
.y5f{bottom:675.900000px;}
.yfe{bottom:677.100000px;}
.y1b4{bottom:677.550000px;}
.y122{bottom:678.750000px;}
.y19a{bottom:681.750000px;}
.y1bd{bottom:686.100000px;}
.y4a{bottom:687.150000px;}
.y157{bottom:690.300000px;}
.yad{bottom:691.800000px;}
.y19{bottom:695.250000px;}
.y17b{bottom:698.100000px;}
.y70{bottom:698.550000px;}
.y5e{bottom:700.650000px;}
.yfd{bottom:702.000000px;}
.y121{bottom:703.500000px;}
.y199{bottom:706.650000px;}
.y18{bottom:710.550000px;}
.y156{bottom:710.850000px;}
.y9d{bottom:712.050000px;}
.yac{bottom:716.700000px;}
.y17a{bottom:718.650000px;}
.y1b3{bottom:722.850000px;}
.y6f{bottom:723.300000px;}
.y49{bottom:725.550000px;}
.y17{bottom:726.000000px;}
.yfc{bottom:726.750000px;}
.y198{bottom:727.200000px;}
.y155{bottom:735.750000px;}
.y95{bottom:736.800000px;}
.y16{bottom:741.300000px;}
.yab{bottom:741.450000px;}
.y120{bottom:741.900000px;}
.y179{bottom:743.400000px;}
.y197{bottom:747.750000px;}
.y6e{bottom:748.200000px;}
.y48{bottom:750.300000px;}
.yfb{bottom:751.650000px;}
.y154{bottom:756.300000px;}
.y15{bottom:756.750000px;}
.y1d{bottom:761.550000px;}
.y94{bottom:761.700000px;}
.y178{bottom:763.950000px;}
.y11f{bottom:766.650000px;}
.y1b2{bottom:768.300000px;}
.y14{bottom:772.050000px;}
.y196{bottom:772.500000px;}
.y85{bottom:772.950000px;}
.y47{bottom:775.200000px;}
.yfa{bottom:776.400000px;}
.y153{bottom:776.850000px;}
.y1c{bottom:777.000000px;}
.yaa{bottom:779.850000px;}
.y177{bottom:784.500000px;}
.y6d{bottom:786.450000px;}
.y13{bottom:787.500000px;}
.y1b1{bottom:788.850000px;}
.y11e{bottom:791.550000px;}
.y1b{bottom:792.300000px;}
.y195{bottom:793.050000px;}
.y84{bottom:797.850000px;}
.y46{bottom:799.950000px;}
.yf9{bottom:801.300000px;}
.y152{bottom:801.600000px;}
.y12{bottom:802.800000px;}
.ya9{bottom:804.600000px;}
.y1a{bottom:808.800000px;}
.y176{bottom:809.400000px;}
.y6c{bottom:811.350000px;}
.y194{bottom:813.600000px;}
.y11d{bottom:816.300000px;}
.y11{bottom:818.250000px;}
.y151{bottom:822.150000px;}
.y45{bottom:824.850000px;}
.yf8{bottom:826.050000px;}
.ya8{bottom:829.500000px;}
.y175{bottom:829.950000px;}
.y10{bottom:833.550000px;}
.y193{bottom:834.150000px;}
.y6b{bottom:836.100000px;}
.y1bc{bottom:838.500000px;}
.y11c{bottom:841.200000px;}
.y150{bottom:842.700000px;}
.yc{bottom:843.600000px;}
.yf{bottom:849.000000px;}
.y44{bottom:849.600000px;}
.y1b0{bottom:850.500000px;}
.yf7{bottom:850.950000px;}
.ya7{bottom:854.250000px;}
.y174{bottom:854.700000px;}
.y1bb{bottom:859.050000px;}
.y6a{bottom:861.000000px;}
.yb{bottom:862.350000px;}
.y14f{bottom:863.250000px;}
.ye{bottom:864.300000px;}
.y11b{bottom:865.950000px;}
.y43{bottom:874.500000px;}
.y173{bottom:875.250000px;}
.yf6{bottom:875.700000px;}
.ya6{bottom:879.150000px;}
.y192{bottom:879.600000px;}
.yd{bottom:879.750000px;}
.ya{bottom:881.100000px;}
.y69{bottom:885.750000px;}
.y14e{bottom:888.150000px;}
.y11a{bottom:890.850000px;}
.y1af{bottom:895.800000px;}
.y42{bottom:899.250000px;}
.y172{bottom:900.150000px;}
.yf5{bottom:900.600000px;}
.ya5{bottom:903.900000px;}
.y9{bottom:906.750000px;}
.y14d{bottom:908.700000px;}
.y68{bottom:910.650000px;}
.y119{bottom:915.600000px;}
.y171{bottom:920.700000px;}
.y41{bottom:924.150000px;}
.y1ba{bottom:924.900000px;}
.yf4{bottom:925.350000px;}
.ya4{bottom:928.800000px;}
.y14c{bottom:929.250000px;}
.y83{bottom:935.400000px;}
.y118{bottom:940.500000px;}
.y1ae{bottom:941.250000px;}
.y8{bottom:945.000000px;}
.y170{bottom:945.450000px;}
.y40{bottom:948.900000px;}
.y14b{bottom:949.800000px;}
.ya3{bottom:953.550000px;}
.y82{bottom:960.300000px;}
.yf3{bottom:964.500000px;}
.y117{bottom:965.250000px;}
.y16f{bottom:966.000000px;}
.y14a{bottom:970.350000px;}
.y3f{bottom:973.800000px;}
.y7{bottom:975.600000px;}
.ya2{bottom:978.450000px;}
.yc2{bottom:985.050000px;}
.y191{bottom:986.550000px;}
.y16e{bottom:990.900000px;}
.y149{bottom:995.100000px;}
.y3e{bottom:998.550000px;}
.y116{bottom:1002.450000px;}
.ya1{bottom:1003.200000px;}
.y6{bottom:1009.800000px;}
.y111{bottom:1009.950000px;}
.y16d{bottom:1011.450000px;}
.y148{bottom:1015.650000px;}
.y3d{bottom:1023.450000px;}
.ya0{bottom:1028.100000px;}
.y5{bottom:1032.000000px;}
.y110{bottom:1034.700000px;}
.y147{bottom:1036.200000px;}
.y3c{bottom:1048.200000px;}
.y1ad{bottom:1052.550000px;}
.y146{bottom:1056.750000px;}
.y9f{bottom:1065.150000px;}
.y4{bottom:1068.300000px;}
.y3b{bottom:1073.100000px;}
.y145{bottom:1077.300000px;}
.y9e{bottom:1092.600000px;}
.y3{bottom:1093.950000px;}
.y3a{bottom:1097.850000px;}
.y2{bottom:1164.300000px;}
.hd{height:25.578516px;}
.h10{height:33.984375px;}
.h8{height:39.351562px;}
.h6{height:41.894531px;}
.h9{height:44.270508px;}
.h2{height:49.189453px;}
.h5{height:50.273438px;}
.he{height:50.976562px;}
.hb{height:54.108398px;}
.h4{height:54.462891px;}
.h7{height:59.027344px;}
.hc{height:60.832617px;}
.hf{height:68.865234px;}
.h3{height:73.784180px;}
.ha{height:78.703125px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.800000px;}
.xc{left:140.550000px;}
.x10{left:151.050000px;}
.xa{left:161.850000px;}
.xd{left:180.900000px;}
.xe{left:191.550000px;}
.x4{left:214.500000px;}
.x2{left:251.700000px;}
.xf{left:289.050000px;}
.x8{left:304.500000px;}
.x11{left:325.650000px;}
.x3{left:356.250000px;}
.x7{left:391.350000px;}
.x6{left:549.900000px;}
.xb{left:603.900000px;}
.x5{left:624.150000px;}
.x9{left:742.650000px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.466667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.277333pt;}
.ls8{letter-spacing:2.090667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls4{letter-spacing:32.465067pt;}
.ws6{word-spacing:-21.333333pt;}
.ws0{word-spacing:-20.000000pt;}
.ws2{word-spacing:-17.333333pt;}
.wsb{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.200000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.466667pt;}
.wsc{word-spacing:-10.666667pt;}
.ws8{word-spacing:-9.333333pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:12.718933pt;}
._1b{margin-left:-658.154667pt;}
._19{margin-left:-446.613333pt;}
._2e{margin-left:-320.565333pt;}
._31{margin-left:-47.680000pt;}
._30{margin-left:-11.061333pt;}
._32{margin-left:-2.165333pt;}
._2{margin-left:-1.198933pt;}
._1{width:0.970667pt;}
._4{width:2.160000pt;}
._5{width:3.114667pt;}
._6{width:4.101333pt;}
._7{width:5.440000pt;}
._8{width:6.336000pt;}
._9{width:7.349333pt;}
._b{width:8.437333pt;}
._a{width:10.074667pt;}
._e{width:10.981333pt;}
._12{width:12.032000pt;}
._c{width:13.120000pt;}
._d{width:14.016000pt;}
._13{width:15.029333pt;}
._23{width:17.685333pt;}
._1d{width:19.008000pt;}
._1e{width:19.904000pt;}
._28{width:22.048000pt;}
._21{width:23.328000pt;}
._11{width:24.256000pt;}
._27{width:25.728000pt;}
._14{width:28.341333pt;}
._26{width:30.570667pt;}
._20{width:37.312000pt;}
._1f{width:38.208000pt;}
._2b{width:54.592000pt;}
._22{width:73.984000pt;}
._16{width:82.624000pt;}
._15{width:83.584000pt;}
._24{width:105.920000pt;}
._2c{width:108.746667pt;}
._2a{width:119.744000pt;}
._18{width:139.136000pt;}
._17{width:167.317333pt;}
._10{width:173.888000pt;}
._f{width:174.784000pt;}
._3{width:181.290667pt;}
._2d{width:189.184000pt;}
._25{width:211.509333pt;}
._29{width:239.125333pt;}
._2f{width:298.624000pt;}
._1a{width:414.848000pt;}
._0{width:602.293333pt;}
._1c{width:627.136000pt;}
.fsb{font-size:27.733333pt;}
.fsa{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:52.800000pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y39{bottom:81.333333pt;}
.y81{bottom:135.200000pt;}
.y114{bottom:136.533333pt;}
.y67{bottom:137.600000pt;}
.y136{bottom:138.000000pt;}
.yf2{bottom:139.733333pt;}
.y16c{bottom:144.800000pt;}
.y9c{bottom:145.466667pt;}
.yd2{bottom:146.666667pt;}
.y190{bottom:147.866667pt;}
.yc1{bottom:148.800000pt;}
.y144{bottom:151.333333pt;}
.y80{bottom:153.333333pt;}
.ye4{bottom:157.466667pt;}
.y113{bottom:158.666667pt;}
.y66{bottom:159.733333pt;}
.y135{bottom:160.000000pt;}
.y16b{bottom:163.066667pt;}
.y18f{bottom:166.133333pt;}
.yc0{bottom:167.066667pt;}
.y9b{bottom:167.600000pt;}
.yd1{bottom:168.666667pt;}
.y143{bottom:169.600000pt;}
.yf1{bottom:169.733333pt;}
.y1ac{bottom:170.000000pt;}
.y38{bottom:170.666667pt;}
.y5d{bottom:179.600000pt;}
.ydf{bottom:180.666667pt;}
.y16a{bottom:181.333333pt;}
.y65{bottom:181.733333pt;}
.y134{bottom:182.133333pt;}
.y10f{bottom:183.733333pt;}
.y142{bottom:187.866667pt;}
.y115{bottom:188.266667pt;}
.y7f{bottom:189.600000pt;}
.yd0{bottom:190.800000pt;}
.yf0{bottom:191.866667pt;}
.y37{bottom:192.800000pt;}
.y112{bottom:193.333333pt;}
.y10e{bottom:197.333333pt;}
.y93{bottom:199.600000pt;}
.y5c{bottom:201.600000pt;}
.yde{bottom:202.800000pt;}
.y64{bottom:203.866667pt;}
.y133{bottom:204.133333pt;}
.ybf{bottom:205.733333pt;}
.y18e{bottom:206.533333pt;}
.y141{bottom:210.000000pt;}
.y1ab{bottom:210.266667pt;}
.y7e{bottom:211.733333pt;}
.ycf{bottom:212.800000pt;}
.yef{bottom:213.866667pt;}
.y36{bottom:214.800000pt;}
.y10d{bottom:215.600000pt;}
.y92{bottom:221.733333pt;}
.y5b{bottom:223.733333pt;}
.ydd{bottom:224.800000pt;}
.y132{bottom:226.266667pt;}
.ybe{bottom:227.866667pt;}
.y140{bottom:228.266667pt;}
.y1aa{bottom:228.533333pt;}
.y9a{bottom:233.733333pt;}
.yce{bottom:234.933333pt;}
.yee{bottom:236.000000pt;}
.y63{bottom:236.800000pt;}
.y35{bottom:236.933333pt;}
.y169{bottom:240.000000pt;}
.y91{bottom:243.733333pt;}
.y5a{bottom:245.733333pt;}
.y13f{bottom:246.533333pt;}
.y18d{bottom:246.800000pt;}
.ydc{bottom:246.933333pt;}
.ybd{bottom:249.866667pt;}
.y99{bottom:255.866667pt;}
.ycd{bottom:256.933333pt;}
.ye3{bottom:257.733333pt;}
.yed{bottom:258.000000pt;}
.y34{bottom:258.933333pt;}
.y131{bottom:260.266667pt;}
.y62{bottom:261.200000pt;}
.y168{bottom:262.000000pt;}
.y18c{bottom:265.066667pt;}
.y90{bottom:265.866667pt;}
.y59{bottom:267.866667pt;}
.ydb{bottom:268.933333pt;}
.ybc{bottom:272.000000pt;}
.y13e{bottom:275.733333pt;}
.y98{bottom:277.866667pt;}
.ycc{bottom:279.066667pt;}
.ye2{bottom:279.866667pt;}
.y167{bottom:280.266667pt;}
.y10c{bottom:280.933333pt;}
.y33{bottom:281.066667pt;}
.y130{bottom:282.400000pt;}
.y18b{bottom:283.333333pt;}
.y1a9{bottom:287.200000pt;}
.y58{bottom:289.866667pt;}
.yda{bottom:291.066667pt;}
.yec{bottom:292.133333pt;}
.ybb{bottom:294.000000pt;}
.y166{bottom:298.533333pt;}
.y8f{bottom:299.866667pt;}
.y97{bottom:300.000000pt;}
.ye1{bottom:301.866667pt;}
.y10b{bottom:303.066667pt;}
.y12f{bottom:304.400000pt;}
.y18a{bottom:305.466667pt;}
.y1a8{bottom:309.200000pt;}
.y57{bottom:312.000000pt;}
.ycb{bottom:313.066667pt;}
.y32{bottom:314.000000pt;}
.yeb{bottom:314.133333pt;}
.yba{bottom:316.133333pt;}
.y165{bottom:320.666667pt;}
.y8e{bottom:322.000000pt;}
.y189{bottom:323.733333pt;}
.y61{bottom:324.000000pt;}
.y10a{bottom:325.066667pt;}
.y12e{bottom:326.533333pt;}
.y1a7{bottom:327.466667pt;}
.y7d{bottom:334.000000pt;}
.yca{bottom:335.200000pt;}
.yea{bottom:336.266667pt;}
.yb9{bottom:338.133333pt;}
.y13d{bottom:338.533333pt;}
.y164{bottom:338.933333pt;}
.y8d{bottom:344.000000pt;}
.y96{bottom:344.133333pt;}
.y188{bottom:345.733333pt;}
.y56{bottom:346.000000pt;}
.y109{bottom:347.200000pt;}
.y12d{bottom:348.533333pt;}
.y1a6{bottom:349.600000pt;}
.y7c{bottom:356.133333pt;}
.yc9{bottom:357.200000pt;}
.ye9{bottom:358.266667pt;}
.yb8{bottom:360.266667pt;}
.y13c{bottom:360.533333pt;}
.y187{bottom:364.000000pt;}
.y8c{bottom:366.133333pt;}
.y31{bottom:366.666667pt;}
.y55{bottom:368.133333pt;}
.y12c{bottom:370.666667pt;}
.y1a5{bottom:371.600000pt;}
.y7b{bottom:378.133333pt;}
.y163{bottom:379.200000pt;}
.yc8{bottom:379.333333pt;}
.y30{bottom:380.266667pt;}
.ye8{bottom:380.400000pt;}
.y108{bottom:381.200000pt;}
.yb7{bottom:382.266667pt;}
.y13b{bottom:382.666667pt;}
.y1c5{bottom:384.533333pt;}
.y186{bottom:386.133333pt;}
.y8b{bottom:388.133333pt;}
.y1a4{bottom:389.866667pt;}
.y54{bottom:390.133333pt;}
.yd9{bottom:391.333333pt;}
.y12b{bottom:392.666667pt;}
.y2f{bottom:394.000000pt;}
.y162{bottom:397.466667pt;}
.y7a{bottom:400.266667pt;}
.y1b9{bottom:400.533333pt;}
.yc7{bottom:401.333333pt;}
.ye7{bottom:402.400000pt;}
.y107{bottom:403.333333pt;}
.yb6{bottom:404.400000pt;}
.y13a{bottom:404.666667pt;}
.y185{bottom:408.133333pt;}
.y1c4{bottom:408.666667pt;}
.y8a{bottom:410.266667pt;}
.y53{bottom:412.266667pt;}
.yd8{bottom:413.333333pt;}
.y12a{bottom:414.800000pt;}
.y2e{bottom:416.933333pt;}
.y161{bottom:419.600000pt;}
.y1c3{bottom:420.800000pt;}
.y79{bottom:422.266667pt;}
.y1b8{bottom:422.666667pt;}
.yc6{bottom:423.466667pt;}
.ye6{bottom:424.533333pt;}
.y106{bottom:425.333333pt;}
.yb5{bottom:426.400000pt;}
.y139{bottom:426.800000pt;}
.y1a3{bottom:430.266667pt;}
.y2d{bottom:430.666667pt;}
.y89{bottom:432.266667pt;}
.y1c2{bottom:432.933333pt;}
.y52{bottom:434.266667pt;}
.yd7{bottom:435.466667pt;}
.y129{bottom:436.800000pt;}
.y160{bottom:437.866667pt;}
.y1b7{bottom:440.933333pt;}
.y2c{bottom:444.266667pt;}
.y78{bottom:444.400000pt;}
.y184{bottom:444.666667pt;}
.yc5{bottom:445.466667pt;}
.y105{bottom:447.466667pt;}
.y1a2{bottom:448.533333pt;}
.y138{bottom:448.800000pt;}
.y1c1{bottom:453.066667pt;}
.y88{bottom:454.400000pt;}
.y15f{bottom:456.133333pt;}
.y51{bottom:456.400000pt;}
.yd6{bottom:457.466667pt;}
.y2b{bottom:458.000000pt;}
.yb4{bottom:460.533333pt;}
.y183{bottom:462.933333pt;}
.y1c0{bottom:465.200000pt;}
.y77{bottom:466.400000pt;}
.yc4{bottom:467.600000pt;}
.y104{bottom:469.466667pt;}
.y1a1{bottom:470.533333pt;}
.y128{bottom:470.933333pt;}
.y2a{bottom:471.600000pt;}
.y87{bottom:476.400000pt;}
.y1bf{bottom:477.866667pt;}
.y15e{bottom:478.133333pt;}
.y50{bottom:478.400000pt;}
.yd5{bottom:479.600000pt;}
.y182{bottom:481.200000pt;}
.ye5{bottom:481.866667pt;}
.yb3{bottom:482.533333pt;}
.y29{bottom:485.333333pt;}
.y76{bottom:488.533333pt;}
.y1a0{bottom:488.800000pt;}
.y103{bottom:491.600000pt;}
.y127{bottom:492.933333pt;}
.y15d{bottom:496.400000pt;}
.y86{bottom:498.533333pt;}
.y28{bottom:498.933333pt;}
.y4f{bottom:500.533333pt;}
.yd4{bottom:501.600000pt;}
.yc3{bottom:502.266667pt;}
.y1be{bottom:502.400000pt;}
.y181{bottom:503.333333pt;}
.y137{bottom:503.866667pt;}
.yb2{bottom:504.666667pt;}
.y19f{bottom:507.066667pt;}
.y75{bottom:510.533333pt;}
.y27{bottom:512.666667pt;}
.y102{bottom:513.600000pt;}
.y15c{bottom:514.666667pt;}
.y126{bottom:515.066667pt;}
.y180{bottom:521.600000pt;}
.y22{bottom:521.733333pt;}
.y4e{bottom:522.533333pt;}
.y19e{bottom:525.333333pt;}
.y26{bottom:526.266667pt;}
.yb1{bottom:526.666667pt;}
.y74{bottom:532.666667pt;}
.y21{bottom:535.333333pt;}
.y101{bottom:535.733333pt;}
.yd3{bottom:536.400000pt;}
.y15b{bottom:536.800000pt;}
.y125{bottom:537.066667pt;}
.y17f{bottom:539.866667pt;}
.y25{bottom:540.000000pt;}
.y1b6{bottom:543.600000pt;}
.y4d{bottom:544.666667pt;}
.y19d{bottom:547.466667pt;}
.yb0{bottom:548.800000pt;}
.y20{bottom:549.066667pt;}
.y24{bottom:553.600000pt;}
.y73{bottom:554.666667pt;}
.y15a{bottom:555.066667pt;}
.ye0{bottom:556.666667pt;}
.y100{bottom:557.733333pt;}
.y17e{bottom:558.133333pt;}
.y124{bottom:559.200000pt;}
.y1b5{bottom:561.866667pt;}
.y1f{bottom:563.733333pt;}
.y19c{bottom:565.733333pt;}
.y4c{bottom:566.666667pt;}
.y23{bottom:567.333333pt;}
.yaf{bottom:570.800000pt;}
.y159{bottom:573.333333pt;}
.y72{bottom:576.800000pt;}
.y60{bottom:578.666667pt;}
.yff{bottom:579.866667pt;}
.y17d{bottom:580.133333pt;}
.y123{bottom:581.200000pt;}
.y19b{bottom:587.733333pt;}
.y4b{bottom:588.800000pt;}
.y1e{bottom:591.333333pt;}
.yae{bottom:592.933333pt;}
.y158{bottom:595.333333pt;}
.y17c{bottom:598.400000pt;}
.y71{bottom:598.800000pt;}
.y5f{bottom:600.800000pt;}
.yfe{bottom:601.866667pt;}
.y1b4{bottom:602.266667pt;}
.y122{bottom:603.333333pt;}
.y19a{bottom:606.000000pt;}
.y1bd{bottom:609.866667pt;}
.y4a{bottom:610.800000pt;}
.y157{bottom:613.600000pt;}
.yad{bottom:614.933333pt;}
.y19{bottom:618.000000pt;}
.y17b{bottom:620.533333pt;}
.y70{bottom:620.933333pt;}
.y5e{bottom:622.800000pt;}
.yfd{bottom:624.000000pt;}
.y121{bottom:625.333333pt;}
.y199{bottom:628.133333pt;}
.y18{bottom:631.600000pt;}
.y156{bottom:631.866667pt;}
.y9d{bottom:632.933333pt;}
.yac{bottom:637.066667pt;}
.y17a{bottom:638.800000pt;}
.y1b3{bottom:642.533333pt;}
.y6f{bottom:642.933333pt;}
.y49{bottom:644.933333pt;}
.y17{bottom:645.333333pt;}
.yfc{bottom:646.000000pt;}
.y198{bottom:646.400000pt;}
.y155{bottom:654.000000pt;}
.y95{bottom:654.933333pt;}
.y16{bottom:658.933333pt;}
.yab{bottom:659.066667pt;}
.y120{bottom:659.466667pt;}
.y179{bottom:660.800000pt;}
.y197{bottom:664.666667pt;}
.y6e{bottom:665.066667pt;}
.y48{bottom:666.933333pt;}
.yfb{bottom:668.133333pt;}
.y154{bottom:672.266667pt;}
.y15{bottom:672.666667pt;}
.y1d{bottom:676.933333pt;}
.y94{bottom:677.066667pt;}
.y178{bottom:679.066667pt;}
.y11f{bottom:681.466667pt;}
.y1b2{bottom:682.933333pt;}
.y14{bottom:686.266667pt;}
.y196{bottom:686.666667pt;}
.y85{bottom:687.066667pt;}
.y47{bottom:689.066667pt;}
.yfa{bottom:690.133333pt;}
.y153{bottom:690.533333pt;}
.y1c{bottom:690.666667pt;}
.yaa{bottom:693.200000pt;}
.y177{bottom:697.333333pt;}
.y6d{bottom:699.066667pt;}
.y13{bottom:700.000000pt;}
.y1b1{bottom:701.200000pt;}
.y11e{bottom:703.600000pt;}
.y1b{bottom:704.266667pt;}
.y195{bottom:704.933333pt;}
.y84{bottom:709.200000pt;}
.y46{bottom:711.066667pt;}
.yf9{bottom:712.266667pt;}
.y152{bottom:712.533333pt;}
.y12{bottom:713.600000pt;}
.ya9{bottom:715.200000pt;}
.y1a{bottom:718.933333pt;}
.y176{bottom:719.466667pt;}
.y6c{bottom:721.200000pt;}
.y194{bottom:723.200000pt;}
.y11d{bottom:725.600000pt;}
.y11{bottom:727.333333pt;}
.y151{bottom:730.800000pt;}
.y45{bottom:733.200000pt;}
.yf8{bottom:734.266667pt;}
.ya8{bottom:737.333333pt;}
.y175{bottom:737.733333pt;}
.y10{bottom:740.933333pt;}
.y193{bottom:741.466667pt;}
.y6b{bottom:743.200000pt;}
.y1bc{bottom:745.333333pt;}
.y11c{bottom:747.733333pt;}
.y150{bottom:749.066667pt;}
.yc{bottom:749.866667pt;}
.yf{bottom:754.666667pt;}
.y44{bottom:755.200000pt;}
.y1b0{bottom:756.000000pt;}
.yf7{bottom:756.400000pt;}
.ya7{bottom:759.333333pt;}
.y174{bottom:759.733333pt;}
.y1bb{bottom:763.600000pt;}
.y6a{bottom:765.333333pt;}
.yb{bottom:766.533333pt;}
.y14f{bottom:767.333333pt;}
.ye{bottom:768.266667pt;}
.y11b{bottom:769.733333pt;}
.y43{bottom:777.333333pt;}
.y173{bottom:778.000000pt;}
.yf6{bottom:778.400000pt;}
.ya6{bottom:781.466667pt;}
.y192{bottom:781.866667pt;}
.yd{bottom:782.000000pt;}
.ya{bottom:783.200000pt;}
.y69{bottom:787.333333pt;}
.y14e{bottom:789.466667pt;}
.y11a{bottom:791.866667pt;}
.y1af{bottom:796.266667pt;}
.y42{bottom:799.333333pt;}
.y172{bottom:800.133333pt;}
.yf5{bottom:800.533333pt;}
.ya5{bottom:803.466667pt;}
.y9{bottom:806.000000pt;}
.y14d{bottom:807.733333pt;}
.y68{bottom:809.466667pt;}
.y119{bottom:813.866667pt;}
.y171{bottom:818.400000pt;}
.y41{bottom:821.466667pt;}
.y1ba{bottom:822.133333pt;}
.yf4{bottom:822.533333pt;}
.ya4{bottom:825.600000pt;}
.y14c{bottom:826.000000pt;}
.y83{bottom:831.466667pt;}
.y118{bottom:836.000000pt;}
.y1ae{bottom:836.666667pt;}
.y8{bottom:840.000000pt;}
.y170{bottom:840.400000pt;}
.y40{bottom:843.466667pt;}
.y14b{bottom:844.266667pt;}
.ya3{bottom:847.600000pt;}
.y82{bottom:853.600000pt;}
.yf3{bottom:857.333333pt;}
.y117{bottom:858.000000pt;}
.y16f{bottom:858.666667pt;}
.y14a{bottom:862.533333pt;}
.y3f{bottom:865.600000pt;}
.y7{bottom:867.200000pt;}
.ya2{bottom:869.733333pt;}
.yc2{bottom:875.600000pt;}
.y191{bottom:876.933333pt;}
.y16e{bottom:880.800000pt;}
.y149{bottom:884.533333pt;}
.y3e{bottom:887.600000pt;}
.y116{bottom:891.066667pt;}
.ya1{bottom:891.733333pt;}
.y6{bottom:897.600000pt;}
.y111{bottom:897.733333pt;}
.y16d{bottom:899.066667pt;}
.y148{bottom:902.800000pt;}
.y3d{bottom:909.733333pt;}
.ya0{bottom:913.866667pt;}
.y5{bottom:917.333333pt;}
.y110{bottom:919.733333pt;}
.y147{bottom:921.066667pt;}
.y3c{bottom:931.733333pt;}
.y1ad{bottom:935.600000pt;}
.y146{bottom:939.333333pt;}
.y9f{bottom:946.800000pt;}
.y4{bottom:949.600000pt;}
.y3b{bottom:953.866667pt;}
.y145{bottom:957.600000pt;}
.y9e{bottom:971.200000pt;}
.y3{bottom:972.400000pt;}
.y3a{bottom:975.866667pt;}
.y2{bottom:1034.933333pt;}
.hd{height:22.736458pt;}
.h10{height:30.208333pt;}
.h8{height:34.979167pt;}
.h6{height:37.239583pt;}
.h9{height:39.351562pt;}
.h2{height:43.723958pt;}
.h5{height:44.687500pt;}
.he{height:45.312500pt;}
.hb{height:48.096354pt;}
.h4{height:48.411458pt;}
.h7{height:52.468750pt;}
.hc{height:54.073437pt;}
.hf{height:61.213542pt;}
.h3{height:65.585938pt;}
.ha{height:69.958333pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.600000pt;}
.xc{left:124.933333pt;}
.x10{left:134.266667pt;}
.xa{left:143.866667pt;}
.xd{left:160.800000pt;}
.xe{left:170.266667pt;}
.x4{left:190.666667pt;}
.x2{left:223.733333pt;}
.xf{left:256.933333pt;}
.x8{left:270.666667pt;}
.x11{left:289.466667pt;}
.x3{left:316.666667pt;}
.x7{left:347.866667pt;}
.x6{left:488.800000pt;}
.xb{left:536.800000pt;}
.x5{left:554.800000pt;}
.x9{left:660.133333pt;}
}




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