
    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_d492d7133558be9d84d19c2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113000;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_430fc66627b9f56eef15d37b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_3ee7b7788350dd747f477b6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_981a8fbe6d6a3486f7791917.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_53e4d199e2c40a912f3e0a27.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_5d00cbcbd399bc940e1e1968.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_167e586202e34cfd4b13a6bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.135000;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_715634c7869a79e33045172a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_48eb4907497815d994a92b3f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.ls10{letter-spacing:-1.620000px;}
.lsf{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.020000px;}
.ls3{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.960000px;}
.ls4{letter-spacing:1.200000px;}
.lsc{letter-spacing:1.620000px;}
.ls0{letter-spacing:2.040000px;}
.ls2{letter-spacing:2.700000px;}
.lsd{letter-spacing:3.000000px;}
.lse{letter-spacing:36.126000px;}
.lsa{letter-spacing:518.196000px;}
.ls8{letter-spacing:518.376000px;}
.ls5{letter-spacing:519.396000px;}
.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;}
}
.ws15{word-spacing:-81.510000px;}
.ws0{word-spacing:-27.234000px;}
.ws8{word-spacing:-25.194000px;}
.ws17{word-spacing:-24.174000px;}
.ws1a{word-spacing:-21.627000px;}
.ws4{word-spacing:-20.007000px;}
.ws20{word-spacing:-16.320000px;}
.ws1e{word-spacing:-15.876000px;}
.ws1f{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.820000px;}
.ws10{word-spacing:-13.056000px;}
.ws11{word-spacing:-12.816000px;}
.ws1{word-spacing:-6.600000px;}
.ws3{word-spacing:-3.840000px;}
.ws14{word-spacing:-2.880000px;}
.ws9{word-spacing:-2.700000px;}
.wse{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.560000px;}
.ws1b{word-spacing:-1.380000px;}
.ws21{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.260000px;}
.wsb{word-spacing:-1.200000px;}
.ws12{word-spacing:-0.960000px;}
.ws5{word-spacing:-0.900000px;}
.wsf{word-spacing:-0.162000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.810000px;}
.wsa{word-spacing:199.980000px;}
.ws16{word-spacing:479.556000px;}
.ws1d{word-spacing:481.716000px;}
.ws1c{word-spacing:481.896000px;}
.ws19{word-spacing:482.916000px;}
.ws18{word-spacing:483.876000px;}
._10{margin-left:-199.500000px;}
._11{margin-left:-191.460000px;}
._1c{margin-left:-68.931000px;}
._15{margin-left:-39.660000px;}
._c{margin-left:-21.000000px;}
._1b{margin-left:-19.849500px;}
._13{margin-left:-18.516000px;}
._4{margin-left:-17.490000px;}
._17{margin-left:-15.060000px;}
._0{margin-left:-13.200000px;}
._14{margin-left:-11.520000px;}
._12{margin-left:-10.176000px;}
._d{margin-left:-8.100000px;}
._2{margin-left:-6.600000px;}
._9{margin-left:-4.860000px;}
._1{margin-left:-3.300000px;}
._6{margin-left:-2.040000px;}
._a{margin-left:-1.039500px;}
._8{width:1.129500px;}
._b{width:2.490000px;}
._7{width:3.600000px;}
._5{width:4.620000px;}
._3{width:6.600000px;}
._18{width:12.654000px;}
._1a{width:14.460000px;}
._19{width:15.540000px;}
._16{width:20.007000px;}
._e{width:44.772000px;}
._f{width:196.020000px;}
.fc3{color:rgb(102,154,155);}
.fc2{color:rgb(0,87,87);}
.fc1{color:rgb(0,55,53);}
.fc4{color:rgb(76,137,138);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs5{font-size:81.000000px;}
.fs1{font-size:102.000000px;}
.fs9{font-size:144.000000px;}
.fs2{font-size:192.000000px;}
.fs6{font-size:300.000000px;}
.fs0{font-size:330.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:23.545200px;}
.y8{bottom:23.545350px;}
.ybb{bottom:84.295200px;}
.yb1{bottom:104.545200px;}
.y66{bottom:104.545350px;}
.y13e{bottom:104.563350px;}
.yfc{bottom:109.783500px;}
.yb0{bottom:124.795200px;}
.y65{bottom:124.795350px;}
.y13d{bottom:124.807350px;}
.yd9{bottom:128.545350px;}
.y132{bottom:131.533500px;}
.ya0{bottom:138.543150px;}
.yaf{bottom:145.045200px;}
.y64{bottom:145.045350px;}
.y13c{bottom:145.051350px;}
.yd8{bottom:146.545350px;}
.y131{bottom:151.783500px;}
.yfb{bottom:155.557200px;}
.y9f{bottom:156.543150px;}
.yd7{bottom:164.545350px;}
.yad{bottom:165.295200px;}
.y63{bottom:165.295350px;}
.y3a{bottom:171.283500px;}
.y9e{bottom:174.543150px;}
.yd6{bottom:182.545350px;}
.y8f{bottom:185.545200px;}
.y62{bottom:185.545350px;}
.y39{bottom:191.533500px;}
.ya4{bottom:192.543150px;}
.y130{bottom:197.605350px;}
.yd5{bottom:200.545350px;}
.y30{bottom:205.742250px;}
.y8e{bottom:205.795200px;}
.y57{bottom:205.795350px;}
.y9d{bottom:209.547150px;}
.y38{bottom:211.783500px;}
.yd4{bottom:218.545350px;}
.y8d{bottom:226.045200px;}
.y56{bottom:226.045350px;}
.y9c{bottom:227.547150px;}
.y12f{bottom:227.593350px;}
.y2f{bottom:234.651750px;}
.yd3{bottom:236.545350px;}
.yfa{bottom:236.734050px;}
.y105{bottom:243.283500px;}
.y9b{bottom:245.547150px;}
.y8c{bottom:246.295200px;}
.y55{bottom:246.295350px;}
.yd2{bottom:254.545350px;}
.y37{bottom:257.581350px;}
.y122{bottom:260.591700px;}
.ya3{bottom:263.547150px;}
.y8b{bottom:266.545200px;}
.y54{bottom:266.545350px;}
.y9a{bottom:280.551150px;}
.y8a{bottom:286.795200px;}
.y53{bottom:286.795350px;}
.y36{bottom:287.569350px;}
.y121{bottom:287.584950px;}
.y104{bottom:289.117200px;}
.y99{bottom:298.551150px;}
.yac{bottom:307.045200px;}
.y59{bottom:307.045350px;}
.y120{bottom:314.578200px;}
.y98{bottom:316.551150px;}
.y35{bottom:317.557350px;}
.y103{bottom:319.105200px;}
.yab{bottom:327.295200px;}
.y52{bottom:327.295350px;}
.y2e{bottom:331.163250px;}
.ya2{bottom:334.551150px;}
.y11f{bottom:341.571450px;}
.yae{bottom:347.545200px;}
.y34{bottom:347.545350px;}
.y102{bottom:349.093200px;}
.y97{bottom:351.555150px;}
.y2d{bottom:358.156500px;}
.yaa{bottom:367.795200px;}
.y51{bottom:367.795350px;}
.y96{bottom:369.555150px;}
.yf1{bottom:373.783500px;}
.y43{bottom:374.533500px;}
.y101{bottom:379.081200px;}
.y2c{bottom:385.149750px;}
.y95{bottom:387.555150px;}
.ya9{bottom:388.045200px;}
.y50{bottom:388.045350px;}
.y11e{bottom:389.827200px;}
.yf0{bottom:394.033500px;}
.y42{bottom:394.783500px;}
.y12e{bottom:404.290950px;}
.ya1{bottom:405.555150px;}
.ya8{bottom:408.295200px;}
.y4f{bottom:408.295350px;}
.y100{bottom:409.069200px;}
.y2b{bottom:412.143000px;}
.y33{bottom:412.446450px;}
.y11d{bottom:416.820450px;}
.y94{bottom:422.559150px;}
.ya7{bottom:428.545200px;}
.y4e{bottom:428.545350px;}
.yff{bottom:439.057200px;}
.y2a{bottom:439.136250px;}
.yef{bottom:439.831200px;}
.y93{bottom:440.559150px;}
.y41{bottom:440.605200px;}
.ya6{bottom:448.795200px;}
.y4d{bottom:448.795350px;}
.y92{bottom:458.559150px;}
.y11c{bottom:465.076200px;}
.y7b{bottom:468.301950px;}
.ya5{bottom:469.045200px;}
.y4c{bottom:469.045350px;}
.yee{bottom:469.819200px;}
.y40{bottom:470.593200px;}
.y91{bottom:476.559150px;}
.y29{bottom:487.392000px;}
.yba{bottom:489.295200px;}
.y4b{bottom:489.295350px;}
.y11b{bottom:492.069450px;}
.y7a{bottom:495.295200px;}
.yed{bottom:499.807200px;}
.y3f{bottom:500.581200px;}
.yb9{bottom:509.545200px;}
.y4a{bottom:509.545350px;}
.y108{bottom:509.551200px;}
.y16{bottom:510.099600px;}
.y90{bottom:511.567050px;}
.y28{bottom:514.385250px;}
.yfe{bottom:525.353850px;}
.yb2{bottom:529.795200px;}
.y49{bottom:529.795350px;}
.yc4{bottom:529.855950px;}
.y3e{bottom:530.569200px;}
.y11a{bottom:540.325200px;}
.y27{bottom:541.378500px;}
.y107{bottom:542.548200px;}
.yb8{bottom:550.045200px;}
.y58{bottom:550.045350px;}
.y15{bottom:555.864600px;}
.yc3{bottom:556.849200px;}
.y3d{bottom:560.557200px;}
.y119{bottom:567.318450px;}
.y26{bottom:568.371750px;}
.yb7{bottom:570.295200px;}
.y48{bottom:570.295350px;}
.y106{bottom:575.545200px;}
.yc2{bottom:583.842450px;}
.yec{bottom:586.103850px;}
.y14{bottom:588.872100px;}
.y3c{bottom:590.545200px;}
.y47{bottom:590.545350px;}
.y25{bottom:595.365000px;}
.y79{bottom:596.802450px;}
.y6{bottom:597.295200px;}
.y12d{bottom:604.213950px;}
.yb6{bottom:610.795200px;}
.y46{bottom:610.795350px;}
.yc1{bottom:610.835700px;}
.y118{bottom:615.574200px;}
.y24{bottom:622.358250px;}
.y78{bottom:623.795700px;}
.y89{bottom:631.045200px;}
.y45{bottom:631.045350px;}
.y12c{bottom:631.207200px;}
.y13{bottom:634.637100px;}
.yc0{bottom:637.828950px;}
.y117{bottom:642.567450px;}
.y3b{bottom:644.887350px;}
.y23{bottom:649.351500px;}
.y77{bottom:650.788950px;}
.y5{bottom:651.295200px;}
.y44{bottom:651.295350px;}
.y7f{bottom:651.399750px;}
.y12b{bottom:658.200450px;}
.ybf{bottom:664.822200px;}
.y116{bottom:669.560700px;}
.y88{bottom:671.545200px;}
.yeb{bottom:671.545350px;}
.y22{bottom:676.344750px;}
.y76{bottom:677.782200px;}
.y7e{bottom:678.393000px;}
.y12{bottom:680.402100px;}
.y12a{bottom:685.193700px;}
.y87{bottom:691.795200px;}
.y13b{bottom:691.795350px;}
.ybe{bottom:691.815450px;}
.y109{bottom:702.253350px;}
.y75{bottom:704.775450px;}
.y67{bottom:712.045200px;}
.y13a{bottom:712.045350px;}
.y129{bottom:712.186950px;}
.y115{bottom:717.816450px;}
.ybd{bottom:718.808700px;}
.y21{bottom:724.600500px;}
.y11{bottom:726.167100px;}
.y74{bottom:731.768700px;}
.y86{bottom:732.295200px;}
.y139{bottom:732.295350px;}
.y61{bottom:739.078950px;}
.y128{bottom:739.180200px;}
.y114{bottom:744.809700px;}
.yd1{bottom:745.790700px;}
.ybc{bottom:745.801950px;}
.y20{bottom:751.593750px;}
.yb5{bottom:752.545200px;}
.y138{bottom:752.545350px;}
.y73{bottom:758.761950px;}
.y10{bottom:759.174600px;}
.y60{bottom:766.072200px;}
.y127{bottom:766.173450px;}
.y113{bottom:771.802950px;}
.yb4{bottom:772.795200px;}
.y1f{bottom:778.587000px;}
.y3{bottom:785.575350px;}
.y7d{bottom:789.677250px;}
.yf{bottom:792.182100px;}
.yea{bottom:793.045200px;}
.y137{bottom:793.045350px;}
.y5f{bottom:793.065450px;}
.y126{bottom:793.166700px;}
.y112{bottom:798.796200px;}
.y1e{bottom:805.580250px;}
.y72{bottom:807.017700px;}
.yc9{bottom:813.295200px;}
.y136{bottom:813.295350px;}
.y7c{bottom:816.670500px;}
.y5e{bottom:820.058700px;}
.y125{bottom:820.159950px;}
.ye{bottom:825.189600px;}
.y1d{bottom:832.573500px;}
.ye9{bottom:833.545200px;}
.y135{bottom:833.545350px;}
.y71{bottom:834.010950px;}
.y5d{bottom:847.051950px;}
.y124{bottom:847.153200px;}
.yc8{bottom:853.750500px;}
.y10c{bottom:853.795200px;}
.y134{bottom:853.795350px;}
.yd{bottom:858.197100px;}
.y1c{bottom:859.566750px;}
.y70{bottom:861.004200px;}
.y2{bottom:869.560350px;}
.y5c{bottom:874.045200px;}
.y133{bottom:874.045350px;}
.ye8{bottom:874.065750px;}
.y123{bottom:874.146450px;}
.y1b{bottom:886.560000px;}
.y6f{bottom:887.997450px;}
.y10b{bottom:894.295200px;}
.yc{bottom:903.962100px;}
.y6e{bottom:914.990700px;}
.yd0{bottom:928.072500px;}
.yc7{bottom:934.765500px;}
.y10a{bottom:934.795200px;}
.ye3{bottom:934.795350px;}
.y1a{bottom:934.815750px;}
.yb{bottom:936.969600px;}
.yf9{bottom:941.533500px;}
.y6d{bottom:941.983950px;}
.yfd{bottom:948.322500px;}
.y1{bottom:953.545350px;}
.ye2{bottom:955.045350px;}
.ycf{bottom:955.065750px;}
.yf8{bottom:961.783500px;}
.y19{bottom:961.809000px;}
.y6c{bottom:968.977200px;}
.ya{bottom:969.977100px;}
.ye1{bottom:975.295350px;}
.ye7{bottom:975.315750px;}
.yce{bottom:982.059000px;}
.y18{bottom:988.802250px;}
.y85{bottom:995.545200px;}
.ye0{bottom:995.545350px;}
.y6b{bottom:995.970450px;}
.ye6{bottom:1002.309000px;}
.y10f{bottom:1005.301500px;}
.yf7{bottom:1007.605200px;}
.ycd{bottom:1009.052250px;}
.y141{bottom:1014.053700px;}
.y9{bottom:1015.742100px;}
.y111{bottom:1015.780200px;}
.y5b{bottom:1015.780350px;}
.yc6{bottom:1015.780500px;}
.y84{bottom:1015.795200px;}
.ydf{bottom:1015.795350px;}
.y17{bottom:1015.795500px;}
.ye5{bottom:1029.302250px;}
.y83{bottom:1036.045200px;}
.yde{bottom:1036.045350px;}
.ycc{bottom:1036.045500px;}
.yf6{bottom:1037.593200px;}
.y10e{bottom:1038.298500px;}
.y140{bottom:1045.299450px;}
.y82{bottom:1056.295200px;}
.ydd{bottom:1056.295350px;}
.ye4{bottom:1056.295500px;}
.y6a{bottom:1058.569200px;}
.yf5{bottom:1067.581200px;}
.y10d{bottom:1071.295500px;}
.y81{bottom:1076.545200px;}
.ydc{bottom:1076.545350px;}
.y4{bottom:1092.567900px;}
.y80{bottom:1096.795200px;}
.y5a{bottom:1096.795350px;}
.yc5{bottom:1096.795500px;}
.yf4{bottom:1097.569200px;}
.y69{bottom:1108.057200px;}
.ycb{bottom:1108.057500px;}
.ydb{bottom:1117.045350px;}
.y32{bottom:1117.045500px;}
.yf3{bottom:1127.557200px;}
.y68{bottom:1157.545200px;}
.yda{bottom:1157.545350px;}
.yca{bottom:1157.545500px;}
.yb3{bottom:1161.295200px;}
.y31{bottom:1177.795200px;}
.y13f{bottom:1177.795350px;}
.y110{bottom:1178.097150px;}
.yf2{bottom:1206.307050px;}
.h8{height:31.500000px;}
.h5{height:39.960000px;}
.hd{height:42.624000px;}
.hc{height:43.392000px;}
.h6{height:53.280000px;}
.hf{height:54.240000px;}
.hb{height:56.952000px;}
.ha{height:69.228516px;}
.h7{height:71.928000px;}
.h3{height:90.576000px;}
.he{height:127.872000px;}
.h4{height:170.496000px;}
.h9{height:203.613281px;}
.h2{height:293.040000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:21.259800px;}
.x23{left:46.771800px;}
.x5{left:51.023550px;}
.x1{left:53.574750px;}
.x6{left:55.275600px;}
.x4a{left:56.692950px;}
.x3c{left:65.569500px;}
.xa{left:67.913700px;}
.xc{left:70.616700px;}
.xb{left:72.095700px;}
.x3e{left:75.234000px;}
.x45{left:77.958450px;}
.x2{left:82.361550px;}
.x3d{left:87.525000px;}
.x7{left:89.295600px;}
.x48{left:91.983450px;}
.x22{left:93.791400px;}
.xe{left:95.773800px;}
.x1e{left:100.984200px;}
.x40{left:106.141200px;}
.x47{left:110.521950px;}
.x10{left:111.643800px;}
.x49{left:112.928700px;}
.x46{left:114.907950px;}
.xd{left:118.021200px;}
.x1c{left:122.244150px;}
.x36{left:126.836700px;}
.x3f{left:128.172000px;}
.x37{left:132.344700px;}
.x38{left:133.874700px;}
.x2b{left:137.374050px;}
.x3{left:148.818900px;}
.xf{left:158.998800px;}
.x39{left:175.477050px;}
.x1b{left:187.972500px;}
.x4{left:189.212550px;}
.x2d{left:214.724400px;}
.x9{left:223.422300px;}
.x3a{left:230.092050px;}
.x3b{left:234.052200px;}
.x35{left:302.030550px;}
.x28{left:310.393650px;}
.x41{left:323.149650px;}
.x2a{left:328.996050px;}
.x24{left:335.905650px;}
.x1d{left:390.118050px;}
.x1f{left:435.829200px;}
.x21{left:457.089150px;}
.x16{left:459.330300px;}
.x15{left:470.652300px;}
.x31{left:476.433450px;}
.x18{left:481.419750px;}
.x17{left:493.500300px;}
.x32{left:495.354450px;}
.x13{left:496.432800px;}
.x12{left:503.037300px;}
.x34{left:508.623600px;}
.x14{left:512.956800px;}
.x1a{left:524.055150px;}
.x44{left:536.286150px;}
.x2c{left:549.557850px;}
.x30{left:559.716450px;}
.x19{left:565.074750px;}
.x33{left:588.199950px;}
.x42{left:591.023700px;}
.x29{left:599.527500px;}
.x43{left:606.665250px;}
.x25{left:625.039350px;}
.x11{left:646.493250px;}
.x2f{left:649.682100px;}
.x20{left:678.720450px;}
.x2e{left:828.285000px;}
.x26{left:831.060000px;}
.x8{left:833.699850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.440000pt;}
.lsf{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.906667pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.853333pt;}
.ls4{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.813333pt;}
.ls2{letter-spacing:2.400000pt;}
.lsd{letter-spacing:2.666667pt;}
.lse{letter-spacing:32.112000pt;}
.lsa{letter-spacing:460.618667pt;}
.ls8{letter-spacing:460.778667pt;}
.ls5{letter-spacing:461.685333pt;}
.ws15{word-spacing:-72.453333pt;}
.ws0{word-spacing:-24.208000pt;}
.ws8{word-spacing:-22.394667pt;}
.ws17{word-spacing:-21.488000pt;}
.ws1a{word-spacing:-19.224000pt;}
.ws4{word-spacing:-17.784000pt;}
.ws20{word-spacing:-14.506667pt;}
.ws1e{word-spacing:-14.112000pt;}
.ws1f{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.173333pt;}
.ws10{word-spacing:-11.605333pt;}
.ws11{word-spacing:-11.392000pt;}
.ws1{word-spacing:-5.866667pt;}
.ws3{word-spacing:-3.413333pt;}
.ws14{word-spacing:-2.560000pt;}
.ws9{word-spacing:-2.400000pt;}
.wse{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.386667pt;}
.ws1b{word-spacing:-1.226667pt;}
.ws21{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.120000pt;}
.wsb{word-spacing:-1.066667pt;}
.ws12{word-spacing:-0.853333pt;}
.ws5{word-spacing:-0.800000pt;}
.wsf{word-spacing:-0.144000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.720000pt;}
.wsa{word-spacing:177.760000pt;}
.ws16{word-spacing:426.272000pt;}
.ws1d{word-spacing:428.192000pt;}
.ws1c{word-spacing:428.352000pt;}
.ws19{word-spacing:429.258667pt;}
.ws18{word-spacing:430.112000pt;}
._10{margin-left:-177.333333pt;}
._11{margin-left:-170.186667pt;}
._1c{margin-left:-61.272000pt;}
._15{margin-left:-35.253333pt;}
._c{margin-left:-18.666667pt;}
._1b{margin-left:-17.644000pt;}
._13{margin-left:-16.458667pt;}
._4{margin-left:-15.546667pt;}
._17{margin-left:-13.386667pt;}
._0{margin-left:-11.733333pt;}
._14{margin-left:-10.240000pt;}
._12{margin-left:-9.045333pt;}
._d{margin-left:-7.200000pt;}
._2{margin-left:-5.866667pt;}
._9{margin-left:-4.320000pt;}
._1{margin-left:-2.933333pt;}
._6{margin-left:-1.813333pt;}
._a{margin-left:-0.924000pt;}
._8{width:1.004000pt;}
._b{width:2.213333pt;}
._7{width:3.200000pt;}
._5{width:4.106667pt;}
._3{width:5.866667pt;}
._18{width:11.248000pt;}
._1a{width:12.853333pt;}
._19{width:13.813333pt;}
._16{width:17.784000pt;}
._e{width:39.797333pt;}
._f{width:174.240000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:72.000000pt;}
.fs1{font-size:90.666667pt;}
.fs9{font-size:128.000000pt;}
.fs2{font-size:170.666667pt;}
.fs6{font-size:266.666667pt;}
.fs0{font-size:293.333333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:20.929067pt;}
.y8{bottom:20.929200pt;}
.ybb{bottom:74.929067pt;}
.yb1{bottom:92.929067pt;}
.y66{bottom:92.929200pt;}
.y13e{bottom:92.945200pt;}
.yfc{bottom:97.585333pt;}
.yb0{bottom:110.929067pt;}
.y65{bottom:110.929200pt;}
.y13d{bottom:110.939867pt;}
.yd9{bottom:114.262533pt;}
.y132{bottom:116.918667pt;}
.ya0{bottom:123.149467pt;}
.yaf{bottom:128.929067pt;}
.y64{bottom:128.929200pt;}
.y13c{bottom:128.934533pt;}
.yd8{bottom:130.262533pt;}
.y131{bottom:134.918667pt;}
.yfb{bottom:138.273067pt;}
.y9f{bottom:139.149467pt;}
.yd7{bottom:146.262533pt;}
.yad{bottom:146.929067pt;}
.y63{bottom:146.929200pt;}
.y3a{bottom:152.252000pt;}
.y9e{bottom:155.149467pt;}
.yd6{bottom:162.262533pt;}
.y8f{bottom:164.929067pt;}
.y62{bottom:164.929200pt;}
.y39{bottom:170.252000pt;}
.ya4{bottom:171.149467pt;}
.y130{bottom:175.649200pt;}
.yd5{bottom:178.262533pt;}
.y30{bottom:182.882000pt;}
.y8e{bottom:182.929067pt;}
.y57{bottom:182.929200pt;}
.y9d{bottom:186.264133pt;}
.y38{bottom:188.252000pt;}
.yd4{bottom:194.262533pt;}
.y8d{bottom:200.929067pt;}
.y56{bottom:200.929200pt;}
.y9c{bottom:202.264133pt;}
.y12f{bottom:202.305200pt;}
.y2f{bottom:208.579333pt;}
.yd3{bottom:210.262533pt;}
.yfa{bottom:210.430267pt;}
.y105{bottom:216.252000pt;}
.y9b{bottom:218.264133pt;}
.y8c{bottom:218.929067pt;}
.y55{bottom:218.929200pt;}
.yd2{bottom:226.262533pt;}
.y37{bottom:228.961200pt;}
.y122{bottom:231.637067pt;}
.ya3{bottom:234.264133pt;}
.y8b{bottom:236.929067pt;}
.y54{bottom:236.929200pt;}
.y9a{bottom:249.378800pt;}
.y8a{bottom:254.929067pt;}
.y53{bottom:254.929200pt;}
.y36{bottom:255.617200pt;}
.y121{bottom:255.631067pt;}
.y104{bottom:256.993067pt;}
.y99{bottom:265.378800pt;}
.yac{bottom:272.929067pt;}
.y59{bottom:272.929200pt;}
.y120{bottom:279.625067pt;}
.y98{bottom:281.378800pt;}
.y35{bottom:282.273200pt;}
.y103{bottom:283.649067pt;}
.yab{bottom:290.929067pt;}
.y52{bottom:290.929200pt;}
.y2e{bottom:294.367333pt;}
.ya2{bottom:297.378800pt;}
.y11f{bottom:303.619067pt;}
.yae{bottom:308.929067pt;}
.y34{bottom:308.929200pt;}
.y102{bottom:310.305067pt;}
.y97{bottom:312.493467pt;}
.y2d{bottom:318.361333pt;}
.yaa{bottom:326.929067pt;}
.y51{bottom:326.929200pt;}
.y96{bottom:328.493467pt;}
.yf1{bottom:332.252000pt;}
.y43{bottom:332.918667pt;}
.y101{bottom:336.961067pt;}
.y2c{bottom:342.355333pt;}
.y95{bottom:344.493467pt;}
.ya9{bottom:344.929067pt;}
.y50{bottom:344.929200pt;}
.y11e{bottom:346.513067pt;}
.yf0{bottom:350.252000pt;}
.y42{bottom:350.918667pt;}
.y12e{bottom:359.369733pt;}
.ya1{bottom:360.493467pt;}
.ya8{bottom:362.929067pt;}
.y4f{bottom:362.929200pt;}
.y100{bottom:363.617067pt;}
.y2b{bottom:366.349333pt;}
.y33{bottom:366.619067pt;}
.y11d{bottom:370.507067pt;}
.y94{bottom:375.608133pt;}
.ya7{bottom:380.929067pt;}
.y4e{bottom:380.929200pt;}
.yff{bottom:390.273067pt;}
.y2a{bottom:390.343333pt;}
.yef{bottom:390.961067pt;}
.y93{bottom:391.608133pt;}
.y41{bottom:391.649067pt;}
.ya6{bottom:398.929067pt;}
.y4d{bottom:398.929200pt;}
.y92{bottom:407.608133pt;}
.y11c{bottom:413.401067pt;}
.y7b{bottom:416.268400pt;}
.ya5{bottom:416.929067pt;}
.y4c{bottom:416.929200pt;}
.yee{bottom:417.617067pt;}
.y40{bottom:418.305067pt;}
.y91{bottom:423.608133pt;}
.y29{bottom:433.237333pt;}
.yba{bottom:434.929067pt;}
.y4b{bottom:434.929200pt;}
.y11b{bottom:437.395067pt;}
.y7a{bottom:440.262400pt;}
.yed{bottom:444.273067pt;}
.y3f{bottom:444.961067pt;}
.yb9{bottom:452.929067pt;}
.y4a{bottom:452.929200pt;}
.y108{bottom:452.934400pt;}
.y16{bottom:453.421867pt;}
.y90{bottom:454.726267pt;}
.y28{bottom:457.231333pt;}
.yfe{bottom:466.981200pt;}
.yb2{bottom:470.929067pt;}
.y49{bottom:470.929200pt;}
.yc4{bottom:470.983067pt;}
.y3e{bottom:471.617067pt;}
.y11a{bottom:480.289067pt;}
.y27{bottom:481.225333pt;}
.y107{bottom:482.265067pt;}
.yb8{bottom:488.929067pt;}
.y58{bottom:488.929200pt;}
.y15{bottom:494.101867pt;}
.yc3{bottom:494.977067pt;}
.y3d{bottom:498.273067pt;}
.y119{bottom:504.283067pt;}
.y26{bottom:505.219333pt;}
.yb7{bottom:506.929067pt;}
.y48{bottom:506.929200pt;}
.y106{bottom:511.595733pt;}
.yc2{bottom:518.971067pt;}
.yec{bottom:520.981200pt;}
.y14{bottom:523.441867pt;}
.y3c{bottom:524.929067pt;}
.y47{bottom:524.929200pt;}
.y25{bottom:529.213333pt;}
.y79{bottom:530.491067pt;}
.y6{bottom:530.929067pt;}
.y12d{bottom:537.079067pt;}
.yb6{bottom:542.929067pt;}
.y46{bottom:542.929200pt;}
.yc1{bottom:542.965067pt;}
.y118{bottom:547.177067pt;}
.y24{bottom:553.207333pt;}
.y78{bottom:554.485067pt;}
.y89{bottom:560.929067pt;}
.y45{bottom:560.929200pt;}
.y12c{bottom:561.073067pt;}
.y13{bottom:564.121867pt;}
.yc0{bottom:566.959067pt;}
.y117{bottom:571.171067pt;}
.y3b{bottom:573.233200pt;}
.y23{bottom:577.201333pt;}
.y77{bottom:578.479067pt;}
.y5{bottom:578.929067pt;}
.y44{bottom:578.929200pt;}
.y7f{bottom:579.022000pt;}
.y12b{bottom:585.067067pt;}
.ybf{bottom:590.953067pt;}
.y116{bottom:595.165067pt;}
.y88{bottom:596.929067pt;}
.yeb{bottom:596.929200pt;}
.y22{bottom:601.195333pt;}
.y76{bottom:602.473067pt;}
.y7e{bottom:603.016000pt;}
.y12{bottom:604.801867pt;}
.y12a{bottom:609.061067pt;}
.y87{bottom:614.929067pt;}
.y13b{bottom:614.929200pt;}
.ybe{bottom:614.947067pt;}
.y109{bottom:624.225200pt;}
.y75{bottom:626.467067pt;}
.y67{bottom:632.929067pt;}
.y13a{bottom:632.929200pt;}
.y129{bottom:633.055067pt;}
.y115{bottom:638.059067pt;}
.ybd{bottom:638.941067pt;}
.y21{bottom:644.089333pt;}
.y11{bottom:645.481867pt;}
.y74{bottom:650.461067pt;}
.y86{bottom:650.929067pt;}
.y139{bottom:650.929200pt;}
.y61{bottom:656.959067pt;}
.y128{bottom:657.049067pt;}
.y114{bottom:662.053067pt;}
.yd1{bottom:662.925067pt;}
.ybc{bottom:662.935067pt;}
.y20{bottom:668.083333pt;}
.yb5{bottom:668.929067pt;}
.y138{bottom:668.929200pt;}
.y73{bottom:674.455067pt;}
.y10{bottom:674.821867pt;}
.y60{bottom:680.953067pt;}
.y127{bottom:681.043067pt;}
.y113{bottom:686.047067pt;}
.yb4{bottom:686.929067pt;}
.y1f{bottom:692.077333pt;}
.y3{bottom:698.289200pt;}
.y7d{bottom:701.935333pt;}
.yf{bottom:704.161867pt;}
.yea{bottom:704.929067pt;}
.y137{bottom:704.929200pt;}
.y5f{bottom:704.947067pt;}
.y126{bottom:705.037067pt;}
.y112{bottom:710.041067pt;}
.y1e{bottom:716.071333pt;}
.y72{bottom:717.349067pt;}
.yc9{bottom:722.929067pt;}
.y136{bottom:722.929200pt;}
.y7c{bottom:725.929333pt;}
.y5e{bottom:728.941067pt;}
.y125{bottom:729.031067pt;}
.ye{bottom:733.501867pt;}
.y1d{bottom:740.065333pt;}
.ye9{bottom:740.929067pt;}
.y135{bottom:740.929200pt;}
.y71{bottom:741.343067pt;}
.y5d{bottom:752.935067pt;}
.y124{bottom:753.025067pt;}
.yc8{bottom:758.889333pt;}
.y10c{bottom:758.929067pt;}
.y134{bottom:758.929200pt;}
.yd{bottom:762.841867pt;}
.y1c{bottom:764.059333pt;}
.y70{bottom:765.337067pt;}
.y2{bottom:772.942533pt;}
.y5c{bottom:776.929067pt;}
.y133{bottom:776.929200pt;}
.ye8{bottom:776.947333pt;}
.y123{bottom:777.019067pt;}
.y1b{bottom:788.053333pt;}
.y6f{bottom:789.331067pt;}
.y10b{bottom:794.929067pt;}
.yc{bottom:803.521867pt;}
.y6e{bottom:813.325067pt;}
.yd0{bottom:824.953333pt;}
.yc7{bottom:830.902667pt;}
.y10a{bottom:830.929067pt;}
.ye3{bottom:830.929200pt;}
.y1a{bottom:830.947333pt;}
.yb{bottom:832.861867pt;}
.yf9{bottom:836.918667pt;}
.y6d{bottom:837.319067pt;}
.yfd{bottom:842.953333pt;}
.y1{bottom:847.595867pt;}
.ye2{bottom:848.929200pt;}
.ycf{bottom:848.947333pt;}
.yf8{bottom:854.918667pt;}
.y19{bottom:854.941333pt;}
.y6c{bottom:861.313067pt;}
.ya{bottom:862.201867pt;}
.ye1{bottom:866.929200pt;}
.ye7{bottom:866.947333pt;}
.yce{bottom:872.941333pt;}
.y18{bottom:878.935333pt;}
.y85{bottom:884.929067pt;}
.ye0{bottom:884.929200pt;}
.y6b{bottom:885.307067pt;}
.ye6{bottom:890.941333pt;}
.y10f{bottom:893.601333pt;}
.yf7{bottom:895.649067pt;}
.ycd{bottom:896.935333pt;}
.y141{bottom:901.381067pt;}
.y9{bottom:902.881867pt;}
.y111{bottom:902.915733pt;}
.y5b{bottom:902.915867pt;}
.yc6{bottom:902.916000pt;}
.y84{bottom:902.929067pt;}
.ydf{bottom:902.929200pt;}
.y17{bottom:902.929333pt;}
.ye5{bottom:914.935333pt;}
.y83{bottom:920.929067pt;}
.yde{bottom:920.929200pt;}
.ycc{bottom:920.929333pt;}
.yf6{bottom:922.305067pt;}
.y10e{bottom:922.932000pt;}
.y140{bottom:929.155067pt;}
.y82{bottom:938.929067pt;}
.ydd{bottom:938.929200pt;}
.ye4{bottom:938.929333pt;}
.y6a{bottom:940.950400pt;}
.yf5{bottom:948.961067pt;}
.y10d{bottom:952.262667pt;}
.y81{bottom:956.929067pt;}
.ydc{bottom:956.929200pt;}
.y4{bottom:971.171467pt;}
.y80{bottom:974.929067pt;}
.y5a{bottom:974.929200pt;}
.yc5{bottom:974.929333pt;}
.yf4{bottom:975.617067pt;}
.y69{bottom:984.939733pt;}
.ycb{bottom:984.940000pt;}
.ydb{bottom:992.929200pt;}
.y32{bottom:992.929333pt;}
.yf3{bottom:1002.273067pt;}
.y68{bottom:1028.929067pt;}
.yda{bottom:1028.929200pt;}
.yca{bottom:1028.929333pt;}
.yb3{bottom:1032.262400pt;}
.y31{bottom:1046.929067pt;}
.y13f{bottom:1046.929200pt;}
.y110{bottom:1047.197467pt;}
.yf2{bottom:1072.272933pt;}
.h8{height:28.000000pt;}
.h5{height:35.520000pt;}
.hd{height:37.888000pt;}
.hc{height:38.570667pt;}
.h6{height:47.360000pt;}
.hf{height:48.213333pt;}
.hb{height:50.624000pt;}
.ha{height:61.536458pt;}
.h7{height:63.936000pt;}
.h3{height:80.512000pt;}
.he{height:113.664000pt;}
.h4{height:151.552000pt;}
.h9{height:180.989583pt;}
.h2{height:260.480000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:18.897600pt;}
.x23{left:41.574933pt;}
.x5{left:45.354267pt;}
.x1{left:47.622000pt;}
.x6{left:49.133867pt;}
.x4a{left:50.393733pt;}
.x3c{left:58.284000pt;}
.xa{left:60.367733pt;}
.xc{left:62.770400pt;}
.xb{left:64.085067pt;}
.x3e{left:66.874667pt;}
.x45{left:69.296400pt;}
.x2{left:73.210267pt;}
.x3d{left:77.800000pt;}
.x7{left:79.373867pt;}
.x48{left:81.763067pt;}
.x22{left:83.370133pt;}
.xe{left:85.132267pt;}
.x1e{left:89.763733pt;}
.x40{left:94.347733pt;}
.x47{left:98.241733pt;}
.x10{left:99.238933pt;}
.x49{left:100.381067pt;}
.x46{left:102.140400pt;}
.xd{left:104.907733pt;}
.x1c{left:108.661467pt;}
.x36{left:112.743733pt;}
.x3f{left:113.930667pt;}
.x37{left:117.639733pt;}
.x38{left:118.999733pt;}
.x2b{left:122.110267pt;}
.x3{left:132.283467pt;}
.xf{left:141.332267pt;}
.x39{left:155.979600pt;}
.x1b{left:167.086667pt;}
.x4{left:168.188933pt;}
.x2d{left:190.866133pt;}
.x9{left:198.597600pt;}
.x3a{left:204.526267pt;}
.x3b{left:208.046400pt;}
.x35{left:268.471600pt;}
.x28{left:275.905467pt;}
.x41{left:287.244133pt;}
.x2a{left:292.440933pt;}
.x24{left:298.582800pt;}
.x1d{left:346.771600pt;}
.x1f{left:387.403733pt;}
.x21{left:406.301467pt;}
.x16{left:408.293600pt;}
.x15{left:418.357600pt;}
.x31{left:423.496400pt;}
.x18{left:427.928667pt;}
.x17{left:438.666933pt;}
.x32{left:440.315067pt;}
.x13{left:441.273600pt;}
.x12{left:447.144267pt;}
.x34{left:452.109867pt;}
.x14{left:455.961600pt;}
.x1a{left:465.826800pt;}
.x44{left:476.698800pt;}
.x2c{left:488.495867pt;}
.x30{left:497.525733pt;}
.x19{left:502.288667pt;}
.x33{left:522.844400pt;}
.x42{left:525.354400pt;}
.x29{left:532.913333pt;}
.x43{left:539.258000pt;}
.x25{left:555.590533pt;}
.x11{left:574.660667pt;}
.x2f{left:577.495200pt;}
.x20{left:603.307067pt;}
.x2e{left:736.253333pt;}
.x26{left:738.720000pt;}
.x8{left:741.066533pt;}
}




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