
    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_808beded57b70f7d82ed3c97.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_81e921c5e3e0762b1c6eb462.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.692871;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_c3ca7839d93a5610a96ccb98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_f775d177b90e0ab9ecf5d883.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_3c63b1ac73438c81bf111673.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_1dbce6b0aa2d668f5b0fafa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_879f87c19d0ba0ad6e19250d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;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_f37f4c2b04c42f976adefb14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_d5a32287eecd3f2e7750e5ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0cf4db81dfb4b178cd547973.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eeaf7d10595d1afb8eb02d23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5ffc6f9d3bd77c5115b554f1.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4703b0757fe3ef99c442dda7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_eb15bed723ab9b40b1445276.woff2')format("woff");}.ffe{font-family:ffe;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010620px;}
.ls3{letter-spacing:0.014880px;}
.ls0{letter-spacing:0.018600px;}
.lsc{letter-spacing:0.021238px;}
.lse{letter-spacing:0.021240px;}
.lsd{letter-spacing:0.021282px;}
.lsa{letter-spacing:0.378514px;}
.ls7{letter-spacing:62.077175px;}
.ls6{letter-spacing:62.112575px;}
.ls5{letter-spacing:62.797775px;}
.ls4{letter-spacing:62.832575px;}
.ls8{letter-spacing:126.266949px;}
.ls9{letter-spacing:214.880914px;}
.lsb{letter-spacing:977.627609px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.418587px;}
.ws6{word-spacing:-17.999993px;}
.ws4{word-spacing:-16.613273px;}
.ws2{word-spacing:-15.011994px;}
.ws8{word-spacing:-14.939994px;}
.ws0{word-spacing:-14.374074px;}
.ws9{word-spacing:-14.219994px;}
.ws1{word-spacing:-13.505755px;}
.wsa{word-spacing:-12.059995px;}
.ws5{word-spacing:0.000000px;}
._3c{margin-left:-9.907912px;}
._1a{margin-left:-8.516500px;}
._5{margin-left:-6.604499px;}
._6{margin-left:-5.009728px;}
._4{margin-left:-3.344361px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._17{width:2.014953px;}
._7{width:3.081319px;}
._b{width:4.771437px;}
._11{width:6.711917px;}
._8{width:7.878546px;}
._9{width:8.987967px;}
._14{width:10.514568px;}
._a{width:12.002357px;}
._1b{width:13.058208px;}
._12{width:14.073977px;}
._13{width:15.153338px;}
._2c{width:16.985686px;}
._15{width:19.686444px;}
._16{width:21.009275px;}
._e{width:22.400730px;}
._3b{width:23.502552px;}
._3d{width:24.558163px;}
._38{width:25.840809px;}
._f{width:26.962266px;}
._10{width:28.355068px;}
._c{width:29.448724px;}
._d{width:30.455249px;}
._19{width:31.517910px;}
._18{width:33.980469px;}
._35{width:36.370414px;}
._1f{width:39.560561px;}
._27{width:41.135245px;}
._39{width:42.551047px;}
._1e{width:44.648540px;}
._2b{width:48.671244px;}
._2e{width:51.594001px;}
._29{width:53.349071px;}
._1c{width:58.297509px;}
._32{width:59.435467px;}
._3a{width:60.650341px;}
._34{width:62.001664px;}
._37{width:64.391925px;}
._1d{width:65.960394px;}
._30{width:69.554428px;}
._36{width:73.316291px;}
._22{width:79.077241px;}
._2{width:82.287887px;}
._24{width:83.767550px;}
._33{width:85.450473px;}
._2f{width:95.676771px;}
._28{width:102.824022px;}
._26{width:115.791937px;}
._25{width:119.092602px;}
._23{width:163.600243px;}
._20{width:170.592344px;}
._31{width:189.150875px;}
._2d{width:193.639476px;}
._21{width:200.034472px;}
._2a{width:212.374109px;}
._3{width:2476.278537px;}
.fce{color:rgb(0,101,204);}
.fcd{color:rgb(0,176,80);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fcb{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcf{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fcc{color:rgb(56,87,36);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs6{font-size:56.879977px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y6{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y4e{bottom:1.979222px;}
.yed{bottom:3.959022px;}
.y17{bottom:4.319056px;}
.yc8{bottom:4.319082px;}
.ye9{bottom:4.498947px;}
.y48{bottom:4.498950px;}
.y19{bottom:4.499056px;}
.y28{bottom:4.499069px;}
.yd0{bottom:4.499149px;}
.ya{bottom:4.500038px;}
.y15{bottom:5.579056px;}
.yb{bottom:32.880287px;}
.y9{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y8f{bottom:133.679947px;}
.y132{bottom:134.219946px;}
.y11f{bottom:138.359945px;}
.y42{bottom:142.499943px;}
.ybe{bottom:148.979940px;}
.y73{bottom:157.439937px;}
.y131{bottom:161.039936px;}
.y153{bottom:163.199935px;}
.y8e{bottom:164.639934px;}
.y11e{bottom:169.319932px;}
.y41{bottom:173.639931px;}
.y106{bottom:177.419929px;}
.ybd{bottom:180.119928px;}
.y130{bottom:188.039925px;}
.y72{bottom:188.399925px;}
.y152{bottom:190.019924px;}
.y8d{bottom:195.779922px;}
.y11d{bottom:200.459920px;}
.ybc{bottom:201.539919px;}
.y40{bottom:204.599918px;}
.y105{bottom:208.559917px;}
.ye4{bottom:213.599915px;}
.y12f{bottom:214.859914px;}
.y151{bottom:217.019913px;}
.y71{bottom:219.539912px;}
.y8c{bottom:226.739909px;}
.y11c{bottom:231.419907px;}
.ye3{bottom:233.219907px;}
.y3f{bottom:235.739906px;}
.y104{bottom:239.519904px;}
.yb3{bottom:240.419904px;}
.y12e{bottom:241.859903px;}
.y150{bottom:243.839902px;}
.y70{bottom:250.499900px;}
.ybb{bottom:253.379899px;}
.ye2{bottom:253.919898px;}
.yb2{bottom:257.519897px;}
.y8b{bottom:257.879897px;}
.y11b{bottom:262.559895px;}
.y3e{bottom:266.699893px;}
.y12d{bottom:268.679893px;}
.y103{bottom:270.479892px;}
.y14f{bottom:270.839892px;}
.yba{bottom:271.199892px;}
.ye1{bottom:274.619890px;}
.yb1{bottom:274.799890px;}
.y6f{bottom:281.639887px;}
.y8a{bottom:288.839884px;}
.yb9{bottom:289.019884px;}
.yb0{bottom:292.079883px;}
.y11a{bottom:293.519883px;}
.ye0{bottom:295.319882px;}
.y12c{bottom:295.679882px;}
.y14e{bottom:297.659881px;}
.y3d{bottom:297.839881px;}
.y102{bottom:301.619879px;}
.y6e{bottom:302.339879px;}
.yb8{bottom:306.839877px;}
.yaf{bottom:309.359876px;}
.ydf{bottom:316.019874px;}
.y89{bottom:319.979872px;}
.y12b{bottom:322.499871px;}
.y6d{bottom:323.039871px;}
.y119{bottom:324.659870px;}
.yb7{bottom:324.839870px;}
.yae{bottom:326.639869px;}
.y3c{bottom:328.799868px;}
.y101{bottom:332.579867px;}
.yde{bottom:336.719865px;}
.yb6{bottom:342.659863px;}
.y6c{bottom:343.739863px;}
.yad{bottom:343.919862px;}
.y12a{bottom:349.499860px;}
.y88{bottom:350.939860px;}
.y14d{bottom:351.479859px;}
.y118{bottom:355.619858px;}
.ydd{bottom:357.419857px;}
.yb5{bottom:360.479856px;}
.yac{bottom:361.019856px;}
.y3b{bottom:363.359855px;}
.y100{bottom:363.719855px;}
.y6b{bottom:364.439854px;}
.y129{bottom:376.319849px;}
.ydc{bottom:378.119849px;}
.yb4{bottom:378.299849px;}
.y14c{bottom:378.479849px;}
.y87{bottom:382.079847px;}
.y6a{bottom:385.139846px;}
.y117{bottom:386.759845px;}
.y3a{bottom:392.699843px;}
.y26{bottom:393.059843px;}
.yff{bottom:394.679842px;}
.yab{bottom:396.119842px;}
.ydb{bottom:399.359840px;}
.y128{bottom:403.319839px;}
.y14b{bottom:405.299838px;}
.y69{bottom:405.839838px;}
.y86{bottom:413.039835px;}
.yaa{bottom:413.939834px;}
.y39{bottom:416.639833px;}
.y116{bottom:417.719833px;}
.yda{bottom:418.979832px;}
.yfe{bottom:425.819830px;}
.y68{bottom:426.539829px;}
.y127{bottom:430.139828px;}
.ya9{bottom:431.759827px;}
.y14a{bottom:432.299827px;}
.yd9{bottom:439.679824px;}
.y4d{bottom:442.380600px;}
.y85{bottom:444.359822px;}
.y67{bottom:447.239821px;}
.y115{bottom:448.859820px;}
.ya8{bottom:449.579820px;}
.yfd{bottom:456.779817px;}
.y126{bottom:457.139817px;}
.y149{bottom:459.119816px;}
.yd8{bottom:460.379816px;}
.y4c{bottom:462.899815px;}
.y84{bottom:466.679813px;}
.y66{bottom:467.939813px;}
.y114{bottom:479.819808px;}
.yd7{bottom:481.079808px;}
.y4b{bottom:481.619807px;}
.y124{bottom:483.959806px;}
.y148{bottom:486.119806px;}
.yfc{bottom:487.919805px;}
.y65{bottom:488.639805px;}
.y83{bottom:488.999804px;}
.y125{bottom:490.799804px;}
.ya6{bottom:499.979800px;}
.y4a{bottom:500.159800px;}
.ya4{bottom:500.519800px;}
.yd6{bottom:501.779799px;}
.y64{bottom:509.339796px;}
.y113{bottom:510.959796px;}
.y82{bottom:511.499795px;}
.y147{bottom:512.939795px;}
.ya5{bottom:517.799793px;}
.ya7{bottom:518.339793px;}
.yfb{bottom:518.879792px;}
.y49{bottom:519.599792px;}
.yd5{bottom:522.479791px;}
.y63{bottom:530.039788px;}
.y81{bottom:533.819786px;}
.ya3{bottom:535.619786px;}
.y123{bottom:537.779785px;}
.y25{bottom:539.219784px;}
.y146{bottom:539.939784px;}
.y112{bottom:541.919783px;}
.yd4{bottom:543.179783px;}
.yfa{bottom:550.019780px;}
.y62{bottom:550.739780px;}
.ya2{bottom:553.439779px;}
.y80{bottom:556.139778px;}
.y38{bottom:561.359775px;}
.yd3{bottom:563.879774px;}
.y122{bottom:564.779774px;}
.y145{bottom:566.759773px;}
.ya1{bottom:571.259771px;}
.y61{bottom:571.439771px;}
.y111{bottom:573.059771px;}
.y7f{bottom:578.459769px;}
.y37{bottom:578.639769px;}
.yf9{bottom:580.979768px;}
.yd2{bottom:584.579766px;}
.yce{bottom:585.119766px;}
.ya0{bottom:589.079764px;}
.y121{bottom:591.599763px;}
.y60{bottom:592.139763px;}
.y144{bottom:593.759762px;}
.y36{bottom:595.739762px;}
.y7e{bottom:600.779760px;}
.y110{bottom:604.019758px;}
.ycd{bottom:604.739758px;}
.yd1{bottom:605.279758px;}
.y9f{bottom:606.899757px;}
.yf8{bottom:612.119755px;}
.y5f{bottom:612.839755px;}
.y35{bottom:613.019755px;}
.y120{bottom:618.599753px;}
.y143{bottom:620.579752px;}
.ycf{bottom:622.020600px;}
.y7d{bottom:623.099751px;}
.y9e{bottom:624.719750px;}
.ycc{bottom:625.439750px;}
.y24{bottom:627.419749px;}
.y10f{bottom:635.159746px;}
.y34{bottom:639.299744px;}
.yf7{bottom:643.079743px;}
.y5e{bottom:643.799742px;}
.y7c{bottom:645.419742px;}
.y142{bottom:647.579741px;}
.ycb{bottom:648.839740px;}
.y23{bottom:654.419738px;}
.y33{bottom:656.579737px;}
.y9d{bottom:660.539736px;}
.yca{bottom:665.579734px;}
.y10e{bottom:666.119734px;}
.y22{bottom:670.979732px;}
.y7b{bottom:672.419731px;}
.y32{bottom:673.859730px;}
.yf6{bottom:674.219730px;}
.y141{bottom:674.399730px;}
.y5d{bottom:674.759730px;}
.y9c{bottom:678.359729px;}
.y21{bottom:687.359725px;}
.y31{bottom:691.139724px;}
.y9b{bottom:696.179722px;}
.y10d{bottom:697.259721px;}
.y7a{bottom:699.239720px;}
.y140{bottom:701.399719px;}
.y20{bottom:702.659719px;}
.yf5{bottom:705.179718px;}
.y5c{bottom:705.899718px;}
.y30{bottom:708.239717px;}
.y9a{bottom:713.999714px;}
.y2f{bottom:725.519710px;}
.y79{bottom:726.239710px;}
.y10c{bottom:728.219709px;}
.y1f{bottom:728.399709px;}
.y99{bottom:731.819707px;}
.yf4{bottom:736.319705px;}
.y5b{bottom:736.859705px;}
.y2e{bottom:742.799703px;}
.y98{bottom:749.639700px;}
.y78{bottom:753.059699px;}
.y1e{bottom:754.319698px;}
.y13f{bottom:755.219698px;}
.y10b{bottom:759.359696px;}
.y2d{bottom:760.079696px;}
.yf3{bottom:767.279693px;}
.y5a{bottom:767.999693px;}
.yc9{bottom:775.559690px;}
.y2c{bottom:777.359689px;}
.y1d{bottom:780.059688px;}
.y13e{bottom:782.039687px;}
.y10a{bottom:790.319684px;}
.yc7{bottom:790.860600px;}
.y2b{bottom:794.639682px;}
.yc6{bottom:795.179682px;}
.y1c{bottom:796.799681px;}
.yf2{bottom:798.419681px;}
.y59{bottom:798.959680px;}
.y77{bottom:806.879677px;}
.y13d{bottom:809.039676px;}
.y2a{bottom:811.739675px;}
.yc5{bottom:815.879674px;}
.y97{bottom:818.399673px;}
.y109{bottom:821.459671px;}
.y27{bottom:822.900600px;}
.y29{bottom:829.019668px;}
.yf1{bottom:829.379668px;}
.y58{bottom:830.099668px;}
.y1b{bottom:830.279668px;}
.y76{bottom:833.879666px;}
.y13c{bottom:835.859666px;}
.y96{bottom:836.219666px;}
.yc4{bottom:844.499662px;}
.y108{bottom:852.419659px;}
.y95{bottom:854.039658px;}
.y14{bottom:855.480600px;}
.y16{bottom:856.560600px;}
.yf0{bottom:860.519656px;}
.y75{bottom:860.699656px;}
.y18{bottom:861.059656px;}
.yc3{bottom:861.239656px;}
.y1a{bottom:862.499655px;}
.y13b{bottom:862.859655px;}
.y94{bottom:871.859651px;}
.y107{bottom:883.379647px;}
.y74{bottom:887.519645px;}
.y13{bottom:889.679644px;}
.yef{bottom:891.479643px;}
.y57{bottom:892.199643px;}
.y12{bottom:906.959637px;}
.y93{bottom:907.499637px;}
.y56{bottom:914.519634px;}
.y13a{bottom:916.499633px;}
.yee{bottom:922.619631px;}
.y11{bottom:924.239630px;}
.yec{bottom:940.080600px;}
.y10{bottom:941.519623px;}
.y139{bottom:943.499623px;}
.y55{bottom:945.479622px;}
.y92{bottom:958.619617px;}
.ye{bottom:959.519616px;}
.yeb{bottom:964.739614px;}
.yf{bottom:965.459614px;}
.yc2{bottom:966.539613px;}
.y138{bottom:970.319612px;}
.y90{bottom:976.439609px;}
.y54{bottom:976.619609px;}
.yea{bottom:981.479607px;}
.yc1{bottom:986.159606px;}
.yd{bottom:993.899602px;}
.y91{bottom:994.259602px;}
.y137{bottom:997.319601px;}
.yc0{bottom:1006.859597px;}
.y53{bottom:1007.579597px;}
.yc{bottom:1016.219594px;}
.y136{bottom:1024.139590px;}
.y52{bottom:1038.719585px;}
.y135{bottom:1051.139580px;}
.y46{bottom:1053.659579px;}
.ybf{bottom:1053.839578px;}
.y51{bottom:1069.679572px;}
.y45{bottom:1074.179570px;}
.y134{bottom:1077.959569px;}
.ye7{bottom:1090.739564px;}
.y44{bottom:1096.139562px;}
.y50{bottom:1100.819560px;}
.y133{bottom:1104.959558px;}
.ye6{bottom:1110.359556px;}
.y47{bottom:1121.520600px;}
.y43{bottom:1122.059551px;}
.ye8{bottom:1127.640600px;}
.ye5{bottom:1131.059548px;}
.y4f{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.940000px;}
.h16{height:15.300000px;}
.h17{height:16.200000px;}
.hb{height:20.160000px;}
.h5{height:20.340000px;}
.h1b{height:20.520000px;}
.h9{height:21.240000px;}
.h8{height:32.693893px;}
.h1d{height:33.518307px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.hd{height:36.914048px;}
.hf{height:39.339828px;}
.h1c{height:39.521586px;}
.h11{height:39.830258px;}
.h1a{height:40.501390px;}
.h6{height:40.851546px;}
.h1{height:41.522679px;}
.h15{height:43.536076px;}
.hc{height:44.149201px;}
.he{height:45.022482px;}
.h2{height:45.281232px;}
.h14{height:46.025138px;}
.h7{height:48.796855px;}
.h18{height:49.992168px;}
.h12{height:50.027324px;}
.h19{height:52.453104px;}
.h13{height:57.092321px;}
.ha{height:57.585914px;}
.h0{height:1263.000000px;}
.w6{width:3.600000px;}
.w3{width:4.500000px;}
.wb{width:5.040000px;}
.wf{width:6.120000px;}
.w8{width:8.280000px;}
.we{width:8.820000px;}
.w11{width:9.000000px;}
.w2{width:9.720000px;}
.w9{width:15.300000px;}
.w4{width:18.900000px;}
.w7{width:33.840000px;}
.w5{width:58.500000px;}
.wc{width:68.400000px;}
.w10{width:70.920000px;}
.wa{width:91.620000px;}
.wd{width:293.580000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1a{left:98.819960px;}
.x18{left:104.939958px;}
.x1{left:107.999957px;}
.x5{left:113.579955px;}
.x15{left:116.279953px;}
.xd{left:118.440000px;}
.x1c{left:119.879952px;}
.x16{left:122.579951px;}
.x17{left:123.659937px;}
.x2f{left:124.739950px;}
.x4a{left:129.239948px;}
.x2a{left:134.999946px;}
.xe{left:137.340000px;}
.x47{left:138.599945px;}
.x2b{left:140.039944px;}
.x39{left:157.138978px;}
.x1b{left:159.659936px;}
.x19{left:161.639935px;}
.x2c{left:167.039933px;}
.x34{left:178.372667px;}
.x31{left:180.359971px;}
.x32{left:186.479974px;}
.x2d{left:188.999926px;}
.x30{left:193.499978px;}
.xf{left:195.840000px;}
.x10{left:199.440000px;}
.x3a{left:203.759918px;}
.x48{left:205.559918px;}
.x49{left:210.059916px;}
.xb{left:214.740595px;}
.x6{left:225.541014px;}
.x20{left:228.239909px;}
.x11{left:233.279907px;}
.x12{left:236.160000px;}
.x38{left:238.139127px;}
.x22{left:243.719903px;}
.x1d{left:245.879855px;}
.x2e{left:255.420019px;}
.xa{left:264.779832px;}
.x35{left:265.852686px;}
.x13{left:270.540000px;}
.x33{left:272.339989px;}
.x3e{left:284.580000px;}
.x1e{left:291.599883px;}
.x14{left:293.759882px;}
.x25{left:294.839882px;}
.x3b{left:299.159880px;}
.x2{left:302.579879px;}
.x7{left:320.579872px;}
.x45{left:330.479868px;}
.x9{left:337.679865px;}
.xc{left:379.081562px;}
.x26{left:386.460000px;}
.x27{left:391.500000px;}
.x23{left:404.279766px;}
.x21{left:410.580438px;}
.x40{left:424.619152px;}
.x3d{left:430.559828px;}
.x36{left:434.339903px;}
.x28{left:459.900000px;}
.x1f{left:461.879815px;}
.x46{left:502.380000px;}
.x43{left:537.840000px;}
.x8{left:572.399771px;}
.x37{left:582.479781px;}
.x44{left:657.539737px;}
.x3{left:666.179734px;}
.x3c{left:704.699718px;}
.x24{left:724.680000px;}
.x3f{left:729.899708px;}
.x42{left:743.039703px;}
.x29{left:753.480000px;}
.x41{left:759.778557px;}
.x4{left:780.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009440pt;}
.ls3{letter-spacing:0.013227pt;}
.ls0{letter-spacing:0.016533pt;}
.lsc{letter-spacing:0.018878pt;}
.lse{letter-spacing:0.018880pt;}
.lsd{letter-spacing:0.018917pt;}
.lsa{letter-spacing:0.336457pt;}
.ls7{letter-spacing:55.179711pt;}
.ls6{letter-spacing:55.211178pt;}
.ls5{letter-spacing:55.820244pt;}
.ls4{letter-spacing:55.851178pt;}
.ls8{letter-spacing:112.237288pt;}
.ls9{letter-spacing:191.005257pt;}
.lsb{letter-spacing:869.002319pt;}
.ws7{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.816521pt;}
.ws6{word-spacing:-15.999994pt;}
.ws4{word-spacing:-14.767354pt;}
.ws2{word-spacing:-13.343995pt;}
.ws8{word-spacing:-13.279995pt;}
.ws0{word-spacing:-12.776955pt;}
.ws9{word-spacing:-12.639995pt;}
.ws1{word-spacing:-12.005115pt;}
.wsa{word-spacing:-10.719996pt;}
.ws5{word-spacing:0.000000pt;}
._3c{margin-left:-8.807033pt;}
._1a{margin-left:-7.570222pt;}
._5{margin-left:-5.870666pt;}
._6{margin-left:-4.453092pt;}
._4{margin-left:-2.972766pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._17{width:1.791069pt;}
._7{width:2.738950pt;}
._b{width:4.241277pt;}
._11{width:5.966148pt;}
._8{width:7.003152pt;}
._9{width:7.989304pt;}
._14{width:9.346282pt;}
._a{width:10.668762pt;}
._1b{width:11.607296pt;}
._12{width:12.510201pt;}
._13{width:13.469634pt;}
._2c{width:15.098388pt;}
._15{width:17.499062pt;}
._16{width:18.674912pt;}
._e{width:19.911760pt;}
._3b{width:20.891157pt;}
._3d{width:21.829479pt;}
._38{width:22.969608pt;}
._f{width:23.966458pt;}
._10{width:25.204505pt;}
._c{width:26.176644pt;}
._d{width:27.071333pt;}
._19{width:28.015920pt;}
._18{width:30.204862pt;}
._35{width:32.329257pt;}
._1f{width:35.164943pt;}
._27{width:36.564663pt;}
._39{width:37.823153pt;}
._1e{width:39.687592pt;}
._2b{width:43.263328pt;}
._2e{width:45.861334pt;}
._29{width:47.421397pt;}
._1c{width:51.820008pt;}
._32{width:52.831526pt;}
._3a{width:53.911415pt;}
._34{width:55.112590pt;}
._37{width:57.237266pt;}
._1d{width:58.631461pt;}
._30{width:61.826158pt;}
._36{width:65.170037pt;}
._22{width:70.290881pt;}
._2{width:73.144789pt;}
._24{width:74.460044pt;}
._33{width:75.955976pt;}
._2f{width:85.046018pt;}
._28{width:91.399131pt;}
._26{width:102.926166pt;}
._25{width:105.860091pt;}
._23{width:145.422438pt;}
._20{width:151.637639pt;}
._31{width:168.134111pt;}
._2d{width:172.123978pt;}
._21{width:177.808420pt;}
._2a{width:188.776985pt;}
._3{width:2201.136477pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs6{font-size:50.559980pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y6{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y4e{bottom:1.759309pt;}
.yed{bottom:3.519131pt;}
.y17{bottom:3.839161pt;}
.yc8{bottom:3.839184pt;}
.ye9{bottom:3.999064pt;}
.y48{bottom:3.999066pt;}
.y19{bottom:3.999161pt;}
.y28{bottom:3.999172pt;}
.yd0{bottom:3.999244pt;}
.ya{bottom:4.000034pt;}
.y15{bottom:4.959161pt;}
.yb{bottom:29.226922pt;}
.y9{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y8f{bottom:118.826619pt;}
.y132{bottom:119.306619pt;}
.y11f{bottom:122.986617pt;}
.y42{bottom:126.666616pt;}
.ybe{bottom:132.426614pt;}
.y73{bottom:139.946611pt;}
.y131{bottom:143.146609pt;}
.y153{bottom:145.066609pt;}
.y8e{bottom:146.346608pt;}
.y11e{bottom:150.506606pt;}
.y41{bottom:154.346605pt;}
.y106{bottom:157.706604pt;}
.ybd{bottom:160.106603pt;}
.y130{bottom:167.146600pt;}
.y72{bottom:167.466600pt;}
.y152{bottom:168.906599pt;}
.y8d{bottom:174.026597pt;}
.y11d{bottom:178.186595pt;}
.ybc{bottom:179.146595pt;}
.y40{bottom:181.866594pt;}
.y105{bottom:185.386593pt;}
.ye4{bottom:189.866591pt;}
.y12f{bottom:190.986590pt;}
.y151{bottom:192.906590pt;}
.y71{bottom:195.146589pt;}
.y8c{bottom:201.546586pt;}
.y11c{bottom:205.706584pt;}
.ye3{bottom:207.306584pt;}
.y3f{bottom:209.546583pt;}
.y104{bottom:212.906582pt;}
.yb3{bottom:213.706581pt;}
.y12e{bottom:214.986581pt;}
.y150{bottom:216.746580pt;}
.y70{bottom:222.666578pt;}
.ybb{bottom:225.226577pt;}
.ye2{bottom:225.706576pt;}
.yb2{bottom:228.906575pt;}
.y8b{bottom:229.226575pt;}
.y11b{bottom:233.386573pt;}
.y3e{bottom:237.066572pt;}
.y12d{bottom:238.826571pt;}
.y103{bottom:240.426570pt;}
.y14f{bottom:240.746570pt;}
.yba{bottom:241.066570pt;}
.ye1{bottom:244.106569pt;}
.yb1{bottom:244.266569pt;}
.y6f{bottom:250.346567pt;}
.y8a{bottom:256.746564pt;}
.yb9{bottom:256.906564pt;}
.yb0{bottom:259.626563pt;}
.y11a{bottom:260.906562pt;}
.ye0{bottom:262.506562pt;}
.y12c{bottom:262.826562pt;}
.y14e{bottom:264.586561pt;}
.y3d{bottom:264.746561pt;}
.y102{bottom:268.106559pt;}
.y6e{bottom:268.746559pt;}
.yb8{bottom:272.746558pt;}
.yaf{bottom:274.986557pt;}
.ydf{bottom:280.906554pt;}
.y89{bottom:284.426553pt;}
.y12b{bottom:286.666552pt;}
.y6d{bottom:287.146552pt;}
.y119{bottom:288.586551pt;}
.yb7{bottom:288.746551pt;}
.yae{bottom:290.346551pt;}
.y3c{bottom:292.266550pt;}
.y101{bottom:295.626548pt;}
.yde{bottom:299.306547pt;}
.yb6{bottom:304.586545pt;}
.y6c{bottom:305.546544pt;}
.yad{bottom:305.706544pt;}
.y12a{bottom:310.666542pt;}
.y88{bottom:311.946542pt;}
.y14d{bottom:312.426542pt;}
.y118{bottom:316.106540pt;}
.ydd{bottom:317.706540pt;}
.yb5{bottom:320.426538pt;}
.yac{bottom:320.906538pt;}
.y3b{bottom:322.986537pt;}
.y100{bottom:323.306537pt;}
.y6b{bottom:323.946537pt;}
.y129{bottom:334.506533pt;}
.ydc{bottom:336.106532pt;}
.yb4{bottom:336.266532pt;}
.y14c{bottom:336.426532pt;}
.y87{bottom:339.626531pt;}
.y6a{bottom:342.346530pt;}
.y117{bottom:343.786529pt;}
.y3a{bottom:349.066527pt;}
.y26{bottom:349.386527pt;}
.yff{bottom:350.826526pt;}
.yab{bottom:352.106526pt;}
.ydb{bottom:354.986525pt;}
.y128{bottom:358.506523pt;}
.y14b{bottom:360.266523pt;}
.y69{bottom:360.746522pt;}
.y86{bottom:367.146520pt;}
.yaa{bottom:367.946519pt;}
.y39{bottom:370.346519pt;}
.y116{bottom:371.306518pt;}
.yda{bottom:372.426518pt;}
.yfe{bottom:378.506515pt;}
.y68{bottom:379.146515pt;}
.y127{bottom:382.346514pt;}
.ya9{bottom:383.786513pt;}
.y14a{bottom:384.266513pt;}
.yd9{bottom:390.826510pt;}
.y4d{bottom:393.227200pt;}
.y85{bottom:394.986509pt;}
.y67{bottom:397.546508pt;}
.y115{bottom:398.986507pt;}
.ya8{bottom:399.626507pt;}
.yfd{bottom:406.026504pt;}
.y126{bottom:406.346504pt;}
.y149{bottom:408.106503pt;}
.yd8{bottom:409.226503pt;}
.y4c{bottom:411.466502pt;}
.y84{bottom:414.826501pt;}
.y66{bottom:415.946500pt;}
.y114{bottom:426.506496pt;}
.yd7{bottom:427.626496pt;}
.y4b{bottom:428.106495pt;}
.y124{bottom:430.186495pt;}
.y148{bottom:432.106494pt;}
.yfc{bottom:433.706493pt;}
.y65{bottom:434.346493pt;}
.y83{bottom:434.666493pt;}
.y125{bottom:436.266492pt;}
.ya6{bottom:444.426489pt;}
.y4a{bottom:444.586489pt;}
.ya4{bottom:444.906489pt;}
.yd6{bottom:446.026488pt;}
.y64{bottom:452.746486pt;}
.y113{bottom:454.186485pt;}
.y82{bottom:454.666485pt;}
.y147{bottom:455.946484pt;}
.ya5{bottom:460.266483pt;}
.ya7{bottom:460.746482pt;}
.yfb{bottom:461.226482pt;}
.y49{bottom:461.866482pt;}
.yd5{bottom:464.426481pt;}
.y63{bottom:471.146478pt;}
.y81{bottom:474.506477pt;}
.ya3{bottom:476.106476pt;}
.y123{bottom:478.026475pt;}
.y25{bottom:479.306475pt;}
.y146{bottom:479.946475pt;}
.y112{bottom:481.706474pt;}
.yd4{bottom:482.826474pt;}
.yfa{bottom:488.906471pt;}
.y62{bottom:489.546471pt;}
.ya2{bottom:491.946470pt;}
.y80{bottom:494.346469pt;}
.y38{bottom:498.986467pt;}
.yd3{bottom:501.226466pt;}
.y122{bottom:502.026466pt;}
.y145{bottom:503.786465pt;}
.ya1{bottom:507.786464pt;}
.y61{bottom:507.946463pt;}
.y111{bottom:509.386463pt;}
.y7f{bottom:514.186461pt;}
.y37{bottom:514.346461pt;}
.yf9{bottom:516.426460pt;}
.yd2{bottom:519.626459pt;}
.yce{bottom:520.106459pt;}
.ya0{bottom:523.626457pt;}
.y121{bottom:525.866456pt;}
.y60{bottom:526.346456pt;}
.y144{bottom:527.786456pt;}
.y36{bottom:529.546455pt;}
.y7e{bottom:534.026453pt;}
.y110{bottom:536.906452pt;}
.ycd{bottom:537.546452pt;}
.yd1{bottom:538.026451pt;}
.y9f{bottom:539.466451pt;}
.yf8{bottom:544.106449pt;}
.y5f{bottom:544.746449pt;}
.y35{bottom:544.906449pt;}
.y120{bottom:549.866447pt;}
.y143{bottom:551.626446pt;}
.ycf{bottom:552.907200pt;}
.y7d{bottom:553.866445pt;}
.y9e{bottom:555.306445pt;}
.ycc{bottom:555.946444pt;}
.y24{bottom:557.706444pt;}
.y10f{bottom:564.586441pt;}
.y34{bottom:568.266439pt;}
.yf7{bottom:571.626438pt;}
.y5e{bottom:572.266438pt;}
.y7c{bottom:573.706437pt;}
.y142{bottom:575.626436pt;}
.ycb{bottom:576.746436pt;}
.y23{bottom:581.706434pt;}
.y33{bottom:583.626433pt;}
.y9d{bottom:587.146432pt;}
.yca{bottom:591.626430pt;}
.y10e{bottom:592.106430pt;}
.y22{bottom:596.426428pt;}
.y7b{bottom:597.706428pt;}
.y32{bottom:598.986427pt;}
.yf6{bottom:599.306427pt;}
.y141{bottom:599.466427pt;}
.y5d{bottom:599.786427pt;}
.y9c{bottom:602.986425pt;}
.y21{bottom:610.986422pt;}
.y31{bottom:614.346421pt;}
.y9b{bottom:618.826419pt;}
.y10d{bottom:619.786419pt;}
.y7a{bottom:621.546418pt;}
.y140{bottom:623.466417pt;}
.y20{bottom:624.586417pt;}
.yf5{bottom:626.826416pt;}
.y5c{bottom:627.466416pt;}
.y30{bottom:629.546415pt;}
.y9a{bottom:634.666413pt;}
.y2f{bottom:644.906409pt;}
.y79{bottom:645.546408pt;}
.y10c{bottom:647.306408pt;}
.y1f{bottom:647.466408pt;}
.y99{bottom:650.506406pt;}
.yf4{bottom:654.506405pt;}
.y5b{bottom:654.986405pt;}
.y2e{bottom:660.266403pt;}
.y98{bottom:666.346400pt;}
.y78{bottom:669.386399pt;}
.y1e{bottom:670.506398pt;}
.y13f{bottom:671.306398pt;}
.y10b{bottom:674.986397pt;}
.y2d{bottom:675.626396pt;}
.yf3{bottom:682.026394pt;}
.y5a{bottom:682.666394pt;}
.yc9{bottom:689.386391pt;}
.y2c{bottom:690.986390pt;}
.y1d{bottom:693.386389pt;}
.y13e{bottom:695.146389pt;}
.y10a{bottom:702.506386pt;}
.yc7{bottom:702.987200pt;}
.y2b{bottom:706.346384pt;}
.yc6{bottom:706.826384pt;}
.y1c{bottom:708.266383pt;}
.yf2{bottom:709.706383pt;}
.y59{bottom:710.186383pt;}
.y77{bottom:717.226380pt;}
.y13d{bottom:719.146379pt;}
.y2a{bottom:721.546378pt;}
.yc5{bottom:725.226377pt;}
.y97{bottom:727.466376pt;}
.y109{bottom:730.186375pt;}
.y27{bottom:731.467200pt;}
.y29{bottom:736.906372pt;}
.yf1{bottom:737.226372pt;}
.y58{bottom:737.866372pt;}
.y1b{bottom:738.026371pt;}
.y76{bottom:741.226370pt;}
.y13c{bottom:742.986369pt;}
.y96{bottom:743.306369pt;}
.yc4{bottom:750.666366pt;}
.y108{bottom:757.706364pt;}
.y95{bottom:759.146363pt;}
.y14{bottom:760.427200pt;}
.y16{bottom:761.387200pt;}
.yf0{bottom:764.906361pt;}
.y75{bottom:765.066361pt;}
.y18{bottom:765.386361pt;}
.yc3{bottom:765.546360pt;}
.y1a{bottom:766.666360pt;}
.y13b{bottom:766.986360pt;}
.y94{bottom:774.986357pt;}
.y107{bottom:785.226353pt;}
.y74{bottom:788.906351pt;}
.y13{bottom:790.826350pt;}
.yef{bottom:792.426350pt;}
.y57{bottom:793.066349pt;}
.y12{bottom:806.186344pt;}
.y93{bottom:806.666344pt;}
.y56{bottom:812.906342pt;}
.y13a{bottom:814.666341pt;}
.yee{bottom:820.106339pt;}
.y11{bottom:821.546338pt;}
.yec{bottom:835.627200pt;}
.y10{bottom:836.906332pt;}
.y139{bottom:838.666331pt;}
.y55{bottom:840.426330pt;}
.y92{bottom:852.106326pt;}
.ye{bottom:852.906326pt;}
.yeb{bottom:857.546324pt;}
.yf{bottom:858.186323pt;}
.yc2{bottom:859.146323pt;}
.y138{bottom:862.506322pt;}
.y90{bottom:867.946319pt;}
.y54{bottom:868.106319pt;}
.yea{bottom:872.426318pt;}
.yc1{bottom:876.586316pt;}
.yd{bottom:883.466313pt;}
.y91{bottom:883.786313pt;}
.y137{bottom:886.506312pt;}
.yc0{bottom:894.986309pt;}
.y53{bottom:895.626308pt;}
.yc{bottom:903.306305pt;}
.y136{bottom:910.346303pt;}
.y52{bottom:923.306297pt;}
.y135{bottom:934.346293pt;}
.y46{bottom:936.586292pt;}
.ybf{bottom:936.746292pt;}
.y51{bottom:950.826286pt;}
.y45{bottom:954.826285pt;}
.y134{bottom:958.186283pt;}
.ye7{bottom:969.546279pt;}
.y44{bottom:974.346277pt;}
.y50{bottom:978.506275pt;}
.y133{bottom:982.186274pt;}
.ye6{bottom:986.986272pt;}
.y47{bottom:996.907200pt;}
.y43{bottom:997.386268pt;}
.ye8{bottom:1002.347200pt;}
.ye5{bottom:1005.386265pt;}
.y4f{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.280000pt;}
.h16{height:13.600000pt;}
.h17{height:14.400000pt;}
.hb{height:17.920000pt;}
.h5{height:18.080000pt;}
.h1b{height:18.240000pt;}
.h9{height:18.880000pt;}
.h8{height:29.061238pt;}
.h1d{height:29.794051pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.hd{height:32.812487pt;}
.hf{height:34.968736pt;}
.h1c{height:35.130298pt;}
.h11{height:35.404673pt;}
.h1a{height:36.001236pt;}
.h6{height:36.312485pt;}
.h1{height:36.909048pt;}
.h15{height:38.698735pt;}
.hc{height:39.243734pt;}
.he{height:40.019984pt;}
.h2{height:40.249984pt;}
.h14{height:40.911234pt;}
.h7{height:43.374983pt;}
.h18{height:44.437482pt;}
.h12{height:44.468732pt;}
.h19{height:46.624981pt;}
.h13{height:50.748730pt;}
.ha{height:51.187480pt;}
.h0{height:1122.666667pt;}
.w6{width:3.200000pt;}
.w3{width:4.000000pt;}
.wb{width:4.480000pt;}
.wf{width:5.440000pt;}
.w8{width:7.360000pt;}
.we{width:7.840000pt;}
.w11{width:8.000000pt;}
.w2{width:8.640000pt;}
.w9{width:13.600000pt;}
.w4{width:16.800000pt;}
.w7{width:30.080000pt;}
.w5{width:52.000000pt;}
.wc{width:60.800000pt;}
.w10{width:63.040000pt;}
.wa{width:81.440000pt;}
.wd{width:260.960000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1a{left:87.839965pt;}
.x18{left:93.279963pt;}
.x1{left:95.999962pt;}
.x5{left:100.959960pt;}
.x15{left:103.359959pt;}
.xd{left:105.280000pt;}
.x1c{left:106.559957pt;}
.x16{left:108.959956pt;}
.x17{left:109.919944pt;}
.x2f{left:110.879956pt;}
.x4a{left:114.879954pt;}
.x2a{left:119.999952pt;}
.xe{left:122.080000pt;}
.x47{left:123.199951pt;}
.x2b{left:124.479950pt;}
.x39{left:139.679092pt;}
.x1b{left:141.919943pt;}
.x19{left:143.679943pt;}
.x2c{left:148.479941pt;}
.x34{left:158.553482pt;}
.x31{left:160.319974pt;}
.x32{left:165.759977pt;}
.x2d{left:167.999934pt;}
.x30{left:171.999980pt;}
.xf{left:174.080000pt;}
.x10{left:177.280000pt;}
.x3a{left:181.119928pt;}
.x48{left:182.719927pt;}
.x49{left:186.719925pt;}
.xb{left:190.880529pt;}
.x6{left:200.480901pt;}
.x20{left:202.879919pt;}
.x11{left:207.359917pt;}
.x12{left:209.920000pt;}
.x38{left:211.679224pt;}
.x22{left:216.639913pt;}
.x1d{left:218.559871pt;}
.x2e{left:227.040017pt;}
.xa{left:235.359851pt;}
.x35{left:236.313499pt;}
.x13{left:240.480000pt;}
.x33{left:242.079990pt;}
.x3e{left:252.960000pt;}
.x1e{left:259.199896pt;}
.x14{left:261.119896pt;}
.x25{left:262.079895pt;}
.x3b{left:265.919894pt;}
.x2{left:268.959892pt;}
.x7{left:284.959886pt;}
.x45{left:293.759882pt;}
.x9{left:300.159880pt;}
.xc{left:336.961389pt;}
.x26{left:343.520000pt;}
.x27{left:348.000000pt;}
.x23{left:359.359792pt;}
.x21{left:364.960389pt;}
.x40{left:377.439246pt;}
.x3d{left:382.719847pt;}
.x36{left:386.079914pt;}
.x28{left:408.800000pt;}
.x1f{left:410.559836pt;}
.x46{left:446.560000pt;}
.x43{left:478.080000pt;}
.x8{left:508.799796pt;}
.x37{left:517.759805pt;}
.x44{left:584.479766pt;}
.x3{left:592.159763pt;}
.x3c{left:626.399749pt;}
.x24{left:644.160000pt;}
.x3f{left:648.799740pt;}
.x42{left:660.479736pt;}
.x29{left:669.760000pt;}
.x41{left:675.358717pt;}
.x4{left:693.440000pt;}
}




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