
    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_53ebfec802c3d0572ba67f81.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_6f7433bb07d7063b65a3d458.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f2f53e0529530d7faed1909.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c0982bb256eb10d99e6ffb2d.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_9420a9281b3a187c8e0d7228.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_16684bec590708019ab060d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_e02af3423c153a58914e211f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_87c6aa383d1f810b9ea69082.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e4d7951fc11c132996a6180a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a6f764f629825b88037139a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.672852;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_5415449fff2fd309b7399e64.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_96e3e69db86c259c33246736.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_9dcf45de5adc89904b8831ca.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m9{transform:matrix(0.238822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238822,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240916,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.m5{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);}
.m3{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);}
.m1{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);}
.m4{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.374170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.019560px;}
.ls2{letter-spacing:0.019699px;}
.ls3{letter-spacing:0.019875px;}
.ls14{letter-spacing:0.021238px;}
.ls0{letter-spacing:0.189257px;}
.ls6{letter-spacing:0.233352px;}
.lsd{letter-spacing:16.005234px;}
.lsf{letter-spacing:16.725653px;}
.lse{letter-spacing:19.607392px;}
.lsa{letter-spacing:28.972908px;}
.lsc{letter-spacing:30.413748px;}
.lsb{letter-spacing:31.134168px;}
.ls11{letter-spacing:59.392056px;}
.ls13{letter-spacing:59.951376px;}
.ls5{letter-spacing:61.246504px;}
.ls10{letter-spacing:74.359770px;}
.ls12{letter-spacing:75.961650px;}
.ls4{letter-spacing:182.999263px;}
.ls1{letter-spacing:1883.215313px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-39.743984px;}
.ws6{word-spacing:-32.418587px;}
.ws7{word-spacing:-32.399987px;}
.wsd{word-spacing:-18.021231px;}
.wsc{word-spacing:-17.999993px;}
.ws9{word-spacing:-16.613273px;}
.ws3{word-spacing:-16.579869px;}
.ws0{word-spacing:-16.579693px;}
.ws2{word-spacing:-16.559993px;}
.ws5{word-spacing:-15.011994px;}
.ws8{word-spacing:-14.939994px;}
.ws4{word-spacing:-14.374074px;}
.ws1{word-spacing:-9.719996px;}
.wsa{word-spacing:0.000000px;}
._1c{margin-left:-8.519848px;}
._4{margin-left:-7.015164px;}
._5{margin-left:-5.574238px;}
._2{margin-left:-3.693890px;}
._3{margin-left:-2.168576px;}
._1{margin-left:-1.008901px;}
._0{width:1.003097px;}
._6{width:2.389597px;}
._a{width:4.346248px;}
._17{width:5.861632px;}
._10{width:7.595756px;}
._7{width:8.880090px;}
._8{width:9.961172px;}
._9{width:11.666764px;}
._11{width:12.975252px;}
._16{width:14.074294px;}
._18{width:15.228991px;}
._c{width:16.580474px;}
._e{width:20.762703px;}
._12{width:22.526734px;}
._f{width:23.615920px;}
._13{width:24.764382px;}
._d{width:27.051880px;}
._1b{width:33.814039px;}
._15{width:45.814122px;}
._14{width:47.334528px;}
._b{width:291.063743px;}
._19{width:1516.720145px;}
._1a{width:1600.294472px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fcc{color:rgb(0,101,204);}
.fc3{color:rgb(31,73,124);}
.fc8{color:rgb(227,108,10);}
.fcd{color:transparent;}
.fc6{color:rgb(112,48,160);}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fs7{font-size:20.879992px;}
.fs5{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y55{bottom:-9.360759px;}
.y0{bottom:0.000000px;}
.y2f{bottom:2.699071px;}
.y3{bottom:3.598911px;}
.yd8{bottom:3.598917px;}
.y2a{bottom:3.778986px;}
.y4e{bottom:3.779249px;}
.yc{bottom:3.960038px;}
.y7{bottom:4.079998px;}
.y2c{bottom:4.319062px;}
.yd{bottom:31.980287px;}
.yb{bottom:49.980240px;}
.y9{bottom:53.940278px;}
.ya{bottom:55.560278px;}
.y23{bottom:105.239958px;}
.yb3{bottom:111.719955px;}
.y84{bottom:115.320254px;}
.y22{bottom:125.939950px;}
.yb2{bottom:132.419947px;}
.y83{bottom:136.739945px;}
.y21{bottom:146.819941px;}
.yb1{bottom:153.119939px;}
.y82{bottom:156.719937px;}
.y20{bottom:167.519933px;}
.yf1{bottom:169.139932px;}
.y14c{bottom:170.399932px;}
.y11e{bottom:172.199931px;}
.yb0{bottom:173.819930px;}
.yca{bottom:176.519929px;}
.y17a{bottom:177.059929px;}
.y81{bottom:177.419929px;}
.yf0{bottom:188.039925px;}
.y1f{bottom:188.219925px;}
.y14b{bottom:189.479924px;}
.y11d{bottom:193.619923px;}
.yaf{bottom:194.519922px;}
.y179{bottom:195.959922px;}
.yc9{bottom:197.219921px;}
.yef{bottom:207.839917px;}
.y14a{bottom:208.379917px;}
.y1e{bottom:208.919916px;}
.y11c{bottom:212.699915px;}
.y178{bottom:214.859914px;}
.yae{bottom:216.839913px;}
.yc8{bottom:217.919913px;}
.y80{bottom:218.099913px;}
.yee{bottom:227.279909px;}
.y149{bottom:228.719909px;}
.y1d{bottom:229.619908px;}
.y11b{bottom:231.599907px;}
.y177{bottom:235.379906px;}
.yad{bottom:237.359905px;}
.yc7{bottom:238.619905px;}
.y7f{bottom:247.439901px;}
.y148{bottom:247.979901px;}
.y1c{bottom:250.319900px;}
.y11a{bottom:250.679900px;}
.y176{bottom:254.639898px;}
.yc6{bottom:259.319896px;}
.yac{bottom:261.479895px;}
.y147{bottom:266.879893px;}
.y7e{bottom:267.959893px;}
.yed{bottom:269.399892px;}
.y119{bottom:269.579892px;}
.y1b{bottom:271.019892px;}
.y175{bottom:273.719891px;}
.yc5{bottom:280.019888px;}
.yab{bottom:282.179887px;}
.y146{bottom:285.959886px;}
.y118{bottom:288.479885px;}
.y7d{bottom:289.919884px;}
.yec{bottom:290.099884px;}
.y1a{bottom:291.719883px;}
.y174{bottom:292.619883px;}
.yc4{bottom:300.719880px;}
.yaa{bottom:302.879879px;}
.y145{bottom:306.299877px;}
.y117{bottom:307.559877px;}
.y7c{bottom:311.159876px;}
.y19{bottom:312.419875px;}
.y173{bottom:312.959875px;}
.yeb{bottom:314.219874px;}
.yc3{bottom:321.059872px;}
.ya9{bottom:323.579871px;}
.y144{bottom:325.739870px;}
.y116{bottom:326.819869px;}
.y7b{bottom:331.679867px;}
.y172{bottom:332.219867px;}
.y18{bottom:333.119867px;}
.yc2{bottom:341.399863px;}
.yea{bottom:343.919862px;}
.ya8{bottom:344.279862px;}
.y143{bottom:344.639862px;}
.y115{bottom:347.519861px;}
.y171{bottom:351.119860px;}
.y7a{bottom:353.639859px;}
.y17{bottom:355.619858px;}
.yc1{bottom:361.919855px;}
.y142{bottom:363.539855px;}
.ye9{bottom:364.619854px;}
.ya7{bottom:364.979854px;}
.y114{bottom:368.219853px;}
.y170{bottom:370.199852px;}
.y4d{bottom:373.260600px;}
.y79{bottom:374.879850px;}
.y39{bottom:384.779846px;}
.yc0{bottom:385.319846px;}
.ya6{bottom:386.219846px;}
.y113{bottom:389.459844px;}
.y141{bottom:390.179844px;}
.y16f{bottom:390.539844px;}
.y78{bottom:395.579842px;}
.y54{bottom:405.660600px;}
.ybf{bottom:406.019838px;}
.ya5{bottom:407.639837px;}
.y140{bottom:409.259836px;}
.y16e{bottom:409.799836px;}
.y112{bottom:410.159836px;}
.y53{bottom:413.579835px;}
.y77{bottom:417.719833px;}
.ybe{bottom:426.719829px;}
.y13f{bottom:428.159829px;}
.ya4{bottom:428.699829px;}
.y16d{bottom:428.879828px;}
.y52{bottom:430.679828px;}
.y111{bottom:431.219828px;}
.y76{bottom:438.599825px;}
.y13e{bottom:447.059821px;}
.ybd{bottom:447.419821px;}
.y16c{bottom:447.779821px;}
.y51{bottom:447.959821px;}
.ya3{bottom:449.399820px;}
.y110{bottom:451.739819px;}
.y75{bottom:459.299816px;}
.y50{bottom:465.239814px;}
.y13d{bottom:466.139814px;}
.ybc{bottom:467.939813px;}
.ye8{bottom:468.119813px;}
.ya2{bottom:470.099812px;}
.y10f{bottom:472.979811px;}
.y16b{bottom:474.419810px;}
.y74{bottom:481.259807px;}
.y4f{bottom:482.519807px;}
.y13c{bottom:486.839805px;}
.ye7{bottom:488.459805px;}
.ybb{bottom:488.639805px;}
.ya1{bottom:490.799804px;}
.y16a{bottom:493.319803px;}
.y10e{bottom:493.859802px;}
.y73{bottom:502.319799px;}
.y13b{bottom:507.539797px;}
.ye6{bottom:508.799796px;}
.yba{bottom:509.339796px;}
.ya0{bottom:512.039795px;}
.y169{bottom:512.399795px;}
.y38{bottom:513.119795px;}
.y10d{bottom:515.099794px;}
.y72{bottom:523.019791px;}
.yd5{bottom:523.559791px;}
.y4c{bottom:526.979789px;}
.y13a{bottom:528.239789px;}
.ye5{bottom:529.319788px;}
.yb9{bottom:529.859788px;}
.y168{bottom:531.299787px;}
.y9f{bottom:533.459787px;}
.y10c{bottom:535.799786px;}
.y4b{bottom:543.719783px;}
.yd4{bottom:544.259782px;}
.y71{bottom:544.979782px;}
.y139{bottom:548.939780px;}
.y167{bottom:550.199780px;}
.yb8{bottom:552.359779px;}
.y9e{bottom:554.519778px;}
.y10b{bottom:556.499777px;}
.y4a{bottom:561.179776px;}
.yd3{bottom:564.959774px;}
.y70{bottom:566.039774px;}
.y138{bottom:569.639772px;}
.y166{bottom:570.719772px;}
.yb7{bottom:572.519771px;}
.y9d{bottom:575.219770px;}
.y10a{bottom:577.199769px;}
.y49{bottom:578.279769px;}
.yd2{bottom:585.659766px;}
.y6f{bottom:586.379765px;}
.y165{bottom:589.979764px;}
.y137{bottom:590.339764px;}
.y48{bottom:595.559762px;}
.y9c{bottom:595.919762px;}
.yb6{bottom:599.519760px;}
.y109{bottom:601.319759px;}
.yd1{bottom:606.359757px;}
.y6e{bottom:608.339757px;}
.y37{bottom:609.059756px;}
.y136{bottom:611.039756px;}
.y47{bottom:612.839755px;}
.yb5{bottom:614.819754px;}
.y9b{bottom:616.619753px;}
.y108{bottom:622.019751px;}
.yd0{bottom:627.059749px;}
.y164{bottom:627.959749px;}
.y6d{bottom:629.219748px;}
.y46{bottom:629.939748px;}
.y135{bottom:631.559747px;}
.y9a{bottom:637.679745px;}
.y107{bottom:642.719743px;}
.y163{bottom:646.859741px;}
.y45{bottom:647.219741px;}
.ycf{bottom:647.399741px;}
.y6c{bottom:649.919740px;}
.y134{bottom:652.259739px;}
.y36{bottom:652.799739px;}
.y99{bottom:659.279736px;}
.y106{bottom:663.599735px;}
.y44{bottom:664.499734px;}
.y162{bottom:667.379733px;}
.y35{bottom:668.099733px;}
.yce{bottom:669.899732px;}
.y133{bottom:672.959731px;}
.y6b{bottom:679.259728px;}
.y98{bottom:680.519728px;}
.y43{bottom:681.779727px;}
.y34{bottom:683.399727px;}
.y105{bottom:684.299726px;}
.y161{bottom:686.639725px;}
.ycd{bottom:690.059724px;}
.y132{bottom:693.659723px;}
.y33{bottom:697.439721px;}
.y42{bottom:699.059720px;}
.y6a{bottom:699.959720px;}
.y97{bottom:701.219720px;}
.y104{bottom:705.179718px;}
.y160{bottom:705.719718px;}
.ycc{bottom:712.739715px;}
.y41{bottom:716.339713px;}
.y69{bottom:720.659712px;}
.y96{bottom:721.919711px;}
.y15f{bottom:724.619710px;}
.y103{bottom:725.519710px;}
.ycb{bottom:728.039709px;}
.y40{bottom:733.439707px;}
.y131{bottom:735.059706px;}
.y32{bottom:740.099704px;}
.y68{bottom:741.359703px;}
.y95{bottom:742.619703px;}
.y15e{bottom:744.959702px;}
.y102{bottom:745.139702px;}
.y3f{bottom:750.719700px;}
.y130{bottom:755.759698px;}
.y67{bottom:762.059695px;}
.y94{bottom:763.319695px;}
.y15d{bottom:764.219694px;}
.y101{bottom:764.579694px;}
.y3e{bottom:767.999693px;}
.y12f{bottom:776.459689px;}
.y31{bottom:782.579687px;}
.y66{bottom:782.759687px;}
.y15c{bottom:783.119687px;}
.y93{bottom:784.379686px;}
.y3d{bottom:785.279686px;}
.y12e{bottom:797.159681px;}
.y30{bottom:798.059681px;}
.y15b{bottom:802.019679px;}
.y3c{bottom:802.559679px;}
.y65{bottom:803.459679px;}
.y100{bottom:804.899678px;}
.y92{bottom:805.799678px;}
.y12d{bottom:817.859673px;}
.y3a{bottom:818.399673px;}
.y2e{bottom:819.660600px;}
.y3b{bottom:819.839672px;}
.y15a{bottom:822.539671px;}
.y64{bottom:824.159670px;}
.yff{bottom:825.599670px;}
.y91{bottom:826.859669px;}
.y12c{bottom:838.559665px;}
.y2b{bottom:840.180600px;}
.y159{bottom:841.799663px;}
.y2d{bottom:844.679662px;}
.y63{bottom:844.859662px;}
.y90{bottom:847.559661px;}
.yfe{bottom:847.919661px;}
.y12b{bottom:859.259656px;}
.y158{bottom:860.879656px;}
.y62{bottom:865.559654px;}
.y8f{bottom:868.259653px;}
.yfd{bottom:868.619653px;}
.y16{bottom:873.299651px;}
.y157{bottom:879.779648px;}
.y12a{bottom:879.959648px;}
.y61{bottom:886.259645px;}
.y8e{bottom:889.319644px;}
.yfc{bottom:891.659643px;}
.y15{bottom:894.179642px;}
.y156{bottom:898.679641px;}
.y14{bottom:899.399640px;}
.y129{bottom:900.659640px;}
.y60{bottom:906.959637px;}
.y8d{bottom:910.919636px;}
.yfb{bottom:914.879634px;}
.y155{bottom:919.019632px;}
.y13{bottom:920.459632px;}
.y128{bottom:923.519631px;}
.y12{bottom:925.679630px;}
.y8c{bottom:931.619627px;}
.y5f{bottom:935.399626px;}
.ye4{bottom:935.579626px;}
.yfa{bottom:937.919625px;}
.y154{bottom:938.279625px;}
.y127{bottom:944.219622px;}
.y10{bottom:946.739621px;}
.y11{bottom:951.959619px;}
.y8b{bottom:952.859619px;}
.y153{bottom:957.359617px;}
.ye3{bottom:960.059616px;}
.yf9{bottom:960.959616px;}
.y5e{bottom:962.759615px;}
.y126{bottom:964.919614px;}
.yf{bottom:973.019611px;}
.y152{bottom:976.259609px;}
.ye2{bottom:980.759608px;}
.y8a{bottom:980.939608px;}
.y5d{bottom:983.459607px;}
.yf8{bottom:984.179606px;}
.y125{bottom:985.619606px;}
.y151{bottom:995.159602px;}
.ye{bottom:1000.559600px;}
.ye1{bottom:1001.459599px;}
.y89{bottom:1001.639599px;}
.y5c{bottom:1004.159598px;}
.yf7{bottom:1004.879598px;}
.y124{bottom:1006.319597px;}
.y150{bottom:1015.679594px;}
.ye0{bottom:1022.159591px;}
.y88{bottom:1022.699591px;}
.y5b{bottom:1024.679590px;}
.y123{bottom:1027.019589px;}
.yf6{bottom:1029.359588px;}
.y29{bottom:1031.340600px;}
.y14f{bottom:1034.939586px;}
.y24{bottom:1035.299586px;}
.ydf{bottom:1042.859583px;}
.y87{bottom:1044.119582px;}
.y5a{bottom:1045.379582px;}
.y122{bottom:1047.719581px;}
.yf5{bottom:1050.059580px;}
.y28{bottom:1054.019578px;}
.yde{bottom:1063.559575px;}
.y86{bottom:1064.819574px;}
.y59{bottom:1066.079574px;}
.y121{bottom:1068.419573px;}
.yb4{bottom:1068.959572px;}
.y27{bottom:1072.919571px;}
.yf4{bottom:1073.639571px;}
.ydd{bottom:1083.899566px;}
.y85{bottom:1085.879566px;}
.y58{bottom:1086.779565px;}
.y120{bottom:1089.119564px;}
.y14e{bottom:1093.259563px;}
.yf3{bottom:1093.979562px;}
.y26{bottom:1100.819560px;}
.ydc{bottom:1104.599558px;}
.y57{bottom:1107.479557px;}
.y11f{bottom:1111.259555px;}
.y14d{bottom:1112.699555px;}
.yf2{bottom:1113.239555px;}
.y25{bottom:1119.899552px;}
.y56{bottom:1128.179549px;}
.y6{bottom:1145.099542px;}
.ydb{bottom:1167.599533px;}
.yda{bottom:1171.919531px;}
.y8{bottom:1186.499525px;}
.y5{bottom:1189.019524px;}
.yd9{bottom:1189.199524px;}
.yd7{bottom:1202.880600px;}
.y4{bottom:1206.299517px;}
.yd6{bottom:1206.479517px;}
.y2{bottom:1219.980600px;}
.y1{bottom:1223.579511px;}
.h19{height:3.960000px;}
.h12{height:14.040000px;}
.h1c{height:14.507924px;}
.h2{height:16.920000px;}
.he{height:18.540000px;}
.h6{height:18.720000px;}
.h16{height:19.980000px;}
.hf{height:20.160000px;}
.ha{height:26.350302px;}
.h5{height:33.518307px;}
.h13{height:33.706744px;}
.h3{height:36.597642px;}
.h15{height:36.624009px;}
.h14{height:39.339828px;}
.h7{height:39.830258px;}
.h9{height:40.501390px;}
.h1{height:41.522679px;}
.h18{height:43.506897px;}
.h17{height:43.536076px;}
.h10{height:44.149201px;}
.hd{height:44.893107px;}
.h1d{height:45.992794px;}
.h4{height:46.025138px;}
.h11{height:47.465137px;}
.h1b{height:48.256856px;}
.hb{height:48.796855px;}
.hc{height:50.027324px;}
.h1a{height:52.453104px;}
.h8{height:57.092321px;}
.h0{height:1263.000000px;}
.w9{width:3.600000px;}
.we{width:3.780000px;}
.w5{width:5.400000px;}
.wf{width:6.840000px;}
.wc{width:7.020000px;}
.w3{width:7.920000px;}
.w7{width:8.280000px;}
.wd{width:9.000000px;}
.w6{width:33.120000px;}
.wa{width:33.660000px;}
.w8{width:58.500000px;}
.w4{width:72.900000px;}
.wb{width:113.760000px;}
.w2{width:178.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:44.999982px;}
.x14{left:50.759980px;}
.x29{left:53.819978px;}
.x17{left:63.720023px;}
.x16{left:65.519974px;}
.x33{left:69.299972px;}
.x4{left:72.179971px;}
.x26{left:77.940000px;}
.x2b{left:79.019968px;}
.x27{left:84.959997px;}
.x22{left:86.940000px;}
.x41{left:91.979963px;}
.x39{left:95.759962px;}
.x35{left:106.199958px;}
.x3b{left:107.999957px;}
.x34{left:113.759954px;}
.x28{left:120.599952px;}
.x40{left:124.379950px;}
.x2a{left:126.719949px;}
.x43{left:128.879948px;}
.x42{left:130.319948px;}
.x45{left:133.739947px;}
.x3c{left:134.999946px;}
.x3f{left:138.239951px;}
.x44{left:139.499944px;}
.x3d{left:141.659943px;}
.x23{left:145.440000px;}
.x24{left:149.040000px;}
.x3e{left:161.999935px;}
.x15{left:163.439935px;}
.x25{left:182.699927px;}
.x18{left:185.579926px;}
.x9{left:190.979924px;}
.x2c{left:204.659928px;}
.x2d{left:205.739918px;}
.x19{left:222.299911px;}
.x2e{left:232.559909px;}
.x7{left:246.779901px;}
.x2f{left:251.999899px;}
.x30{left:262.619895px;}
.x1c{left:263.699895px;}
.x31{left:266.400000px;}
.xa{left:293.399883px;}
.xb{left:298.259881px;}
.x5{left:341.279863px;}
.x38{left:350.999860px;}
.x1b{left:376.199850px;}
.x36{left:384.119846px;}
.x1d{left:385.560000px;}
.x1a{left:395.099946px;}
.xc{left:430.559828px;}
.xd{left:435.419826px;}
.x8{left:446.939821px;}
.x1e{left:458.460000px;}
.x1f{left:463.860000px;}
.x20{left:496.980000px;}
.xe{left:533.159787px;}
.xf{left:538.019785px;}
.x10{left:647.639741px;}
.x11{left:652.499739px;}
.x21{left:688.499725px;}
.x12{left:698.219721px;}
.x13{left:703.079719px;}
.x2{left:714.420000px;}
.x3{left:723.239711px;}
.x3a{left:725.579710px;}
.x32{left:816.119674px;}
.x37{left:836.819665px;}
.x6{left:840.780000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.017387pt;}
.ls2{letter-spacing:0.017510pt;}
.ls3{letter-spacing:0.017667pt;}
.ls14{letter-spacing:0.018878pt;}
.ls0{letter-spacing:0.168228pt;}
.ls6{letter-spacing:0.207424pt;}
.lsd{letter-spacing:14.226874pt;}
.lsf{letter-spacing:14.867247pt;}
.lse{letter-spacing:17.428793pt;}
.lsa{letter-spacing:25.753696pt;}
.lsc{letter-spacing:27.034443pt;}
.lsb{letter-spacing:27.674816pt;}
.ls11{letter-spacing:52.792939pt;}
.ls13{letter-spacing:53.290112pt;}
.ls5{letter-spacing:54.441337pt;}
.ls10{letter-spacing:66.097574pt;}
.ls12{letter-spacing:67.521466pt;}
.ls4{letter-spacing:162.666012pt;}
.ls1{letter-spacing:1673.969167pt;}
.wsb{word-spacing:-35.327986pt;}
.ws6{word-spacing:-28.816521pt;}
.ws7{word-spacing:-28.799988pt;}
.wsd{word-spacing:-16.018872pt;}
.wsc{word-spacing:-15.999994pt;}
.ws9{word-spacing:-14.767354pt;}
.ws3{word-spacing:-14.737661pt;}
.ws0{word-spacing:-14.737505pt;}
.ws2{word-spacing:-14.719994pt;}
.ws5{word-spacing:-13.343995pt;}
.ws8{word-spacing:-13.279995pt;}
.ws4{word-spacing:-12.776955pt;}
.ws1{word-spacing:-8.639997pt;}
.wsa{word-spacing:0.000000pt;}
._1c{margin-left:-7.573199pt;}
._4{margin-left:-6.235701pt;}
._5{margin-left:-4.954878pt;}
._2{margin-left:-3.283458pt;}
._3{margin-left:-1.927623pt;}
._1{margin-left:-0.896801pt;}
._0{width:0.891642pt;}
._6{width:2.124087pt;}
._a{width:3.863332pt;}
._17{width:5.210339pt;}
._10{width:6.751783pt;}
._7{width:7.893413pt;}
._8{width:8.854375pt;}
._9{width:10.370457pt;}
._11{width:11.533557pt;}
._16{width:12.510484pt;}
._18{width:13.536881pt;}
._c{width:14.738199pt;}
._e{width:18.455736pt;}
._12{width:20.023764pt;}
._f{width:20.991929pt;}
._13{width:22.012784pt;}
._d{width:24.046115pt;}
._1b{width:30.056923pt;}
._15{width:40.723664pt;}
._14{width:42.075136pt;}
._b{width:258.723327pt;}
._19{width:1348.195685pt;}
._1a{width:1422.483975pt;}
.fs7{font-size:18.559993pt;}
.fs5{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y55{bottom:-8.320674pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.399174pt;}
.y3{bottom:3.199032pt;}
.yd8{bottom:3.199038pt;}
.y2a{bottom:3.359099pt;}
.y4e{bottom:3.359333pt;}
.yc{bottom:3.520034pt;}
.y7{bottom:3.626665pt;}
.y2c{bottom:3.839166pt;}
.yd{bottom:28.426922pt;}
.yb{bottom:44.426880pt;}
.y9{bottom:47.946914pt;}
.ya{bottom:49.386914pt;}
.y23{bottom:93.546629pt;}
.yb3{bottom:99.306627pt;}
.y84{bottom:102.506892pt;}
.y22{bottom:111.946622pt;}
.yb2{bottom:117.706620pt;}
.y83{bottom:121.546618pt;}
.y21{bottom:130.506614pt;}
.yb1{bottom:136.106612pt;}
.y82{bottom:139.306611pt;}
.y20{bottom:148.906607pt;}
.yf1{bottom:150.346607pt;}
.y14c{bottom:151.466606pt;}
.y11e{bottom:153.066605pt;}
.yb0{bottom:154.506605pt;}
.yca{bottom:156.906604pt;}
.y17a{bottom:157.386604pt;}
.y81{bottom:157.706604pt;}
.yf0{bottom:167.146600pt;}
.y1f{bottom:167.306600pt;}
.y14b{bottom:168.426599pt;}
.y11d{bottom:172.106598pt;}
.yaf{bottom:172.906598pt;}
.y179{bottom:174.186597pt;}
.yc9{bottom:175.306597pt;}
.yef{bottom:184.746593pt;}
.y14a{bottom:185.226593pt;}
.y1e{bottom:185.706592pt;}
.y11c{bottom:189.066591pt;}
.y178{bottom:190.986590pt;}
.yae{bottom:192.746590pt;}
.yc8{bottom:193.706589pt;}
.y80{bottom:193.866589pt;}
.yee{bottom:202.026586pt;}
.y149{bottom:203.306585pt;}
.y1d{bottom:204.106585pt;}
.y11b{bottom:205.866584pt;}
.y177{bottom:209.226583pt;}
.yad{bottom:210.986582pt;}
.yc7{bottom:212.106582pt;}
.y7f{bottom:219.946579pt;}
.y148{bottom:220.426578pt;}
.y1c{bottom:222.506578pt;}
.y11a{bottom:222.826578pt;}
.y176{bottom:226.346576pt;}
.yc6{bottom:230.506574pt;}
.yac{bottom:232.426574pt;}
.y147{bottom:237.226572pt;}
.y7e{bottom:238.186571pt;}
.yed{bottom:239.466571pt;}
.y119{bottom:239.626571pt;}
.y1b{bottom:240.906570pt;}
.y175{bottom:243.306569pt;}
.yc5{bottom:248.906567pt;}
.yab{bottom:250.826566pt;}
.y146{bottom:254.186565pt;}
.y118{bottom:256.426564pt;}
.y7d{bottom:257.706564pt;}
.yec{bottom:257.866564pt;}
.y1a{bottom:259.306563pt;}
.y174{bottom:260.106563pt;}
.yc4{bottom:267.306560pt;}
.yaa{bottom:269.226559pt;}
.y145{bottom:272.266558pt;}
.y117{bottom:273.386557pt;}
.y7c{bottom:276.586556pt;}
.y19{bottom:277.706556pt;}
.y173{bottom:278.186555pt;}
.yeb{bottom:279.306555pt;}
.yc3{bottom:285.386553pt;}
.ya9{bottom:287.626552pt;}
.y144{bottom:289.546551pt;}
.y116{bottom:290.506550pt;}
.y7b{bottom:294.826549pt;}
.y172{bottom:295.306549pt;}
.y18{bottom:296.106548pt;}
.yc2{bottom:303.466545pt;}
.yea{bottom:305.706544pt;}
.ya8{bottom:306.026544pt;}
.y143{bottom:306.346544pt;}
.y115{bottom:308.906543pt;}
.y171{bottom:312.106542pt;}
.y7a{bottom:314.346541pt;}
.y17{bottom:316.106540pt;}
.yc1{bottom:321.706538pt;}
.y142{bottom:323.146537pt;}
.ye9{bottom:324.106537pt;}
.ya7{bottom:324.426537pt;}
.y114{bottom:327.306536pt;}
.y170{bottom:329.066535pt;}
.y4d{bottom:331.787200pt;}
.y79{bottom:333.226533pt;}
.y39{bottom:342.026530pt;}
.yc0{bottom:342.506530pt;}
.ya6{bottom:343.306529pt;}
.y113{bottom:346.186528pt;}
.y141{bottom:346.826528pt;}
.y16f{bottom:347.146528pt;}
.y78{bottom:351.626526pt;}
.y54{bottom:360.587200pt;}
.ybf{bottom:360.906522pt;}
.ya5{bottom:362.346522pt;}
.y140{bottom:363.786521pt;}
.y16e{bottom:364.266521pt;}
.y112{bottom:364.586521pt;}
.y53{bottom:367.626520pt;}
.y77{bottom:371.306518pt;}
.ybe{bottom:379.306515pt;}
.y13f{bottom:380.586514pt;}
.ya4{bottom:381.066514pt;}
.y16d{bottom:381.226514pt;}
.y52{bottom:382.826514pt;}
.y111{bottom:383.306513pt;}
.y76{bottom:389.866511pt;}
.y13e{bottom:397.386508pt;}
.ybd{bottom:397.706508pt;}
.y16c{bottom:398.026507pt;}
.y51{bottom:398.186507pt;}
.ya3{bottom:399.466507pt;}
.y110{bottom:401.546506pt;}
.y75{bottom:408.266503pt;}
.y50{bottom:413.546501pt;}
.y13d{bottom:414.346501pt;}
.ybc{bottom:415.946500pt;}
.ye8{bottom:416.106500pt;}
.ya2{bottom:417.866500pt;}
.y10f{bottom:420.426498pt;}
.y16b{bottom:421.706498pt;}
.y74{bottom:427.786496pt;}
.y4f{bottom:428.906495pt;}
.y13c{bottom:432.746494pt;}
.ye7{bottom:434.186493pt;}
.ybb{bottom:434.346493pt;}
.ya1{bottom:436.266492pt;}
.y16a{bottom:438.506491pt;}
.y10e{bottom:438.986491pt;}
.y73{bottom:446.506488pt;}
.y13b{bottom:451.146486pt;}
.ye6{bottom:452.266486pt;}
.yba{bottom:452.746486pt;}
.ya0{bottom:455.146485pt;}
.y169{bottom:455.466484pt;}
.y38{bottom:456.106484pt;}
.y10d{bottom:457.866484pt;}
.y72{bottom:464.906481pt;}
.yd5{bottom:465.386481pt;}
.y4c{bottom:468.426479pt;}
.y13a{bottom:469.546479pt;}
.ye5{bottom:470.506478pt;}
.yb9{bottom:470.986478pt;}
.y168{bottom:472.266478pt;}
.y9f{bottom:474.186477pt;}
.y10c{bottom:476.266476pt;}
.y4b{bottom:483.306473pt;}
.yd4{bottom:483.786473pt;}
.y71{bottom:484.426473pt;}
.y139{bottom:487.946471pt;}
.y167{bottom:489.066471pt;}
.yb8{bottom:490.986470pt;}
.y9e{bottom:492.906470pt;}
.y10b{bottom:494.666469pt;}
.y4a{bottom:498.826467pt;}
.yd3{bottom:502.186466pt;}
.y70{bottom:503.146465pt;}
.y138{bottom:506.346464pt;}
.y166{bottom:507.306464pt;}
.yb7{bottom:508.906463pt;}
.y9d{bottom:511.306462pt;}
.y10a{bottom:513.066461pt;}
.y49{bottom:514.026461pt;}
.yd2{bottom:520.586458pt;}
.y6f{bottom:521.226458pt;}
.y165{bottom:524.426457pt;}
.y137{bottom:524.746457pt;}
.y48{bottom:529.386455pt;}
.y9c{bottom:529.706455pt;}
.yb6{bottom:532.906454pt;}
.y109{bottom:534.506453pt;}
.yd1{bottom:538.986451pt;}
.y6e{bottom:540.746450pt;}
.y37{bottom:541.386450pt;}
.y136{bottom:543.146449pt;}
.y47{bottom:544.746449pt;}
.yb5{bottom:546.506448pt;}
.y9b{bottom:548.106447pt;}
.y108{bottom:552.906446pt;}
.yd0{bottom:557.386444pt;}
.y164{bottom:558.186443pt;}
.y6d{bottom:559.306443pt;}
.y46{bottom:559.946443pt;}
.y135{bottom:561.386442pt;}
.y9a{bottom:566.826440pt;}
.y107{bottom:571.306438pt;}
.y163{bottom:574.986437pt;}
.y45{bottom:575.306437pt;}
.ycf{bottom:575.466436pt;}
.y6c{bottom:577.706436pt;}
.y134{bottom:579.786435pt;}
.y36{bottom:580.266435pt;}
.y99{bottom:586.026432pt;}
.y106{bottom:589.866431pt;}
.y44{bottom:590.666430pt;}
.y162{bottom:593.226429pt;}
.y35{bottom:593.866429pt;}
.yce{bottom:595.466428pt;}
.y133{bottom:598.186427pt;}
.y6b{bottom:603.786425pt;}
.y98{bottom:604.906425pt;}
.y43{bottom:606.026424pt;}
.y34{bottom:607.466424pt;}
.y105{bottom:608.266423pt;}
.y161{bottom:610.346423pt;}
.ycd{bottom:613.386421pt;}
.y132{bottom:616.586420pt;}
.y33{bottom:619.946419pt;}
.y42{bottom:621.386418pt;}
.y6a{bottom:622.186418pt;}
.y97{bottom:623.306417pt;}
.y104{bottom:626.826416pt;}
.y160{bottom:627.306416pt;}
.ycc{bottom:633.546413pt;}
.y41{bottom:636.746412pt;}
.y69{bottom:640.586410pt;}
.y96{bottom:641.706410pt;}
.y15f{bottom:644.106409pt;}
.y103{bottom:644.906409pt;}
.ycb{bottom:647.146408pt;}
.y40{bottom:651.946406pt;}
.y131{bottom:653.386405pt;}
.y32{bottom:657.866404pt;}
.y68{bottom:658.986403pt;}
.y95{bottom:660.106403pt;}
.y15e{bottom:662.186402pt;}
.y102{bottom:662.346402pt;}
.y3f{bottom:667.306400pt;}
.y130{bottom:671.786398pt;}
.y67{bottom:677.386396pt;}
.y94{bottom:678.506395pt;}
.y15d{bottom:679.306395pt;}
.y101{bottom:679.626395pt;}
.y3e{bottom:682.666394pt;}
.y12f{bottom:690.186391pt;}
.y31{bottom:695.626388pt;}
.y66{bottom:695.786388pt;}
.y15c{bottom:696.106388pt;}
.y93{bottom:697.226388pt;}
.y3d{bottom:698.026387pt;}
.y12e{bottom:708.586383pt;}
.y30{bottom:709.386383pt;}
.y15b{bottom:712.906382pt;}
.y3c{bottom:713.386381pt;}
.y65{bottom:714.186381pt;}
.y100{bottom:715.466380pt;}
.y92{bottom:716.266380pt;}
.y12d{bottom:726.986376pt;}
.y3a{bottom:727.466376pt;}
.y2e{bottom:728.587200pt;}
.y3b{bottom:728.746375pt;}
.y15a{bottom:731.146374pt;}
.y64{bottom:732.586374pt;}
.yff{bottom:733.866373pt;}
.y91{bottom:734.986373pt;}
.y12c{bottom:745.386369pt;}
.y2b{bottom:746.827200pt;}
.y159{bottom:748.266367pt;}
.y2d{bottom:750.826366pt;}
.y63{bottom:750.986366pt;}
.y90{bottom:753.386365pt;}
.yfe{bottom:753.706365pt;}
.y12b{bottom:763.786361pt;}
.y158{bottom:765.226361pt;}
.y62{bottom:769.386359pt;}
.y8f{bottom:771.786358pt;}
.yfd{bottom:772.106358pt;}
.y16{bottom:776.266356pt;}
.y157{bottom:782.026354pt;}
.y12a{bottom:782.186354pt;}
.y61{bottom:787.786352pt;}
.y8e{bottom:790.506350pt;}
.yfc{bottom:792.586350pt;}
.y15{bottom:794.826349pt;}
.y156{bottom:798.826347pt;}
.y14{bottom:799.466347pt;}
.y129{bottom:800.586346pt;}
.y60{bottom:806.186344pt;}
.y8d{bottom:809.706343pt;}
.yfb{bottom:813.226341pt;}
.y155{bottom:816.906340pt;}
.y13{bottom:818.186339pt;}
.y128{bottom:820.906338pt;}
.y12{bottom:822.826338pt;}
.y8c{bottom:828.106335pt;}
.y5f{bottom:831.466334pt;}
.ye4{bottom:831.626334pt;}
.yfa{bottom:833.706333pt;}
.y154{bottom:834.026333pt;}
.y127{bottom:839.306331pt;}
.y10{bottom:841.546330pt;}
.y11{bottom:846.186328pt;}
.y8b{bottom:846.986328pt;}
.y153{bottom:850.986326pt;}
.ye3{bottom:853.386325pt;}
.yf9{bottom:854.186325pt;}
.y5e{bottom:855.786324pt;}
.y126{bottom:857.706324pt;}
.yf{bottom:864.906321pt;}
.y152{bottom:867.786320pt;}
.ye2{bottom:871.786318pt;}
.y8a{bottom:871.946318pt;}
.y5d{bottom:874.186317pt;}
.yf8{bottom:874.826317pt;}
.y125{bottom:876.106316pt;}
.y151{bottom:884.586313pt;}
.ye{bottom:889.386311pt;}
.ye1{bottom:890.186311pt;}
.y89{bottom:890.346311pt;}
.y5c{bottom:892.586310pt;}
.yf7{bottom:893.226309pt;}
.y124{bottom:894.506309pt;}
.y150{bottom:902.826306pt;}
.ye0{bottom:908.586303pt;}
.y88{bottom:909.066303pt;}
.y5b{bottom:910.826302pt;}
.y123{bottom:912.906302pt;}
.yf6{bottom:914.986301pt;}
.y29{bottom:916.747200pt;}
.y14f{bottom:919.946299pt;}
.y24{bottom:920.266299pt;}
.ydf{bottom:926.986296pt;}
.y87{bottom:928.106295pt;}
.y5a{bottom:929.226295pt;}
.y122{bottom:931.306294pt;}
.yf5{bottom:933.386293pt;}
.y28{bottom:936.906292pt;}
.yde{bottom:945.386289pt;}
.y86{bottom:946.506288pt;}
.y59{bottom:947.626288pt;}
.y121{bottom:949.706287pt;}
.yb4{bottom:950.186287pt;}
.y27{bottom:953.706285pt;}
.yf4{bottom:954.346285pt;}
.ydd{bottom:963.466281pt;}
.y85{bottom:965.226281pt;}
.y58{bottom:966.026280pt;}
.y120{bottom:968.106279pt;}
.y14e{bottom:971.786278pt;}
.yf3{bottom:972.426278pt;}
.y26{bottom:978.506275pt;}
.ydc{bottom:981.866274pt;}
.y57{bottom:984.426273pt;}
.y11f{bottom:987.786272pt;}
.y14d{bottom:989.066271pt;}
.yf2{bottom:989.546271pt;}
.y25{bottom:995.466268pt;}
.y56{bottom:1002.826266pt;}
.y6{bottom:1017.866260pt;}
.ydb{bottom:1037.866252pt;}
.yda{bottom:1041.706250pt;}
.y8{bottom:1054.666245pt;}
.y5{bottom:1056.906244pt;}
.yd9{bottom:1057.066244pt;}
.yd7{bottom:1069.227200pt;}
.y4{bottom:1072.266238pt;}
.yd6{bottom:1072.426238pt;}
.y2{bottom:1084.427200pt;}
.y1{bottom:1087.626232pt;}
.h19{height:3.520000pt;}
.h12{height:12.480000pt;}
.h1c{height:12.895932pt;}
.h2{height:15.040000pt;}
.he{height:16.480000pt;}
.h6{height:16.640000pt;}
.h16{height:17.760000pt;}
.hf{height:17.920000pt;}
.ha{height:23.422491pt;}
.h5{height:29.794051pt;}
.h13{height:29.961551pt;}
.h3{height:32.531237pt;}
.h15{height:32.554674pt;}
.h14{height:34.968736pt;}
.h7{height:35.404673pt;}
.h9{height:36.001236pt;}
.h1{height:36.909048pt;}
.h18{height:38.672797pt;}
.h17{height:38.698735pt;}
.h10{height:39.243734pt;}
.hd{height:39.904984pt;}
.h1d{height:40.882484pt;}
.h4{height:40.911234pt;}
.h11{height:42.191233pt;}
.h1b{height:42.894983pt;}
.hb{height:43.374983pt;}
.hc{height:44.468732pt;}
.h1a{height:46.624981pt;}
.h8{height:50.748730pt;}
.h0{height:1122.666667pt;}
.w9{width:3.200000pt;}
.we{width:3.360000pt;}
.w5{width:4.800000pt;}
.wf{width:6.080000pt;}
.wc{width:6.240000pt;}
.w3{width:7.040000pt;}
.w7{width:7.360000pt;}
.wd{width:8.000000pt;}
.w6{width:29.440000pt;}
.wa{width:29.920000pt;}
.w8{width:52.000000pt;}
.w4{width:64.800000pt;}
.wb{width:101.120000pt;}
.w2{width:158.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:39.999984pt;}
.x14{left:45.119982pt;}
.x29{left:47.839981pt;}
.x17{left:56.640021pt;}
.x16{left:58.239977pt;}
.x33{left:61.599975pt;}
.x4{left:64.159974pt;}
.x26{left:69.280000pt;}
.x2b{left:70.239972pt;}
.x27{left:75.519997pt;}
.x22{left:77.280000pt;}
.x41{left:81.759967pt;}
.x39{left:85.119966pt;}
.x35{left:94.399962pt;}
.x3b{left:95.999962pt;}
.x34{left:101.119960pt;}
.x28{left:107.199957pt;}
.x40{left:110.559956pt;}
.x2a{left:112.639955pt;}
.x43{left:114.559954pt;}
.x42{left:115.839954pt;}
.x45{left:118.879952pt;}
.x3c{left:119.999952pt;}
.x3f{left:122.879956pt;}
.x44{left:123.999950pt;}
.x3d{left:125.919950pt;}
.x23{left:129.280000pt;}
.x24{left:132.480000pt;}
.x3e{left:143.999942pt;}
.x15{left:145.279942pt;}
.x25{left:162.399935pt;}
.x18{left:164.959934pt;}
.x9{left:169.759932pt;}
.x2c{left:181.919936pt;}
.x2d{left:182.879927pt;}
.x19{left:197.599921pt;}
.x2e{left:206.719919pt;}
.x7{left:219.359912pt;}
.x2f{left:223.999910pt;}
.x30{left:233.439907pt;}
.x1c{left:234.399906pt;}
.x31{left:236.800000pt;}
.xa{left:260.799896pt;}
.xb{left:265.119894pt;}
.x5{left:303.359879pt;}
.x38{left:311.999875pt;}
.x1b{left:334.399866pt;}
.x36{left:341.439863pt;}
.x1d{left:342.720000pt;}
.x1a{left:351.199952pt;}
.xc{left:382.719847pt;}
.xd{left:387.039845pt;}
.x8{left:397.279841pt;}
.x1e{left:407.520000pt;}
.x1f{left:412.320000pt;}
.x20{left:441.760000pt;}
.xe{left:473.919810pt;}
.xf{left:478.239809pt;}
.x10{left:575.679770pt;}
.x11{left:579.999768pt;}
.x21{left:611.999755pt;}
.x12{left:620.639752pt;}
.x13{left:624.959750pt;}
.x2{left:635.040000pt;}
.x3{left:642.879743pt;}
.x3a{left:644.959742pt;}
.x32{left:725.439710pt;}
.x37{left:743.839702pt;}
.x6{left:747.360000pt;}
}




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